
  :root {
    --teal-dark: #163B3D;
    --teal-darker: #102E30;
    --sage: #A7B1AE;
    --cream: #F0E3DC;
    --cream-light: #F2E6DF;
    --cream-dark: #E8E2DB;
    --beige: #E4DFDA;
    --gray-warm: #9D9890;
    --gray-warm-light: #A39D95;
    --bronze-dark: #625A4E;
    --bronze-darker: #59544B;
    --ink: #1A1A1A;
    --white: #FFFFFF;
    --muted: rgba(26, 26, 26, 0.55);
    --muted-light: rgba(255,255,255,0.55);
    --border: rgba(26, 26, 26, 0.08);
    --border-light: rgba(255,255,255,0.12);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--gray-warm);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
  }

  /* === HEADER === */
  .header {
    background: var(--teal-dark);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .header-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
  }
  .header-nav {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .header-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .header-nav a:hover { opacity: 1; }
  .header-icons {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .header-icons svg {
    width: 20px; height: 20px;
    stroke: var(--white); fill: none; stroke-width: 1.5;
    cursor: pointer;
  }
  .header-icons a { color: var(--white); text-decoration: none; font-size: 13px; }

  /* === BREADCRUMB === */
  .breadcrumb {
    background: var(--gray-warm);
    padding: 12px 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span { opacity: 0.4; }
  .breadcrumb-current { color: var(--white); }

  /* === PRODUCT HERO - 2 column desktop, stack mobile === */
  .product-hero {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--gray-warm);
  }

  /* GALLERY - left column on desktop */
  .gallery {
    position: relative;
  }
  .gallery-main {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--gray-warm-light);
  }
  .gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 12px 0;
    background: var(--gray-warm);
  }
  .gallery-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
  }
  .gallery-dot.active { background: var(--white); width: 18px; border-radius: 3px; }
  .gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 24px;
    overflow-x: auto;
    background: var(--gray-warm);
  }
  .gallery-thumbs button {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: border-color 0.2s;
  }
  .gallery-thumbs button.active { border-color: var(--white); }
  .gallery-thumbs button:hover { border-color: rgba(255,255,255,0.5); }
  .gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

  /* PRODUCT INFO - right column on desktop */
  .product-info {
    background: var(--cream);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bronze-dark);
    margin-bottom: 12px;
  }
  .product-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .product-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }
  .stars { color: #C2A35F; font-size: 14px; letter-spacing: 2px; }
  .rating-text { font-size: 12px; color: var(--muted); }

  .price-block { margin-bottom: 24px; }
  .price {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);
  }
  .price-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

  /* Specs */
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
  }
  .spec-cell {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .spec-cell:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--border); }
  .spec-cell:nth-child(even) { padding-left: 16px; }
  .spec-cell:nth-last-child(-n+2) { border-bottom: none; }
  .spec-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .spec-value { font-size: 14px; font-weight: 500; color: var(--ink); }

  /* Flavor + Strength */
  .flavor-row, .strength-row { margin-bottom: 24px; }
  .section-label-sm {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
  }
  .flavor-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .flavor-tag {
    padding: 6px 14px;
    background: rgba(98,90,78,0.1);
    color: var(--bronze-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
  }
  .strength-bar { display: flex; gap: 4px; margin-top: 8px; }
  .strength-dot { width: 28px; height: 6px; border-radius: 3px; background: var(--border); }
  .strength-dot.filled { background: var(--bronze-dark); }

  /* Buy box */
  .buy-box {
    background: var(--cream-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
  }
  .qty-row { display: flex; gap: 12px; align-items: center; }
  .qty-selector {
    display: flex; align-items: center;
    border: 1px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
  }
  .qty-btn { width: 44px; height: 48px; border: none; background: transparent; font-size: 18px; cursor: pointer; color: var(--ink); }
  .qty-btn:hover { background: rgba(0,0,0,0.04); }
  .qty-input {
    width: 44px; height: 48px; border: none; text-align: center;
    font-size: 15px; font-weight: 600; background: transparent;
    -moz-appearance: textfield;
  }
  .qty-input::-webkit-outer-spin-button,
  .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .btn-add {
    flex: 1; height: 48px;
    background: var(--teal-dark);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-add:hover { background: var(--teal-darker); }

  /* Trust */
  .trust-row { display: flex; gap: 16px; flex-wrap: wrap; }
  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--muted);
  }
  .trust-item svg { width: 16px; height: 16px; stroke: var(--bronze-dark); fill: none; stroke-width: 1.5; }

  /* === DARK SECTION === */
  .dark-section {
    background: var(--bronze-dark);
    color: var(--white);
    padding: 64px 24px;
    text-align: center;
  }
  .dark-section .section-label { color: var(--sage); }
  .dark-section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .dark-section-text {
    font-size: 16px;
    color: var(--muted-light);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    font-weight: 300;
  }

  /* === DESCRIPTION === */
  .description {
    background: var(--cream);
    padding: 64px 24px;
  }
  .description-inner { max-width: 720px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .description-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(26,26,26,0.75);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .description-text strong { font-weight: 600; color: var(--ink); }

  /* Tech table */
  .tech-table { margin-top: 32px; border-top: 1px solid var(--border); }
  .tech-row {
    display: flex; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid var(--border);
  }
  .tech-label { font-size: 13px; color: var(--muted); font-weight: 500; }
  .tech-value { font-size: 14px; color: var(--ink); font-weight: 500; }

  /* FAQ */
  .faq { margin-top: 32px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 18px 0; text-align: left;
    font-size: 15px; font-weight: 500; color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
  }
  .faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--bronze-dark); }
  .faq-item.open .faq-question::after { content: '−'; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p { padding: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--muted); font-weight: 300; }

  /* === FEATURES === */
  .features {
    background: var(--cream-light);
    padding: 64px 24px;
  }
  .features-inner { max-width: 720px; margin: 0 auto; }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .feature-item {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .feature-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(98,90,78,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px; color: var(--bronze-dark);
  }
  .feature-text h3 { font-family: var(--font-display); font-size: 15px; font-weight: 500; margin-bottom: 4px; }
  .feature-text p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* === RELATED === */
  .related {
    background: var(--cream);
    padding: 64px 24px;
  }
  .related-inner { max-width: 960px; margin: 0 auto; }
  .related-header {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 32px;
  }
  .related-header a { color: var(--bronze-dark); text-decoration: none; font-size: 13px; font-weight: 500; }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .related-card:hover { transform: translateY(-3px); box-shadow: rgba(0,0,0,0.08) 0px 10px 30px -10px; }
  .related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .related-card-body { padding: 14px; }
  .related-card .brand { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: var(--bronze-dark); text-transform: uppercase; margin-bottom: 4px; }
  .related-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 500; margin-bottom: 6px; }
  .related-card .price-sm { font-size: 13px; font-weight: 600; }

  /* === FOOTER === */
  .footer {
    background: var(--bronze-darker);
    color: var(--white);
    padding: 48px 24px 32px;
    text-align: center;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .footer-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
  }
  .footer-social {
    display: flex; gap: 16px; justify-content: center; margin: 24px 0;
  }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); text-decoration: none; font-size: 14px;
  }
  .footer-trust {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin: 20px 0; font-size: 11px; color: var(--muted-light);
  }
  .footer-copy { font-size: 11px; color: var(--muted-light); margin-top: 16px; }

  /* === RESPONSIVE: DESKTOP === */
  @media (min-width: 768px) {
    .product-hero {
      grid-template-columns: 1fr 1fr;
    }
    .gallery {
      position: sticky;
      top: 60px;
      align-self: start;
    }
    .gallery-main {
      aspect-ratio: 4/5;
    }
    .product-info {
      padding: 64px 48px;
    }
    .product-title { font-size: 48px; }
    .price { font-size: 36px; }
    .dark-section { padding: 80px 24px; }
    .dark-section-title { font-size: 40px; }
    .description { padding: 80px 24px; }
    .section-title { font-size: 36px; }
    .features { padding: 80px 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .related { padding: 80px 24px; }
    .related-grid { grid-template-columns: repeat(4, 1fr); }
    .header { padding: 14px 40px; }
    .header-nav { display: flex; }
    .breadcrumb { padding: 12px 40px; }
  }

  /* === RESPONSIVE: LARGE DESKTOP === */
  @media (min-width: 1200px) {
    .product-hero {
      max-width: 1200px;
      margin: 0 auto;
    }
    .product-info {
      padding: 80px 64px;
    }
    .product-title { font-size: 56px; }
    .description-inner, .features-inner { max-width: 800px; }
    .related-inner { max-width: 1100px; }
  }

  /* === RESPONSIVE: MOBILE (hide nav) === */
  @media (max-width: 767px) {
    .header-nav { display: none; }
    .header { padding: 14px 20px; }
    .breadcrumb { padding: 10px 20px; }
    .gallery-thumbs { padding: 12px 20px; }
    .gallery-thumbs button { width: 56px; height: 56px; }
    .product-info { padding: 32px 20px; }
    .product-title { font-size: 30px; }
    .price { font-size: 26px; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dark-section { padding: 48px 20px; }
    .dark-section-title { font-size: 26px; }
    .description { padding: 48px 20px; }
    .section-title { font-size: 26px; }
    .features { padding: 48px 20px; }
    .related { padding: 48px 20px; }
  }

  /* === RESPONSIVE: SMALL MOBILE === */
  @media (max-width: 400px) {
    .product-title { font-size: 26px; }
    .related-grid { grid-template-columns: 1fr; }
    .qty-row { flex-direction: column; }
    .btn-add { width: 100%; }
  }


/* hide Flatsome wp_footer-injected elements (CSS is dequeued on this page) */
.mfp-hide{display:none!important}
#main-menu,.mobile-sidebar,.header-search-form-wrapper,#login-form-popup,.pswp,.cr-pswp,.searchform-wrapper{display:none!important}
/* WooCommerce notices */
.woocommerce-message,.woocommerce-error,.woocommerce-info{max-width:1200px;margin:16px auto;padding:14px 18px;list-style:none;background:#fff;border:1px solid var(--border);border-radius:10px;font-size:14px}
.single_add_to_cart_button{font-family:var(--font-body)}
