/*
Theme Name: My Yoga Theme
Author: Miguel
Version: 1.0
Description: Тема для сайта о йоге
*/


@font-face {
  font-family: 'Geologica';
  src: url('fonts/light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/reg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/med.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/sb.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* cursor: url("img/kursor.svg") , auto; */
  cursor: pointer;
  font-family: "Geologica", sans-serif !important;
   -webkit-tap-highlight-color: transparent;
}

body, html {
  height: 100%;
  
  scroll-behavior: smooth;
}
html::-webkit-scrollbar{
  display: none ;
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
 

  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
   position: relative; 
  z-index: 1;
  overflow: hidden; 
  height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  animation: fade-down 0.5s;
  z-index: 99;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-family: 'Geologica', sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: -0.05em;
  text-align: right;
  color: #f5f6f7;
  transition: color 0.2s;
  padding-left: 50px;
  overflow: hidden
}

.nav-links .dropdown{
  position: absolute;
  text-decoration: none;
  list-style: none;
  display: block;
  visibility: hidden;
  opacity: 0;
  margin-top: 0.4em;
  transition: 0.5s ease-out;
}

.nav-links .dropdown a{
  padding-right:50px;
  font-family: 'Geologica', sans-serif;
  font-weight: 400;
}
.dropdown li{
  margin-top: 18px;
}

.nav-links :hover .dropdown {
  visibility: visible;
  opacity: 1;
  background-color: transparent;
}

.dropdown li:hover{
 
  transition: 0.5s ease-out;
  transform: scale(1.1);
}
.dropdown li a:hover{
  color: #111;
}
.white-li li a:hover{
  color: #f5f6f7;
}
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1000;
}

.burger-menu span {
  width: 30px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}
.white-menu span{
   width: 30px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
   width: 26px;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
   width: 26px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #19191A;
  width: 100%;
  height: 100vh;
  padding: 40px;
  z-index: 98;
  overflow: hidden;
 flex-direction: column;
  justify-content: space-between;
}

.mobile-menu ul {
  list-style: none;
 width: 100%;
  
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  font-weight: 100;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.03em #f5f6f7;
  font-size: 23px;
  color: white;
  text-decoration: none;
}

.mobile-menu ul li.active {
   padding: 2px 0; 
  margin: 0 auto; 
  background-color: rgba(245, 246, 247, 0.05);
  display: flex;
  justify-content: center; 
  border-left: 3px solid #F5F6F7;
  border-right: 3px solid #F5F6F7;
  position: relative; 
  margin-bottom: 20px; 
}
.mobile-menu ul li.active::before,
.mobile-menu ul li.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
   width: 8px; 
  height: 8px;
  background-color: transparent; 
  border: 3px solid white;
  border-radius: 50%;
}


.mobile-menu ul li.active::before {
  left: -25px; 
}

.mobile-menu ul li.active::after {
  right: -25px;
}
.menu-footer {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px 85px;
  height: 100%;
  animation: fade-down 0.5s;
}

.main-text h1 {
  font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #f5f6f7;
  font-size: 8.8vw;
  line-height: 85%;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #f5f6f7;
  opacity: 0.3;
  transition: 0.5s ease-in-out;
}
.main-text h1:hover{
  opacity: 1;
}

.main-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.symbol {
  width: 125px;
  height: 120px;
  filter: brightness(150%);
  margin-bottom: 270px;
}

.button-white{
  background-color: #F5F6F7;
  padding: 12px 20px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-radius: 5px;
  color: #19191A;
  width: 210px;
  text-decoration: none;
  font-size: 14px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #f5f6f7;
  width: 210px;
  height: 50px;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.button-plus{
  padding-left: 60px;
}

.main-right button:hover {
  background-color: #ddd;
}
.container{
  padding: 0 40px;
}
.char-symbol-large{
  height: 230px;
  width: 135px;
}

.yoga-ayurveda {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  transition: grid-template-columns 0.5s ease;
  max-height: 100vh;
  background-color: white;
  color: black;
  animation: fade-down 0.5s;
  transition: grid-template-columns 0.5s ease;
  margin-bottom: 60px;
}

.block {
  display: flex;
  flex-direction: column;
}

.block h2 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 64px;
  line-height: 90%;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #131313;
}

.block h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 95%;
  letter-spacing: -0.02em;
  color: #19191a;
  margin-top: 40px;
  margin-bottom: 20px;
}

.block p {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #19191a;
  line-height: 1.6;
  max-width: 250px;
}

.block button {
  background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 235px;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
}
.block .button-marg{
  background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 235px;
  border-radius: 5px;
}

.block button:hover {
  background-color: #333;
}

.about-section {
  padding: 40px 40px;
  margin: auto;
}

.section-h1{
   font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.025em #131313;
  font-size: 64px;
  line-height: 90%;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #131313;
}
 .fullpage-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .section-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    z-index: -1;
    pointer-events: none;
  }

  .section-hidden.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 0;
    pointer-events: auto;
  }

  .section-content {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 40px;
    box-sizing: border-box;
    position: relative; 
  overflow: hidden;
    
  }
  .section-h1{
   font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #131313;
  font-size: 65px;
  line-height: 90%;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #131313;
  
  }
  .section-h1-right{
    text-align:right;
    font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #131313;
  font-size: 65px;
  line-height: 90%;
  letter-spacing: -0.01em;
  text-align: justify;
  color: #131313;
  }

  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
  }
  .text-content h4{
font-weight: 500;
font-size: 24px;
line-height: 95%;
letter-spacing: -0.02em;
color: #19191a;
padding: 60px 0 25px 0;
  }
  .text-content p{
    font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
line-height: 1.6;
  }
  .text-content .button{
   position: absolute;
    bottom: 40px; 
  left: 40px;   
  z-index: 10; 
  }

 .image-content {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.image-wrapper, .image-wrapper-ayur{
  position: relative;
  display: inline-block;
  max-height: 135vh;
}

.image-wrapper .dark-img {
  display: block;
  height: auto;
  max-height: 142vh;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.8;
  transition: filter 0.3s ease;
  pointer-events: none;
}
.image-wrapper-ayur .dark-img {
  display: block;
  height: auto;
  max-height: 142vh;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.8;
  transition: filter 0.3s ease;
  pointer-events: none;
  transform: rotate(15deg);

}

.image-wrapper::after,.image-wrapper-ayur::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33%; 
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  pointer-events: none;
}
.yoga-symbol {
  position: absolute;
  right: 40px;
  top: 30%;
  transform: translateY(-50%);
}
.ayur-symbol{
position: absolute;
  right: 40px;
  top: 34%;
  transform: translateY(-50%);
}


