 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #fefcf8;
      color: #3A2A1A;
   /*    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; */
      line-height: 1.5;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 0;
       font-family: "Montserrat", sans-serif;
    }

    /* Each section is independent and full width, with its own internal container */
    section {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 40px 24px;
    }

    /* Internal container for each section – max-width and centered */
    .section-container {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
    }

    /* ---------- VARIABLES ---------- */
    :root {
      --gold: #c8963e;
      --gold-light: #E8C068;
      --gold-dark: #A07830;
      --gold-pale: #f7efde;
      --cream: #FFF9F0;
      --cream-dark: #F5EDDE;
      --white: #FFFFFF;
      --text: #3A2A1A;
      --text-light: #7A6A5A;
      --text-lighter: #a39484;
      --border: #e7dbcc;
      --shadow-sm: 0 4px 12px rgba(74, 53, 32, 0.06);
      --shadow: 0 8px 28px rgba(74, 53, 32, 0.1);
      --shadow-lg: 0 14px 40px rgba(74, 53, 32, 0.15);
      --radius-sm: 10px;
      --radius: 14px;
      --radius-lg: 18px;
      --transition: 0.25s ease;
      --ink: #1E2A4A;
      --maroon: #7A2233;
    }

    /* ---------- PRODUCT SECTION ---------- */
    .product-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .gallery {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .thumbnails {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .thumb {
      width: 76px;
      height: 76px;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      object-fit: cover;
      transition: var(--transition);
      background: #faf7f2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .thumb.active {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-pale);
    }

    .main-image-wrapper {
      flex: 1;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: #fdfaf5;
      box-shadow: var(--shadow-sm);
    }

    .main-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 1/1;
      transition: opacity 0.3s ease;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--border);
      color: var(--gold-dark);
      font-size: 1.4rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      backdrop-filter: blur(4px);
      line-height: 1;
      user-select: none;
    }
    .nav-arrow:hover {
      background: #fff;
      border-color: var(--gold);
      box-shadow: 0 6px 18px rgba(200,150,62,0.25);
    }
    .nav-prev { left: 14px; }
    .nav-next { right: 14px; }
    .image-counter {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(8px);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text);
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      border: 1px solid rgba(200,150,62,0.2);
    }

    .product-info h1 {
      font-size: 2.2rem;
      font-weight: 600;
      letter-spacing: -0.3px;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: 1.3rem;
      margin-bottom: 14px;
    }
    .rating span {
      font-size: 0.95rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .price {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-dark);
      margin-bottom: 5px;
    }

    .product-tax {
      color: var(--text-lighter);
      font-size: 0.85rem;
      margin-bottom: 22px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 18px;
    }

    .quantity {
      display: flex;
      margin-bottom: 20px;
      align-items: center;
      margin-top:10px;
    }
    .minus, .plus {
      background: #ffffff;
      padding: 0 20px;
      color: #c8963e;
      cursor: pointer;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      border: 1px solid #e7dbcc;
      user-select: none;
      transition: 0.2s;
    }
    .minus:hover, .plus:hover { background: #f7efde; }
    .input-box {
      width: 60px;
      text-align: center;
      border: 1px solid #e7dbcc;
      border-left: none;
      border-right: none;
      padding: 8px 10px;
      font-size: 18px;
      font-weight: 600;
      outline: none;
      height: 44px;
      background: white;
    }
    .input-box::-webkit-inner-spin-button,
    .input-box::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 10px 0 24px;
    }
    .buy, .cart {
      border: none;
      cursor: pointer;
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.25s;
      flex: 1 1 auto;
      letter-spacing: 0.3px;
    }
    .buy {
      background: var(--gold);
      color: white;
      box-shadow: 0 8px 18px rgba(200,150,62,0.3);
    }
    .buy:hover { background: var(--gold-dark); }
    .cart {
      background: var(--cream-dark);
      color: var(--text);
      border: 1px solid #e5d9c6;
    }
    .cart:hover { background: var(--gold-light); border-color: var(--gold-light); }

    .buy-on-section p {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--text);
    }

    /* ---------- TRUST BADGES SECTION ---------- */
    .trust-section {
      /* background: #2F281D; */
      padding: 10px 24px;
    }
    .trust-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px 48px;
      list-style: none;
    }
    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .trust-badge img {
      width: 80px;
      height: 80px;
      object-fit: contain;
     /*  filter: brightness(0) invert(1); */
      opacity: 0.9;
    }
    .trust-badge span {
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,253,248,0.8);
      text-align: center;
    }

    /* ---------- TABS SECTION ---------- */
    .tabs-wrapper {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .tab-buttons {
      display: flex;
      flex-wrap: wrap;
      background: #fcf9f4;
      border-bottom: 1px solid var(--border);
    }
    .tab-btn {
      flex: 1 1 0;
      min-width: 130px;
      background: transparent;
      color: var(--text-light);
      padding: 18px 12px;
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: 0.2s;
      letter-spacing: 0.2px;
    }
    .tab-btn.active {
color: #ffffff;
    border-bottom: 3px solid var(--gold);
    font-weight: 700;
    background-color: #a07830;
    }
    .tab-content {
      display: none;
      padding: 28px 30px;
      animation: fade 0.25s;
    }
    .tab-content.active { display: block; }
    @keyframes fade { from { opacity: 0.6; } to { opacity: 1; } }

    /* ---------- STORY & REGION SECTIONS ---------- */
    .region-section {
     background-color: #c8963e;
    }
    .story-grid, .region-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: center;
    }
    .region-grid { grid-template-columns: 1fr 1fr; }
    .story-grid img, .region-grid img {
      width: 100%;
      border-radius: 6px;
      object-fit: cover;
    }
    .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--maroon);
      font-weight: 500;
    }
    .checklist {
      list-style: none;
      margin: 22px 0 0;
      display: grid;
      gap: 10px;
    }
    .checklist li::before {
      content: "✓";
      color: var(--maroon);
      font-weight: 700;
      margin-right: 10px;
    }

    /* ---------- VIDEO SECTION ---------- */
    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      border: 2px solid var(--gold-light);
    }
    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ---------- FAQ SECTION ---------- */
    .faq-item {
      border: 1px solid rgba(200,150,62,0.25);
      border-radius: 10px;
      margin-bottom: 15px;
      background: #fff;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: #fff;
      border: none;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      color: #222;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 20px;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 20px 18px;
    }
    .faq-item.active .faq-question {
      background: var(--gold);
      color: #fff;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .product-grid, .story-grid, .region-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .gallery {
        flex-direction: column-reverse;
        align-items: center;
      }
      .thumbnails {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }
    }
    @media (max-width: 600px) {
      section {
        padding: 30px 16px;
      }
    }

    
  .faq{
    max-width:100%;
    margin:auto;
    margin-top: 70px;
}

