/*
Theme Name: Mohini
Author: Alexander Czasny
Version: 1.0
*/

/* --------------------------------------------------------------
   Fonts
-------------------------------------------------------------- */
@font-face {
  font-family: 'Graphik Web';
  src: url('fonts/Graphik-Regular-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Graphik Web';
  src: url('fonts/Graphik-Medium-Web.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Graphik Web';
  src: url('fonts/Graphik-Bold-Web.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* --------------------------------------------------------------
   Variables
-------------------------------------------------------------- */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-rosa: #ffd2d7;
  --color-blau: #4f79ed;
  --color-gruen: #0a593f;
  --color-gelb: #f4f482;
  --color-braun: #aa7f75;
}

/* --------------------------------------------------------------
   Base
-------------------------------------------------------------- */
body {
  color: var(--color-black);
  font-family: 'Graphik Web', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

a {
	color: unset;
	text-decoration:unset;
}
/* --------------------------------------------------------------
   Typography
-------------------------------------------------------------- */
h1 {
  font-size: clamp(2.25rem, 2vw + 1.5rem, 3.75rem);
  line-height: clamp(3rem, 2.5vw + 2rem, 4.75rem);
  font-weight: 700;
}

h2 {
font-size: clamp(1.875rem, 1vw + 1.5rem, 3.125rem);
line-height: clamp(2.5rem, 1vw + 3rem, 5.4375rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.35em;
	margin-bottom:2.25rem;
	
}

h3 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 3rem);
  line-height: clamp(2rem, 1.5vw + 1.25rem, 3.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 1vw + 1rem, 2.1875rem);
  line-height: clamp(1.75rem, 1vw + 1.25rem, 2.75rem);
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.35em;
}

h5 {
  font-size: clamp(1.125rem, 0.8vw + 1rem, 1.5625rem);
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.35em;
}

h6 {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.25rem);
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.text-highlight-1 {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
  line-height: clamp(1.4rem, 0.5vw + 1rem, 1.625rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.text-highlight-2 {
  font-size: clamp(0.75rem, 0.5vw + 0.625rem, 0.875rem);
  line-height: clamp(1rem, 0.5vw + 0.875rem, 1.1875rem);
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: underline;
}

p {
  font-size: clamp(0.9375rem, 0.5vw + 0.75rem, 1rem);
  line-height: clamp(1.5rem, 0.5vw + 1.25rem, 1.625rem);
  font-weight: 400;
}

.mittelachial {
  font-size: clamp(0.9375rem, 0.5vw + 0.75rem, 1rem);
  line-height: clamp(1.5rem, 0.5vw + 1.25rem, 1.625rem);
  font-weight: 400;
}



/* --------------------------------------------------------------
   CTAs
-------------------------------------------------------------- */

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  color:  var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--color-black) !important;
	color: var(--color-white) !important; 
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
	color: var(--color-black);
	display: inline-block;
    font-size: 1.25em;
	font-weight:700;
	margin-bottom:1.5rem;
}



.btn_black {
  background-color: var(--color-black);
  border: 2px solid var(--color-black);
  color:  var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  z-index:2;
  display:inline-block;
}
.btn_black:hover {
  background-color: var(--color-white) !important;
	color: var(--color-black) !important; 
}

.btn_black_transparent {
    background-color: rgba(0,0,0,0.3);
    border: 2px solid var(--color-black);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    z-index: 2;
    display: inline-block;
}
.btn_black_transparent:hover {
  background-color: var(--color-black) !important;
	color: var(--color-white) !important; 
}


/* --------------------------------------------------------------
   ADMIN-Stuff
-------------------------------------------------------------- */
.freigeschaltete-boxen {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.freigeschaltete-boxen h3 {
  margin-bottom: 15px;
}
.freigeschaltete-boxen p {
  margin: 4px 0;
}


/* --------------------------------------------------------------
   Header
-------------------------------------------------------------- */
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /*max-width: 1400px;*/
  margin: 0 auto;
  width: 100%;
}

/* Burger */
.menu-toggle {
  justify-self: start;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 15px;
  padding: 0;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color:#000;
  transition: all 0.4s ease;
}
.menu-toggle span:nth-child(2) {
  width: 70%;
  align-self: flex-start;
}
.menu-toggle:hover span {
  background-color: #000;
}

/* Animation bei Hover */
.menu-toggle:hover span:nth-child(2) {
  width: 100%;
}


/* Branding */
.site-branding {
  justify-self: center;
}
.site-branding .logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

/* Icons */
.header-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.cart-icon, .user-icon {
    position: relative;
    color: #000;
    font-size: 100%;
    text-decoration: none;
    line-height: normal;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #0a8f3c;
  color: white;
  font-size: 0.7rem;
  padding: 0 5px;
  line-height: 1.2;
}

/* --- Header Standardzustand --- */

.page-standard-header-visual {
    position: relative;
}

.page-standard-header-visual img {
	max-height: 30vh;
    object-fit: cover;
    width: 100%;
    object-position: center;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  transition: all 0.4s ease;
  padding: 0 3rem;
  box-shadow: none;
}

/* innere Struktur */
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px; /* <- Feste Ausgangshöhe */
  transition: height 0.4s ease;
}

/* kleiner nach Scroll */
.site-header.is-small .header-grid {
  height: 80px; /* <- Jetzt schrumpft der Header sichtbar */
}

/* Logo */
.site-header .logo img {
  display: block;
  height: auto;
  width: 420px;
  transition: transform 0.4s ease;
  transform-origin: center center;
	margin: 0 auto;
}

/* kleineres Logo */
.site-header.is-small .logo img {
  transform: scale(0.5);
}



@media (max-width: 992px) {
	.site-header {
		padding:1rem 2rem;
	}
	
 	.site-header .logo img {
    	width: 80%;
  	}
	
	.header-grid {
		height:auto;
	}
	
	.site-header.is-small .logo img {
		transform:scale(1);
	}
	
	.site-header.is-small .header-grid {
 		 height: auto;
	}

}



@media (max-width: 992px) and (orientation: landscape) { 
	.site-header {
		padding:0rem 2rem;
	}

}

@media (max-width: 576px) {
  .site-header .logo img {
    width: 50%;
  }
}


.hero {
    height: 75vh;
    overflow: hidden;
}

.hero img {
	 object-fit: cover;
    object-position: left;
    height: 100%;
    width: 100%;
}

.page-template-page-home .hero img {
	object-position: center;
}

.hero-text {
	position:absolute;
    bottom: 10%;
    left: 10%;
	color: var(--color-white);
}



/* Overlay Menu */
.overlay-menu {
position: fixed;
    inset: 0;
    background: var(--color-rosa);
	color:var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1050;
    width: 30%;
    padding: 7em 2em 2em 3em;
	max-width:650px;
}
.overlay-menu.active {
  opacity: 1;
  pointer-events: all;
}
.menu-close {
	display: none;        /* Standard: verstecken */
  position: absolute;
	top:2.4rem;
	right:3rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
	z-index:1100;
}

.is-small .menu-close {
	top:0.5rem;
}

/* Wenn Menü aktiv → Button anzeigen */
#overlay-menu.active .menu-close {
  display: block;
}

.overlay-nav {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
	width:100%;
}
.overlay-nav li {
font-weight: 700;
    margin-bottom: 1.25rem;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.35em;
    margin-bottom: 2.25rem;
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-gruen);
}


