/* ══════════════════════════════════════════════════
   MODERN DESIGN LAYER — Raasaa
   Additive polish over the base design system.
   ══════════════════════════════════════════════════ */

/* Fluid type scale */
.hero-title { font-size: clamp(2.1rem, 5vw, 3.6rem) !important; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem) !important; }

/* Smooth reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Modern product cards */
.shop-product-card, .product-card {
    border-radius: 16px !important;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    box-shadow: 0 2px 12px rgba(44,44,44,.06);
}
.shop-product-card:hover, .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(44,44,44,.14);
}
.product-image-wrapper img, .product-img {
    transition: transform .5s ease;
}
.shop-product-card:hover .product-img,
.product-card:hover img {
    transform: scale(1.06);
}

/* Skeleton loader (used while images lazy-load) */
.img-skeleton {
    background: linear-gradient(100deg, #eee 30%, #f6f6f6 50%, #eee 70%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { background-position-x: -200%; } }

/* Feature icon blocks — soft glass card */
.feature-item {
    border-radius: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(var(--primary-color-rgb), .12);
}
.feature-icon {
    background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,.35) 0%, transparent 55%),
        var(--primary-color);
    color: #fff !important;
    border-radius: 50%;
}

/* Buttons */
.btn-primary, .btn-submit, .action-btn-quote {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary:hover, .btn-submit:hover, .action-btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(var(--primary-color-rgb), .3);
}

/* Product quick-view modal */
.quick-view-overlay {
    position: fixed; inset: 0; background: rgba(30,28,26,.55);
    backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center;
    z-index: 2000; padding: 20px;
}
.quick-view-overlay.active { display: flex; }
.quick-view-modal {
    background: #fff; border-radius: 20px; max-width: 780px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    animation: pop-in .3s ease;
}
@keyframes pop-in { from { opacity:0; transform: scale(.94);} to {opacity:1; transform:scale(1);} }
.quick-view-modal img { width: 100%; height: 100%; object-fit: cover; }
.quick-view-body { padding: 2rem; position: relative; }
.quick-view-close {
    position: absolute; top: 14px; right: 14px; background: #f4f4f4; border: none;
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
}
@media (max-width: 640px) { .quick-view-modal { grid-template-columns: 1fr; } .quick-view-modal img { height: 220px; } }

/* Testimonials — asymmetric slider (quote/heading/nav on left, cards on right)
   Shared by includes/testimonials.php — used on both index.php and about.php */
.testimonials-section { background: var(--bg-cream, #faf7f2); padding: 90px 0; }

.testi-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}

.testi-side { padding-right: 10px; }

.testi-quote-icon {
    display: block;
    font-size: 3rem;
    color: rgba(0,0,0,.15);
    line-height: 1;
    margin-bottom: 18px;
}

.testi-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testi-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-nav-btn {
    background: none;
    border: none;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
    flex-shrink: 0;
}
.testi-nav-btn:hover { color: var(--primary-color); transform: scale(1.1); }

.testi-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(0,0,0,.12);
    border-radius: 2px;
    overflow: hidden;
    max-width: 90px;
}
.testi-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width .25s ease;
}

.testi-track-wrapper { overflow: hidden; }

.testi-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white, #fff);
    border-radius: 12px;
    padding: 26px 24px 22px;
    box-shadow: 0 10px 30px rgba(44,44,44,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(44,44,44,.12);
}

.testi-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testi-stars {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: .95rem;
    margin-bottom: 18px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 14px;
}
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testi-avatar-fallback {
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}
.testi-name { font-size: .88rem; color: var(--text-dark); margin: 0; }

@media (max-width: 900px) {
    .testi-layout { grid-template-columns: 1fr; gap: 28px; }
    .testi-side { padding-right: 0; }
    .testi-heading br { display: none; }
}
@media (max-width: 640px) {
    .testi-card { min-width: 82vw; max-width: 82vw; }
}

/* Badge for featured products */
.badge-featured {
    position: absolute; top: 12px; left: 12px; background: var(--primary-color); color: #fff;
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 10px;
    border-radius: 20px; z-index: 2;
}

/* Price tag */
.product-price { font-family: var(--font-heading); color: var(--primary-color); font-size: 1.05rem; font-weight: 600; }

