/* ============================================
   POWDERS PAGE — powders.css
   Extends style.css shared globals
   ============================================ */

/* ─── HERO ─── */
.pow-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: var(--nav-h);
}
.pow-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pow-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.35);
}
.pow-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20,50,10,.9) 0%,
        rgba(50,100,30,.75) 50%,
        rgba(139,69,19,.4) 100%
    );
}

.pow-hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    width: 100%;
}

.pow-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--theme-success-rgb),.15);
    border: 1px solid rgba(var(--theme-success-rgb),.3);
    color: var(--theme-success);
    padding: 9px 20px;
    border-radius: var(--r-xl);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 22px;
    animation: pow-glow 2.5s infinite;
}
@keyframes pow-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(var(--theme-success-rgb),.2); }
    50%      { box-shadow: 0 0 0 10px rgba(var(--theme-success-rgb),0); }
}

.pow-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.pow-hero-accent {
    color: #2ECC71;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    display: block;
}
.pow-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 30px;
}
.pow-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.btn-pow-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--theme-success-dark), var(--theme-success));
    color: var(--clr-white);
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 4px 18px rgba(39,174,96,.35);
    transition: var(--tr);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-pow-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(var(--theme-success-dark-rgb),.45);
}
.btn-pow-primary.added { background: linear-gradient(135deg, var(--theme-success-dark), var(--theme-success)); }
.btn-pow-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--clr-white);
    border: 2px solid rgba(255,255,255,.6);
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--tr);
    text-decoration: none;
}
.btn-pow-outline:hover {
    background: var(--clr-white);
    color: var(--theme-success-dark);
    transform: translateY(-3px);
}
.btn-pow-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.12);
    color: var(--clr-white);
    border: 2px solid rgba(255,255,255,.5);
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--tr);
    text-decoration: none;
}
.btn-pow-outline-dark:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.pow-hero-pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.pow-hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
}
.pow-hero-pills i { color: var(--theme-success); }

/* Hero right — image cards */
.pow-hero-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.phc-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--sh-xl);
    border: 3px solid rgba(46,204,113,.25);
}
.phc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.phc-card:hover img { transform: scale(1.07); }
.phc-main {
    width: 100%;
    max-width: 360px;
    height: 260px;
}
.phc-sm {
    width: 160px;
    height: 140px;
    position: absolute;
}
.phc-sm-1 {
    top: 20px;
    left: 0;
    animation: pow-float1 3.5s ease-in-out infinite;
}
.phc-sm-2 {
    top: 20px;
    right: 0;
    animation: pow-float2 4s ease-in-out infinite;
}
@keyframes pow-float1 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes pow-float2 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
}

.phc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
    padding: 14px 12px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-white);
    font-size: .8rem;
    font-weight: 600;
}
.phc-label i { color: #2ECC71; }

.phc-stat {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r-xl);
    padding: 14px 20px;
    margin-top: 16px;
    width: 100%;
    max-width: 360px;
    justify-content: center;
}
.phc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.phc-stat-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2ECC71;
    line-height: 1;
}
.phc-stat-item span {
    font-size: .7rem;
    color: rgba(255,255,255,.65);
    margin-top: 3px;
    white-space: nowrap;
}
.phc-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* Scroll cue */
.pow-scroll-cue {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 18px 0 22px;
}
.pow-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.pow-wheel {
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,.6);
    border-radius: 3px;
    animation: pow-wheel 1.5s infinite;
}
@keyframes pow-wheel {
    0%   { opacity:1; transform: translateY(0); }
    100% { opacity:0; transform: translateY(10px); }
}