.overlay-nav a:hover {
    color: var(--color-gruen);
}

.overlay-nav a {
  text-decoration: none;
}

@media (max-width: 1200px) {
    .overlay-menu {
        width: 50%;
        right: unset;          
        left: 0;
		max-width:unset;
	align-items: center;
    }
	.overlay-nav { 
		text-align:left;
	}
}

@media (max-width: 992px) {
    .menu-close {
		top:0.25rem;
    }
	
	 .overlay-menu {
        width: 100%;
        right: 0;           /* rechts andocken */
        left: auto;         /* linke Seite freigeben */
		 max-width:unset;
		 padding:7em 2em 2em 2em
    }
	
}
/* --------------------------------------------------------------
   Startseite
-------------------------------------------------------------- */
/* =========================================================
   PRODUKT-SEKTIONEN (Bootstrap-basiert)
   ========================================================= */
/* Grundlayout */
.product-block,
.product-block-grid {
  position: relative;
  overflow: hidden;
}

/* Bilder */
.product-block img,
.product-block-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s;
	max-height:75vh;
}

/* Bild auf volle Spaltenhöhe */
.object-fit-cover {
  object-fit: cover;
  display: block;
}

/* optional: Text sauber mittig */
.product-block .block-1 .product-text {
  height: 100%;
}

