/* Theme */
:root{
  /* Brand palette (from logo) */
  --brand-primary: #009048;   /* deep emerald */
  --brand-primary-2: #68C040; /* leaf green */
  --brand-secondary: #00A8E0; /* cyan */
  --brand-ink: #0B1F14;
  --brand-cream: #FFFDF5;

  /* RGB helpers */
  --primary-rgb: 0, 144, 72;
  --secondary-rgb: 0, 168, 224;
  --ink-rgb: 11, 31, 20;

  /* App tokens */
  --topbar-bg: var(--brand-primary);
  --topbar-text: rgba(255,255,255,.92);

  --accent: var(--brand-secondary);
  --accent-rgb: var(--secondary-rgb);

  --header-border: rgba(var(--primary-rgb), .18);
  --topbar-h: 32px;
  --header-h: 78px;

  --stock-bg: #F6FFFA;
  --stock-accent: var(--brand-secondary);
  --stock-text: var(--brand-ink);

  --footer-outer: #F2FFF7;
  --footer-brown1: #007C5A; /* footer top */
  --footer-brown2: #005F44; /* footer bottom */
  --footer-text: rgba(255,255,255,.94);
  --footer-muted: rgba(255,255,255,.78);
}

/* Base */
html, body { height: 100%; }
    body{
      font-family: "Assistant", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--brand-cream);
      margin: 0;
      padding-top: calc(var(--topbar-h) + var(--header-h));
      -webkit-font-smoothing: antialiased;
    }

    
    .top-alert{
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 990;
      background: var(--topbar-bg);
      color: var(--topbar-text);
      height: var(--topbar-h);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .top-alert a{
      color: var(--topbar-text);
      text-decoration: none;
      font-weight: 600;
      white-space: nowrap;
    }
    .top-alert a:hover{ text-decoration: underline; }

    .marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .marquee__track {
      display: flex;
      align-items: center;
      gap: 42px;
      width: max-content;
      will-change: transform;
      animation: marquee-scroll 55s linear infinite;
    }
    
    .marquee__item {
      margin: 0;
      display: inline-flex;
      align-items: center;
      height: var(--topbar-h);
      line-height: var(--topbar-h);
      font-size: 14px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    
    /* Perfect smooth loop — no blank space */
    @keyframes marquee-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%); 
      }
    }
    
    /* Mobile thoda slow */
    @media (max-width: 768px) {
      .marquee__track {
        animation-duration: 55s;
      }
    }
    
    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      .marquee__track {
        animation: none;
      }
    }


    
    .site-header{
      position: fixed;
      left: 0; right: 0;
      top: var(--topbar-h);
      z-index: 999;
      background:#fff;
      border-bottom: 1px solid var(--header-border);
    }

    .header-row{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
    }

    
    .header-search{
      position: relative;
      width: 520px;
      max-width: 42vw;
    }
    .header-search input{
      width:100%;
      padding: 10px 46px 10px 14px;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 999px;
      outline: none;
      font-size: 15px;
    }
    .header-search input:focus{
      border-color: rgba(var(--accent-rgb),.55);
      box-shadow: 0 0 0 .2rem rgba(var(--accent-rgb),.12);
    }
    .header-search .search-icon{
      position:absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      opacity: .75;
      pointer-events:none;
    }

    
    .header-link{
      text-decoration:none;
      color:#111;
      font-weight:600;
      font-size: 15px;
    }
    .header-link:hover{ color: var(--accent); }

    
    .cart-link{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      text-decoration:none;
      color:#111;
      font-weight:600;
      font-size: 15px;
    }
    .cart-link svg{ width: 24px; height: 24px; display:block; color: var(--accent); }
    .cart-bubble{
      display:none;
      min-width: 22px;
      height: 22px;
      padding: 0 .4rem;
      border-radius: 999px;
      background: var(--accent);
      color:#fff;
      align-items:center;
      justify-content:center;
      font-size: 12px;
      line-height: 1;
    }

    
    .mega-wrap.position-static .dropdown-menu{ left:0 !important; right:0 !important; }
    .mega-menu{
      margin-top: 12px;
      border: 0;
      border-top: 1px solid rgba(0,0,0,.06);
      border-radius: 0;
      padding: 0;
      box-shadow: 0 24px 60px rgba(0,0,0,.12);
    }
    .mega-inner{ padding: 22px 0; }
    .mega-title{ font-weight: 700; margin-bottom: 14px; }
    .mega-cat{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding: 10px 0;
      text-decoration:none;
      color:#111;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .mega-cat:hover{ color: var(--accent); }
    .mega-cat .left{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 0;
    }
    .mega-cat img{
      width: 46px; height: 46px;
      object-fit: contain;
      border-radius: 10px;
      background: #fafafa;
      border: 1px solid rgba(0,0,0,.06);
    }
    .mega-cat span{
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mega-sub a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 10px 0;
      text-decoration:none;
      color:#111;
      font-weight: 600;
    }
    .mega-sub a:hover{ color: var(--accent); }

    
    .promo-card{
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.06);
      min-height: 160px;
      background:#000;
    }
    .promo-card img{
      width:100%; height:100%;
      object-fit: cover;
      display:block;
    }
    .promo-overlay{
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.60) 100%);
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding: 14px;
      color:#fff;
    }
    .promo-overlay h3{
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 8px;
    }
    .promo-overlay a{
      color:#fff;
      text-decoration:none;
      font-weight: 700;
      display:inline-flex;
      align-items:center;
      gap: 10px;
    }

    
    .mobile-actions{ display:none; align-items:center; gap: 10px; }
    .menu-btn{
      border: 0;
      background: transparent;
      padding: 6px;
      border-radius: 10px;
    }

    @media (max-width: 991.98px){
      .header-search{ display:none; }
      .desktop-nav{ display:none !important; }
      .mobile-actions{ display:flex; }
      .cart-text{ display:none; }
    }

    
    .preview{ padding:0; margin:0; }
    .preview__carousel{ padding:0; margin:0; position: relative; }

    .previewSwiper{ width: 100%; }
    .previewSwiper .swiper-slide a{ display:block; width:100%; }
    .previewSwiper picture,
    .previewSwiper img{ display:block; width:100%; height:auto; }

    .preview .swiper-pagination{
      position: absolute;
      bottom: 14px !important;
      left: 50% !important;
      transform: translateX(-50%);
      width: auto !important;
    }
    .preview .swiper-pagination-bullet{
      width: 8px;
      height: 8px;
      opacity: .35;
      background: #000;
      margin: 0 6px !important;
    }
    .preview .swiper-pagination-bullet-active{
      opacity: 1;
      background: #000;
    }

    .special__navigation-wrapper{
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 5;
      display:flex;
      gap: 10px;
      align-items:center;
    }
    .special__navigation{
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(0,0,0,.12);
      text-decoration:none;
      transition: transform .15s ease, background .15s ease;
    }
    .special__navigation:hover{ transform: translateY(-1px); background: rgba(255,255,255,1); }
    .special__navigation--prev svg{ transform: rotate(180deg); }
    .swiper-button-disabled{
      opacity: .4;
      pointer-events: none;
    }

    main#main{ padding:0; margin:0; }

    
    .purity{
      padding: 48px 0;
      background: var(--stock-bg);
    }

    .purity__title{
      margin: 0 0 22px;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      font-size: 40px;
    }

    .purity__title i{
      flex: 1 1 auto;
      height: 1px;
      background: rgba(0,0,0,.15);
      display: block;
      max-width: 220px;
    }

    .purity__title span{
      padding: 0 10px;
      white-space: nowrap;
    }

    
    .purity__row{
      --bs-gutter-x: 10px;
      --bs-gutter-y: 10px;
    }
    @media (min-width: 768px){
      .purity__row{
        --bs-gutter-x: 50px; 
        --bs-gutter-y: 12px;
      }
    }

    .purity__item a{
      display: inline-block;
      text-decoration: none;
    }

    .purity__item img{
      border: none;
      box-shadow: none;
      width: 140px;
      height: auto;
      object-fit: cover;
      max-width: 100%;
      display: block;
    }

    @media (max-width: 767px){
      .purity{ padding: 34px 0; }
      .purity__title{
        font-size: 22px !important;
        padding-left: 30px;
        padding-right: 30px;
        gap: 0px;
      }
      .purity__title i{
        flex: 0 0 50px;
        height: 1px;
        margin: 0;
        max-width: none;
      }
      .purity__item img{ width: 118px; }
    }

    
    .explore{
      padding: 40px 0 20px;
      background: linear-gradient(180deg, var(--stock-bg) 0%, #FFFFFF 100%);
    }
    .explore__inner{
      max-width: 520px;
      margin: 0 auto;
    }
    @media (min-width: 992px){
      .explore__inner{ max-width: none; }
    }
    .explore__title{
      text-align:center;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color:#111;
      font-size: 18px;
      margin: 0 0 14px;
    }
    .explore__title:before,
    .explore__title:after{
      content:"";
      display:inline-block;
      width: 32px;
      height: 1px;
      background: rgba(0,0,0,.25);
      vertical-align: middle;
      margin: 0 10px;
    }

    .explore__tabs{
      gap: 10px;
      justify-content:flex-start;
      align-items:center;
      margin-bottom: 14px;
    }
    .explore__tabs .nav-link{
      border: 0;
      background: transparent;
      color:#3b3b3b;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 10px;
    }
    .explore__tabs .nav-link.active{
      background: var(--accent);
      color:#fff;
      box-shadow: 0 10px 18px rgba(var(--accent-rgb),.18);
    }

    .product-card{
      background:#fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: 0 14px 28px rgba(0,0,0,.06);
      height:100%;
      display:flex;
      flex-direction:column;
    }
    .product-card__media{
      position: relative;
      padding: 10px;
      background: #fff;
      display:block;
      text-decoration:none;
    }
    .product-card__media img{
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,.06);
      display:block;
    }
    .badge-discount{
      position:absolute;
      left: 14px;
      top: 14px;
      background: var(--accent);
      color:#fff;
      font-weight: 900;
      font-size: 11px;
      line-height: 1;
      padding: 7px 8px;
      border-radius: 12px;
      box-shadow: 0 10px 18px rgba(var(--accent-rgb),.20);
    }
    .badge-new{
      position:absolute;
      right: 14px;
      top: 14px;
      background:#F59E0B;
      color:#fff;
      font-weight: 900;
      font-size: 11px;
      line-height: 1;
      padding: 7px 10px;
      border-radius: 999px;
      box-shadow: 0 10px 18px rgba(245,158,11,.20);
    }
    .product-card__body{
      padding: 12px 12px 14px;
      display:flex;
      flex-direction:column;
      gap: 8px;
      flex: 1 1 auto;
    }
    .product-card__title{
      color:#111;
      text-decoration:none;
      font-weight: 800;
      font-size: 14px;
      line-height: 1.25;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-card__title:hover{ color: var(--accent); }

    .rating{
      display:flex;
      align-items:center;
      gap: 6px;
      font-size: 12px;
      color:#444;
      line-height: 1;
    }
    .rating .stars{
      color:#111;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .product-card__note{
      margin: 0;
      color:#5a5a5a;
      font-size: 12px;
      line-height: 1.25;
      min-height: 30px;
    }
    .product-card__note strong{ color:#111; }

    .product-card__price{
      display:flex;
      align-items:baseline;
      gap: 8px;
      margin-top: 2px;
    }
    .product-card__price .price{
      font-size: 18px;
      font-weight: 900;
      color:#111;
    }
    .product-card__price .compare{
      font-size: 12px;
      color:#8a8a8a;
      text-decoration: line-through;
    }

    .product-card__btn{
      margin-top: auto;
      width: 100%;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: .02em;
      padding: 10px 12px;
      border: 1.5px solid var(--accent);
      color: var(--accent);
      background: transparent;
    }
    .product-card__btn:hover{
      background: var(--accent);
      color:#fff;
    }

    @media (max-width: 575.98px){
      .explore{ padding-top: 34px; }
      .explore__title{ font-size: 16px; }
      .explore__title:before,
      .explore__title:after{ width: 22px; margin: 0 8px; }
      .product-card__price .price{ font-size: 16px; }
      .product-card__btn{ padding: 9px 10px; font-size: 12px; }
    }
    
    
    
    
    
    .stock{
      background: linear-gradient(180deg, #ffffff 0%, var(--stock-bg) 40%, #ffffff 100%);
      padding: 46px 0;
    }
    
    .stock .container-xl{
      position: relative;
    }
    
    .stock__wrapper{
      position: relative;
      border-radius: 22px;
      background:
        radial-gradient(900px 160px at 10% 0%, rgba(var(--accent-rgb),.10), transparent 60%),
        radial-gradient(900px 160px at 90% 0%, rgba(122,61,18,.10), transparent 60%),
        linear-gradient(180deg, var(--brand-cream) 0%, #F2FFF7 100%);
      box-shadow: 0 20px 60px rgba(0,0,0,.10);
      overflow: hidden;
      padding: 26px 18px 20px;
    }
    
    
    .stock__wrapper::after{
      content:"";
      position:absolute;
      inset: 12px;
      border-radius: 18px;
      border: 1px dashed rgba(122,61,18,.22);
      pointer-events:none;
    }
    
    
    .stock__wrapper::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index: 3;
    
      
      --tile: 22px;   
      --offset: 11px; 
      --r: 9px;       
    
      background:
        
        radial-gradient(circle at var(--offset) var(--offset),
          var(--stock-bg) 0 var(--r),
          transparent var(--r) calc(var(--offset))
        ) 0 calc(var(--offset) * -1) / var(--tile) var(--tile) repeat-x,
    
        
        radial-gradient(circle at var(--offset) var(--offset),
          var(--stock-bg) 0 var(--r),
          transparent var(--r) calc(var(--offset))
        ) 0 calc(100% + var(--offset)) / var(--tile) var(--tile) repeat-x,
    
        
        radial-gradient(circle at var(--offset) var(--offset),
          var(--stock-bg) 0 var(--r),
          transparent var(--r) calc(var(--offset))
        ) calc(var(--offset) * -1) 0 / var(--tile) var(--tile) repeat-y,
    
        
        radial-gradient(circle at var(--offset) var(--offset),
          var(--stock-bg) 0 var(--r),
          transparent var(--r) calc(var(--offset))
        ) calc(100% + var(--offset)) 0 / var(--tile) var(--tile) repeat-y;
    
      opacity: .95;
    }
    
    
    
    .stock__title{
      margin: 0 0 18px;
      font-weight: 700;
      color: var(--stock-text);
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      text-align:center;
      font-size: 40px;
      position: relative;
      z-index: 4;
    }
    .stock__title i{
      flex: 1 1 auto;
      height: 1px;
      background: rgba(0,0,0,.18);
      display:block;
      max-width: 220px;
    }
    .stock__title span{
      padding: 0 10px;
      white-space: nowrap;
    }
    
    
    .stock__content{
      position: relative;
      z-index: 4;
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      padding: 10px 6px 4px;
    }
    
    .stock__item{
      display:flex;
      justify-content:center;
      align-items:center;
    }
    
    .stock__item a{
      display:flex;
      justify-content:center;
      align-items:center;
      width: 100%;
      border-radius: 16px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(122,61,18,.18);
      box-shadow: 0 8px 18px rgba(0,0,0,.06);
      padding: 12px 10px;
      transition: transform .15s ease, box-shadow .15s ease;
      text-decoration:none;
    }
    
    .stock__item a:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(0,0,0,.10);
    }
    
    .stock__item img{
      width: auto;
      height: 42px;       
      max-width: 100%;
      object-fit: contain;
      display:block;
      filter: saturate(1.05) contrast(1.03);
    }
    
    
    @media (max-width: 991.98px){
      .stock__content{ grid-template-columns: repeat(3, 1fr); }
    }
    
    @media (max-width: 767px){
      .stock{ padding: 34px 0; }
      .stock__wrapper{ padding: 22px 14px 16px; border-radius: 18px; }
      .stock__title{
        font-size: 22px !important;
        padding-left: 30px;
        padding-right: 30px;
        gap: 0px;
      }
      .stock__title i{
        flex: 0 0 50px;
        margin: 0;
        max-width: none;
      }
      .stock__item img{ height: 38px; }
    }
     
    

    
    html, body { overflow-x: hidden; }
    #reviews { overflow-x: hidden; }
    
    
    #reviews .reviews__carousel { overflow-x: hidden; }
    #reviews .reviewsSwiper { 
      overflow: hidden !important;   
      position: relative;
      padding: 18px 0 34px;          
      touch-action: pan-y;           
    }
    
    
    #reviews .reviewsSwiper .swiper-wrapper{
      transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
      will-change: transform;
    }
    
    
    #reviews .reviewCard{
      position: relative;
      isolation: isolate; 
      width: min(500px, 86vw);       
      margin: 0 auto;
    
      background: linear-gradient(180deg,#fff8de 0%, var(--stock-bg) 62%, #EFFFF6 100%) !important;
      border-radius: 18px !important;
      border: 1px solid rgba(178,86,1,0.22) !important;
      padding: 12px !important;
    
      box-shadow: 0 14px 35px rgba(0,0,0,.18) !important;
      overflow: hidden !important;
    }
    
    
    #reviews .reviewCard:before{
      content:"";
      position:absolute;
      inset: 10px;
      border: 2px dashed rgba(178,86,1,0.55);
      border-radius: 14px;
      pointer-events:none;
    }
    
    
    #reviews .reviewCard:after{
      content:"";
      position:absolute;
      left:-10px;
      top: 50%;
      width: 22px;
      height: 22px;
      margin-top:-11px;
      background:#fff;
      border-radius:50%;
      box-shadow: calc(100% + 18px) 0 0 0 #fff; 
      pointer-events:none;
    }
    
    
    #reviews .reviewCard img{
      width:100% !important;
      height:auto !important;
      display:block !important;
      border-radius: 12px !important;
    }
    
    
    #reviews .reviewCard .cardLayer{
      position:absolute;
      inset:0;
      border-radius:18px;
      pointer-events:none;
      z-index:-1;
      opacity:1 !important;
    }
    
    
    #reviews .reviewCard .cardLayer.layer1{
      transform: translateY(12px) scale(.985) rotate(-0.6deg);
      background: var(--stock-bg) !important;
      border: 1px solid rgba(178,86,1,0.16);
      box-shadow: 0 10px 22px rgba(0,0,0,.10);
    }
    
    
    #reviews .reviewCard .cardLayer.layer2{
      transform: translateY(22px) scale(.97) rotate(-1.1deg);
      background: #EFFFF6 !important;
      border: 1px solid rgba(178,86,1,0.14);
      box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }
    
    
    #reviews .swiper-slide__bg,
    #reviews .swiper-slide-shadow,
    #reviews .swiper-slide-shadow-cards,
    #reviews .swiper-slide-shadow-coverflow{
      display:none !important;
      opacity:0 !important;
    }
    
    
    #reviews .swiper-pagination{
      position: relative !important;
      margin-top: 14px;
    }
    #reviews .swiper-pagination-bullet{ opacity:.35; }
    #reviews .swiper-pagination-bullet-active{ opacity:1; }
    
    
    @media (max-width: 767px){
      #reviews .reviewCard{
        width: min(460px, 90vw);
        border-radius: 16px !important;
        padding: 11px !important;
      }
      #reviews .reviewCard:before{ inset: 9px; border-radius: 12px; }
    
      
      #reviews .reviewCard .cardLayer.layer1{
        transform: translateY(10px) scale(.985) rotate(-0.5deg);
      }
      #reviews .reviewCard .cardLayer.layer2{
        transform: translateY(18px) scale(.97) rotate(-1deg);
      }
    }
    
    
    @media (min-width: 992px){
    
      
      #reviews .reviews__carousel{
        max-width: 1100px;
        margin: 0 auto;
      }
    
      
      #reviews .reviewCard{
        width: 760px !important;      
        max-width: 92vw !important;   
        margin: 0 auto !important;
      }
    
      
      #reviews .reviewsSwiper .swiper-slide{ 
        display: flex;
        justify-content: center;
      }
    
      
      #reviews .reviewCard .cardLayer.layer1{
        transform: translate(-18px, 10px) rotate(-0.6deg) scale(.985) !important;
        opacity: 1 !important;
      }
      #reviews .reviewCard .cardLayer.layer2{
        transform: translate(-34px, 18px) rotate(-1.1deg) scale(.97) !important;
        opacity: 1 !important;
      }
    }
    

    /* REVIEWS SECTION – Loved by Customer */
    .reviews__title{
      margin: 24px 0 8px;
      font-weight: 700;
      color: #111;
      text-align: center;
      font-size: 32px;
    
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    .reviews__title span{
      padding: 0 10px;
      white-space: nowrap;
    }
    
    /* Horizontal decorative lines */
    .reviews__title::before,
    .reviews__title::after{
      content: "";
      flex: 1 1 auto;
      height: 1px;
      background: rgba(0,0,0,.15);
      max-width: 220px;
    }
    
    /* Stars + review count in one line centered */
    .reviews__label{
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px;
      width: 100%;
      text-align: center;
      margin-bottom: 18px;
    }
    
    .reviews__stars{
      font-size: 16px;
      letter-spacing: 2px;
      color: #111;
    }
    
    .reviews__count{
      font-size: 14px;
      font-weight: 600;
      color: #444;
    }
    
    /* Mobile responsive (same pattern as other titles) */
    @media (max-width: 767px){
      .reviews__title{
        font-size: 22px;
        padding-left: 30px; 
        padding-right: 30px;
        gap: 0;
      }
    
      .reviews__title::before,
      .reviews__title::after{
        flex: 0 0 50px;
        max-width: none;
      }
    
      .reviews__stars{
        font-size: 14px;
      }
    
      .reviews__count{
        font-size: 13px;
      }
    }

    
    #community{
      padding: 42px 0;
      background: radial-gradient(900px 220px at 50% 0%, rgba(var(--accent-rgb),.10), transparent 60%),
                  linear-gradient(180deg, var(--brand-cream) 0%, #F2FFF7 100%);
    }
    
    #community .community__wrap{
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    
    #community .community__title{
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 18px;
      text-align:center;
      margin: 0 0 16px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      color:#111;
      font-size: 40px;
    }
    
    #community .community__ornament{
      flex: 1 1 auto;
      max-width: 260px;
      height: 18px;
      position: relative;
      opacity: .85;
    }
    #community .community__ornament:before{
      content:"";
      position:absolute;
      left:0; right:0;
      top: 50%;
      height: 2px;
      transform: translateY(-50%);
      background:
        repeating-linear-gradient(
          to right,
          rgba(0,0,0,.55) 0 2px,
          transparent 2px 10px
        );
    }
    #community .community__ornament:after{
      content:"";
      position:absolute;
      width: 14px;
      height: 14px;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%) rotate(45deg);
      border: 2px solid rgba(0,0,0,.55);
      border-left: 0;
      border-top: 0;
      opacity: .9;
    }
    
    
    #community .community__carousel{
      margin-top: 10px;
    }
    
    #community .communitySwiper{
      overflow: hidden;
      padding: 6px 0 32px; 
    }
    
    #community .communitySwiper .swiper-wrapper{
      will-change: transform;
    }
    
    
    #community .communitySwiper .swiper-slide{
      width: 260px;               
      margin-right: 12px;         
    }
    
    #community .communitySwiper a{
      display:block;
      border-radius: 18px;
      overflow:hidden;
      background: #fff;
      border: 1px solid rgba(0,0,0,.10);
      box-shadow: 0 14px 28px rgba(0,0,0,.10);
      transform: translateZ(0);
    }
    
    #community .communitySwiper img{
      width:100%;
      height:auto;
      display:block;
      aspect-ratio: 1 / 1;        
      object-fit: cover;
    }
    
    
    #community .community__pagination{
      position: relative;
      margin-top: 14px;
    }
    #community .swiper-pagination-bullet{ opacity:.35; }
    #community .swiper-pagination-bullet-active{ opacity:1; }
    
    
    #community .community__follow{
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 12px;
      margin-top: 10px;
      color:#111;
      font-weight: 700;
    }
    #community .community__follow p{
      margin: 0;
      font-weight: 800;
    }
    #community .community__btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 10px 16px;
      border-radius: 999px;
      text-decoration:none;
      font-weight: 900;
      color:#fff;
      background: var(--accent);
      box-shadow: 0 10px 18px rgba(var(--accent-rgb),.18);
    }
    #community .community__btn:hover{ filter: brightness(.95); }
    
    
    @media (max-width: 767px){
      #community{ padding: 34px 0; }
    
      #community .community__title{
        font-size: 22px;
        letter-spacing: .04em;
        gap: 10px;
        text-transform: none; 
      }
      #community .community__ornament{ max-width: 90px; }
    
      #community .communitySwiper .swiper-slide{
        width: 72vw;              
        margin-right: 10px;
      }
    }
    
    
    /* FAQ / Your questions, answered  (MATCHES COMMUNITY BG) */
    .faq{
      padding: 42px 0;
      background:
        radial-gradient(900px 220px at 50% 0%, rgba(var(--accent-rgb),.10), transparent 60%),
        linear-gradient(180deg, var(--brand-cream) 0%, #F2FFF7 100%);
    }
    
    .faq__card{
      border-radius: 18px;
      padding: 26px 20px;
    
      /* glassy premium card like your theme */
      background:
        radial-gradient(900px 260px at 15% 0%, rgba(var(--accent-rgb), .10), transparent 60%),
        radial-gradient(900px 260px at 85% 30%, rgba(var(--primary-rgb), .08), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.52) 100%);
    
      border: 1px solid rgba(var(--accent-rgb), .16);
      box-shadow: 0 18px 46px rgba(0,0,0,.10);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    
    .faq__title{
      margin: 0 0 12px;
      text-align: center;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--brand-ink);
      font-size: 34px;
    }
    
    .faq__accordion{
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-active-bg: transparent;
      --bs-accordion-btn-active-icon: none;
      margin-top: 6px;
    }
    
    /* remove bootstrap chevron */
    .faq__accordion .accordion-button::after{
      display: none !important;
    }
    
    .faq__item{
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(var(--ink-rgb), .16);
      border-radius: 0;
    }
    
    .faq__btn{
      background: transparent !important;
      padding: 18px 6px;
      border: 0;
      box-shadow: none !important;
    
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    
      color: var(--brand-ink);
      font-weight: 800;
      font-size: 18px;
    }
    
    .faq__q{
      flex: 1 1 auto;
      text-align: left;
    }
    
    /* plus / x icon */
    .faq__icon{
      position: relative;
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      opacity: .95;
    }
    
    .faq__icon::before,
    .faq__icon::after{
      content:"";
      position:absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 2px;
      background: var(--brand-ink);
      transform-origin: center;
      transform: translate(-50%, -50%) rotate(0deg);
      border-radius: 2px;
    }
    
    .faq__icon::after{
      transform: translate(-50%, -50%) rotate(90deg);
    }
    
    /* open state => show X */
    .faq__btn:not(.collapsed) .faq__icon::before{
      transform: translate(-50%, -50%) rotate(45deg);
    }
    .faq__btn:not(.collapsed) .faq__icon::after{
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    .faq__body{
      padding: 0 6px 18px;
      color: rgba(var(--ink-rgb), .82);
      font-weight: 600;
      line-height: 1.55;
      font-size: 16px;
    }
    
    @media (max-width: 767px){
      .faq{ padding: 34px 0; }
      .faq__card{ padding: 20px 14px; border-radius: 16px; }
      .faq__title{ font-size: 22px; }
      .faq__btn{ font-size: 15px; padding: 16px 4px; }
      .faq__body{ font-size: 14px; }
    }


    
    
    #site-footer{
      background: linear-gradient(180deg, #ffffff 0%, var(--footer-outer) 55%, var(--footer-outer) 100%);
      padding: 46px 0 36px;
    }
    
    #site-footer .footer-ticket{
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      padding: 34px 28px 22px;
    
      
      background:
        radial-gradient(1100px 280px at 50% 0%, rgba(255,255,255,.06), transparent 60%),
        radial-gradient(900px 220px at 10% 30%, rgba(0,0,0,.12), transparent 60%),
        radial-gradient(900px 220px at 90% 60%, rgba(0,0,0,.10), transparent 60%),
        linear-gradient(180deg, var(--footer-brown1) 0%, var(--footer-brown2) 100%);
      box-shadow: 0 22px 60px rgba(0,0,0,.18);
      color: var(--footer-text);
    } 
    
    
    #site-footer .footer-ticket::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index: 3;
    
      --tile: 22px;   
      --offset: 11px; 
      --r: 9px;       
    
      background:
      radial-gradient(circle at var(--offset) var(--offset),
        var(--footer-outer) 0 var(--r),
        transparent var(--r) calc(var(--offset))
      ) 0 calc(var(--offset) * -1) / var(--tile) var(--tile) repeat-x,
    
      radial-gradient(circle at var(--offset) var(--offset),
        var(--footer-outer) 0 var(--r),
        transparent var(--r) calc(var(--offset))
      ) 0 calc(100% + var(--offset)) / var(--tile) var(--tile) repeat-x,
    
      radial-gradient(circle at var(--offset) var(--offset),
        var(--footer-outer) 0 var(--r),
        transparent var(--r) calc(var(--offset))
      ) calc(var(--offset) * -1) 0 / var(--tile) var(--tile) repeat-y,
    
      radial-gradient(circle at var(--offset) var(--offset),
        var(--footer-outer) 0 var(--r),
        transparent var(--r) calc(var(--offset))
      ) calc(100% + var(--offset)) 0 / var(--tile) var(--tile) repeat-y;
    
      opacity: .98;
    }
    
    
    #site-footer .footer-ticket::after{
      content:"";
      position:absolute;
      inset: 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,235,188,.22);
      pointer-events:none;
      z-index: 2;
    }
    
    
    
    #site-footer .footer-title{
      margin: 0 0 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 15px;
      color: #fff;
    }
    
    #site-footer .footer-list{
      list-style:none;
      padding: 0;
      margin: 0;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    
    #site-footer .footer-link{
      color: var(--footer-muted);
      text-decoration:none;
      font-weight: 700;
    }
    #site-footer .footer-link:hover{
      color: #fff;
      text-decoration: underline;
    }
    
    #site-footer .footer-text{
      margin: 0 0 8px;
      color: var(--footer-muted);
      font-weight: 700;
      line-height: 1.45;
    }
    #site-footer .footer-text strong{
      color: #fff;
      font-weight: 900;
    }
    
    
    #site-footer .footer-plain{
      list-style:none;
      padding: 0;
      margin: 0;
      display:flex;
      flex-direction: column;
      gap: 10px;
      color: #fff;
      font-weight: 800;
    }
    
    
    #site-footer .footer-socials{
      display:flex;
      gap: 12px;
      align-items:center;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    
    #site-footer .footer-social{
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background: rgba(255,235,188,.14);
      border: 1px solid rgba(255,235,188,.22);
      transition: transform .15s ease, filter .15s ease, background .15s ease;
      text-decoration:none;
    }
    #site-footer .footer-social:hover{
      transform: translateY(-1px);
      background: rgba(255,235,188,.18);
      filter: brightness(1.05);
    }
    #site-footer .footer-social svg{
      width: 18px;
      height: 18px;
      fill: #fff;
      opacity: .95;
    }
    
    
    #site-footer .footer-bottom{
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,235,188,.18);
      color: rgba(255,235,188,.70);
      font-weight: 700;
      font-size: 13px;
      position: relative;
      z-index: 4;
    }
    
    
    @media (max-width: 767px){
      #site-footer{ padding: 34px 0 26px; }
      #site-footer .footer-ticket{
        padding: 28px 18px 20px;
        border-radius: 16px;
      }
      #site-footer .footer-ticket::after{ inset: 12px; }
    
      #site-footer .footer-title{
        font-size: 14px;
        margin-bottom: 8px;
      }
      #site-footer .footer-list{ gap: 9px; }
      #site-footer .footer-social{ width: 36px; height: 36px; }
    }
    
    
    #community .communitySwiper{ padding: 6px 0 18px; }          
    #community .community__pagination{ margin-top: 8px; }        
    #community .community__follow{ margin-top: 6px; }            
    
    
    .footer-legal{
      width: 100%;
      background: var(--footer-brown1); 
      color: var(--footer-text);
      padding: 10px 0;
    }
    
    .footer-legal__row{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      font-weight: 700;
      font-size: 13px;
    }
    
    .footer-legal__links{
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    
    .footer-legal__link{
      color: var(--footer-text);
      text-decoration: underline;
      font-weight: 700;
      white-space: nowrap;
    }
    
    .footer-legal__link:hover{
      color: #fff;
    }
    
    .footer-legal__sep{
      opacity: .65;
    }
    
    
    @media (max-width: 767px){
      .footer-legal__row{
        justify-content: center;
        text-align: center;
      }
      .footer-legal__left,
      .footer-legal__right{
        width: 100%;
      }
      .footer-legal__links{
        justify-content: center;
      }
    }

/* Utilities / small overrides */
.header-logo {
  width: 40px;
  height: 40px; 
}

.brand-text {
  margin-left: 6px; /* logo se thoda gap */
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 700; /* bold */
  color: #000;
}

.brand-tagline {
  font-size: 13px;
  color: #2e7d32; /* green shade */
  font-weight: 500;
}

.mega-arrow{ color:#252729; }
.btn-accent{ background: var(--accent); border-color: var(--accent); }
.btn-accent:hover{ filter: brightness(.95); }

.hero-picture{ display:block; width:100%; }

.offcanvas-search-input{ border-radius:999px; padding-right:44px; }
.offcanvas-search-icon{
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  opacity:.75;
  pointer-events:none;
}

.footer-title--spaced{ margin-top:22px; }

/* Logo strip section */
.logo-strip{
  background: var(--footer-outer);
  padding: 18px 0;
}

/* Logo image */
.logo-strip__img{
  max-width: 50px;
  width: 100%;
  height: auto;
}

/* Flex container for logo + text */
.logo-strip-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Brand name */
.strip-name{
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
}

/* Tagline */
.strip-tagline{
  font-size: 13px;
  color: #2e7d32;
  font-weight: 500;
}