/* ─── MARQUEE ─── */
.pow-marquee {
    background: linear-gradient(135deg, #1A5E2A, #27AE60);
    padding: 13px 0;
    overflow: hidden;
}
.pm-track {
    display: flex;
    gap: 56px;
    animation: pm-roll 22s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.pm-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-white);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .8px;
}
.pm-track span i { color: #A9FFB7; }
@keyframes pm-roll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── POWDER PRODUCTS ─── */
.powder-products {
    padding: 100px 0 80px;
    background: var(--clr-bg);
}

/* Featured Card */
.pow-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    margin-bottom: 50px;
    background: var(--clr-white);
    border: 1.5px solid rgba(46,204,113,.1);
}

.pf-img-side { display: flex; flex-direction: column; }
.pf-img-main {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 340px;
}
.pf-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.pow-featured:hover .pf-img-main img { transform: scale(1.05); }
.pf-img-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    padding: 7px 16px;
    border-radius: var(--r-xl);
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--sh-sm);
}

.pf-img-ingredients {
    display: flex;
    gap: 0;
    background: var(--clr-bg-alt);
    border-top: 1px solid rgba(39,174,96,.08);
}
.pfi-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-right: 1px solid rgba(39,174,96,.08);
}
.pfi-item:last-child { border-right: none; }
.pfi-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform .5s ease;
}
.pfi-item:hover img { transform: scale(1.1); }
.pfi-item span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--clr-text-lt);
    padding: 6px 4px;
    text-align: center;
}

/* Featured body */
.pf-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.pf-cat {
    font-size: .7rem;
    font-weight: 700;
    color: #27AE60;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.pf-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(39,174,96,.1);
    color: #27AE60;
    border-radius: var(--r-xl);
    font-size: .72rem;
    font-weight: 700;
}
.pf-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--clr-primary-dk);
    margin-bottom: 4px;
}
.pf-tamil {
    font-size: .9rem;
    color: var(--clr-text-muted);
    font-style: italic;
    margin-bottom: 10px;
}
.pf-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}
.pf-stars i { color: var(--clr-accent); font-size: .88rem; }
.pf-stars span { font-size: .8rem; color: var(--clr-text-muted); margin-left: 6px; }
.pf-desc {
    font-size: .93rem;
    color: var(--clr-text-lt);
    line-height: 1.8;
    margin-bottom: 20px;
}

.pf-benefits-quick {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.pbq-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(39,174,96,.08);
    border-radius: var(--r-xl);
    font-size: .78rem;
    font-weight: 600;
    color: #229954;
}
.pbq-item i { color: #27AE60; }

.pf-variants { margin-bottom: 22px; }
.pf-variants h4 {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-lt);
    margin-bottom: 10px;
}
.pf-variant-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.pv-btn {
    padding: 9px 18px;
    border-radius: var(--r-xl);
    border: 2px solid rgba(139,69,19,.15);
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-lt);
    background: var(--clr-bg);
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit;
}
.pv-btn:hover, .pv-btn.active {
    border-color: #27AE60;
    color: #27AE60;
    background: rgba(39,174,96,.08);
}

.pf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(139,69,19,.07);
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}
.pf-price-wrap { display: flex; align-items: baseline; gap: 10px; }
.pf-price-now {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
}
.pf-price-old {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
}
.pf-off {
    font-size: .75rem;
    font-weight: 700;
    color: #27AE60;
    background: rgba(39,174,96,.1);
    padding: 3px 10px;
    border-radius: var(--r-xl);
}
.pf-action-btns { display: flex; gap: 10px; align-items: center; }
.btn-pow-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: .92rem;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit;
}
.btn-pow-add:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(39,174,96,.3); }
.btn-pow-add.added { background: linear-gradient(135deg, #229954, #1ABC9C); }
.btn-pow-wish {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-bg);
    border: 1.5px solid rgba(139,69,19,.15);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--tr);
}
.btn-pow-wish:hover, .btn-pow-wish.wished {
    background: #E74C3C;
    color: var(--clr-white);
    border-color: #E74C3C;
}