.block-1 {
	background-color:var(--color-rosa);
	color: var(--color-gruen);
}

/* Nur für Block 1 */
.product-block.block-1 .col-xl-6:first-child {
  position: relative;
  overflow: hidden;
}

/* SVG-Pattern als Dekoelement */
.product-block.block-1 .product-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("https://mohini-truffles.de/wp-content/uploads/2025/10/main_product_pattern_frontpage.svg") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
}



/* Block 2 & 3: gleiche Höhe über Aspect Ratio */
.product-block-grid .col-md-6 {
  aspect-ratio: 4 / 3;   /* gleiche Höhe durch Seitenverhältnis */
  position: relative;
  overflow: hidden;
}

/* Bild füllt Spalte komplett aus */
.product-block-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover-Bild */
.produkt-hover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.related .produkt-hover-image {
	transform: translate(0);
}

.woocommerce-shop .produkt-hover-image {
	transform: translate(0);
}

.has-hover:hover .produkt-hover-image {
  opacity: 1;
}

.has-hover:hover .shop-produktbild {
  opacity: 0;
}

.product-image-link:hover img.shop-produktbild {
  transform: scale(1.05);
}

/* Text Overlay */
.product-block .product-text,
.product-block-grid .product-text {
  position: absolute;
  z-index: 3;
  color: var(--color-white);
	padding:3rem;
}

/* Block 1 ohne Overlay */
.block-1 .product-text {
    position: relative;
    color: inherit;
    text-shadow: none;
    padding: 5vw 13vw 5vw 7vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: baseline;
}

/* Responsive */
@media (max-width: 1200px) {
	.block-1 .product-text {
		padding:2rem 5rem 3rem 3rem;
	}
	
	.product-template-default .related {
		margin-top:6rem;
	} 
}


@media (max-width: 576px) {
  .product-block.block-1 .product-text::after {
    display: none;
  }
	.block-1 .product-text {
		padding:2rem;
	}

}







.parallax-section {
  position: relative;
  overflow: hidden;
  height: 25vh;
  background-color: #FFD2D7; /* fallback */
}

.parallax-bg {
position: absolute;
    top: -10%;
    right: 0%;
    width: 100%;
    height: 300%;
    /* background-repeat: no-repeat; */
    background-position: top right;
    will-change: transform;
    transition: transform 0.8s 
ease-out;
    background-size: contain;
    overflow: visible;
    background-size: cover;
	max-width:70vw;
    background-position: left;
}


/* --------------------------------------------------------------
   Unterseiten Standards
-------------------------------------------------------------- */
.page-template-default .hero {
    min-height: 50vh;
    overflow: hidden;
    max-height: 60vh;
}



#site-content {
	padding-top:5rem;
	padding-bottom:5rem;
	
}
.single-product #site-content {
	padding-top:0;
	padding-bottom:0
}


.mobile_alternative_header {
	object-position: center;
    object-fit: cover;
}

