 /* Breadcrumb Turmeric*/
    /* Breadcrumb */
  .breadcrumb{
    padding:1rem 0 0;
    font-size:.82rem;
    color:var(--ink-soft);
  }
  .breadcrumb a{color:var(--ink-soft)}
  .breadcrumb a:hover{color:var(--forest)}
  .breadcrumb span{margin:0 .4rem;opacity:.4}
  .breadcrumb [aria-current]{color:var(--forest);font-weight:500}
 
 .breadcrumb br,
.breadcrumb p{
    display:none !important;
}

@media (min-width:768px){.econtainer{padding:0 2rem}}
 

 
#pdp p:empty{
    display:none !important;
}
 
 .gallery br,
.pdp-grid > p{
    display:none !important;
}





  /* PDP layout Turmeric*/
  .pdp{padding:1.5rem 0 4rem}
  .pdp-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2rem;
  }
  @media (min-width:900px){
    .pdp-grid{grid-template-columns:1.1fr 1fr;gap:4rem;align-items:start}
    .gallery{position:sticky;top:90px}
  }

  /* Gallery */
  .gallery{display:flex;flex-direction:column;gap:.75rem}
  .gallery-main{
    aspect-ratio:1/1;
    background:linear-gradient(135deg, #F5E8C8 0%, #F9EFD2 100%);
    border-radius:var(--radius-lg);
    overflow:hidden;
    display:flex;align-items:center;justify-content:center;
    position:relative;
    border:1px solid var(--line);
  }
  .gallery-main img{
    width:70%;height:70%;
    object-fit:contain;
  }
  /* Graceful fallback if image fails to load */
  .gallery-main img:after{
    content:"🌿 Image loading...";
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;height:100%;
    font-family:var(--font-display);
    color:var(--forest);
    background:var(--cream-2);
    font-size:1rem;
  }
  .gallery-badge{
    position:absolute;top:1.25rem;left:1.25rem;
    background:#fff;color:var(--forest);
    font-size:.72rem;font-weight:700;letter-spacing:.08em;
    text-transform:uppercase;
    padding:.45rem .85rem;border-radius:99px;
    box-shadow:var(--shadow-sm);
  }
  .gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:.6rem;
  }
  .gallery-thumb{
    aspect-ratio:1/1;
    background:#F5E8C8;
    border-radius:10px;
    border:1.5px solid var(--line);
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
    transition:border-color .2s;
  }
  .gallery-thumb:hover,.gallery-thumb.active{border-color:var(--forest)}
  .gallery-thumb img{width:70%;height:70%;object-fit:contain}

  /* Info column */
  .pdp-info{display:flex;flex-direction:column;gap:0rem}
  .pdp-brand{
    font-size:.75rem;letter-spacing:.15em;text-transform:uppercase;
    color:var(--terra);font-weight:600;
  }
  .pdp-title{
    font-family:var(--font-display);
    font-size:clamp(2rem,5vw,2.8rem);
    line-height:1.1;font-weight:600;
    letter-spacing:-0.015em;margin:.25rem 0;
  }
  .pdp-rating{
    display:flex;align-items:center;gap:.6rem;
    font-size:.88rem;color:var(--ink-soft);
  }
  .stars{color:var(--gold);letter-spacing:.08em;font-size:1.05rem}
  .pdp-rating a{
    color:var(--ink-soft);text-decoration:underline;
    text-underline-offset:3px;
  }

  /* Price */
  .pdp-price{display:flex;align-items:baseline;gap:.75rem;padding:.5rem 0}
  .pdp-price .current{
    font-family:var(--font-display);
    font-size:2.2rem;font-weight:600;color:var(--forest);
    line-height:1;
  }
  .pdp-tax{font-size:.78rem;color:var(--ink-soft);margin-top:-.25rem}

  .pdp-desc{
    font-size:.98rem;color:var(--ink-soft);line-height:1.65;
    padding:1rem 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }

  /* Variant selector */
  .pdp-variants{display:flex;flex-direction:column;gap:.6rem}
  .pdp-variants .label{
    font-size:.82rem;font-weight:600;
    letter-spacing:.04em;
  }
  .chips{display:flex;gap:.5rem;flex-wrap:wrap}
  .chip{
    padding:.0rem 1rem;
    border:1.5px solid var(--line);
    border-radius:10px;
    background:#fff;
    font-size:.9rem;font-weight:500;
    cursor:pointer;
    text-align:left;
    line-height:1.2;
    transition:border-color .15s, background .15s;
  }
  .chip:hover{border-color:var(--forest)}
  .chip.active{
    border-color:var(--forest);
    background:var(--forest);color:var(--cream);
  }
  .chip-meta{
    display:block;
    font-size:.72rem;opacity:.7;margin-top:3px;
    font-weight:400;
  }

  /* Quantity + add to cart */
  .pdp-actions{
    display:flex;gap:.75rem;align-items:stretch;
    margin-top:.5rem;
  }
  .qty{
    display:flex;align-items:center;
    border:1.5px solid var(--line);
    border-radius:99px;overflow:hidden;
    flex-shrink:0;background:#fff;
  }
  .qty button{
    width:44px;height:50px;
    font-size:1.2rem;color:var(--ink);
    cursor:pointer;
  }
  .qty button:hover{background:var(--cream-2);color:var(--forest)}
  .qty input{
    width:40px;text-align:center;border:0;background:transparent;
    font-size:1rem;font-weight:600;color:var(--ink);
    -moz-appearance:textfield;font-family:inherit;
  }
  .qty input::-webkit-outer-spin-button,
  .qty input::-webkit-inner-spin-button{
    -webkit-appearance:none;margin:0;
  }
  .add-btn{
    flex:1;
    background:var(--forest);color:var(--cream);
    border:0;border-radius:99px;
    padding:0 1.5rem;
    font-size:.98rem;font-weight:600;
    cursor:pointer;
    box-shadow:var(--shadow-md);
    transition:background .2s, transform .1s;
  }
  .add-btn:hover{background:var(--forest-deep)}
  .add-btn:active{transform:translateY(1px)}
  .buy-now{
    width:100%;
    background:var(--terra);color:#fff;
    border:0;border-radius:99px;
    padding:.95rem 1.5rem;
    font-size:.98rem;font-weight:600;
    cursor:pointer;
    margin-top:.5rem;
    transition:background .2s;
  }
  .buy-now:hover{background:var(--terra-deep)}

  /* Trust strip below CTAs */
  .pdp-trust{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:.6rem;
    margin-top:1rem;
    padding:1rem;
    background:var(--cream-2);
    border-radius:var(--radius);
  }
  .pdp-trust-item{
    display:flex;gap:.6rem;align-items:flex-start;
    font-size:.82rem;line-height:1.4;
  }
  .pdp-trust-item svg{
    flex-shrink:0;width:18px;height:18px;color:var(--forest);
    margin-top:1px;
  }
  .pdp-trust-item strong{display:block;font-weight:600;color:var(--ink)}
  .pdp-trust-item span{color:var(--ink-soft);font-size:.75rem}

  /* Pincode checker */
  .pincode-check{
    padding:1rem;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    margin-top:1rem;
  }
  .pincode-check label{
    display:block;font-size:.82rem;font-weight:600;
    margin-bottom:.5rem;
  }
  .pincode-row{display:flex;gap:.5rem}
  .pincode-row input{
    flex:1;padding:.7rem .9rem;
    border:1.5px solid var(--line);border-radius:10px;
    font-size:.92rem;font-family:inherit;
    background:var(--cream);
  }
  .pincode-row input:focus{outline:none;border-color:var(--forest)}
  .pincode-row button{
    background:var(--ink);color:var(--cream);
    border:0;border-radius:10px;
    padding:0 1.1rem;
    font-size:.85rem;font-weight:600;
    cursor:pointer;
  }
  .pincode-hint{
    font-size:.75rem;color:var(--ink-soft);
    margin-top:.5rem;display:flex;align-items:center;gap:.4rem;
  }

  /* Sections below the fold */
  .pdp-section{padding:4rem 0;border-top:1px solid var(--line)}
  .pdp-section h2{
    font-family:var(--font-display);
    font-size:clamp(1.8rem,4vw,2.4rem);
    margin-bottom:1.5rem;font-weight:600;
    letter-spacing:-0.01em;
  }
  .pdp-section h2 em{color:var(--terra);font-style:italic}

  /* Benefits grid */
  .benefits{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
  }
  @media (min-width:700px){.benefits{grid-template-columns:repeat(2,1fr);gap:1.25rem}}
  @media (min-width:1000px){.benefits{grid-template-columns:repeat(4,1fr)}}
  .benefit{
    padding:1.5rem;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
  }
  .benefit-icon{
    width:42px;height:42px;
    background:var(--forest);color:var(--gold);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:.75rem;
    font-size:1.2rem;
  }
  .benefit h3{
    font-family:var(--font-display);
    font-size:1.1rem;font-weight:600;margin-bottom:.4rem;
  }
  .benefit p{font-size:.88rem;color:var(--ink-soft);line-height:1.5}

  /* Origin / story strip */
  .origin{
    background:var(--forest-deep);color:var(--cream);
    padding:4rem 0;
  }
  .origin .container{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;align-items:center;
  }
  @media (min-width:800px){.origin .container{grid-template-columns:1fr 1fr;gap:4rem}}
  .origin h2{font-family:var(--font-display);font-size:2.2rem;color:var(--cream);font-weight:600;letter-spacing:-0.01em}
  .origin h2 em{color:var(--gold);font-style:italic;font-weight:500}
  .origin p{color:rgba(245,239,227,.8);font-size:1rem;line-height:1.7;margin-top:1rem}
  .origin-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
  .origin-stat{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius);
    padding:1.25rem;
  }
  .origin-stat strong{
    display:block;
    font-family:var(--font-display);
    font-size:1.8rem;color:var(--gold);
    line-height:1;margin-bottom:.4rem;font-weight:600;
  }
  .origin-stat span{font-size:.82rem;color:rgba(245,239,227,.7);line-height:1.4}

  /* Specs table */
  .specs{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
  }
  .specs dl{display:grid;grid-template-columns:1fr 2fr}
  .specs dt,.specs dd{
    padding:.95rem 1.25rem;
    font-size:.9rem;
    border-bottom:1px solid var(--line);
  }
  .specs dt{
    font-weight:600;color:var(--ink-soft);
    background:var(--cream-2);
    letter-spacing:.02em;
  }
  .specs dd{color:var(--ink)}
  .specs dl > :nth-last-child(-n+2){border-bottom:0}

  /* How to use */
  .uses{display:grid;grid-template-columns:1fr;gap:1rem}
  @media (min-width:700px){.uses{grid-template-columns:repeat(3,1fr)}}
  .use{
    padding:1.5rem;
    background:#fff;border:1px solid var(--line);
    border-radius:var(--radius);
  }
  .use-num{
    font-family:var(--font-display);
    font-size:2rem;color:var(--gold);
    line-height:1;font-weight:600;
  }
  .use h3{
    font-family:var(--font-display);
    font-size:1.1rem;margin:.5rem 0 .4rem;font-weight:600;
  }
  .use p{font-size:.88rem;color:var(--ink-soft);line-height:1.55}

  /* Reviews */
  .reviews-head{
    display:flex;flex-direction:column;gap:1rem;
    padding:1.5rem;background:#fff;
    border:1px solid var(--line);border-radius:var(--radius);
    margin-bottom:1.5rem;
  }
  @media (min-width:700px){
    .reviews-head{flex-direction:row;align-items:center;justify-content:space-between}
  }
  .reviews-summary{display:flex;align-items:center;gap:1rem}
  .reviews-avg{
    font-family:var(--font-display);
    font-size:2.4rem;font-weight:600;color:var(--forest);
    line-height:1;
  }
  .reviews-meta{font-size:.85rem;color:var(--ink-soft)}
  .reviews-meta .stars{display:block;margin-bottom:.2rem;font-size:1.1rem}

  .review-list{display:grid;gap:1rem}
  .review{
    padding:1.25rem 1.5rem;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
  }
  .review-head{
    display:flex;justify-content:space-between;align-items:center;
    margin-bottom:.5rem;
  }
  .review-author{font-weight:600;font-size:.92rem}
  .review-date{font-size:.78rem;color:var(--ink-soft)}
  .review .stars{font-size:.9rem;margin-bottom:.5rem;display:block}
  .review p{font-size:.92rem;color:var(--ink-soft);line-height:1.6}

  /* FAQ — same as homepage but scoped */
  .pdp-faq details{
    background:#fff;border:1px solid var(--line);
    border-radius:var(--radius);margin-bottom:.75rem;
  }
  .pdp-faq details[open]{border-color:var(--forest);box-shadow:var(--shadow-md)}
  .pdp-faq summary{
    list-style:none;cursor:pointer;
    padding:1.1rem 1.5rem;
    font-weight:600;font-size:.98rem;
    display:flex;justify-content:space-between;align-items:center;gap:1rem;
  }
  .pdp-faq summary::-webkit-details-marker{display:none}
  .pdp-faq summary::after{
    content:"+";font-family:var(--font-display);
    font-size:1.4rem;color:var(--forest);
    transition:transform .25s;flex-shrink:0;
  }
  .pdp-faq details[open] summary::after{transform:rotate(45deg)}
  .pdp-faq details p{
    padding:0 1.5rem 1.1rem;
    font-size:.92rem;color:var(--ink-soft);line-height:1.6;
  }

  /* Related products */
  .related-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
  }
  @media (min-width:700px){.related-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem}}
  @media (min-width:1000px){.related-grid{grid-template-columns:repeat(3,1fr)}}

  /* Sticky add-to-cart bar (mobile) */
  .sticky-bar{
    position:fixed;bottom:0;left:0;right:0;
    background:rgba(245,239,227,.97);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-top:1px solid var(--line);
    padding:.75rem 1rem;
    display:flex;gap:.75rem;align-items:center;
    z-index:50;
    transform:translateY(100%);
    transition:transform .25s ease;
  }
  .sticky-bar.visible{transform:translateY(0)}
  .sticky-bar .info{flex:1;min-width:0}
  .sticky-bar .name{
    font-family:var(--font-display);
    font-size:.95rem;font-weight:600;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
  }
  .sticky-bar .price{
    font-family:var(--font-display);
    font-size:1.1rem;color:var(--forest);font-weight:600;
  }
  .sticky-bar .add-btn{padding:.85rem 1.5rem;box-shadow:none}
  @media (min-width:900px){.sticky-bar{display:none}}