.pf-meta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.pf-meta-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}
.pf-meta-row i { color: #27AE60; }

/* Powder Grid */
.pow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

/* Powder Card */
.pow-card {
    background: var(--clr-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: var(--tr-sl);
    border: 1.5px solid transparent;
}
.pow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: rgba(39,174,96,.1);
}

.pc-img-area {
    position: relative;
    overflow: hidden;
    height: 270px;
}
.pc-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.pow-card:hover .pc-img-area img { transform: scale(1.1); }

.pc-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--tr);
}
.pow-card:hover .pc-img-overlay { opacity: 1; }
.pc-wish, .pc-quick {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-white);
    color: var(--clr-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    box-shadow: var(--sh-sm);
    transition: var(--tr);
    transform: translateY(12px);
}
.pow-card:hover .pc-wish,
.pow-card:hover .pc-quick { transform: translateY(0); }
.pow-card:hover .pc-quick { transition-delay: .05s; }
.pc-wish:hover, .pc-wish.wished { background: #E74C3C; color: #fff; }
.pc-quick:hover { background: #27AE60; color: #fff; }

.pc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 13px;
    border-radius: var(--r-xl);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}
.pc-badge-new  { background: #27AE60; color: #fff; }
.pc-badge-best { background: #E74C3C; color: #fff; }

.pc-tag-float {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,.65);
    color: var(--clr-white);
    padding: 5px 12px;
    border-radius: var(--r-xl);
    font-size: .72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}
.pc-tag-float i { color: #2ECC71; }

.pc-body-area { padding: 24px; }
.pc-cat-label {
    font-size: .68rem;
    font-weight: 700;
    color: #27AE60;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 5px;
}
.pc-prod-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary-dk);
    margin-bottom: 3px;
}
.pc-tamil-name {
    font-size: .82rem;
    color: var(--clr-text-muted);
    font-style: italic;
    margin-bottom: 8px;
}
.pc-star-row {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}
.pc-star-row i { color: var(--clr-accent); font-size: .8rem; }
.pc-star-row span { font-size: .75rem; color: var(--clr-text-muted); margin-left: 5px; }
.pc-prod-desc {
    font-size: .86rem;
    color: var(--clr-text-lt);
    line-height: 1.65;
    margin-bottom: 14px;
}

.pc-benefit-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.pc-benefit-chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(39,174,96,.08);
    color: #229954;
    border-radius: var(--r-xl);
    font-size: .72rem;
    font-weight: 600;
}
.pc-benefit-chips i { font-size: .7rem; }

.pc-usage {
    font-size: .8rem;
    color: var(--clr-text-lt);
    background: var(--clr-bg);
    border-radius: var(--r-md);
    padding: 10px 14px;
    margin-bottom: 16px;
    border-left: 3px solid #27AE60;
    line-height: 1.55;
}
.pc-usage strong { color: var(--clr-primary-dk); }

.pc-variants-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.pcv {
    padding: 7px 14px;
    border-radius: var(--r-xl);
    border: 2px solid rgba(139,69,19,.1);
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-lt);
    background: var(--clr-bg);
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit;
}
.pcv:hover, .pcv.active {
    border-color: #27AE60;
    color: #27AE60;
    background: rgba(39,174,96,.08);
}