.left_image {
	width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (max-width:998px) {
	
	.mobile_alternative_header {
		max-height: 30vh;
		object-fit: cover;
		width: 100%;
		object-position: top;
	}	
}

/* --------------------------------------------------------------
   Unterseite Fix für h2 - Datenschutz, Impressum und Co
-------------------------------------------------------------- */
.page-id-164 h2,
.page-id-152 h2,
.page-id-168 h2,
.page-id-171 h2, .page-id-171 h3{
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    padding-bottom: 0.25rem;
	font-size: unset;
    line-height: unset;
    text-decoration: unset;
    text-decoration-thickness: unset;
    text-underline-offset: unset;
    margin-bottom: 1.5rem;
    margin-top: 2.25rem;	
  
}


/* --------------------------------------------------------------
   Unterseite B2B
-------------------------------------------------------------- */

/* --------------------------------------------------------------
   Unterseite Essence
-------------------------------------------------------------- */
.page-template-page-essence h2 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    padding-bottom: 0.25rem;
	font-size: unset;
    line-height: unset;
    text-decoration: unset;
    text-decoration-thickness: unset;
    text-underline-offset: unset;
    margin-bottom: 1.5rem;
    margin-top: 2.25rem;	
  
}









/* --------------------------------------------------------------
   Produktseite
-------------------------------------------------------------- */
/* Standardzustand */
.shop-produktbild {
  transition: opacity 0.3s ease;
}

/* Hover-Effekt nur, wenn Klasse vorhanden */
.hover-scale.has-hover:hover .produkt-hover-image {
  opacity: 1;
}

.hover-scale.has-hover:hover .shop-produktbild {
  opacity: 0;
}

.produkt-hover-image {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}



.woocommerce div.product .product_title {
	margin-bottom: 3rem;
}

.product-detail-container {
  position: relative;
  overflow: visible;
}

/* Linke Spalte */
.product-images-wrapper {
  position: relative;
}
.product-images-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.product-gallery {
  margin-top: 0;
}
.product-gallery-item {
  margin-bottom: 0;
}
.main-photo {
  margin-bottom: 0;
}

/* Rechte Spalte (Sticky) */
.product-summary-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.product-summary-inner {
    position: sticky;
    top: 5vw;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 7rem);
    /* padding-top: 12rem; */
    max-width: 700px;
    background: #fff;
    z-index: 0;
	padding-top:3rem;
}
.summary.entry-summary {
  text-align: left;
}
.summary .price {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.single_add_to_cart_button {
  display: inline-block;
  margin-top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease-in-out;
}
.single_add_to_cart_button:hover {
  background: #333;
}

.product-description {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
	max-width:75%;
}

.product-description p + p {
  margin-top: 1rem;
}

.product-description p {
	display: inline;             /* alle Absätze nebeneinander */
 	text-align: center;
}

.product-description p:not(:last-child)::after {
  content: " · ";
  margin: 0 0.5rem;
}

.product-short-description p {
	font-weight:700;
}


.woocommerce-page div.product div.summary {
    float: unset;
    width: unset;
    clear: none;
}

.product-accordion {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
}
.accordion-header::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.accordion-header.active::after {
  content: '–';
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* === Produkt-Tabs (Zutaten & Versand) === */
.product-tabs {
  margin-top: 3rem;
 /* border-top: 1px solid #ddd;*/
}

.product-tabs-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
 /* border-bottom: 1px solid #ddd;*/
}

.product-tabs-nav li {
   white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  cursor: pointer;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.product-tabs-nav li:hover {
  color: #555;
}

.product-tabs-nav li.active {
  color: #000;
}

.product-tabs-nav li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #000;
}


/* Inhalte-Container: bleibt sichtbar */
.product-tabs-content {
	position:relative;

}

/* alle Panels ausblenden */
.tab-panel {
display:none;
}

/* nur aktives Panel zeigen */
.tab-panel.active {
  display: block;

}

/* Menge-Eingabe angleichen */
.woocommerce div.product form.cart .quantity .qty {
  height: 3.25rem; /* gleiche Höhe wie dein Button */
  padding: 0 1rem;
  font-size: 1rem;
  border: 1px solid #000;
  border-radius: 0;
  text-align: center;
  width: 70px; /* optional, kannst du anpassen */
  box-sizing: border-box;
}

.woocommerce div.product form.cart {
 /* display: flex;
  align-items: center;
  gap: 0.5rem; 
*/}

.product-flavor-details {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
	flex-wrap: wrap;
}

.flavor-icon {
	width:70px;
	transition: all .3s ease;
}

.flavor-icon:hover {
	transform: scale(1.1);
}

.flavor-item {
flex-direction: column;
  text-align: center;
row-gap: 1rem;	
  font-weight: 600;
  font-size: 0.9rem;
 /* color: #000; */
}

.flavor-dot {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 0.5rem auto;
  transition: transform 0.2s ease;
}

.flavor-item:hover .flavor-dot {
  transform: scale(1.1);
}

/* ✅ Desktop = Bilder untereinander ganz normal */
.product-images-mobile-slider {
    display: block;
}


.slider-hint {
	display:none;
}

@media (min-width: 992px) {
	.product_shop_sticky {
		position: sticky;
		bottom: 0;
		background: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(0px);
		/* box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08); */
		width: 100%;
		padding: 1rem 0rem;
	}
}



.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
    vertical-align: middle;
}
.woocommerce div.product form.cart .variations select {
    max-width: 100%;
    height: 3.25rem;
    padding: 0 1rem;
    font-size: 1rem;
    border: 1px solid #000;
    border-radius: 0;
    /* text-align: center; */
    /* width: 70px; */
    box-sizing: border-box;
}