/* Elegant placeholder image treatment (used when a real product photo hasn't been uploaded yet) */
.product-image[src*="placeholder-product"],
.product-img[src*="placeholder-product"] {
    background: linear-gradient(135deg, #f7f3ee, #ece4d8);
    padding: 8%;
    box-sizing: border-box;
}

/* CTA buttons — equal-width row on desktop, centered stacked pair on mobile */
.cta-buttons {
    display: inline-flex;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-whatsapp {
    display: inline-flex !important;
    width: auto !important;
}
.cta-buttons .btn-primary,
.cta-buttons .cta-whatsapp {
    padding: 16px 40px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    box-sizing: border-box;
    margin-top: 0;
}
@media (max-width: 640px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .cta-whatsapp {
        width: 100%;
        max-width: 320px;
        margin: 0;
    }
}

/* PDP "You May Also Like" — dynamic column count based on item count
   (2=2 cols, 3=3, 4=4, 5-6=3, 7-8=4) with responsive fallback */
.pdp-related-grid.cols-1 { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
.pdp-related-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pdp-related-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pdp-related-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .pdp-related-grid.cols-3,
    .pdp-related-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .pdp-related-grid {
        grid-template-columns: 1fr !important;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* Carousel card polish */
.product-card {
    background: var(--white, #fff);
    padding: 1.25rem;
    text-align: center;
}
.product-card .product-image {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1rem;
}
.product-card .product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: .9rem;
    color: var(--text-dark);
}

/* Carousel nav buttons — softer, floating, on-brand */
.carousel-btn {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.carousel-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    background: var(--primary-color);
    color: #fff;
}

/* WhatsApp enquire buttons — smoother, on-brand green with subtle depth.
   NOTE: width defaults to auto (fits its content) so a single WhatsApp button
   used on its own — hero CTAs, product detail pages — never stretches full-bleed.
   Only inside .product-card (grid cards) does it intentionally fill the card width. */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
    width: auto;
}
.product-card .btn-whatsapp {
    width: 100%;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,211,102,.28);
    color: #fff;
}

/* Section subtitle / title rhythm */
.section-subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: .5rem;
}
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

/* Features bar polish */
.features-bar { padding: 60px 0; }
.feature-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: #fff;
}
.feature-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), .25), inset 0 0 0 1px rgba(255,255,255,.15);
}
.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: .5rem;
    color: var(--text-dark);
}
.feature-item p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   CATEGORY SHOWCASE — expanding hover panels
   A row of tall image panels that expand on hover/focus,
   compressing the others. Distinct from a bento grid;
   feels editorial/magazine-style and works great with
   just a handful of categories.
   ══════════════════════════════════════════════════ */
.category-showcase { padding-top: 20px; }

.cat-panels {
    display: flex;
    gap: 10px;
    height: 460px;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.cat-panel {
    position: relative;
    flex: 1;
    min-width: 60px;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: flex 0.55s cubic-bezier(.22,.9,.28,1);
}

.cat-panels:hover .cat-panel { flex: 1; }
.cat-panels .cat-panel:hover { flex: 3.2; }

.cat-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(.22,.9,.28,1);
    filter: saturate(0.92);
}
.cat-panel:hover .cat-panel-bg {
    transform: scale(1.06);
}

.cat-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,12,10,.86) 0%, rgba(15,12,10,.35) 42%, rgba(15,12,10,.15) 100%);
    transition: background 0.5s ease;
}
.cat-panel:hover .cat-panel-overlay {
    background: linear-gradient(0deg, rgba(15,12,10,.78) 0%, rgba(15,12,10,.15) 55%, rgba(15,12,10,.05) 100%);
}

.cat-panel-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cat-panel-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.25);
}

.cat-panel-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}
.cat-panel:hover .cat-panel-title {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
}

.cat-panel-count {
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    letter-spacing: .3px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .35s ease .1s;
}
.cat-panel:hover .cat-panel-count {
    opacity: 1;
    max-height: 20px;
}

.cat-panel-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s ease, transform .3s ease;
}
.cat-panel:hover .cat-panel-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Vertical title only makes sense with several panels side by side.
   On tablets/mobile, switch to a simpler stacked-card layout entirely. */
@media (max-width: 820px) {
    .cat-panels {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }
    .cat-panel {
        height: 150px;
        flex: none !important;
    }
    .cat-panel-icon {
        display: none;
    }
    .cat-panel-title {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        white-space: normal;
    }
    .cat-panel-count {
        opacity: 1;
        max-height: 20px;
    }
    .cat-panel-bg { transform: none !important; }
}

/* ══════════════════════════════════════════════════
   PRODUCTS LISTING PAGE — polish
   ══════════════════════════════════════════════════ */
.cat-link-icon { color: var(--primary-color); margin-right: 6px; font-size: 1rem; }