.faq-item{
    border:1px solid rgba(200,150,62,.25);
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
    background:#fff;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:7px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    color:#222;
}

.faq-question:hover{
    background:rgba(200,150,62,.08);
}

.icon{
    font-size:26px;
    color:var(--gold);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, padding .35s ease;
    padding:0 20px;
}

.faq-answer p{
    margin:0;
    padding-bottom:18px;
    color:#555;
    line-height:1.7;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 20px 18px;
}

.faq-item.active .faq-question{
    background:var(--gold);
    color:#fff;
}

.faq-item.active .icon{
    transform:rotate(45deg);
    color:#fff;
}



.feature-card{
    display:flex;
    align-items:center;
    gap:40px;
    max-width:1440px;
    background:#fff;
    border:1px solid rgba(200,150,62,.2);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
    margin-top: 80px;
}

.feature-image{
    flex:0 0 40%;
}

.feature-image img{
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    display:block;
    border-radius:20px;
}

.feature-content{
    flex:1;
    padding:40px;
}

.feature-tag{
    display:inline-block;
    background:var(--gold-light);
    color:var(--gold-dark);
    padding:6px 14px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:18px;
}

.feature-content h2{
    font-size:2rem;
    color:var(--gold-dark);
    margin-bottom:18px;
}

.feature-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.feature-btn{
    display:inline-block;
    padding:14px 30px;
    background:var(--gold);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.feature-btn:hover{
    background:var(--gold-dark);
}

/* Responsive */

@media (max-width:768px){

    .feature-card{
        flex-direction:column;
    }

    .feature-image{
        width:100%;
    }

    .feature-image img{
        min-height:240px;
    }

    .feature-content{
        padding:30px 25px;
    }

    .feature-content h2{
        font-size:1.6rem;
    }

}

@media (max-width:768px) {

  .thumbnails{
    display:none;
  }
  

}

@media (max-width: 768px) {
  .trust-section {
    overflow: hidden;
  }

  .trust-grid {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: scroll 20s linear infinite;
  }

  .trust-badge {
    flex: 0 0 220px;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}


.relatedproducts {
  padding: 70px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.sectiontitle {
      text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #a07830;
}

.productgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.productcard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s ease;
}

.productcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.productimage {
  overflow: hidden;
}

.productimage img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.productcard:hover .productimage img {
  transform: scale(1.08);
}

.productcontent {
  padding: 24px;
  text-align: center;
}

.productcontent h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: #222;
}

.productbtn {
  display: inline-block;
  padding: 12px 28px;
  background: #c8963e;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s;
}

.productbtn:hover {
  background: #c8963e;
}

/* Tablet */
@media (max-width: 992px) {
  .productgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .productgrid {
    grid-template-columns: 1fr;
  }

  .sectiontitle {
    font-size: 1.6rem;
  }
}

.faq-answer p{
  color:#a07830;
}