/* ✅ Mobile: horizontales Swipen */
@media (max-width: 992px) {

	/* Overlay-Hinweis */
.slider-hint {
	display:block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
}

/* Ausblenden */
.slider-hint.hide {
    opacity: 0;
    visibility: hidden;
}

/* Slider muss relative sein für das Overlay */
.product-images-mobile-slider {
    position: relative;
}
	
	
	
	
    .product-images-mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .product-slider-item {
        min-width: 80%;              /* Größe der sichtbaren Bilder */
		width: 100vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        overflow: hidden;
    }

    .product-images-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* optional: scrollbar ausblenden */
    .product-images-mobile-slider::-webkit-scrollbar {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
  .product-tabs-nav {
    flex-direction: column;
    gap: 1rem;
  }
}



/* Mobile */
@media (max-width: 991.98px) {
  .product-summary-column {
    margin-top: 2rem;
  }
  .product-summary-inner {
	  padding-top:0;
    position: static;
    top: auto;
    max-width: 100%;
  }
}




/* --------------------------------------------------------------
   MOHINI Logo Strip
-------------------------------------------------------------- */
.logo-strip {
  background: #fff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;	
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(5,1fr); /* 3 gleich große Spalten */
  justify-items: center; /* Logos mittig in ihrer Spalte */
  align-items: center;
  width: 100%;
  transition: transform 0.4s ease-out;
  will-change: transform;
justify-content: center;
}

.logo-item {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #000;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(2rem, 10vw, 8rem); /* skaliert proportional */
  line-height: 1;
margin-right: 3em;
}


/* --------------------------------------------------------------
   Newsletter Section
-------------------------------------------------------------- */
.newsletter-section {
  position: relative;
  background-color: #0a593f; /* Grün */
  color: #fff;
  overflow: hidden;
}

.newsletter-title {
  color: var(--color-braun);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  margin-bottom: 0.5rem;
}

.newsletter-subtitle {
  color: #fff;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  max-width: 320px;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 0.9rem;
}

.newsletter-btn {
  background-color: #b38775;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: none;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.newsletter-btn:hover {
  background-color: #8e6759;
  color: #fff;
}

/* Deko-Rechtecke rechts */
.newsletter-deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 100%;
  background-image: linear-gradient(to bottom, #b38775 33%, #0a593f 33%, #0a593f 66%, #b38775 66%);
  background-size: 100% 100%;
  z-index: 1;
}


.newsletter-deco {
 display:none;
}

.mailpoet_form_column {
	container-type:unset !important;
}

/* Responsiv */




@media (max-width: 1200px) {
  .newsletter-form {
    flex-direction: column !important;
  }

	.mailpoet_form_columns {
		flex-direction:column !important;
	}
	.mailpoet_form_column:not(:first-child) {
		margin-left:0 !important;
	}
	.mailpoet_form_column.mailpoet_vertically_align_top {
    	align-self: unset !important;
	}
}


/* --------------------------------------------------------------
   Shop


-------------------------------------------------------------- */

/* Special B2B Kachel*/


.custom-b2b-wrapper {
    background: #4f79ed;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;      /* Inhalt linksbündig */
    justify-content: center;      /* Vertikal zentriert */
    padding: 3rem;
}

.custom-b2b-inner {
display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem;
    flex-direction: column;
    gap: 3rem;
}

.custom-title {
    color: #ffd4dc;
	text-align:left;
}

.custom-subline {
    color: #ffd4dc;
    position: relative;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 1.5rem);
    line-height: clamp(2rem, 1.5vw + 1.25rem, 3.125rem);
    font-weight: 400;
    text-decoration: none !important;	
}