.pc-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(139,69,19,.06);
    flex-wrap: wrap;
    gap: 10px;
}
.pc-price-grp { display: flex; align-items: baseline; gap: 8px; }
.pc-now {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
}
.pc-old {
    font-size: .85rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
}
.pc-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    border-radius: var(--r-xl);
    font-size: .84rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit;
}
.pc-add-btn:hover { transform: scale(1.05); box-shadow: 0 4px 14px rgba(39,174,96,.28); }
.pc-add-btn.added { background: linear-gradient(135deg, #229954, #1ABC9C); }

/* Bundle */
.pow-bundle {
    background: linear-gradient(135deg, var(--clr-primary-dk), var(--clr-secondary));
    border-radius: var(--r-lg);
    padding: 32px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: var(--sh-lg);
}
.pb-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(244,196,48,.2);
    color: var(--clr-accent);
    padding: 6px 14px;
    border-radius: var(--r-xl);
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pb-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--clr-white);
    margin-bottom: 6px;
}
.pb-left p {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 16px;
}
.pb-imgs { display: flex; gap: -8px; }
.pb-imgs img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.3);
    margin-left: -8px;
}
.pb-imgs img:first-child { margin-left: 0; }
.pb-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.pb-price { display: flex; align-items: baseline; gap: 12px; }
.pb-price-now {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-accent);
}
.pb-price-old {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    text-decoration: line-through;
}
.pb-save {
    font-size: .8rem;
    font-weight: 700;
    background: rgba(39,174,96,.25);
    color: #2ECC71;
    padding: 4px 12px;
    border-radius: var(--r-xl);
}

/* ─── HEALTH BENEFITS ─── */
.health-benefits {
    padding: 100px 0;
    background: var(--clr-white);
}
.hb-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: start;
}
.hb-img-col { position: relative; }
.hb-img-main {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.hb-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .6s ease;
}
.hb-img-main:hover img { transform: scale(1.04); }
.hb-img-float {
    position: absolute;
    bottom: -20px;
    right: -24px;
    width: 180px;
    height: 180px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 4px solid var(--clr-white);
}
.hb-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hb-ayur-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    text-align: center;
    gap: 3px;
    box-shadow: var(--sh-md);
    animation: ayur-float 3s ease-in-out infinite;
}
@keyframes ayur-float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hb-ayur-badge i { font-size: 1.3rem; }
.hb-ayur-badge span { font-size: .58rem; line-height: 1.3; }

.hb-content-col { display: flex; flex-direction: column; gap: 32px; }
.hb-product-block {
    background: var(--clr-bg);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 1.5px solid rgba(39,174,96,.08);
    transition: var(--tr);
}
.hb-product-block:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(39,174,96,.15);
}
.hb-prod-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.hb-prod-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hb-prod-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary-dk);
    margin-bottom: 2px;
}
.hb-prod-header span {
    font-size: .78rem;
    color: var(--clr-text-muted);
}
.hb-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.hb-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.hb-benefit i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.hb-benefit strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-primary-dk);
    margin-bottom: 2px;
}
.hb-benefit p { font-size: .78rem; color: var(--clr-text-lt); line-height: 1.5; }

/* ─── NUTRITION ─── */
.nutrition-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}
.nutr-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.ntab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--r-xl);
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text-lt);
    background: var(--clr-white);
    border: 2px solid rgba(39,174,96,.12);
    cursor: pointer;
    transition: var(--tr);
    font-family: inherit;
}
.ntab:hover, .ntab.active {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(39,174,96,.3);
}

.nutr-panels { position: relative; }
.nutr-panel { display: none; }
.nutr-panel.active { display: block; }
.nutr-panel-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}
.nutr-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    position: relative;
}
.nutr-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .6s ease;
}
.nutr-img:hover img { transform: scale(1.05); }
.nutr-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
    color: var(--clr-white);
    padding: 20px 18px 14px;
    font-size: .82rem;
    font-weight: 600;
}