.yoga-symbol img {
   height: clamp(120px, 20vw, 400px);
  width: auto;
  opacity: 0.8;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.ayur-symbol img {
   height: clamp(120px, 13vw, 260px);
  width: auto;
  opacity: 0.8;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.yoga-symbol img:hover{
  position: absolute;
  right: 60px;
  top: 150px;
  transform: translateY(-50%);
  height: auto;
  height: 700px;
  width: auto;
  opacity: 0.1;
  z-index: 1;
}
.ayur-symbol img:hover{
  position: absolute;
  right: 60px;
  top: 150px;
  transform: translateY(-50%);
  height: auto;
  height: 600px;
  width: auto;
  opacity: 0.1;
  z-index: 1;
}

#blueOverlay {
  background-size: cover;
  position: absolute;
  top: 0;
 right: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.symbol-hover-active .dark-img {
  filter: brightness(1.3) contrast(110%);
  opacity: 1;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.symbol-hover-active #blueOverlay {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.symbol-hover-active .yoga-symbol img {
  position: absolute;
  right: 60px; top: 150px; transform: translateY(-50%);
  height: 700px; width: auto; opacity: 0.1; z-index: 1;
}

.symbol-hover-active .ayur-symbol img {
  position: absolute;
  right: 60px; top: 150px; transform: translateY(-50%);
  height: 600px; width: auto; opacity: 0.1; z-index: 1;
}

  .section-controls {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  width: 250px;    
  height: 50px; 
  background: #EDEDED;        
  border-radius: 5px;
  padding: 5px;            
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  z-index: 0; 
}
.section-controls::after {
  content: "Switch to Ayurveda →";
  position: absolute;
  bottom: -22px;             
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 1;
  color: #666;
  pointer-events: none;      
  white-space: nowrap;
}
.section-controls.ayurveda-active::after {
  content: "← Return to Yoga";
}
.switch-btn {
  width: 120px;    
  height: 40px; 
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  background: transparent;
  
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.switch-btn.active {
  background: #000;
  color: #fff;
 
}
.tab-btn {
  transition: all 0.3s ease;
}

.tab-btn:not(.active) {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
  70% { box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}
 
.gallery-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.gallery-row {
  display: flex;
  gap: 20px;
}

.gallery-item {
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%) contrast(70%);
  transition: filter 0.4s ease-in;
}
.gallery-item img:hover{
  filter: grayscale(0%) contrast(100%);
}

.gallery-item-img{
  aspect-ratio: 4 / 3.5;
}
.gallery-item-img-wide{
  aspect-ratio: 974 / 611;
}

.gallery-text{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gallery-item h3 {
margin: 20px 0 0 0;
font-family: 'Geologica', sans-serif;
  font-weight: 500;
font-size: 24px;
line-height: 90%;
letter-spacing: -0.02em;
color: #19191a;
}

.gallery-item p {
  margin: 20px 20px 10px 0;
  font-size: 14px;
  color: #555;
  text-align: right;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
}

.gallery-item.wide {
  flex: 1;
}

.about-button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
  
}
.about-section button{
  background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;  
}
.blog-events{
  position: relative;
  display: flex;
  justify-content: space-between;
 gap:20px;
 width: 100%;
 padding: 0 40px;
}
.blog-events-img{
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}
.blog-block{
  align-items: flex-start;
  text-align: left;
  padding: 40px 0 0 0;
}
.events-block{
  align-items: flex-end;    
  text-align: right;
  padding: 40px 0 0 0;
}

.blog-block .button-plus{
  color: white;
  margin: 0;
}
.events-block .button-plus{
  color: white;
  margin: 0;
  padding-left:40px ;
}

.card-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  box-sizing: border-box;
  padding-top: 40px;
}

.card {
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  max-height: 440px;
}

.card.vertical {
  width: clamp(83px,5.8vw,95px);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: flex-end;    
}

.card.vertical .date {
  font-size: 14px;
  color: #555;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.card.vertical h3 {
  font-size: 25px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #000 ;
}

.card.vertical .plus {
  background: #111;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 5px;
  margin: 0;
}

.card.expanded {
  width: 32.6vw;
  flex-direction: column;
  padding: 0;
  background: #f4f4f4;
  overflow: hidden;
}

.card.expanded {
  animation: expandFadeIn 0.4s ease forwards;
  opacity: 0;
}

.card.collapsing {
  animation: collapseFadeOut 0.3s ease forwards;
}

@keyframes expandFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes collapseFadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.96); }
}


.card.expanded img.expanded-img {
  width: 32.6vw;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%) contrast(70%);
  transition: filter 0.4s ;
}

.card.expanded img.expanded-img:hover {
  filter: grayscale(0%) contrast(100%);
}

.card .expanded .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  animation: contentFade 0.5s ease forwards 0.1s;
  opacity: 0;
}
@keyframes contentFade {
  to {
    opacity: 1;
    
  }
}
.mobile-card {
  display: none;
}
.mobile-card .content{
  padding: 20px;
    display: flex;
    flex-direction: column;
}
.mobile-card.expanded{
  width: clamp(210px, 45vw, 550px);
  flex-direction: column;
  padding: 0;
  background: #f4f4f4;

  overflow: hidden;
}
.mobile-card.expanded img.expanded-img{
  width: clamp(210px, 45vw, 550px);
}
.tablet-row {
  display: none;
}
.tablet-card .content{
  padding: 20px;
    display: flex;
    flex-direction: column;
}
.tablet-card.expanded{
  width: clamp(310px, 37vw, 450px);
  flex-direction: column;
  padding: 0;
  background: #f4f4f4;

  overflow: hidden;
}
.tablet-card.expanded img.expanded-img{
  width: clamp(310px, 37vw, 450px);
}
.card.expanded .expanded-title {
  font-size: 25px;
  color: #000;
  margin: 0;
}

.card.expanded .date {
  font-size: 14px;
  color: #555;
}

.card.expanded .content-text {
  display: flex;
  justify-content: space-between;
  
  max-height: 60px;
}

.card.expanded .text {
  font-size: 14px;
  color: #333;
  text-align: left;
  width: 380px;
  word-wrap: break-word; 
  white-space: normal;
}

.card.expanded .arrow {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-decoration: none;
  align-self: flex-end;
}
.card.expanded .vertical-text,
.card.expanded h3,
.card.expanded .date {
  writing-mode: initial !important;
  transform: none !important;
  text-align: left;
}
.blog-events .button{
  margin: 50px 0 60px 0;
}

.faq-section {
  padding: 40px 40px;
  font-family: 'Geologica', sans-serif;
  position: relative;
}

.faq-section h2 {
  font-weight: 500;
font-size: 84px;
line-height: 90%;
letter-spacing: -0.01em;
color: #131313;
}

.faq-subtitle {
  font-weight: 500;
font-size: 24px;
line-height: 95%;
letter-spacing: -0.02em;
color: #19191a;
margin: 40px 0 35px 0;

}

.faq-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
 
}

.faq-column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #f4f4f4;
  padding: 20px;
  transition: background 0.3s ease;
  position: relative;
}

.faq-item.open {
  background-color: #19191A;
  color: white;
}
.faq-item.open span{
  font-weight: 500;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: -0.02em;
  color: #f5f6f7;
}
.faq-item.open .faq-toggle{
  background: white;
  color: black;
  border: none;
  font-size: 20px;
  border-radius: 5px;
  width: 50px;
  height: 50px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 10px;
}
.faq-question span{
  font-family: 'Geologica', sans-serif;
  font-weight: 500;
font-size: 20px;
line-height: 90%;
letter-spacing: -0.02em;
color: #19191a;
word-wrap: break-word; 
  white-space: normal;
  width: 100%;
}

.faq-toggle {
  background: black;
  color: white;
  border: none;
  font-size: 20px;
  border-radius: 5px;
  width: 50px;
  height: 50px;

}

.faq-answer {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
  display: none;
  max-width: 505px;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
}

.faq-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 45px 0 25px 0;
  
}

.faq-footer h3 {
  font-weight: 500;
font-size: 40px;
line-height: 95%;
letter-spacing: -0.02em;
color: #19191a;
}

.faq-footer button {
  background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  
}

.faq-section-img{
  position: absolute;
  top: 12%;
  right: 0%;
  transform: translate(-50%, -50%);
  
}
.faq-section-img img{
  width: 105px;
  height: 100px;
}
.footer {
  display: flex;
  background-color: #1a1a1a;
  color: white;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
}

.footer-left {
  background-color: #656565;
  padding: 60px 40px;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  
  color: white;
  font-size: 14px;
  gap: 40px;
}

.footer-left h4 {
  font-weight: 500;
font-size: 15px;
line-height: 90%;
letter-spacing: -0.02em;
color: #f5f6f7;
margin-top: 100px;
padding-bottom: 10px;
}

.footer-left p {
  font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #f5f6f7;
padding-bottom: 20px;
}
.footer-left a{
    font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #f5f6f7;

}

.footer-left input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: none;
  background: rgba(37, 37, 38, 0.38)!important;
  color: white;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  outline: none;
}
.footer-left input[type="email"]::placeholder {
  color: #CACACA;
  font-size: 12px;
  padding-left: 10px;
}

.footer-left button {
  background-color: #19191A;
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  display: flex;
  align-items: center;
}

.footer-left .footer-contacts {
  font-size: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 70px;
}
.footer-contacts span {
  word-break: break-word;  
  white-space: normal;      
}
.footer-contacts a{
    text-decoration: none;
    color: #f5f6f7;
}
.checkbox{
    display: flex;
    align-items: flex-start;
}
.checkbox input{
    margin: 3px 5px 0 0;
}
.consent{
    font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #f5f6f7;
}
.consent-black{
color: #19191A;    
}
.policy-note a {
    color: #f5f6f7;
}
.policy-note-black a {
    color: #19191A;
}
.hp { 
    position:absolute; 
    left:-9999px; 
    width:1px; 
    height:1px; 
} 
.newsletter-message { 
    display:none; 
    margin-top:10px; 
    padding:10px 14px; 
    border-radius:6px; 
    text-align:center; 
    font-size:14px; 
}
.newsletter-message.success{
    background: rgba(0,255,0,0.2); 
    color:#064d1a; 
    display:block; 
}
.newsletter-message.error{ 
    background: rgba(220,53,69,0.9); 
    color:#fff; 
    display:block; 
}
button.mailerlite-subscribe-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #f5f6f7;
  width: 210px;
  height: 50px;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}