.clear-filters-link {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--primary-color);
    text-decoration: none; margin-top: .5rem; padding: .5rem 0;
}
.clear-filters-link:hover { text-decoration: underline; }

.mobile-filter-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    cursor: pointer;
}
.sidebar-close-btn { display: none; }
.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 998;
}
.sidebar-overlay.active { display: block; }

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sort-label { font-size: .8rem; color: var(--text-light); white-space: nowrap; }
.sort-select {
    border: 1px solid rgba(0,0,0,.12);
    padding: 8px 12px;
    font-size: .82rem;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.product-cat-label {
    font-size: .72rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 4px;
}
.shop-product-card .product-info h3 {
    font-size: 1rem;
    margin: 0 0 4px;
    font-family: var(--font-heading);
}
.shop-product-card .product-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s ease;
}
.shop-product-card .product-info h3 a:hover { color: var(--primary-color); }

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-light);
}
.empty-state i { font-size: 2.5rem; color: rgba(0,0,0,.15); margin-bottom: 1rem; display: block; }

@media (max-width: 900px) {
    .mobile-filter-toggle { display: flex; }
    .shop-sidebar {
        position: fixed;
        top: 0; left: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 999;
        overflow-y: auto;
        padding: 24px 20px;
        transition: left .35s ease;
        box-shadow: 4px 0 24px rgba(0,0,0,.12);
    }
    .shop-sidebar.open { left: 0; }
    .sidebar-close-btn {
        display: flex;
        align-items: center; justify-content: center;
        width: 36px; height: 36px;
        border: none;
        background: rgba(0,0,0,.05);
        border-radius: 50%;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        margin-left: auto;
        cursor: pointer;
    }
    .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .toolbar-right { width: 100%; }
    .sort-select { flex: 1; }
}

/* ══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
   ══════════════════════════════════════════════════ */
.pdp-section { padding: 2.5rem 20px 4rem; max-width: 1180px; margin: 0 auto; }

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.pdp-gallery { position: sticky; top: 90px; }
.pdp-main-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f3ee;
    aspect-ratio: 1/1;
}
.pdp-main-image {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .2s ease, transform .5s ease;
}
.pdp-main-image-wrap:hover .pdp-main-image { transform: scale(1.04); }
.pdp-badge { top: 16px; left: 16px; }

.pdp-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.pdp-thumb {
    flex-shrink: 0;
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: none;
    transition: border-color .2s ease, opacity .2s ease;
    opacity: .65;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { border-color: var(--primary-color); opacity: 1; }

.pdp-category {
    color: var(--primary-color);
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 .5rem;
}
.pdp-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 .6rem;
    color: var(--text-dark);
    line-height: 1.25;
}
.pdp-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.pdp-price-quote { font-size: 1.1rem; color: var(--text-light); font-style: italic; }

.pdp-short-desc {
    color: var(--text-light);
    font-size: .96rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.pdp-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.pdp-whatsapp-btn,
.pdp-quote-btn {
    width: 100%;
    height: 54px;
    align-self: stretch;
    text-align: center;
    padding: 0 12px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    vertical-align: top;
}
.pdp-whatsapp-btn i,
.pdp-quote-btn i {
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
}
@media (max-width: 420px) {
    .pdp-cta-row { grid-template-columns: 1fr; }
}

.pdp-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 14px 0;
    border-top: 1px solid rgba(0,0,0,.07);
    border-bottom: 1px solid rgba(0,0,0,.07);
    margin-bottom: 1.75rem;
}
.pdp-trust-row span {
    font-size: .78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pdp-trust-row i { color: var(--primary-color); font-size: 1rem; }

.pdp-accordion-item {
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.pdp-accordion-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}
.pdp-accordion-head span { display: flex; align-items: center; gap: 8px; }
.pdp-accordion-head i.ri-leaf-line,
.pdp-accordion-head i.ri-star-line,
.pdp-accordion-head i.ri-file-text-line { color: var(--primary-color); }
.pdp-accordion-caret { transition: transform .3s ease; color: var(--text-light) !important; }
.pdp-accordion-item.open .pdp-accordion-caret { transform: rotate(180deg); }

.pdp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.pdp-accordion-body p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.75;
    padding-bottom: 16px;
    margin: 0;
}

.pdp-related { margin-top: 4rem; }
.pdp-related-grid { margin-top: 1.5rem; }

.pdp-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    z-index: 500;
}
.pdp-sticky-btn { width: 100%; justify-content: center; }

@media (max-width: 860px) {
    .pdp-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .pdp-gallery { position: static; }
    .pdp-section { padding-bottom: 6rem; }
    .pdp-sticky-bar { display: block; }
}