.nutr-bars h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--clr-primary-dk);
    margin-bottom: 24px;
}
.nbar-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.nbar-item {}
.nbar-label {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 7px;
}
.nbar-track {
    height: 8px;
    background: rgba(139,69,19,.1);
    border-radius: 8px;
    overflow: hidden;
}
.nbar-fill {
    height: 100%;
    border-radius: 8px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.nbar-green { background: linear-gradient(90deg, #27AE60, #2ECC71); }
.nbar-gold  { background: linear-gradient(90deg, #8B6914, #C49A2A); }
.nbar-brown { background: linear-gradient(90deg, #8B4513, #D2691E); }

.nutr-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.nutr-tags span {
    padding: 6px 14px;
    background: rgba(39,174,96,.08);
    color: #27AE60;
    border-radius: var(--r-xl);
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(39,174,96,.15);
}

/* ─── USAGE ─── */
.usage-section {
    padding: 100px 0;
    background: var(--clr-white);
}
.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.usage-card {
    background: var(--clr-bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: var(--tr-sl);
    border: 1.5px solid transparent;
}
.usage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-md);
    border-color: rgba(39,174,96,.1);
}
.usage-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.usage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}
.usage-card:hover .usage-img img { transform: scale(1.1); }
.usage-img-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(39,174,96,.88);
    color: var(--clr-white);
    padding: 4px 12px;
    border-radius: var(--r-xl);
    font-size: .7rem;
    font-weight: 700;
}
.usage-body { padding: 22px; }
.usage-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.usage-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary-dk);
    margin-bottom: 8px;
}
.usage-body p {
    font-size: .83rem;
    color: var(--clr-text-lt);
    line-height: 1.65;
    margin-bottom: 12px;
}
.usage-powder-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.usage-powder-tags span {
    padding: 4px 11px;
    border-radius: var(--r-xl);
    font-size: .7rem;
    font-weight: 700;
}

/* ─── PROCESS ─── */
.pow-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D3B1A, #1A5E2A);
}
.pow-process .sec-badge { background: rgba(46,204,113,.15); color: #2ECC71; border: 1px solid rgba(46,204,113,.3); }
.pow-process .sec-title { color: var(--clr-white); }
.pow-process .sec-sub   { color: rgba(255,255,255,.7); }
.pow-process .deco-line { background: linear-gradient(90deg, #2ECC71, #27AE60); }
.pow-process .sec-deco i { color: #2ECC71; }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.ps-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
    position: relative;
}
.ps-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(46,204,113,.15);
    border: 2px solid rgba(46,204,113,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2ECC71;
    margin: 0 auto 12px;
    transition: var(--tr);
}
.ps-step:hover .ps-icon {
    background: #27AE60;
    color: var(--clr-white);
    transform: scale(1.1);
}
.ps-num {
    font-family: 'Playfair Display', serif;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(46,204,113,.5);
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.ps-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px;
}
.ps-step p {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}
.ps-connector {
    display: flex;
    align-items: center;
    color: rgba(46,204,113,.4);
    font-size: 1rem;
    padding-top: 22px;
    flex-shrink: 0;
}

/* ─── POWDER REVIEWS ─── */
.pow-reviews {
    padding: 100px 0;
    background: var(--clr-bg);
}
.pow-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.pr-card {
    background: var(--clr-white);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--sh-sm);
    border: 1.5px solid rgba(39,174,96,.06);
    transition: var(--tr);
}
.pr-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-5px);
    border-color: rgba(39,174,96,.12);
}
.pr-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pr-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2ECC71;
    flex-shrink: 0;
}
.pr-top h4 { font-size: .9rem; font-weight: 600; color: var(--clr-primary-dk); }
.pr-top span { font-size: .75rem; color: var(--clr-text-muted); }
.pr-product-tag {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(39,174,96,.1);
    color: #27AE60;
    border-radius: var(--r-xl);
    font-size: .7rem;
    font-weight: 700;
    white-space: nowrap;
}
.pr-stars { margin-bottom: 12px; }
.pr-stars i { color: var(--clr-accent); font-size: .82rem; margin-right: 1px; }
.pr-card p {
    font-size: .88rem;
    color: var(--clr-text-lt);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
}
.pr-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #27AE60;
    font-weight: 600;
}

/* ─── CTA ─── */
.pow-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.pow-cta-bg {
    position: absolute;
    inset: 0;
}
.pow-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.3);
}
.pow-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,60,20,.85), rgba(20,100,50,.65));
}
.pow-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--clr-white);
}
.pow-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(46,204,113,.15);
    border: 1px solid rgba(46,204,113,.3);
    color: #2ECC71;
    padding: 8px 18px;
    border-radius: var(--r-xl);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.pow-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}