button.mailerlite-subscribe-submit::after {
  content: "+";
  font-size: 14px;

}

.footer-right {
  flex: 2;
  padding: 40px 90px 20px 40px;
  display: flex;
  flex-direction: column;
  background-color: #19191A;
  color: #F5F6F7;
}
.footer-brand {  
  text-align: center;
}

.footer-text {
  font-size: 20px;
  font-weight: 500;
  max-width: 650px;
  padding: 40px 0 40px 0;
  text-align: left;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 50px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links a{
 font-family: 'Geologica', sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #f5f6f7;
  overflow: hidden;
   transition: 0.5s ease-out;
}
.footer-links ul li a:hover {
  transform: scale(1.1);
}
.main-link{
  padding-bottom: 20px ;
}

.footer-links.footer-nav {
  justify-content: space-between;
  border-top: 1px solid #888;
  padding-top: 20px;
  width: 100%;
}

.footer-bottom {
  font-size: 12px;
  text-align: center;
  opacity: 0.6;
  width: 100%;
  padding-top: 15px; 
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.section-header-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.section-header-title h2{
 font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 40px;
line-height: 95%;
letter-spacing: -0.05em;
color: #19191a;
}
.section-header-title span{
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 4px solid #000;
}

.section-header-disc{
  display:flex;
  justify-content: space-between;
}

.section-header-disc-text h3{
font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 24px;
line-height: 110%;
letter-spacing: -0.02em;
color: #19191a;
max-width: 500px;

}
.section-header-disc-text p{
font-family: 'Geologica', sans-serif;
  font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
max-width: 650px;
padding-top: 20px;

}
.section-header-disc-text strong{
font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 18px;
line-height: 110%;
letter-spacing: -0.02em;
color: #19191a;
}

.section-header-disc img{
  margin-right: 200px;
}
.about-main{
    margin-top: 40px;
    padding-bottom: 95px;
}
.about-img{
    display: flex;

}

.about-img-main{
  width: 55vw;
    height: 60vh;
  object-fit: cover;
}
.shd-img{
  filter: grayscale(100%) contrast(70%);
}
.about-img-component{
    padding-left: 80px;
    width: 35vw;
    height: 60vh;
}
.main-info{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.main-info-wide{
  display: flex;
    justify-content: space-between;
    align-items: end;
}
.main-info-bl-ev{
  display: flex;
    justify-content: space-between;
    align-items: end;
}

.main-info h1{
   font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #19191a;
font-size: clamp(60px, 16vw, 179px);
line-height: 85%;
letter-spacing: -0.01em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
.main-info-wide h1{
   font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #19191a;
font-size: clamp(60px, 14vw, 179px);
line-height: 85%;
letter-spacing: -0.01em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
.main-info-bl-ev h1{
   font-family: 'Geologica', sans-serif;
  font-weight: 100;
  -webkit-text-stroke: 0.06em #19191a;
font-size: clamp(50px, 10vw, 139px);
line-height: 85%;
letter-spacing: -0.01em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.about-main-info button .button-plus{
    padding-left: 100px;
}
.cards-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top:  40px;
  padding-bottom: 60px ;
}

.section-card {
  position: relative;
  overflow: hidden;
  height: auto;
   transition: min-height 0.5s ease;
}

.section-card img {
      aspect-ratio: 1968 / 655;
  width: 100%;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
  transition: filter 0.4s ease-in;
}

.section-card:hover img{
  filter: grayscale(0) contrast(100%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 30px;
  width: 100%;
  color: white;
}
.card-content-wide {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 30px;
  width: 100%;
  color: white;
}

.card-title {
  width: clamp(250px, 19.6vw, 300px);
  background-color: white;
  color: black;
  height: 210px;
  font-weight: bold;
  font-size: clamp(24px, 2.65vw, 40px);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}
.card-title-wide{
 width: clamp(250px, 19.6vw, 300px);
  background-color: white;
  color: black;
  height: 210px;
  font-weight: bold;
  font-size: clamp(24px, 2.65vw, 40px);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}
.card-title-ayur{
   width: clamp(250px, 19.6vw, 300px);
  background-color: white;
  color: black;
  height: 190px;
  font-weight: bold;
  font-size: clamp(24px, 2.65vw, 40px);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}
.card-text {
  width: clamp(400px, 45vw, 670px);
  background-color: white;
  color: black;
  padding: 30px;
  
}

.card-text h4 {
  padding-bottom: 20px;
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.card-text p {
  margin: 0;
  font-size: 15px;
  opacity: 0.85;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  
}
.card-text-wide {
  width: clamp(400px, 45vw, 670px);
  background-color: white;
  color: black;
  padding: 30px;
  
}

.card-text-wide h4 {
  padding-bottom: 20px;
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.card-text-wide p {
  margin: 0;
  font-size: 15px;
  opacity: 0.85;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  
}
.expanded-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: black;
  margin: 0 auto;
  max-width: 800px;
 
}
.expanded-text h4{
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.expanded-text.visible {
  max-height: 1000px; 
  opacity: 0.90;
  padding-bottom: 20px;
     
}
.expanded-text-open{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: black;
  margin: 0 auto;
  max-width: 800px;
}
.expanded-text-open h4{
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
.expanded-text-open.visible {
  max-height: 1000px; 
  opacity: 0.90;
  padding-bottom: 20px;
}

.read-more-btn {
  background: none;
  border: none;
  color: #111;
  font-weight: bold;
  font-size: 14px;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.certifications-section{
    padding-bottom: 60px;
    overflow: hidden;
}

.certification_slider {
  position: relative;
  width: 100%;
  height: 80vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.certification-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.certification-slides img {
  flex: 0 0 100%;  
  max-width: 100%;
  max-height: 100%;
 object-fit: contain;
  filter: grayscale(100%) contrast(70%);
  transition: filter 0.4s ease-in-out;
}

.certification_slider:hover .certification-slides img {
  filter: grayscale(0) contrast(100%);
}
.slider-dots {
  position: absolute;        
  bottom: 40px;              
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EDEDED;
  color: #19191a;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.slider-dots .dot:hover {
 
  transform: scale(1.05);
}

.slider-dots .dot.active {
  background: #19191a;
  color: #f5f6f7;
}

.reviews-section h2{
 font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 40px;
line-height: 95%;
letter-spacing: -0.05em;
color: #19191a;
    }
.reviews-grid {
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  
}

.review-card {
  display: flex;
  background: #ededed;
  height: 100%;
  min-height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
}

.review-left {
  flex: 1;
  padding: 30px 30px 35px 30px;
  display: flex;
  flex-direction: column;
  
}
.review-title{
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 17px;
letter-spacing: -0.02em;
color: #19191a;
padding-bottom:20px ;
}
.review-text{
  margin-top: auto;
  margin-bottom: auto;
 font-family: 'Geologica', sans-serif;
  font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;

}

.review-right {    
  padding: 30px;
  background-color: #d9d9d9;;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
}
.user-info h2{
  font-weight: 600;
  font-size: 17px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #19191a;
  max-width: 150px;
}
.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 20px;
}
.user-info-title{
  font-weight: 300;
font-size: 15px;
line-height: 110%;
letter-spacing: -0.02em;
color: #19191a;
}
.user-video-link a {
 color: #19191a;             
  text-decoration: underline; 
  font-weight: 500;
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom:60px ;
}

.pagination li {
    color: #111;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
  background: #EDEDED;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination li.active {
  background: black;
  color: white;
}

.reviews-section .button {
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-page-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}

.shop-filters {
  width: 100%;
  flex-shrink: 0;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
}

.shop-filters h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.shop-filters .filter-section {
  margin-bottom: 30px;
}

.shop-filters .filter-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.shop-products {
  flex-grow: 1;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  list-style: none;
}

.custom-product-card {
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-product-card .product-thumbnail {
  position: relative;
}

.custom-product-card .product-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(80%) contrast(80%);
}

.custom-product-card .lesson-title {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.custom-product-card .product-info {
  margin: 15px 20px 20px 20px;
}

.product-info-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.woocommerce-loop-product__title {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #19191a;
  max-width: 180px;
}

.short-description {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #19191a;
  min-height: 42px;
  max-width: 170px;
  word-wrap: break-word; 
  white-space: normal;
  align-self: flex-end;
}

.price {
  font-family: 'Geologica', sans-serif;
  font-weight: 100;
  font-size: 40px;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0.06em #19191a;
  color: #19191a;
}

.product-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}

.read-button,
.custom-product-card .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 300;
  
  transition: all 0.2s ease;
  text-decoration: none;
  width: 80px;
  height: 50px;
}

.read-button {
  background: #fff;
  color: #19191a;
}

.custom-product-card .button {
  background: #000;
  color: #fff;
}

.custom-product-card .button:hover {
  background: #333;
}

.woocommerce-result-count {
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #19191a;
}

.woocommerce-ordering {
  text-align: right;
}

.woocommerce-ordering select {
  appearance: none;
  background: #fff;
  color: #19191a;
  border: 1px solid #19191a;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'Geologica', sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #19191a;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Geologica', sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #19191a;
  background: #fff;
  transition: .2s ease;
}

.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers .current {
  background: #19191a;
  color: #fff;
}
.quantity {
  display: none !important;
}

.ayurveda-main{
    margin-top: 40px;
    opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.ayurveda-img{
    display: flex;
}
.ayurveda-img-main{
    width: 55vw;
    height: 60vh;
    transition: transform 0.2s linear;
}

.ayurveda-img-component{
    padding-left: 80px;
    width: 35vw;
    height: 60vh;
}
.ayurveda-main-info{
    display: flex;
    justify-content: space-between;
}

.ayurveda-main-info h1{
    font-weight: 600;
font-size: 150px;
line-height: 85%;
letter-spacing: -0.05em;
text-align: justify;
color: #19191a;
animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.ayurveda-main-info button{
    background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  align-self: flex-end; 
  
}
.ayurveda-main-info button .button-plus{
    padding-left: 100px;
}
.fade-section {
  opacity: 0;
  transition: opacity 1s ease, transform 0.7s ease;
  transform: translateY(30px); 
}

.fade-section.active {
  opacity: 1;
  transform: translateY(0);
}

#quiz-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 20px;
}
#quiz-container h2{
   font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 40px;
line-height: 95%;
letter-spacing: -0.05em;
color: #19191a;
padding-bottom: 40px;
}
#quiz-container p{
   font-family: 'Geologica', sans-serif;
  font-weight: 500;
font-size: 24px;
letter-spacing: -0.02em;
color: #19191a;
padding-bottom: 40px;
}

.quiz-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.quiz-slide.in {
  opacity: 1;
  transform: translateY(0);
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.option {
  flex: 1 1 45%;
  padding: 18px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  text-align: center;
  font-size: 16px;
  color: #19191a;
  transition: background 0.2s, transform 0.2s;
}

.option:hover {
  background: #eee;
  transform: scale(1.02);
}

.option.selected {
  background: #222;
  color: #fff;
  border-color: #222;
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 60px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.quiz-controls button{
display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #f5f6f7;
  width: 210px;
  height: 50px;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.arrow, .arrow-r {
  transition: transform 0.3s ease;
}
.quiz-controls button:hover {
  background-color: #444;
}
.quiz-controls button:hover  .arrow{
  transform: translateX(3px);
}
.quiz-controls button:hover  .arrow-r{
  transform: translateX(-3px);
}

.quiz-result {
  display: none;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 12px;
  font-family: 'Geologica', sans-serif;
  font-weight: 500;
font-size: 24px;
letter-spacing: -0.02em;
color: #19191a;
}
.quiz-result.visible {
  display: block;
  padding: 0;
}


.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
.fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.calendars-section {
  margin: 0 auto;
}
.calendar-carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.calendar-card {
  background: #EDEDED;
  flex: 0 0 50%; 
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
}

.calendar-ayurveda-embed iframe {
  width: 100%;
  height: 550px; 
  border: none;
}

.calendar-info {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  
}

.calendar-title {
  display:flex ;
  flex-direction: column;
  gap: 20px;
}
.calendar-title h1{
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
font-size: 17px;
letter-spacing: -0.02em;
color: #19191a;
}
.calendar-title p{
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
 word-wrap: break-word; 
  white-space: normal;

}

.calendar-actions {
  display: flex;
  flex-direction: column;
justify-content: flex-end;
  gap: 20px;
}

.calendar-actions .white {
  background: #F5F6F7;
  color: #111;
}
.pagination-ayurveda {
  
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 40px;
  justify-content: center;
}

.pagination-ayurveda li {
    color: #111;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
  background: #EDEDED;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.pagination-ayurveda li.active {
  background: black;
  color: white;
  transform: scale(1.1);
}


.calendar-actions .add-btn:hover {
  background: #d5d5d5;
}

.calendar-actions .book-btn:hover {
  background: #333;
}


.footer{
  margin-top: 60px;

}
.blog-main{
    margin-top: 40px;
    padding-bottom: 95px;
}
.blog-img{
    display: flex;

}
.blog-img-main{
    width: 55vw;
    height: 60vh;
}
.blog-img-component{
    padding-left: 80px;
    width: 35vw;
    height: 60vh;
}
.blog-main-info{
    display: flex;
    justify-content: space-between;
    
}

.blog-main-info h1{
    font-weight: 600;
font-size: 150px;
line-height: 85%;
letter-spacing: -0.05em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.blog-main-info button{
    background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  align-self: flex-end; 
  
}
.blog-main-info button .button-plus{
    padding-left: 100px;
}
.blog-event-section{
    padding-top: 20px;
    
}
.bl-ev-container{
    height: 660px;
    width: 100%;
    margin-top: 40px;
}
.bl-ev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bl-ev-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bl-ev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.bl-ev-grid .bl-ev-card {
  transform: scale(0.8) rotate(-3deg);
  animation: pop-in 0.6s forwards;
}

@keyframes pop-in {
  0% {
    transform: scale(0.9) rotate(-3deg);
  }
  60% {
    transform: scale(1.02) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.bl-ev-image{
position: relative;
}
.bl-ev-image img:not(.bl-ev-post-logo) {
  width: 100% !important;
  height: 350px !important;  
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(70%);
  transition: 0.5s ease-in-out;
}
.bl-ev-image img:hover{
  filter: grayscale(0) contrast(100%);
}
.bl-ev-lesson-title {
  position: absolute;
  bottom: 25px; 
  left: 25px;   
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  
}
.bl-ev-post-logo{
  position: absolute;
  bottom: 25px; 
  right: 25px;
  width: 75px;
  height: auto; 
}

.bl-ev-card-content {
  padding: 30px;
  display: flex;
  justify-content: space-between;
 background-color: #EDEDED;
 
}

.bl-ev-title {
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 20px;
  color: #19191A;
}

.bl-ev-excerpt {
  font-size: 15px;
  color: #19191A;
  width: 23vw;
  height: 75px;
}
.bl-ev-card-butn{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button a{
  text-decoration: none;
  color: #EDEDED;
}
.button-white a{
  text-decoration: none;
  color: #19191A;
}

.button:hover {
  background: #444;
}

.contact-main{
    margin-top: 40px;
    padding-bottom: 95px;
}
.contact-img{
    display: flex;

}
.contact-img-main{
    width: 55vw;
    height: 60vh;
}
.contact-img-component{
    padding-left: 80px;
    width: 35vw;
    height: 60vh;
}
.contact-main-info{
    display: flex;
    justify-content: space-between;
    
}

.contact-main-info h1{
    font-weight: 600;
font-size: 150px;
line-height: 85%;
letter-spacing: -0.05em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.contact-main-info button{
    background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  align-self: flex-end; 
  
}
.contact-main-info button .button-plus{
    padding-left: 100px;
}
.contact-grid {
 display: flex;
  gap: 2rem;
  color: #111;
  
}
#form-response {
  font-size: 14px;
  padding-top: 10px;
  font-weight: 500;
  
}
.contact-form {
  display: flex;
  flex-direction: column;
   flex: 1;
   background: #f5f5f5;
   padding: 20px 20px 40px 20px;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 550px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-wrap{
   flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.form-wrap label{
font-family: 'Geologica', sans-serif;
font-weight: 500;
font-size: 15px;
line-height: 90%;
letter-spacing: -0.02em;
color: #19191a;
}

.form-row {
  display: flex;
 gap: 20px;
}

.form-row label {
  font-weight: 600;
}

.contact-form input,.contact-form  select,.contact-form  textarea {
  padding: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  background: white;
    border-bottom: 2px solid black;
    outline: none;
}

.contact-form  textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: black;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  width: fit-content;
}

.contact-form button .plus {
  font-size: 20px;
}

.contact-info {
  flex: 1;
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: center;
}
.contact-info img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  flex-grow: 1;
  margin-bottom: 20px;
  filter: grayscale(100%) contrast(70%);
  transition: 0.4s ease-in;
}
.contact-info img:hover{
 filter: grayscale(0) contrast(100%);
}

.info-block {
  padding: 80px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #f5f5f5;
  align-items: center;
  align-self: flex-end;
}

.info-block h3 {
  font-family: 'Geologica', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 95%;
    letter-spacing: -0.05em;
    color: #19191a;
}
.info-block span{
  width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 4px solid #000;
   
}

.submit-wrap{
  display: flex;
  justify-content: space-between;
}

.custom-single-product {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
}

.product-gallery {
  flex: 1 1 50%;
  max-width: 600px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.product-thumbnails img {
  width: 80px;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}
.product-header{
  display: flex;
  padding:40px ;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding-left: 20px;
}
.product-info-btm{
  display: flex;
  flex-direction: column;
}

.product-title {
      font-family: 'Geologica', sans-serif;
    font-weight: 300;
    font-size: 40px;
    letter-spacing: -0.02em;
    -webkit-text-stroke: 0.04em #19191a;
    color: #19191a;
    width: clamp(150px,28vw,280px);
}

.product-description {
  line-height: 1.6;
  color: #19191A;
  font-size: 15px;
}

.single_add_to_cart_button {
  margin-top: 20px;
  text-align: center;
}
.single_add_to_cart_button::after {
  content: " +";
  font-weight: bold;
  
}

.single-product-wrapper img {
 width: 55vw;
    height: 70vh;
    object-fit: cover;
}
.product-info-bottom{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.navbar-about{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  animation: fade-down 0.5s; 
  position: relative;
  z-index: 99;
}


.nav-links-about {
  list-style: none;
  display: flex;
  gap: 25px;
  z-index: 9999;
}

.nav-links-about a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-align: right;
  color: #111;
  transition: color 0.2s;
  padding-left: 50px;
  overflow: hidden

}
.nav-links-about a span.active{
  background-color: black;
  color: #f5f6f7;
padding: 4px 10px;
  
}

.nav-links-about .dropdown{
  position: absolute;
  text-decoration: none;
  list-style: none;
  display: block;
  visibility: hidden;
  opacity: 0;
  margin-top: 0.4em;
  transition: 0.5s ease-out;
}

.nav-links-about .dropdown a{
  padding-right:50px;
  
}
.dropdown li{
  margin-top: 18px;
}

.nav-links-about :hover .dropdown {
  visibility: visible;
  opacity: 1;
  background-color: transparent;
}

.nav-links-about .dropdown li:hover{
 transform: scale(1.1);
  transition: 0.5s ease-out;
}
.nav-links-about .dropdown li a:hover{
  color: #111;
}
.container{
    padding: 0 40px 0 40px;
}
.yoga-main{
    margin: 30px 0 95px 0;
}
.yoga-img{
    display: flex;

}
.yoga-img-main{
    width: 54vw;
    height: 64vh;
    filter: contrast(90%);
}
.yoga-img-component{
    padding: 80px 0 0 80px;
    width: 35vw;
    height: 55vh;
}
.yoga-main-info{
    display: flex;
    justify-content: space-between;
}
.yoga-main-info h1{
    font-weight: 600;
font-size: 150px;
line-height: 85%;
letter-spacing: -0.05em;
text-align: justify;
color: #19191a;
}

.yoga-main-info button .button-plus{
    padding-left: 100px;
}
.online-lessons{
  margin: 20px 0 60px 0;
}
.section-header-yoga {
  display: flex;
  
  flex-direction: column;
  margin-bottom: 40px;
}
.section-header-title-yoga{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.section-header-title-yoga h2{
  font-weight: 500;
font-size: 40px;
line-height: 95%;
letter-spacing: -0.05em;
color: #19191a;
}
.section-header-title-yoga span{
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 4px solid #000;
}

.section-header-disc-yoga{
  display:flex;
  justify-content: space-between;
}
.section-header-disc-text-yoga{
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}
.section-header-disc-text-yoga h3{
font-weight: 600;
font-size: 24px;
line-height: 110%;
letter-spacing: -0.02em;
color: #19191a;
max-width: 350px;
margin-top: 20px;
}
.section-header-disc-text-yoga p{
font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
max-width: 445px;
padding-top: 20px;

}

.section-header-disc-yoga img{
  margin-right: 200px;
}
.yoga-course{
 padding: 20px 0 60px 0;
}

.calendar-content {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px 0 40px 0;
     height: 700px;
}

.calendar-embed {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 65px 0;
}
.controls-title p{
font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
}
.controls-title a{
font-weight: 600;
text-decoration: underline;
text-decoration-skip-ink: none;
color: #19191a;
}
.controls button {
  padding: 12px 20px;
  border: none;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-radius: 5px;
  
}
.controls button p{
  padding: 0;
}

.controls .white{
  background-color: #EDEDED;
  color: #000;
  
}

.consultation-quest{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  padding-top: 40px;
  
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eee;
    max-height: 530px;
  }
 
  .slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(100%) contrast(70%);
    transition: 0.4s ease-in-out;
  }
 .slides img:hover {
    filter: grayscale(0) contrast(100%);
  } 
  .slider-btn {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    color: #F5F6F7;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
  background: #19191A;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  
  }
  .slider-btn.left { left: 20px; }
  .slider-btn.right { right: 20px; }

@keyframes fade-in {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}
.cms-container {
  margin-top: 40px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@keyframes pop-in {
  0% {
    transform: scale(0.9) rotate(-3deg);
  }
  60% {
    transform: scale(1.02) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.lesson-title {
  position: absolute;
  bottom: 25px; 
  left: 25px;   
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  
}
.post-logo{
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 75px;
  height: auto; 
}

.post-title {
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 20px;
  color: #19191A;
}

.button a{
  text-decoration: none;
  color: #EDEDED;
}
.button-white a{
  text-decoration: none;
  color: #19191A;
}

.button:hover {
  background: #444;
}

.pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 40px;
  justify-content: center;
}

.pagination .page-numbers {
  color: #111;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
  background: #EDEDED;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  text-decoration: none;
}

.pagination .current,
.pagination .page-numbers:hover {
  background: #19191a;
  color: #f5f6f7;
  transform: scale(1.1);
}
.dots::after,
.dots {
  animation: none !important;
}
.post-card.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  color: #999;
  font-style: italic;
  border: 2px dashed #ddd;
  min-height: 250px;
}
.single-main{
    margin: 30px 0 95px 0;
}
.single-img{
    display: flex;
    position: relative; 
  width: 100%;
  height: 60vh;
}
.single-img-main img{
  width: 52vw;
  height: 100%;
  object-fit: cover;
}
.single-img-component{
    position: absolute;
  top: 50px;
  right: 80px; 
  width: 30vw;
  height: 80%;
  pointer-events: none;
}
.datenschutz-title {
    padding-left: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #111; 
  text-align: center;
  position: relative;
}
.lesson-title-main{
  font-size: 16px;
}

.video-preview img{
   width: 100% !important;
  height: 350px !important;  
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(70%);
  transition: 0.5s ease-in-out;
}
.lesson-content{
  color: #000;
}
.lesson-title-main-scrpt {
  position: absolute;
  bottom: 0;
  left: 20px;
  font-weight: 600;
  font-size: clamp(30px ,5vw,50px);
  line-height: 95%;
  letter-spacing: -0.05em;
  color: #19191a;
  text-transform: lowercase;
  max-width: 110px; 
  word-wrap: break-word;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;   
  align-items: flex-start; 
  
}

.lesson-title-main-scrpt span {
  text-align: left;
}
.yoga-post-content{
  padding-top: 20px;
  color: #19191a;
}
.yoga-post-content p{
  font-weight: 300;
font-size: 15px;
letter-spacing: -0.02em;
color: #19191a;
padding: 20px 0;
}
.yoga-post-content .controls-title p {
    padding: 0 !important;
}

.datenschutz-main{
    margin-top: 40px;
    padding-bottom: 95px;
}
.datenschutz-img{
    display: flex;
     position: relative; 
  width: 100%;
  height: 60vh;
}
.datenschutz-img-main{
    width: 55vw;
  height: 100%;
  object-fit: cover;
}
.datenschutz-img-component{
    position: absolute;
  top: 0;
  right: 0; 
  width: 35vw;
  height: 100%;
  pointer-events: none;
}
.datenschutz-title {
  font-size: 16px;
  color: #19191a;
  padding-left: 20px;
  
}
.datenschutz-title-top a{
     position: relative;
    font-weight: 300;
font-size: 16px;
line-height: 110%;
letter-spacing: -0.02em;
text-decoration: none;
color: #19191a;
transition: color 0.5s ease;
}
.datenschutz-title-top a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; 
    width: 0;
    height: 1.5px;
    background: #19191a;
    transition: width 0.3s ease;
}

.datenschutz-title-top a:hover::after {
    width: 100%;
}
.datenschutz-title .divider {
  font-weight: 300;
  padding: 0 4px;
}

.datenschutz-title .current {
  font-weight: 600;
}
.datenschutz-main-info{
    display: flex;
    justify-content: space-between;
    
}

.datenschutz-main-info h1{
    font-weight: 600;
font-size: 150px;
line-height: 85%;
letter-spacing: -0.05em;
text-align: justify;
color: #19191a;
animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.datenschutz-main-info button{
    background-color: black;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  width: fit-content;
  display: flex;
  align-items: center;
  align-self: flex-end; 
  
}
.datenschutz-main-info button .button-plus{
    padding-left: 100px;
}
.breadcrumb {
  font-size: 14px;
  color: #19191A;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #19191A;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
.product-description-block{
  padding: 40px;
}
.section-title{
  color: #19191a;
   font-weight: 300;
font-size: 40px;
line-height: 110%;
letter-spacing: -0.02em;
-webkit-text-stroke: 0.03em #19191a;
text-decoration-skip-ink: none;
padding-bottom: 40px;
}

.bl-ev-container {
  margin-top: 40px;
  height:auto;
  width: 100%;
}

.posts-grid-bl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  background: #fff;
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}
.posts-grid .post-card {
  transform: scale(0.8) rotate(-3deg);
  animation: pop-in 0.6s forwards;
}

@keyframes pop-in {
  0% {
    transform: scale(0.9) rotate(-3deg);
  }
  60% {
    transform: scale(1.02) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.post-image{
position: relative;
}
.post-image img:not(.post-logo) {
  width: 100% !important;
  height: 350px !important; 
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(70%);
  transition: 0.5s ease-in-out;
}
.post-image img:hover{
  filter: grayscale(0) contrast(100%);
}
.lesson-title {
  position: absolute;
  bottom: 25px; 
  left: 25px;   
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  
}
.post-logo{
  position: absolute;
  bottom: 25px; 
  right: 25px;
  width: 75px;
  height: auto; 
}

.post-card-content {
  padding: 30px;
  display: flex;
  justify-content: space-between;
 background-color: #EDEDED;
 margin-top: 20px;
 gap: 20px;
}
.post-card-content-bl-ev {
    height: 200px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
 background-color: #EDEDED;
 margin-top: 20px;
 gap: 20px;
}

.post-title {
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 20px;
  color: #19191A;
}

.post-excerpt {
  font-size: 15px;
  color: #19191A;
  width: 23vw;
  height: 75px;
  word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.post-excerpt-short{
  display: none;
  font-size: 14px;
  color: #19191A;
  height: 75px;
  word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.post-excerpt-short-bl{
  display: none;
  font-size: 14px;
  color: #19191A;
  height: 75px;
  word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.post-excerpt-bl{
font-size: 15px;
  color: #19191A;
  width: 13vw;
  height: 75px;
    overflow-wrap: break-word;
    white-space: normal;
}
.post-card-butn{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-card-butn-bl-ev{
  display: flex;
  flex-direction: column;
justify-content: center;
  gap: 16px;
}

.post-card-butn-bl-ev .button-white{
  background-color: #F5F6F7;
  padding: 12px 20px;
  height: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-radius: 5px;
  color: #19191A;
  width: 170px;
  text-decoration: none;
  font-size: 14px;
}

.post-card-butn-bl-ev .button{
 display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #f5f6f7;
  width: 170px;
  height: 50px;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.post-card-butn-bl-ev .button-plus, .post-card-butn-bl-ev .button-plus{
  padding: 0;
}

.button a{
  text-decoration: none;
  color: #EDEDED;
}
.button-white a{
  text-decoration: none;
  color: #19191A;
}

.button:hover {
  background: #444;
}

.shop-pagination {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 40px;
  justify-content: center;
}

.shop-pagination .page-numbers {
  color: #111;
  border: none;
  font-size: 15px;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  background: #EDEDED;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  text-decoration: none;
}

.shop-pagination .current,
.shop-pagination .page-numbers:hover {
  background: black;
  color: white;
  transform: scale(1.1);
}
.products.is-loading {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.products.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    #f0f0f0,
    #f0f0f0 10px,
    #e0e0e0 10px,
    #e0e0e0 20px
  );
  background-size: 200% 100%;
  animation: loaderMove 1.2s linear infinite;
  opacity: 0.6;
}

@keyframes loaderMove {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#shop-page-container .added_to_cart.wc-forward { 
  display: none !important; 
}

.dots::after,
.dots {
  animation: none !important;
}
.post-card.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  color: #999;
  font-style: italic;
  border: 2px dashed #ddd;
  min-height: 250px;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
#shop-page-container .animate-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-item.delay-1 { transition-delay: 0.1s; }
.animate-item.delay-2 { transition-delay: 0.2s; }
.animate-item.delay-3 { transition-delay: 0.3s; }
.animate-item.delay-4 { transition-delay: 0.4s; }
.animate-item.delay-5 { transition-delay: 0.5s; }


   
   #dat p, #impres p{
    white-space: normal;
    word-break: break-word; 
    overflow-wrap: anywhere;
   }
   .woocommerce-order-received .woocommerce {
    max-width: 900px; 
    margin: 40px auto 0;
    padding: 0 40px; 
}

   .woocommerce-checkout .wc-block-components-sidebar-layout {
    padding: 0 40px;
   
    box-sizing: border-box;
}
   .woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}


.woocommerce-MyAccount-navigation {
    background: #19191A; 
    padding: 20px;
    border-radius: 10px;
    flex: 0 0 250px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #333;
}


.woocommerce-MyAccount-content {
    flex: 1;
    background: #f5f5f5; 
    padding: 30px;
    border-radius: 10px;
    color: #19191A;
}


.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #19191A;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin-bottom: 20px;
}


.woocommerce table.my_account_orders {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.woocommerce table.my_account_orders th {
    background: #f7f7f7;
    border-radius: 2px;
    color: #19191A;
}


.woocommerce-account a.button,
.woocommerce-account button.button {
  
    display: flex;
  align-items: center;
  justify-content: space-between;
  background: #19191A;
  color: #f5f6f7;
  width: 210px;
  height: 50px;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;

}
.woocommerce-account .woocommerce a.button::after,
.woocommerce-account .woocommerce button.button::after {
    content: "+";
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #333;
}

   .woocommerce-MyAccount-content a {
    color: #19191A;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline; 
}

.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  display: none; 
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button{
  background: #F5F6F7;
  color: #19191A;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-banner #cookie-decline{
    background: none;
    border: 2px solid #F5F6F7;
    color:  #F5F6F7;
}

.newsletter-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.newsletter-popup__content {
  background:#F5F6F7;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease;
}

.newsletter-popup__content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.newsletter-popup__content p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #19191A;
}

.newsletter-popup__content input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.newsletter-popup__close {
position: absolute;
  top: 20px;
  right: 30px;
  font-size: 20px;
  cursor: pointer;
  color: #19191A;
  background: none;
   border: none;      
  outline: none; 
}


@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to   {opacity: 1; transform: translateY(0);}
}



@media (max-width: 1500px){
  .posts-grid-bl{
    grid-template-columns: repeat(2, 1fr)
  }
  .post-excerpt-bl{
    width: 100%;
  }
  .card.expanded .text{
    width: 280px;
  }
}
@media (min-width:1200px) and (max-width: 1500px){
  .blog-events{
    gap: 0;
  }
  .card.expanded{
    width: 29vw;
  }
  .card.expanded img.expanded-img{
    width: 29vw;
  }
}
@media (max-width: 1300px){
  .products-grid{
        grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1250px) {
  .reviews-grid {
    grid-template-columns: 1fr; 
  }
  .section-header-disc img{
    margin-right: 0;
  }
  .post-excerpt{
    font-size: 13px;
  }
  .button-plus{
    padding-left: 0;
  }
  .button-white{
    width: 160px;
  }
  .button{
    width: 160px;
  }
  .contact-grid{
    flex-direction: column;
  }
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
   .page-template-datenschutz .single-img-component{
    top: 60px;
    right: 120px;
    width: 20vw;
    height: 70%;
    }
    .section-controls {
    top: auto;
    bottom: 120px;  
  }
}
@media (max-width:1200px){
.nav-links {
    display: none;
  }
  .nav-links-about {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
  .close-menu-icon{
    position: absolute;
    top: 55px;
    right: 40px;
  }
}

@media (min-width:1100px) and (max-width: 1200px) {
 
  .card.expanded{ 
  width: clamp(310px, 37vw, 450px);
  padding: 0;
  background: #f4f4f4;
  overflow: hidden;
}
.card.expanded.expanded img.expanded-img{
  width: clamp(310px, 37vw, 450px);
}
.blog-events{
  gap: 0;
}
.about-img-component{
  height: 50vh;
}
.about-img-main{
   height: clamp(300px,60vh,450px);
}

  
} 
@media (max-width: 1100px) {
  .about-img-main{
   height: clamp(300px,50vh,450px);
}

  .mobile-card {
    display: block;
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    
    
  }
  .card-container{
    display: none;
  }
  .tablet-row{
    display: none;
  }
  .blog-events{
    gap: 0px;
  }
  .about-img-component{
    height: 50vh;
  }
}

@media (max-width: 1080px) {
  .navbar{
    position: fixed;
    z-index: 999;
    width: 100%;
  }
  .navbar-about{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    left: 0;
  }

  .page-template-datenschutz .datenschutz-title{
    display: none;
  }
  .mobile-menu{
    padding: 40px;
  }
  .woocommerce-account .woocommerce{
    padding: 140px 0 50px 0 ;
  }
}
@media (max-width: 1024px) {

  .about-button-wrapper{
    justify-content: flex-start;

  }
  .section-header-disc-text p{
    max-width: 100%;
  }
  .expanded-text{
    max-width: 100%;
  }
  .text-content {
    max-width: 100%;
    
    margin-bottom: 20px;
  }

  .yoga-symbol, .ayur-symbol {
    position: absolute;
    right: 20px;
    top: 20%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    background-color: #000;
  }

  .card-content{
    position: relative;
    display: flex ; 
    justify-content: space-between; 
    gap: 20px; 
    padding: 30px 30px; 
    width: 100%; 
    color: white;
  }
  .card-content-wide{
    position: absolute;
    bottom: 0;
    right: 0;
    
    gap: 20px; 
    padding: 30px 30px; 
    color: white;
  }
  .card-text-wide{
    display: none;
  }
  .card-title{
    background-color: transparent;
    display: flex;
    align-items: center;
  }
  .cards-section{
    gap: 20px;
  }
  #expanded-text-open{
    opacity: 1;
    max-height: 800px;
    padding: 0 30px;
  }
  
  .posts-grid{
    grid-template-columns: 1fr;
  }
  .post-excerpt{
    width:50vw;
  }
  
  .gallery-flex{
    display: flex;
    
  }
  .gallery-row{
    flex-direction: column;
  }
  .section-header-title span{
    display: none;
  }
  .section-header-disc img{
    display: none;
  }
  .footer {
    flex-direction: column;
  }
  .footer-left, .footer-right {
    max-width: 100%;
    width: 100%;
  }
  .footer-right {
    padding: 40px;
  }
  .footer-text {
    text-align: left;
    padding: 30px 0 30px 0;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
  }

  .footer-links ul {
    width: 100%;
  }

  .footer-links.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 60px;
    align-items: flex-start;
    padding-top: 20px;
  }
  .single-img-component{
    right: 40px;
  }
  .page-template-datenschutz .single-img-component{
    right: 70px;
        width: 18vw;
  }
  .footer-left h4{
    margin-top: 20px;
  }
  

}
 @media (max-width: 900px) {
  .image-wrapper, .image-wrapper-ayur{
    display: none;
  }
    .consultation-quest {
      grid-template-columns: 1fr;
    }
    .posts-grid-bl{
      grid-template-columns: 1fr
    }
    .products-grid{
    grid-template-columns: 1fr;
  }
  .custom-product-card .short-description{
    max-width: 100%;
  }

  .yoga-symbol img{
        position: absolute;
    right: 60px;
    top: 150px;
    transform: translateY(-50%);
    height: 700px;
    width: auto;
    opacity: 0.1;
    z-index: 1;
  }
  .ayur-symbol img{
     position: absolute;
    right: 0;
    top: 240px;
    transform: translateY(-50%);
    height: 500px;
    width: auto;
    opacity: 0.1;
    z-index: 1;
  }
  .mobile-card.expanded{
  width: clamp(210px, 42vw, 550px);

}
.mobile-card.expanded img.expanded-img{
  width: clamp(210px, 42vw, 550px);
}
.card.expanded .text{
  width: 230px;
}
.breadcrumb{
  width: 200px;
}
.page-template-datenschutz .single-img-component{
  display: none;
}
.page-template-datenschutz .single-img-main{
    width: 100%;
  }
  }
    @media (max-width: 768px) {
      .navbar{
        position: fixed;
        width: 100%;
        left: 0;
        z-index: 99;
    }
      .navbar-about{
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 99;
      }
      .about-img-component{
        height: 50vh;
        padding-left: 60px;
        width: 30vw;
      }
      .char-symbol-large{
        display: none;
      }
          .blog-events{
            flex-direction: column;
            padding: 20px;
          }
          .events-block{
            align-items: flex-start;
            text-align: left;
          }
           .mobile-card.expanded{
    width: 100%;

  }
      .mobile-card.expanded img.expanded-img{
  width: 100%;
}

      .container{
           padding: 0 20px;
      }
       
.main{
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}
.section-content{
  padding: 20px;
}
.main-text{
  display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.main-text h1{
  font-size: clamp(65px,11vw,85px);
}
    
  .image-wrapper img {
    max-height: 80vh;
  }

  .yoga-symbol img{
    position: absolute;
        right: 0px;
        top: 150px;
        transform: translateY(-50%);
        height: 700px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .ayur-symbol img{
    position: absolute;
        right: 0px;
        top: 150px;
        transform: translateY(-50%);
        height: 400px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .card-title, .card-title-wide{
    display: none;
  }
  .card-title-ayur{
    display: none;
  }
  .card-text{
    width: 100%;
    padding: 0;
  }

      .about-section{
        padding:  20px;
      }
      .faq-section{
        padding:  20px;
      }
      .faq-footer h3{
        font-size: 30px;
      }
      .gallery-flex{
        flex-direction: column;
      }
      
    .text-content {
      padding-right: 0;
    }
    .image-content {
      justify-content: center;
      margin-top: 20px;
    }
.card-content-wide{
position: relative;
    
    color: white;
  }
    
  .reviews-section {
    padding: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-user {
    flex-direction: row;
  }

  .book-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .pagination {
    justify-content: center;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .controls {
    align-items: stretch;
    gap: 20px;
  }

  
  .calendar-title p{
    font-size: 13px;
  }
  .calendar-info .button-white{
      width: 130px;
      font-size: 12px;
    }
    .calendar-info .button{
      width: 130px;
      font-size: 12px;
    }
    .main-info-wide h1{
      font-size: clamp(60px, 14vw, 179px);
    }
    .section-header-title-yoga span{
      display: none;
    }
    .datenschutz-title-top{
      display: none;
    }
    .review-right{
      width: 200px;
    }
    ul.products{
      gap: 20px;
    }
    .product-info-bottom{
      flex-direction: column;
    }
    .product-buttons{
      justify-content: flex-start;
    }
    .custom-product-card{
      width: clamp(250px, 45vw, 350px);
    }
    .read-button, .custom-product-card .button {
      width: 150px;
    }
        .breadcrumb {
        display: none;
    }
    .product-header{
      flex-direction: column;
      gap: 20px;
    }
    .product-template-default .product-info{
      flex-direction: row;
      padding-left: 0;
    }
    .single-product-wrapper img{
      width: 100%;
    }
        .product-info-btm {
    
        align-self: flex-end;
    }
    .product-header {
    padding: 20px;
}
    .product-description-block {
    padding: 20px;
}
.single-product-wrapper img{
  height: 52vh;
}
.product-title{
  width: clamp(150px, 45vw, 400px);
}

    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 20px;
        padding: 120px 40px 50px 40px;
    }

    .woocommerce-MyAccount-navigation {
        flex: unset;
        width: calc(100% - 40px); 
        margin: 0 auto;
        padding: 15px;
    }

    .woocommerce-MyAccount-navigation ul li a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .woocommerce-MyAccount-content {
        width: calc(100% - 40px); 
        margin: 0 auto;
        padding: 20px;
    }

    .woocommerce-account a.button,
    .woocommerce-account button.button {
        width: calc(100% - 40px); 
        margin: 0 auto;
        justify-content: center; 
    }

    .woocommerce-account .woocommerce a.button::after,
    .woocommerce-account .woocommerce button.button::after {
        display: none; 
    }
    

    .woocommerce table.shop_table_responsive tr td:before {
        margin-bottom: 15px; 
        display: inline-block; 
    }
    .woocommerce-info .button.wc-forward {
    margin-top: 20px; 
    float: left; 
}
.woocommerce-account .woocommerce-Button.button {
    margin-top: 20px;
}
.section-controls {
  
    width: 200px;
    height: 40px;
    padding: 4px;
  }

  .switch-btn {
    width: 95px;    
  height: 32px;
    font-size: 14px;
  }
  .woocommerce-ordering {
    text-align: left;
    margin-top: 10px;
  }
  }


  @media (max-width: 600px) {
    .post-card-content{
      padding: 20px;
    }
    .card-content{
      padding: 20px 20px; 
    }
    .post-excerpt{
      display: none;
    }
    .post-excerpt-short{
      display: block;
      width: 45vw;
    }
    .post-excerpt-bl{
      display: none;
    }
    .post-excerpt-short-bl{
      display: block;
      width: 35vw;
    }
    .post-title{
      font-size: 15px;
    }
    .post-card-butn .button-white{
      width: 130px;
      font-size: 12px;
    }
    .post-card-butn .button{
      width: 130px;
      font-size: 12px;
    }
    .post-card-butn-bl-ev .button-white{
      width: 130px;
      font-size: 12px;
    }
    .post-card-butn-bl-ev .button{
      width: 130px;
      font-size: 12px;
    }
  .quiz-option {
    flex: 1 1 100%;
  }

  .quiz-question {
    font-size: 20px;
    text-align: center;
  }

  .quiz-navigation {
    flex-direction: column;
  }

  .quiz-navigation button {
    flex: 1 1 100%;
  }
  .form-row{
    flex-direction: column;
  }

  .yoga-symbol img{
    position: absolute;
        right: 0px;
        top: 150px;
        transform: translateY(-50%);
        height: 500px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .ayur-symbol img{
    position: absolute;
        right: 0px;
        top: 150px;
        transform: translateY(-50%);
        height: 330px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .mobile-menu ul li a{
    font-size: 23px;
  }
  .slider-container{
    height: 40vh;
   
  }
  .about-img-component{
    width: 35vw;
  }
  .main-info .button{
    width: 140px;
  }
  .main-info-wide .button{
    width: 140px;
  }
  .main-info-bl-ev .button{
    width: 140px;
  }
  .single-img-component{
    right: 20px;
  }
  .review-card{
    flex-direction: column;
  }
  .review-right{
    width: 100%;
    gap: 20px;
  }
  ul.products {
    grid-template-columns: 1fr;
  }
  .custom-product-card{
      width: 100%;
    }
  .product-info-bottom{
      flex-direction: row;
    }
    .product-buttons{
      justify-content: space-between;
    }
    .read-button, .custom-product-card .button {
      width: 80px;
    }
    .page-template-datenschutz .main-info-bl-ev{
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .product-info{
      padding-left: 0;
    }
   
}
@media (max-width: 500px) {
.post-card-butn .button-white{
      width: 120px;
      font-size: 11px;
    }
    .post-card-butn .button{
      width: 120px;
      font-size: 11px;
    }
    .post-card-butn-bl-ev .button-white{
      width: 120px;
      font-size: 11px;
    }
    .post-card-butn-bl-ev .button{
      width: 120px;
      font-size: 11px;
    }
    .post-title{
      font-size: 13px;
    }
    .post-excerpt-short{
      font-size: 12px;
      width: 38vw;
    }
    .post-card-content{
      gap: 10px;
    }
    .calendar-info{
      flex-direction: column;
    }
    .calendar-info .button-white{
      width: 150px;
      font-size: 12px;
    }
    .calendar-info .button{
      width: 150px;
      font-size: 12px;
    }
    .main-info .button{
    width: 130px;
  }
  .main-info-wide .button{
    width: 130px;
  }
  .main-info-bl-ev .button{
    width: 120px;
  }
  .faq-footer h3{
    font-size: 24px
  }
    
}
@media (max-width: 480px) {

  .section-h1 {
    font-size: 35px;
    
  }

  .text-content p {
    font-size: 14px;
  }

  .text-content h4 {
    font-size: 18px;
    padding: 20px 0;
  }

  .yoga-symbol img {
    position: absolute;
        right: 0px;
        top: 130px;
        transform: translateY(-50%);
        height: 450px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .ayur-symbol img{
    position: absolute;
        right: 0px;
        top: 130px;
        transform: translateY(-50%);
        height: 300px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }

  .image-wrapper img {
    max-height: 70vh;
  }
  .review-title {
    font-size: 16px;
  }

  .review-text {
    font-size: 13px;
  }

  .user-info {
    font-size: 12px;
  }

  .book-button {
    font-size: 13px;
  }
  .woocommerce-MyAccount-content {
        padding: 15px;
        font-size: 14px;
    }

    .woocommerce-MyAccount-navigation ul li a {
        font-size: 13px;
        padding: 6px 10px;
    }
     .section-controls {
    width: 160px;
    height: 40px;
  }

  .switch-btn {
    width: 75px;    
    height: 32px;
    font-size: 12px;
    padding: 6px;
  }
}
@media (max-width: 450px){
  .main-info{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-info-wide{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-info-bl-ev{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-info-wide h1{
    font-size: clamp(60px, 16vw, 179px);
  }
  .main-info .button{
    width: 210px;
  }
  .main-info-wide .button{
    width: 210px;
  }
  .main-info-bl-ev .button{
    width: 210px;
  }
  .yoga-symbol img {
    position: absolute;
        right: 0px;
        top: 130px;
        transform: translateY(-50%);
        height: 380px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .ayur-symbol img{
    position: absolute;
        right: -40px;
        top: 130px;
        transform: translateY(-50%);
        height: 250px;
        width: auto;
        opacity: 0.1;
        z-index: 1;
  }
  .controls{
    flex-direction: column;
  }
  .about-img-component{
    display: none;
  }
  .about-img-main{
    width: 100%;
  }
  .single-img-main img{
    width: 100%;
  }
  .datenschutz-title{
    position: absolute;
    bottom: 20px;
  }
  .lesson-title-main-scrpt {
    color: #f4f4f4;
  }
  .datenschutz-title-top{
    display: none;
  }
  .single-img-component{
    display: none;
  }
 .product-template-default .product-info{
    flex-direction: column;
  }
 .product-template-default .product-info-btm{
    align-self: flex-start;
  }
  .product-template-default  .product-title{
    width: 100%;
  }
  .product-info-bottom{
    flex-direction: column;
    align-self: flex-start;
  }
  .read-button, .custom-product-card .button{
    width: clamp(120px,36vw,160px);
  }
}

@media (max-width: 400px){
  .post-card-butn .button-white{
      width: 100px;
      font-size: 10px;
      padding: 6px 12px;
    }
    .post-card-butn .button{
      width: 100px;
      font-size: 10px;
      padding: 6px 12px;
    }
    .post-title{
      font-size: 11px;
    }
    .post-excerpt-short{
      font-size: 11px;
      width: 35vw;
    }
}