.custom-line {
    width: 60px;
    height: 2px;
    margin: 0;
    border: none;
    background: #ffd4dc;
	opacity:1;
}

.custom-btn {
    margin-top: auto;             /* Button ganz nach unten drücken */
    align-self: flex-start;       /* Button links halten */
}


/* 🟩 3 Produkte nebeneinander im Shop */
/* --- Produktbilder und Hover-Effekt --- */
.product-wrapper {
  position: relative;
  overflow: hidden;
}


.product-wrapper:hover img {
	transform:scale(1.05);
}

.woocommerce-shop h2.product-title,
.single-product h2.product-title{
    position: relative;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 1.5rem);
    line-height: clamp(2rem, 1.5vw + 1.25rem, 3.125rem);
    font-weight: 700;
    text-decoration: none !important;
}

.product-wrapper img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-wrapper .produkt-hover-image {
  opacity: 0;
}

.product-tile:hover .produkt-hover-image {
  opacity: 1;
}

.product-overlay {
  opacity: 0;
  transition: opacity 0.4s ease;

}

.product-tile:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  background: #000;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.product-info {
	padding: 1rem 2rem;
	padding-bottom:0;
}

.product-price {
 	white-space: nowrap;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 1.5rem);
    line-height: clamp(2rem, 1.5vw + 1.25rem, 3.125rem);
    font-weight: 700;
    text-decoration: none !important;
}




/* --------------------------------------------------------------
   Pralinen-Box
-------------------------------------------------------------- */

.box-info-section h1 {
	font-size: clamp(2.25rem, 2vw + 1.5rem, 3.75rem);
    /*line-height: clamp(3.6rem, 3vw + 2.4rem, 5.7rem);*/
	line-height:1.6;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.35em;
    margin-bottom: 2.25rem;
}



.hotspot-wrapper {
  position: relative;
  display: inline-block;
}

.hotspot-wrapper img {
	width:100vw;
	height:auo;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
animation: hotspotPulse 3.5s ease-in-out infinite;
}

@keyframes hotspotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
	50% { transform: translate(-50%, -50%) scale(1.08); }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}

/* Hover-Zustand: Animation pausieren (damit er still bleibt, wenn man drübergeht) */
.hotspot:hover {
    animation-play-state: paused;
    transform: translate(-50%, -50%) scale(1.15);
    background: none;
}

/* Tooltip bleibt ruhig */
.hotspot-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translate(-50%, 10px);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 0px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tooltip zeigen beim Hover */
.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.hotspots_cta_wrapper {
    position: absolute;
    margin: 0 !important;
    right: 5%;
    bottom: 5%;
}


.with-tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip */
.cta-tooltip {
  position: absolute;
font-weight: 400;
    text-transform: none;	
  bottom: 130%; /* über dem Button */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 0px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
	white-space: normal;
	width:100%
}

/* Sichtbar beim Hover */
.with-tooltip:hover .cta-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}