.pow-cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.pow-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.pow-cta-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.pow-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}
.pow-cta-trust i { color: #2ECC71; }

/* ─── FLOATING CART ─── */
.pow-float-cart {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
}
.pfc-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-lg);
    position: relative;
    border: none;
    cursor: pointer;
    transition: var(--tr);
}
.pfc-btn:hover { transform: scale(1.08) translateY(-2px); }
.pfc-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    background: #E74C3C;
    color: var(--clr-white);
    font-size: .62rem;
    font-weight: 700;
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--clr-white);
    transition: var(--tr);
}
.pfc-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: var(--clr-white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.97);
    transition: var(--tr);
    overflow: hidden;
    max-height: 420px;
    display: flex;
    flex-direction: column;
}
.pfc-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.pfc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    font-weight: 600;
    font-size: .9rem;
    flex-shrink: 0;
}
.pfc-header button {
    background: none;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    font-size: .9rem;
    opacity: .8;
    transition: var(--tr);
}
.pfc-header button:hover { opacity: 1; }
.pfc-items { flex: 1; overflow-y: auto; padding: 12px; }
.pfc-empty {
    padding: 32px;
    text-align: center;
    color: var(--clr-text-muted);
}
.pfc-empty i { font-size: 2rem; display: block; margin-bottom: 8px; opacity: .3; }
.pfc-empty p { font-size: .85rem; }
.pfc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: var(--clr-bg);
    border-radius: var(--r-md);
    margin-bottom: 7px;
    font-size: .82rem;
}
.pfc-item-name { flex: 1; font-weight: 600; color: var(--clr-primary-dk); }
.pfc-item-price { font-weight: 700; color: var(--clr-primary); }
.pfc-footer {
    padding: 14px 18px;
    border-top: 1px solid rgba(139,69,19,.07);
    flex-shrink: 0;
}
.pfc-total {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    color: var(--clr-text-lt);
    margin-bottom: 10px;
}
.pfc-total strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--clr-primary);
}
.pfc-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: var(--clr-white);
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: .86rem;
    text-decoration: none;
    transition: var(--tr);
}
.pfc-checkout:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(39,174,96,.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .pow-hero-content { grid-template-columns: 1fr; text-align: center; }
    .pow-hero-desc { margin: 0 auto 30px; }
    .pow-hero-cta { justify-content: center; }
    .pow-hero-pills { justify-content: center; }
    .pow-hero-cards { max-width: 400px; margin: 0 auto; }

    .pow-featured { grid-template-columns: 1fr; }
    .pf-img-main { min-height: 280px; }

    .hb-layout { grid-template-columns: 1fr; gap: 50px; }
    .hb-img-col { max-width: 500px; margin: 0 auto; }

    .nutr-panel-layout { grid-template-columns: 1fr; gap: 40px; }
    .nutr-img img { height: 260px; }
}

@media (max-width: 900px) {
    .pow-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }
    .usage-grid { grid-template-columns: repeat(2, 1fr); }
    .pow-review-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .hb-benefits-grid { grid-template-columns: 1fr; }
    .process-steps { gap: 20px; }
    .ps-connector { display: none; }
    .ps-step { max-width: 160px; }
}

@media (max-width: 640px) {
    .pow-bundle { flex-direction: column; text-align: center; }
    .pb-right { align-items: center; }
    .usage-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pf-body { padding: 24px 20px; }
    .pf-info-row { grid-template-columns: 1fr 1fr; }
    .pow-cta-btns { flex-direction: column; align-items: center; }
    .btn-pow-primary, .btn-pow-outline-dark { width: 100%; justify-content: center; }
    .phc-sm { width: 120px; height: 110px; }
}