/* Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px; /* Slightly tighter padding for mobile */
	  justify-content: center;
  }

	.logo{
		width: 110px;	
	}
	
	.tagline{
		display: none;
	}
	
	.header {
 	   top: 0px !important;
	}
	
  .navigation {
    display: none; /* Hide desktop navigation */
  }

  .hamburger {
    display: block;
    font-size: 20px; /* Slightly smaller for mobile */
    line-height: 40px; /* Align with CTA button height */
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Reduced gap for compact mobile layout */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px); /* Match header's blur effect */
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav .nav-link {
    font-size: 20px; /* Slightly smaller for mobile */
    font-weight: 600;
    letter-spacing: -0.4px;
  }

  .close-menu {
    font-size: 20px;
    line-height: 40px; /* Align with hamburger */
  }

  .header-right {
    gap: 12px; /* Tighter gap for mobile */
  }
	

  .language-option {
    font-size: 13px; /* Slightly smaller for mobile */
    line-height: 40px; /* Align with CTA button */
  }

  .cta-button {
    padding: 8px 16px; /* Smaller padding for mobile */
    font-size: 11px; /* Smaller font size */
    letter-spacing: 1px;
  }

  .hero {
    height: 58vh; /* Reduced height for faster scrolling */
    background-size: cover; /* Ensure image fills screen */
    background-position: center top; /* Focus on top of image */
  }

  .hero-content {
    padding: 40px; /* Tighter padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to left */
  }

  .hero-content h1 {
    font-size: clamp(45px, 5vw, 40px); /* Smaller range for mobile */
    margin-bottom: 24px; /* Reduced margin */
    line-height: 1.1; /* Tighter line height */
    font-weight: 400;
    transition: transform 0.3s ease-in-out;
  }

  .hero-content p {
    font-size: 18px; /* Smaller for readability */
    max-width: 91%;
    line-height: 1.4;
  }

  .three-soaps {
    padding: 40px; /* Reduced padding */
  }

  .soaps-grid {
    grid-template-columns: 1fr;
    gap: 32px; /* Slightly smaller gap */
  }

  .soap-image {
    background-size: contain;
    height: auto;
    width: auto;
    /* width: 88%; */
    border-radius: 16px;
    /* margin: 0 auto; */
  }
  .soap-card {
    margin-bottom: 10px;
  }
  .soap-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
  }

  .soap-card p {
    padding: 0;
    font-size: 18px;
    line-height: 1.4rem;
    padding: 5px 25px 0px 0px;
  }

  .section-title {
    font-size: 28px; /* Slightly smaller */
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 18px; /* Smaller for mobile */
    margin-bottom: 32px; /* Reduced margin */
    line-height: 1.5;
  }

  .botanicals {
    padding: 40px 40px; /* Reduced padding */
  }

  .botanicals-header h2 {
    font-size: 28px; /* Smaller for mobile */
    line-height: 1.2;
  }

  .botanicals-header p {
    font-size: 18px; /* Smaller for mobile */
    line-height: 1.5rem;
  }

  .botanicals-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0px 60px !important;
  }

  .botanical-item {
    padding-right: 0;
  }

  .botanical-item p {
    font-size: 18px; /* Smaller for mobile */
    line-height: 1.4rem;
  }

  .botanical-item .botanical-highlight {
    font-size: 18px; /* Smaller highlight text */
  }
	
	.athletes-container{
		padding: 30px;
	}

  .athletes {
    padding: 40px 16px;
    overflow: hidden; /* Prevent overflow */
  }

  .athletes h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .athlete-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 33%) 0%, #000000db 70%);
    border-radius: 0px 0px 24px 24px;
  }
  .athlete-card {
    width: 100% !important;
    height: 300px;
    max-width: none;
    /* border-radius: 16px; */
    filter: grayscale(0);
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
  }

  .athlete-content h3 {
    font-size: 16px;
  }

  .athlete-content p {
    font-size: 13px;
  }

  .slider-prev-btn,
  .slider-next-btn {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-prev-btn {
    left: 8px;
  }

  .slider-next-btn {
    right: 8px;
  }

  .swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  .athletes-grid {
    overflow: hidden;
    width: 100%;
  }

  .swiper-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
  }

  .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }

  .faq {
    padding: 40px;
  }

  .faq h2 {
    font-size: 28px; /* Smaller for mobile */
    line-height: 1.2rem;
	  margin-bottom: 28px;
  }

  .faq-question {
    font-size: 18px; /* Smaller for mobile */
    line-height: 1.4rem;
    padding: 16px; /* Reduced padding */
	  font-weight: 600;
  }

  .faq-answer {
    font-size: 16px; /* Smaller for mobile */
    line-height: 1.4rem;
  }

  .faq-answer.active {
    max-height: 400px; /* Increased further to ensure no cutoff */
    padding: 0 16px 16px; /* Match question padding */
  }

  .footer {
    padding: 40px; /* Reduced padding */
  }

  .footer-content {
    flex-direction: row;
    gap: 32px;
    align-items: end;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px; /* Smaller gap */
    text-align: center;
  }

  .legal-text {
    font-size: 10px; /* Slightly smaller for mobile */
    line-height: 1.5;
  }

  .footer-links a {
    font-size: 14px; /* Smaller for mobile */
  }

  .footer-right h3 {
    font-size: 14px; /* Smaller for mobile */
  }

  .social-icon {
    width: 35px; /* Smaller icons */
    height: 35px;
  }

  .footer-location {
    font-size: 12px; /* Smaller for mobile */
  }

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Optimize touch interactions */
  .cta-button,
  .shop-button,
  .slider-prev-btn,
  .slider-next-btn,
  .hamburger,
  .close-menu,
  .mobile-nav .nav-link {
    touch-action: manipulation; /* Improve touch responsiveness */
  }

  /* Optimize images for mobile */
  .soap-image {
    background-size: cover; /* Ensure images scale properly */
    background-position: center;
  }

  .tagline-text {
    font-size: 15px;
  }

  .hidden-mobile {
    display: none;
  }

  .about-hero-content {
    max-width: 100%;
    text-align: left;
    position: relative;
    margin: 0 auto;
    padding: 40px;
  }

  .about-hero {
    height: auto;
    max-height: auto;
    background: linear-gradient(rgb(0 0 0 / 60%), #00000069), url("/wp-content/themes/neotek-child/pauer-template/img/the-motion.png");
    background-position: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    margin-top: 58px;
  }
  .craft-rows {
    gap: 0px;
    flex-direction: column;
  }
  .origin-section-subtitle {
    font-size: 20px;
    max-width: 100%;
    color: white;
    -webkit-font-smoothing: antialiased;
  }

  .craft-rows .craft-image {
    display: none;
  }

  .philosophy-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    flex-direction: column;
  }