/* === 🔄 Loader-Overlay beim Login === */
.login-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.login-loading-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #0c5a45;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.claim {
	letter-spacing:0.1em;
	text-transform:uppercase;
}



@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) { 
	.hotspot {
		width:10vw;
		height:10vw;
	}

	.hotspots_cta_wrapper {
	position: relative;
    margin-top: 3rem !important;
		right: unset;
        bottom: unset;
	}
	
	
}



/* --------------------------------------------------------------
   Pralinen-Single
-------------------------------------------------------------- */
.page-single-container {
	margin-top: 3rem;
}

.page-single-praline audio {
  width: 100%;
  max-width: 400px;
}

.story-spacer-end {
  height: 150vh; /* gleiche Höhe wie deine Scrollstrecke */
}

.praline-detail-wrapper {
  position: relative;
  background-color: #FFD2D7;
  padding: 0;
  padding-bottom: 5rem;
  z-index: 1;
}

.page-template-page-box-unterseite .praline-detail-wrapper {
   background-color: #FFD2D7;
    padding: 0;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.flavor-label {
	font-size: clamp(0.9375rem, 0.5vw + 0.75rem, 1rem);
    line-height: clamp(1.5rem, 0.5vw + 1.25rem, 1.625rem);
    font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}


/* --------------------------------------------------------------
   FAQ Page
-------------------------------------------------------------- */
.faq-question {
  cursor: pointer;
  transition: color 0.2s ease;
	gap:1rem;

}

.faq-item.active button {
	font-weight:700	
}

.faq-question:hover {
  color: var(--color-gruen);
	font-weight:700;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item {
	padding: 1rem 2rem
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.page-template-page-faq .faq-item.active {
  background: var(--color-gelb);
}

.page-template-page-questions-no-one-aks .faq-item.active {
  background: var(--color-rosa);
}


.faq-item.active {
  background: #fafafa;
}
.faq-answer {

}






/* --------------------------------------------------------------
   Footer
-------------------------------------------------------------- */

.site-footer h6 {
	font-size: clamp(1rem, 1vw + 1.25rem, 1.5rem);
 	line-height: clamp(2rem, 1vw + 1.25rem, 3rem);
 	font-weight: 700;
}
	
.site-footer {
    z-index: 1;
    position: relative;	
  background-color: #000;
  color: #fff;
  font-family: 'Graphik Web', sans-serif;
}


.footer-menu li {
  margin-bottom: 0.4rem;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
  text-decoration: underline;
}



/* Spacing für Mobile */
@media (max-width: 767.98px) {
  .site-footer {
    text-align: center;
  }

  .footer-heading {
    margin-top: 1rem;
  }
}






























/* --------------------------------------------------------------
   DUMMY
-------------------------------------------------------------- */
.page-template-page-box-unterseite-php main.container  {
	padding-top:10rem;
}

.custom-audio {
  display: flex;
  flex-direction: column; /* untereinander */
  align-items: center;    /* Button & Label zentrieren */
  justify-content: center;
  width: fit-content;     /* nur so breit wie nötig */
}

.play-circle {
  cursor: pointer;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-label {
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.play-icon {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.custom-audio:hover .play-icon {
  transform: scale(1.05);
}


/* Fortschrittsbalken */
.progress-container {
width: 100%;
    height: 10px;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
  opacity: 0;             /* unsichtbar zu Beginn */
  transform: translateY(5px);
  transition: opacity 0.4s ease, transform 0.4s ease;	
}

.progress-container.active {
  opacity: 1;             /* sichtbar beim Play */
  transform: translateY(0);
	cursor: pointer;

}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #0a593f; /* deine Akzentfarbe */
  transition: width 0.1s linear;

}



/* ---------- HEADER ---------- */
.hero-section {
  background-color: #0a593f;
  color: #fff;
  padding: 0;
  position: relative;
	margin-block-start:19em;
}

.hero-section h1 {
    padding: 2rem 0;
	padding-bottom:0;
}


    /* ---------- INHALTSBEREICH ---------- */
    .section-title {
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 0.25em;
      text-decoration-thickness: 0.08em;
      margin-bottom: 1rem;
    }

    .audio-section audio {
      width: 100%;
      max-width: 280px;
    }

    .nachklang-item {
      text-align: center;
    }

    .color-circle {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      margin: 0 auto 0.5rem;
    }

    .note-titel {
      font-size: 0.875rem;
      text-transform: uppercase;
      font-weight: 600;
    }

	.mh-50vh {
	  max-height: 50vh !important;
	}




/* 1) Wrapper */
.story-wrapper {
  position: relative;
  height: auto;
  overflow: visible;
}

/* 2) Spacer (damit der Block in den Viewport einfährt) */
.story-spacer { height: 75vh; }

/* 3) Trigger */
.scroll-trigger-absolute {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 200vh; /* Startwert – JS setzt sie gleich korrekt */
  z-index: 1;
}

/* 4) Fixierter Viewport-Bereich unter dem Header */
.story-inner {
    position: fixed;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2;
}



.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  color: #fff;
  font-family: inherit;
  pointer-events: none; /* UI bleibt klickbar */
  animation: fadeIn 1.5s ease forwards;
}

.scroll-indicator .scroll-text {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

/* Pfeil */
.scroll-indicator .scroll-arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: arrowDown 1.4s infinite ease-in-out;
}

/* Pfeil-Animation */
@keyframes arrowDown {
  0% {
    transform: translateY(0) rotate(-45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(6px) rotate(-45deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) rotate(-45deg);
    opacity: 1;
  }
}

/* Smooth Fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}




/* Spalten */
.story-column {
  position: relative;
  overflow: hidden;      /* verhindert Lücken */
}
.story-column.left  { width: 70%; }
.story-column.right { width: 30%; }

/* Track */
.story-track {
  position: relative;
  height: 100%;
  will-change: transform;
}

/* Bilder – Höhe setzen wir per JS pixelgenau */
.story-track img {
  width: 100%;
  height: auto;          /* JS überschreibt auf eine px-Höhe */
  object-fit: cover;
  display: block;
}

/* Textblöcke */
.moodframe-textblock {
  position: absolute;
  z-index: 3;
  background: var(--color-gruen);
  color: #fff;
  padding: 1.5rem 4rem;
  will-change: transform;
}
.moodframe-textblock span {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.35em;
    font-size: clamp(0.9375rem, 0.5vw + 0.75rem, 1rem);
    line-height: clamp(1.5rem, 0.5vw + 1.25rem, 1.625rem);
}


.story-column.left  .text-block-a { right: 0;  bottom: 15%; transform: translateY(-50%); }
.story-column.right .text-block-b { left:  0;  top:    25%; transform: translateY(-50%); }


/* ✅ MOBILE VERSION */
@media (max-width: 992px) {
	
	.story-column.left .text-block-a {
		right: 30%;
        left: unset;
        display: inline-block;
        position: absolute;
        bottom: unset;
        top: 14vh;
	}
	.story-column.right .text-block-b {
		right: unset;
        left: 0;
        display: inline-block;
        position: absolute;
        bottom: unset;
        top: 64vh;
	}

    .story-inner {
   	    width: 100%;
        display: block;
		top:0;
    }

    /* Linke Spalte: voller Platz */
    .story-column.left {
      width: 100%;
        position: relative;
        z-index: 1;
    }

    /* Rechte Spalte: 30%, unter der linken */
    .story-column.right {
      position: absolute;
        top: 0;
        right: 0;
        width: 30%;
        z-index: 3;
        pointer-events: none; /* verhindert Touch-Lag-Ruckler */
        transform: translateZ(0); /* GPU sorgt für smoothes scrollen */
       	overflow:visible;
    }

    .story-column.right img {
        width: 100%;
        height: auto;
    }

    .story-column.left img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 552px) {
	.moodframe-textblock {
		padding:1rem 2rem;
	}
}