.divider-custom {
  height: 487px; width: 100%;
}

.about-hero-content h1 {
    padding-top: 73px;
    font-size: clamp(50px, 8vw, 119px);
    font-weight: 400;
        line-height: 64px;
}
.about-origin-section {
    margin-top: 105px;
  }

  .about-origin-section.craft-section {
    margin-top: 50px;
}

.about-philosophy-section {
    margin-top: 40px;
    text-align: left;
    margin-bottom: 10px;
    padding: 40px;
}


.philosophy-section-subtitle3 {
    color: var(--Brand-Text-Secondary, #86868B);
    text-align: left;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.216px;
}
	
	.philosophy-item{
		text-align: left;
	}
	
.philosophy-item h3{
		text-align: left;
	}
	
.philosophy-item p {
    color: var(--Brand-Titles, #F5F5F7);
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.216px;
	padding: 0;
}

.philosophy-section-subtitle2 {
    color: var(--Brand-Titles, #F5F5F7);
    text-align: left;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.216px;
    margin-bottom: 20px;
}


.philosophy-section-subtitle {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 35px;
    letter-spacing: 0.2px;
    color: var(--Brand-Text-Secondary, #86868B);
    -webkit-font-smoothing: antialiased;
}

.philosophy-section-title {
    color: var(--Brand-Titles, #F5F5F7);
text-align: left;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1.2px;
}


.rituals-hero-content {
height: auto;
    background: linear-gradient(rgb(0 0 0 / 62%), #00000069), url("/wp-content/themes/neotek-child/pauer-template/img/woman-background.png");
    background-position: top;
    position: relative;
    text-align: left;
    padding: 40px;
    background-repeat: no-repeat !important;
}


.rituals-hero-content h1 {
    padding-top: 86px;
    font-size: clamp(48px, 8vw, 119px);
    font-weight: 400;
    font-style: normal;
    line-height: 48px;
    /* line-height: 0.8; */
    letter-spacing: -3.6px;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 40px;
}
	
	.origin-section-title{
		font-size: 35px;
	}
	
.rituals-origin-section-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 100%;
    /* margin: 0 auto 80px; */
    letter-spacing: 0.2px;
    color: white;
    -webkit-font-smoothing: antialiased;
    /* max-width: 575px; */
    margin-bottom: 30px;
    padding-right: 26px;
}
.rituals-craft-rows {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column: 3;
    row-gap: 0px;
    column-gap: 10px;
}
.rituals-divider-custom {
    height: 1404px;
    width: 100%;
}



.generic-section {
        margin-top: 142px;
      max-width: 100%;
    text-align: left;
    position: relative;
    /* margin: 0 auto; */
    padding: 40px;
}

.generic-section h1 {
  color: var(--Brand-Titles, #F5F5F7);
font-size: 35px;
font-style: normal;
font-weight: 600;
line-height: 60px; /* 107.143% */
letter-spacing: -0.28px;
}
.generic-section p {
  color: var(--Brand-Titles, #F5F5F7);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 32px; /* 160% */
letter-spacing: 0.216px;
}

}
