/* PulseRelax — Premium Light Luxury Theme */
:root {
    --pr-bg: #fafafa;
    --pr-bg-alt: #f5f5f5;
    --pr-surface: #ffffff;
    --pr-text: #222222;
    --pr-text-muted: #666666;
    --pr-black: #222222;
    --pr-dark: #f5f5f5;
    --pr-dark-2: #ffffff;
    --pr-dark-3: #eeeeee;
    --pr-gold: #C9A227;
    --pr-gold-light: #d4b44a;
    --pr-gold-dark: #a8861f;
    --pr-white: #ffffff;
    --pr-gray: #777777;
    --pr-gray-light: #555555;
    --pr-border: rgba(0, 0, 0, 0.08);
    --pr-border-gold: rgba(201, 162, 39, 0.25);
    --pr-font-display: 'Cormorant Garamond', Georgia, serif;
    --pr-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --pr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --pr-wellness-green: #2d6a4f;
    --pr-wellness-green-light: #40916c;
    --pr-wellness-green-soft: #52b788;
    --pr-wellness-bg-start: #f4faf7;
    --pr-wellness-bg-end: #e8f5ef;
    --pr-wellness: #1a3328;
    --pr-wellness-mid: #254a38;
    --pr-glass: rgba(0, 0, 0, 0.03);
    --pr-glass-border: rgba(201, 162, 39, 0.2);
    --pr-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --pr-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

body.pr-body {
    background: var(--pr-bg);
    color: var(--pr-text);
    font-family: var(--pr-font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--pr-gold); text-decoration: none; transition: var(--pr-transition); }
a:hover { color: var(--pr-gold-light); }

.text-gold { color: var(--pr-gold) !important; }
.bg-gold { background: var(--pr-gold) !important; color: var(--pr-black) !important; }

/* ── Announcement Bar ── */
.pr-announcement {
    background: linear-gradient(90deg, #e8f5ef 0%, #d8f0e4 25%, #e8f5ef 50%, #d8f0e4 75%, #e8f5ef 100%);
    color: var(--pr-wellness);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(45, 106, 79, 0.15);
    position: relative;
    overflow: hidden;
}

.pr-announcement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.06), transparent);
    pointer-events: none;
}

.pr-announcement .container {
    position: relative;
    z-index: 1;
}

.sc-announcement-text {
    flex: 1;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.sc-countdown {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pr-wellness-mid);
}

.sc-countdown span.sc-countdown-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 4px;
    color: var(--pr-gold-dark);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: var(--pr-transition);
}

.sc-countdown-label {
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pr-wellness-mid);
    margin-right: 0.15rem;
}

/* ── Header ── */
.pr-header {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    border-bottom: none;
    box-shadow: var(--pr-shadow-sm);
    transition: background 0.35s ease, box-shadow 0.35s ease;
    z-index: 1030;
}

.pr-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 8%, rgba(201, 162, 39, 0.5) 50%, transparent 92%);
    pointer-events: none;
}

.pr-header .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--pr-font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--pr-text) !important;
    letter-spacing: 0.03em;
    transition: var(--pr-transition);
}

.pr-logo:hover {
    color: var(--pr-text) !important;
    opacity: 0.85;
}

.pr-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(145deg, var(--pr-gold-light) 0%, var(--pr-gold) 45%, var(--pr-gold-dark) 100%);
    color: var(--pr-black);
    border-radius: 50%;
    font-size: 17px;
    box-shadow: 0 2px 14px rgba(201, 162, 39, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    transition: var(--pr-transition);
}

.pr-logo:hover .pr-logo-icon {
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
}

.pr-header .navbar-nav {
    gap: 0.15rem;
}

.pr-header .nav-link {
    position: relative;
    color: rgba(34, 34, 34, 0.75) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 0.55rem 1rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.pr-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--pr-gold), transparent);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pr-header .nav-link:hover,
.pr-header .nav-link.active,
.pr-header .nav-link.show {
    color: var(--pr-gold) !important;
}

.pr-header .nav-link:hover::after,
.pr-header .nav-link.active::after,
.pr-header .nav-link.show::after {
    width: calc(100% - 1.5rem);
}

.pr-header .nav-link.active {
    font-weight: 600;
}

.pr-header .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
    border-top-color: rgba(201, 162, 39, 0.5);
    transition: var(--pr-transition);
}

.pr-header .nav-link.show.dropdown-toggle::after {
    border-top-color: var(--pr-gold);
}

/* Icon buttons — premium light */
.btn-pr-icon {
    background: var(--pr-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--pr-glass-border);
    color: var(--pr-text);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    transition: var(--pr-transition);
}

.btn-pr-icon:hover,
.btn-pr-icon:focus-visible,
.btn-pr-icon.show {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
    background: rgba(201, 162, 39, 0.16);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.12);
}

.dropdown-toggle-no-caret::after { display: none; }

.pr-badge-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, var(--pr-gold-light), var(--pr-gold));
    color: var(--pr-black);
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Premium dropdown menus */
.pr-nav-submenu,
.pr-dropdown {
    background: #ffffff !important;
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    padding: 0.45rem !important;
    margin-top: 0.65rem !important;
    box-shadow: var(--pr-shadow-md), 0 0 0 1px rgba(201, 162, 39, 0.06) inset !important;
    min-width: 210px;
}

.pr-nav-submenu .dropdown-item,
.pr-dropdown .dropdown-item {
    color: rgba(34, 34, 34, 0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.pr-nav-submenu .dropdown-item:hover,
.pr-nav-submenu .dropdown-item:focus,
.pr-dropdown .dropdown-item:hover,
.pr-dropdown .dropdown-item:focus {
    background: rgba(201, 162, 39, 0.1);
    color: var(--pr-gold);
    padding-left: 1.05rem;
}

.pr-nav-submenu .dropdown-divider,
.pr-dropdown .dropdown-divider {
    border-color: rgba(201, 162, 39, 0.12);
    margin: 0.35rem 0.5rem;
}

/* Mobile hamburger */
.pr-header .navbar-toggler {
    border: 1px solid var(--pr-glass-border);
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    background: var(--pr-glass);
    backdrop-filter: blur(8px);
    transition: var(--pr-transition);
}

.pr-header .navbar-toggler:hover,
.pr-header .navbar-toggler:focus {
    border-color: rgba(201, 162, 39, 0.45);
    background: rgba(201, 162, 39, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.pr-header .navbar-toggler-icon {
    width: 1.15em;
    height: 1.15em;
    background-size: 100%;
}

/* Buttons */
.btn-pr-gold {
    background: var(--pr-gold);
    color: var(--pr-black);
    border: 2px solid var(--pr-gold);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--pr-transition);
}

.btn-pr-gold:hover {
    background: var(--pr-gold-light);
    border-color: var(--pr-gold-light);
    color: var(--pr-black);
    transform: translateY(-1px);
}

.btn-pr-outline {
    background: transparent;
    color: var(--pr-text);
    border: 2px solid var(--pr-border-gold);
    font-weight: 500;
    transition: var(--pr-transition);
}

.btn-pr-outline:hover {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
    background: rgba(201, 162, 39, 0.05);
}

/* Forms */
.form-control, .form-select {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--pr-text);
    border-radius: 6px;
}

.form-control:focus, .form-select:focus {
    background: var(--pr-surface);
    border-color: var(--pr-gold);
    color: var(--pr-text);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-control::placeholder { color: var(--pr-gray); }

/* Alerts */
.pr-alert {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--pr-text);
    border-radius: 8px;
}

/* Footer — Premium Light */
.pr-footer {
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    margin-top: 0;
}

.pr-footer-main {
    padding: 4.5rem 0 3.5rem;
}

.pr-footer-brand {
    max-width: 320px;
}

.pr-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--pr-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pr-text) !important;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.pr-footer-heading,
.pr-footer-toggle .pr-footer-heading {
    color: var(--pr-gold);
    font-family: var(--pr-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    list-style: none;
}

.pr-footer-heading-static {
    margin-bottom: 0.75rem;
}

.pr-footer-text {
    color: var(--pr-text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.pr-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-footer-links li { margin-bottom: 10px; }

.pr-footer-links a {
    color: var(--pr-text-muted);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.25s ease;
}

.pr-footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--pr-gold);
    transition: width 0.3s ease;
}

.pr-footer-links a:hover {
    color: var(--pr-gold);
}

.pr-footer-links a:hover::after {
    width: 100%;
}

/* Footer accordion (mobile) */
.pr-footer-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.pr-footer-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    background: transparent;
    user-select: none;
    text-align: left;
}

.pr-footer-toggle .pr-footer-heading {
    margin-bottom: 0;
}

.pr-footer-toggle::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 14px;
    color: var(--pr-gold);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.pr-footer-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.pr-footer-group .collapse.show .pr-footer-links,
.pr-footer-group .collapse.d-lg-block .pr-footer-links {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
}

.pr-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--pr-text-muted);
    transition: var(--pr-transition);
    font-size: 16px;
}

.pr-social-links a:hover {
    border-color: var(--pr-gold);
    color: var(--pr-black);
    background: var(--pr-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

/* Footer newsletter */
.pr-newsletter-form { margin-bottom: 1.75rem; }

.pr-newsletter-field {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.pr-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    color: #222 !important;
    padding: 0.65rem 1.25rem !important;
    font-size: 14px;
    transition: var(--pr-transition);
}

.pr-newsletter-input::placeholder { color: #999; }

.pr-newsletter-input:focus {
    border-color: var(--pr-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15) !important;
    outline: none;
}

.pr-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 1.25rem;
    background: linear-gradient(135deg, var(--pr-gold-light), var(--pr-gold));
    color: var(--pr-black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--pr-transition);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
}

.pr-newsletter-btn:hover {
    background: linear-gradient(135deg, #dfc055, var(--pr-gold-light));
    color: var(--pr-black);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.pr-payment-icons { margin-top: 0.5rem; }

.pr-payment-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pr-text-muted);
    margin-bottom: 0.75rem;
}

.pr-payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pr-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 12px;
    color: var(--pr-text-muted);
    transition: var(--pr-transition);
}

.pr-payment-badge:hover {
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--pr-gold);
}

.pr-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--pr-text-muted);
    padding: 1.25rem 0;
    font-size: 13px;
}

.pr-footer-tagline {
    color: var(--pr-gray);
    font-style: italic;
}

.pr-footer-compliance {
    border-top: 1px solid var(--pr-border);
}

.pr-footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.pr-footer-policy-links a {
    color: var(--pr-text-muted);
    font-size: 14px;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    text-decoration: none;
    transition: var(--pr-transition);
}

.pr-footer-policy-links a:hover {
    color: var(--pr-gold);
    border-color: var(--pr-gold);
}

.pr-merchant-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: var(--pr-text-muted);
}

.pr-merchant-card a {
    color: var(--pr-gold);
}

.sc-cms-content h2,
.sc-cms-content h3 {
    color: var(--pr-text);
    margin-top: 1.5rem;
}

.sc-cms-content p,
.sc-cms-content li {
    color: var(--pr-text-muted);
    line-height: 1.7;
}

.sc-cms-content ul {
    padding-left: 1.25rem;
}

/* Modal */
.pr-modal {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--pr-text);
    box-shadow: var(--pr-shadow-md);
}

/* Quick View Modal — white panel, dark readable text */
#quickViewModal .modal-content.pr-modal,
#quickViewModal .pr-modal-light {
    background: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: #222222;
    border-radius: 12px;
    overflow: hidden;
}

#quickViewModal .modal-header {
    padding: 1.25rem 1.5rem 0;
}

#quickViewModal .modal-title {
    color: #222222;
    font-family: var(--pr-font-display);
    font-weight: 600;
    padding-right: 2rem;
}

#quickViewModal .modal-body {
    padding: 1rem 1.5rem 1.5rem;
    color: #444444;
}

#quickViewModal .text-muted {
    color: #666666 !important;
}

#quickViewModal .pr-product-category {
    color: var(--pr-gold);
}

#quickViewModal .pr-product-rating i {
    color: var(--pr-gold);
}

#quickViewModal .pr-rating-count {
    color: #888888;
}

#quickViewModal .pr-price-sale-lg {
    color: var(--pr-gold);
}

#quickViewModal .pr-price-original-lg {
    color: #999999;
}

#quickViewModal .pr-product-meta {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.08);
    color: #555555;
    padding: 12px;
}

#quickViewModal .pr-stock-badge.in-stock {
    color: #15803d;
    background: rgba(74, 222, 128, 0.15);
}

#quickViewModal .pr-stock-badge.out-of-stock {
    color: #b91c1c;
    background: rgba(248, 113, 113, 0.15);
}

#quickViewModal .pr-quantity-input {
    border-color: rgba(0, 0, 0, 0.12);
}

#quickViewModal .pr-quantity-input .btn {
    background: #f5f5f5;
    color: #222222;
}

#quickViewModal .pr-quantity-input .btn:hover {
    background: #eeeeee;
    color: var(--pr-gold);
}

#quickViewModal .pr-quantity-input .form-control {
    background: #ffffff;
    color: #222222;
}

#quickViewModal .btn-pr-outline {
    color: #222222;
    border-color: rgba(0, 0, 0, 0.15);
}

#quickViewModal .btn-pr-outline:hover {
    border-color: var(--pr-gold);
    color: var(--pr-gold);
    background: rgba(201, 162, 39, 0.05);
}

#quickViewModal .btn-close {
    opacity: 0.65;
    filter: none;
}

#quickViewModal .btn-close:hover,
#quickViewModal .btn-close:focus {
    opacity: 1;
}

#quickViewModal .pr-quick-view-img {
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 767.98px) {
    #quickViewModal .modal-dialog {
        margin: 0.75rem;
        max-width: calc(100% - 1.5rem);
    }

    #quickViewModal .modal-content.pr-modal,
    #quickViewModal .pr-modal-light {
        border-radius: 10px;
    }

    #quickViewModal .modal-header {
        padding: 1rem 1rem 0;
    }

    #quickViewModal .modal-body {
        padding: 0.75rem 1rem 1.25rem;
    }

    #quickViewModal .modal-title {
        font-size: 1.1rem;
    }

    #quickViewModal .pr-add-to-cart-form .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }

    #quickViewModal .pr-quantity-input {
        width: 100%;
        justify-content: center;
    }

    #quickViewModal .pr-quick-view-img {
        margin-bottom: 0.5rem;
    }
}

/* Hero */
.pr-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pr-wellness-bg-start) 0%, #ffffff 50%, var(--pr-wellness-bg-end) 100%);
    padding: 60px 0;
    overflow: hidden;
    color: var(--pr-text);
}

.pr-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.min-vh-75 { min-height: 75vh; }

.pr-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--pr-border);
    color: var(--pr-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pr-hero-title {
    font-family: var(--pr-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.pr-hero-subtitle {
    font-size: 1.1rem;
    color: var(--pr-gray);
    max-width: 500px;
}

.pr-hero-stats {
    display: flex;
    gap: 40px;
}

.pr-stat strong {
    display: block;
    font-family: var(--pr-font-display);
    font-size: 1.5rem;
    color: var(--pr-gold);
}

.pr-stat span {
    font-size: 12px;
    color: var(--pr-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pr-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Sections */
.pr-section-label {
    display: block;
    color: var(--pr-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pr-section-title {
    font-family: var(--pr-font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.pr-section-subtitle {
    color: var(--pr-gray);
    max-width: 600px;
}

.pr-page-header {
    background: linear-gradient(180deg, var(--pr-wellness-bg-start) 0%, var(--pr-bg) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--pr-text);
}

.pr-page-title {
    font-family: var(--pr-font-display);
    font-size: 2rem;
    font-weight: 600;
}

.pr-page-subtitle { color: var(--pr-gray); }

.pr-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.pr-breadcrumb .breadcrumb-item a { color: var(--pr-gray); }
.pr-breadcrumb .breadcrumb-item.active { color: var(--pr-text); }
.pr-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--pr-gray); }

/* Features Bar */
.pr-features-bar {
    background: var(--pr-bg-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--pr-text);
}

.pr-feature-item i {
    font-size: 24px;
    color: var(--pr-gold);
    margin-bottom: 8px;
}

.pr-feature-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pr-feature-item p {
    font-size: 12px;
    color: var(--pr-gray);
    margin: 0;
}

/* Product Card — Premium Light */
.pr-product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pr-product-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(201, 162, 39, 0.12),
                0 0 24px rgba(201, 162, 39, 0.1);
}

.pr-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #ffffff;
    font-family: var(--pr-font-body);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.04em;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
}

.pr-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--pr-gold) 0%, var(--pr-gold-light) 100%);
    color: var(--pr-black);
    font-family: var(--pr-font-body);
    font-size: 9px;
    font-weight: 700;
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}

.pr-product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
    border-radius: 16px 16px 0 0;
}

.pr-product-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.pr-product-card:hover .pr-product-image-wrap::after {
    opacity: 1;
}

.pr-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.pr-product-card:hover .pr-product-image { transform: scale(1.06); }

.pr-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.pr-product-actions .add-to-cart-form {
    flex: 1;
    display: flex;
    min-width: 0;
}

.pr-product-actions .add-to-cart-form .btn-pr-action {
    width: 100%;
}

.pr-product-card:hover .pr-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-pr-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #333333;
    padding: 0;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--pr-transition);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-pr-action:hover {
    background: var(--pr-gold);
    border-color: var(--pr-gold);
    color: var(--pr-black);
    transform: scale(1.08);
}

.btn-pr-action.pr-quick-add-btn {
    flex: 1;
    width: auto;
    height: 36px;
    border-radius: 18px;
    background: var(--pr-gold);
    border-color: var(--pr-gold);
    color: var(--pr-black);
    font-family: var(--pr-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0 14px;
}

.btn-pr-action.pr-quick-add-btn:hover {
    background: var(--pr-gold-light);
    border-color: var(--pr-gold-light);
    color: var(--pr-black);
}

.btn-pr-action.pr-quick-add-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.pr-quick-add-text {
    line-height: 1;
}

.pr-product-body {
    padding: 18px 18px 16px;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pr-product-category {
    font-family: var(--pr-font-body);
    font-size: 10px;
    color: var(--pr-wellness-green-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.pr-product-category:hover {
    color: var(--pr-wellness-green);
}

.pr-product-title {
    font-family: var(--pr-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-product-title a {
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.pr-product-title a:hover { color: var(--pr-gold); }

.pr-product-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 12px;
}

.pr-product-rating i {
    color: var(--pr-gold);
    font-size: 11px;
    line-height: 1;
}

.pr-rating-count {
    font-family: var(--pr-font-body);
    font-size: 11px;
    color: #aaaaaa;
    margin-left: 5px;
    font-weight: 400;
}

.pr-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 2px;
}

.pr-product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.pr-price-sale {
    font-family: var(--pr-font-body);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--pr-gold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pr-price-original {
    font-family: var(--pr-font-body);
    font-size: 12px;
    color: #bbbbbb;
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1.2;
}

.pr-price-sale-lg { font-size: 1.8rem; font-weight: 700; color: var(--pr-gold); }
.pr-price-original-lg { font-size: 1.2rem; color: #999999; text-decoration: line-through; margin-left: 12px; }

.pr-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--pr-font-body);
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1;
}

.pr-stock-badge i {
    font-size: 9px;
}

.pr-stock-badge.in-stock {
    color: #15803d;
    background: rgba(22, 163, 74, 0.1);
    border: none;
}

.pr-stock-badge.out-of-stock {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    border: none;
}

/* Why Section */
.pr-why-section { background: var(--pr-bg-alt); color: var(--pr-text); }

.pr-why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.pr-why-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--pr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-gold);
    flex-shrink: 0;
}

.pr-why-item h5 { font-size: 1rem; margin-bottom: 4px; }
.pr-why-item p { font-size: 14px; color: var(--pr-gray); margin: 0; }

.pr-why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pr-why-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--pr-border);
}

/* Testimonials */
.pr-testimonial-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: var(--pr-shadow-sm);
}

.pr-testimonial-rating i { color: var(--pr-gold); font-size: 14px; }
.pr-testimonial-text {
    font-style: italic;
    color: var(--pr-text-muted);
    margin: 16px 0;
    font-size: 14px;
}

.pr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pr-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pr-gold);
}

.pr-testimonial-author strong { display: block; font-size: 14px; }
.pr-testimonial-author span { font-size: 12px; color: var(--pr-gray); }

/* Video Banner */
.pr-video-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.pr-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
}

.pr-video-title {
    font-family: var(--pr-font-display);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    color: var(--pr-text);
}

.pr-video-subtitle {
    color: var(--pr-text-muted);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Tips */
.pr-tip-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: var(--pr-transition);
    box-shadow: var(--pr-shadow-sm);
}

.pr-tip-card:hover {
    border-color: var(--pr-gold);
    transform: translateY(-2px);
}

.pr-tip-number {
    font-family: var(--pr-font-display);
    font-size: 2rem;
    color: var(--pr-gold);
    margin-bottom: 12px;
}

.pr-tip-card h5 { margin-bottom: 8px; }
.pr-tip-card p { color: var(--pr-gray); font-size: 14px; margin: 0; }

/* Blog Cards */
.pr-blog-section { background: var(--pr-bg-alt); }

.pr-blog-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--pr-transition);
    height: 100%;
    box-shadow: var(--pr-shadow-sm);
}

.pr-blog-card:hover { border-color: var(--pr-gold); }

.pr-blog-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pr-blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pr-blog-card:hover .pr-blog-image-wrap img { transform: scale(1.05); }

.pr-blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--pr-gold);
    color: var(--pr-black);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.pr-blog-body { padding: 20px; }
.pr-blog-date { font-size: 12px; color: var(--pr-gray); }
.pr-blog-body h3, .pr-blog-body h5 {
    font-family: var(--pr-font-display);
    margin: 8px 0;
}

.pr-blog-body h3 a, .pr-blog-body h5 a { color: var(--pr-text); }
.pr-blog-body h3 a:hover, .pr-blog-body h5 a:hover { color: var(--pr-gold); }
.pr-blog-body p { color: var(--pr-gray); font-size: 14px; margin-bottom: 12px; }
.pr-blog-link { font-size: 13px; font-weight: 600; }

/* Newsletter — Premium Wellness */
.sc-newsletter {
    background: linear-gradient(165deg, var(--pr-wellness-bg-start) 0%, var(--pr-wellness-bg-end) 50%, #f0f9f4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sc-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(82, 183, 136, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 20%, rgba(201, 162, 39, 0.06), transparent 50%);
    pointer-events: none;
}

.sc-newsletter .container {
    position: relative;
}

.sc-newsletter-inner {
    max-width: 580px;
    margin: 0 auto;
}

.sc-newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pr-wellness-green-light), var(--pr-wellness-green));
    color: #fff;
    font-size: 22px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
}

.sc-newsletter-heading {
    font-family: var(--pr-font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--pr-wellness-green);
    margin-bottom: 0.75rem;
}

.sc-newsletter-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.sc-newsletter-text strong {
    color: var(--pr-gold-dark);
}

.sc-newsletter-form {
    max-width: 480px;
}

.sc-newsletter-field {
    display: flex;
    gap: 10px;
    align-items: stretch;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sc-newsletter-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    border-radius: 50px !important;
    color: #222 !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 15px;
    box-shadow: none !important;
}

.sc-newsletter-input::placeholder { color: #aaa; }

.sc-newsletter-input:focus {
    outline: none;
    box-shadow: none !important;
}

.sc-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--pr-gold-light), var(--pr-gold));
    color: var(--pr-black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--pr-transition);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.sc-newsletter-btn:hover {
    background: linear-gradient(135deg, #dfc055, var(--pr-gold-light));
    color: var(--pr-black);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
}

.sc-newsletter-note {
    font-size: 12px;
    color: #999;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Legacy newsletter classes */
.pr-newsletter-section {
    background: linear-gradient(165deg, var(--pr-wellness-bg-start) 0%, var(--pr-wellness-bg-end) 100%);
}

.pr-newsletter-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pr-newsletter-inline { max-width: 500px; }

/* Shop */
.pr-filter-sidebar {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-filter-title { font-family: var(--pr-font-display); margin: 0; }

.pr-filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pr-border);
}

.pr-filter-group:last-of-type { border-bottom: none; }
.pr-filter-group h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pr-gold);
    margin-bottom: 12px;
}

.pr-filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--pr-text-muted);
}

.pr-filter-check input { accent-color: var(--pr-gold); }

.pr-shop-toolbar { padding: 16px; background: var(--pr-surface); border-radius: 8px; border: 1px solid rgba(0, 0, 0, 0.08); color: var(--pr-text); }

.pr-sort-select { width: auto; min-width: 160px; }

.pr-product-grid.list-view .pr-product-card {
    display: flex;
    flex-direction: row;
}

.pr-product-grid.list-view .pr-product-image-wrap {
    width: 200px;
    aspect-ratio: auto;
    flex-shrink: 0;
    border-radius: 16px 0 0 16px;
}

.pr-product-grid.list-view .pr-product-body {
    justify-content: center;
}

/* Cart */
.pr-cart-table-wrap {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-cart-table { color: var(--pr-text); margin: 0; }
.pr-cart-table thead th {
    border-color: var(--pr-border);
    color: var(--pr-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.pr-cart-table td, .pr-cart-table th { border-color: var(--pr-border); vertical-align: middle; }

.pr-cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pr-cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--pr-border);
}

.pr-cart-product-name { color: var(--pr-text); font-weight: 500; }
.pr-cart-product-name:hover { color: var(--pr-gold); }
.pr-cart-qty { width: 70px; text-align: center; }

.pr-cart-summary, .pr-checkout-summary {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-summary-title {
    font-family: var(--pr-font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pr-border);
}

.pr-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pr-text-muted);
}

.pr-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    margin-top: 8px;
    border-top: 2px solid var(--pr-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.pr-cart-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--pr-gray);
}

.pr-cart-trust i { color: var(--pr-gold); margin-right: 8px; }

/* Checkout */
.pr-checkout-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-checkout-heading {
    font-family: var(--pr-font-display);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pr-border);
}

.pr-payment-options { display: flex; flex-direction: column; gap: 12px; }

.pr-payment-option input { display: none; }

.pr-payment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--pr-bg-alt);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--pr-transition);
    color: var(--pr-text);
}

.pr-payment-card i { font-size: 24px; color: var(--pr-gold); }

.pr-payment-card strong { display: block; }
.pr-payment-card small { color: var(--pr-gray); }

.pr-payment-option input:checked + .pr-payment-card {
    border-color: var(--pr-gold);
    background: rgba(201, 162, 39, 0.05);
}

.pr-address-select {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--pr-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    color: var(--pr-text);
}

.pr-address-select input { accent-color: var(--pr-gold); }

.pr-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--pr-border);
}

.pr-checkout-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.pr-checkout-item-name { font-size: 14px; display: block; }

/* Product Detail */
.pr-gallery-main {
    position: relative;
    background: var(--pr-dark-2);
    border: 1px solid var(--pr-border);
    border-radius: 12px;
    overflow: hidden;
}

.pr-gallery-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.pr-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }

.pr-gallery-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid var(--pr-border);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: var(--pr-transition);
}

.pr-gallery-thumb.active, .pr-gallery-thumb:hover { border-color: var(--pr-gold); }
.pr-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pr-product-detail-title {
    font-family: var(--pr-font-display);
    font-size: 2rem;
    margin-bottom: 12px;
}

.pr-save-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 12px;
}

.pr-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    background: var(--pr-dark-2);
    border-radius: 8px;
    border: 1px solid var(--pr-border);
}

.pr-meta-item .label {
    display: block;
    font-size: 11px;
    color: var(--pr-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pr-quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--pr-border);
    border-radius: 8px;
    overflow: hidden;
}

.pr-quantity-input .btn {
    background: var(--pr-bg-alt);
    border: none;
    color: var(--pr-text);
    padding: 8px 14px;
}

.pr-quantity-input .btn:hover {
    background: #eeeeee;
    color: var(--pr-gold);
}

.pr-quantity-input .form-control {
    border: none;
    width: 50px;
    text-align: center;
    background: var(--pr-surface);
    color: var(--pr-text);
}

.pr-product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--pr-gray);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pr-border);
}

.pr-product-trust-badges i { color: var(--pr-gold); margin-right: 6px; }

.pr-nav-tabs {
    border-color: var(--pr-border);
}

.pr-nav-tabs .nav-link {
    color: var(--pr-gray);
    border: none;
    padding: 12px 24px;
    font-weight: 500;
}

.pr-nav-tabs .nav-link.active {
    color: var(--pr-gold);
    background: transparent;
    border-bottom: 2px solid var(--pr-gold);
}

.pr-tab-content {
    padding: 28px;
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    color: var(--pr-text);
}

.pr-feature-list {
    list-style: none;
    padding: 0;
}

.pr-feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--pr-text-muted);
}

.pr-feature-list i { margin-right: 8px; }

.pr-specs-table th {
    color: var(--pr-gold);
    font-weight: 500;
    width: 40%;
    background: var(--pr-bg-alt);
}

.pr-specs-table td { color: var(--pr-text-muted); }
.pr-specs-table th, .pr-specs-table td { border-color: var(--pr-border); padding: 12px 16px; }

.pr-review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--pr-border);
}

.pr-review-stars i { color: var(--pr-gold); font-size: 12px; }

/* ── Checkout Success Page ── */
.pr-success-page {
    --pr-success-green: #2d6a4f;
    --pr-success-green-light: #40916c;
    --pr-success-green-soft: #52b788;
    --pr-success-bg-start: #f4faf7;
    --pr-success-bg-end: #e8f5ef;
    --pr-success-text: #222222;
    --pr-success-text-muted: #555555;
    --pr-success-gold: #C9A227;
    --pr-success-gold-dark: #a8861f;
    background: linear-gradient(165deg, var(--pr-success-bg-start) 0%, var(--pr-success-bg-end) 50%, #f0f9f4 100%);
    min-height: 70vh;
    position: relative;
}

.pr-success-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(82, 183, 136, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 162, 39, 0.06), transparent 50%);
    pointer-events: none;
}

.pr-success-page > .container {
    position: relative;
    max-width: 860px;
}

/* Hero + Checkmark Animation */
.pr-success-hero {
    padding: 1rem 0 2rem;
}

.pr-success-checkmark {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pr-success-checkmark-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pr-success-green-light), var(--pr-success-green));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(45, 106, 79, 0.35),
        0 0 0 8px rgba(82, 183, 136, 0.15);
    animation: prSuccessPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pr-success-checkmark-circle i {
    font-size: 2.5rem;
    color: #fff;
    animation: prSuccessCheck 0.4s ease 0.35s both;
}

@keyframes prSuccessPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes prSuccessCheck {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.pr-success-hero-title {
    font-family: var(--pr-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--pr-success-text);
    margin-bottom: 0.75rem;
}

.pr-success-hero-text {
    color: var(--pr-success-text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.pr-success-hero-text strong {
    color: var(--pr-success-text);
}

/* Gold Order Number Card */
.pr-success-order-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 50%, #ffeaa0 100%);
    border: 2px solid var(--pr-success-gold);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 0 auto 1.5rem;
    max-width: 420px;
    box-shadow:
        0 4px 24px rgba(201, 162, 39, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pr-success-order-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pr-success-gold-dark);
    margin-bottom: 0.35rem;
}

.pr-success-order-number {
    display: block;
    font-family: var(--pr-font-display);
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

/* White Info Cards */
.pr-success-info-card {
    background: #ffffff;
    border: 1px solid rgba(45, 106, 79, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.06);
    color: var(--pr-success-text);
}

.pr-success-info-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pr-success-green);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.pr-success-info-heading i {
    font-size: 1.1rem;
    color: var(--pr-success-gold);
}

.pr-success-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-success-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pr-success-info-list li:last-child {
    border-bottom: none;
}

.pr-success-info-key {
    color: var(--pr-success-text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.pr-success-info-val {
    color: var(--pr-success-text);
    font-weight: 600;
    text-align: right;
}

.pr-success-address {
    font-style: normal;
    color: var(--pr-success-text);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.pr-success-address strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.pr-success-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    color: var(--pr-success-green);
    font-weight: 600;
}

/* Status Badges */
.pr-success-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.pr-success-badge--confirmed {
    background: rgba(45, 106, 79, 0.12);
    color: var(--pr-success-green);
    border: 1px solid rgba(45, 106, 79, 0.25);
}

.pr-success-badge--payment {
    background: rgba(201, 162, 39, 0.12);
    color: var(--pr-success-gold-dark);
    border: 1px solid rgba(201, 162, 39, 0.3);
    margin-left: 0.35rem;
}

/* Order Items Table */
.pr-success-items-card {
    background: #ffffff;
    border: 1px solid rgba(45, 106, 79, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.06);
}

.pr-success-items-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pr-success-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.pr-success-items-title i {
    color: var(--pr-success-gold);
}

.pr-success-table {
    margin: 0;
    color: var(--pr-success-text);
}

.pr-success-table thead th {
    background: rgba(45, 106, 79, 0.06);
    color: var(--pr-success-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    padding: 0.75rem 1rem;
}

.pr-success-table tbody td {
    padding: 0.85rem 1rem;
    border-color: rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    vertical-align: middle;
}

.pr-success-table tfoot td {
    padding: 0.6rem 1rem;
    border-color: rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--pr-success-text-muted);
}

.pr-success-table tfoot .pr-success-total-row td {
    border-top: 2px solid var(--pr-success-gold);
    padding-top: 1rem;
    color: var(--pr-success-text);
    font-size: 1.05rem;
}

.pr-success-discount {
    color: var(--pr-success-green-light) !important;
    font-weight: 600;
}

/* CTA Buttons */
.pr-success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
    padding-bottom: 1rem;
}

.pr-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.pr-success-btn--primary {
    background: linear-gradient(135deg, var(--pr-success-green-light), var(--pr-success-green));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
}

.pr-success-btn--primary:hover {
    background: linear-gradient(135deg, var(--pr-success-green-soft), var(--pr-success-green-light));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 106, 79, 0.35);
}

.pr-success-btn--secondary {
    background: linear-gradient(135deg, var(--pr-success-gold), var(--pr-success-gold-dark));
    color: #1a1a1a;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
}

.pr-success-btn--secondary:hover {
    background: linear-gradient(135deg, #d4b44a, var(--pr-success-gold));
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
}

.pr-success-btn--outline {
    background: #fff;
    color: var(--pr-success-green);
    border: 2px solid rgba(45, 106, 79, 0.3);
}

.pr-success-btn--outline:hover {
    background: rgba(45, 106, 79, 0.06);
    color: var(--pr-success-green);
    border-color: var(--pr-success-green);
}

@media (max-width: 767.98px) {
    .pr-success-page {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .pr-success-checkmark-circle {
        width: 72px;
        height: 72px;
    }

    .pr-success-checkmark-circle i {
        font-size: 2rem;
    }

    .pr-success-order-card {
        padding: 1.25rem 1.5rem;
    }

    .pr-success-info-card,
    .pr-success-items-card {
        padding: 1.25rem;
    }

    .pr-success-info-list li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pr-success-info-val {
        text-align: left;
    }

    .pr-success-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pr-success-btn {
        justify-content: center;
        width: 100%;
    }

    .pr-success-table thead {
        display: none;
    }

    .pr-success-table tbody tr {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pr-success-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.25rem 0;
        border: none;
    }

    .pr-success-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--pr-success-text-muted);
        font-size: 0.8rem;
        text-transform: uppercase;
    }

    .pr-success-table tbody td:first-child {
        font-weight: 600;
        padding-bottom: 0.5rem;
    }

    .pr-success-table tbody td:first-child::before {
        display: none;
    }
}

/* Auth */
.pr-auth-section { min-height: 60vh; }

.pr-auth-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--pr-shadow-sm);
}

/* Account */
.pr-account-nav {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--pr-text-muted);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--pr-transition);
}

.pr-account-nav a:hover,
.pr-account-nav a.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--pr-gold);
}

.pr-account-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--pr-gray);
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--pr-transition);
}

.pr-account-logout:hover { color: #f87171; background: rgba(248, 113, 113, 0.1); }

.pr-account-content {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-welcome-banner {
    padding: 20px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid var(--pr-border);
    border-radius: 8px;
}

.pr-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--pr-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.pr-stat-card i {
    font-size: 28px;
    color: var(--pr-gold);
}

.pr-stat-card strong { display: block; font-size: 1.3rem; }
.pr-stat-card span { font-size: 12px; color: var(--pr-gray); }

.pr-address-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.pr-address-card.default { border-color: var(--pr-gold); }

.pr-default-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    background: var(--pr-gold);
    color: var(--pr-black);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Blog Article */
.pr-blog-article-title {
    font-family: var(--pr-font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pr-blog-category-inline {
    display: inline-block;
    background: var(--pr-gold);
    color: var(--pr-black);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.pr-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--pr-gray);
    font-size: 14px;
}

.pr-blog-content {
    color: var(--pr-gray-light);
    font-size: 16px;
    line-height: 1.8;
}

.pr-blog-excerpt {
    color: var(--pr-gray-light);
    border-left: 3px solid var(--pr-gold);
    padding-left: 20px;
}

/* Contact */
.pr-contact-hero {
    background: linear-gradient(135deg, var(--pr-wellness-bg-start) 0%, #ffffff 50%, var(--pr-wellness-bg-end) 100%);
    color: var(--pr-text);
    padding: 3.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.pr-contact-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pr-contact-badge {
    display: inline-block;
    background: rgba(82, 183, 136, 0.18);
    color: var(--pr-wellness-green-soft);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pr-contact-title {
    font-family: var(--pr-font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pr-contact-subtitle {
    color: var(--pr-text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 0;
}

.pr-contact-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    border: 2px solid rgba(201, 162, 39, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pr-gold);
}

.pr-contact-section {
    background: linear-gradient(180deg, var(--pr-wellness-bg-start) 0%, #fff 100%);
}

.pr-contact-info-card,
.pr-contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(26, 51, 40, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.12);
    height: 100%;
}

.pr-contact-info-card {
    border-top: 3px solid var(--pr-wellness-green-soft);
}

.pr-contact-form-card {
    border-top: 3px solid var(--pr-gold);
}

.pr-contact-info-heading,
.pr-contact-form-heading {
    font-family: var(--pr-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pr-wellness);
}

.pr-contact-entity {
    color: var(--pr-gray);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 51, 40, 0.1);
}

.pr-contact-form-lead {
    color: var(--pr-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pr-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pr-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.12) 0%, rgba(45, 106, 79, 0.04) 100%);
    border: 1px solid rgba(45, 106, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--pr-wellness-green);
}

.pr-contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pr-gray);
    margin-bottom: 0.25rem;
}

.pr-contact-item p {
    color: #333;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pr-contact-item a {
    color: #333;
    text-decoration: none;
    transition: var(--pr-transition);
}

.pr-contact-item a:hover {
    color: var(--pr-gold);
}

.pr-contact-input {
    border-radius: 10px;
    border: 1px solid rgba(26, 51, 40, 0.15);
    padding: 0.75rem 1rem;
    transition: var(--pr-transition);
    font-size: 0.95rem;
}

.pr-contact-input:focus {
    border-color: var(--pr-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.pr-contact-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--pr-wellness);
    margin-bottom: 0.35rem;
}

.pr-contact-submit {
    background: linear-gradient(135deg, var(--pr-gold-light) 0%, var(--pr-gold) 45%, var(--pr-gold-dark) 100%);
    color: var(--pr-black);
    border: 2px solid var(--pr-gold);
    border-radius: 50px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    font-size: 15px;
    transition: var(--pr-transition);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
}

.pr-contact-submit:hover {
    background: var(--pr-wellness);
    border-color: var(--pr-wellness);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 51, 40, 0.25);
}

/* Track Order */
.pr-track-form-card, .pr-track-result {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--pr-shadow-sm);
}

.pr-track-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.pr-track-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--pr-border);
}

.pr-track-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.pr-track-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pr-dark-2);
    border: 2px solid var(--pr-border);
    margin: 0 auto 8px;
    transition: var(--pr-transition);
}

.pr-track-step.active .pr-track-dot {
    border-color: var(--pr-gold);
    background: var(--pr-gold);
}

.pr-track-step.current .pr-track-dot {
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.3);
}

.pr-track-step span {
    font-size: 11px;
    color: var(--pr-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pr-track-step.active span { color: var(--pr-gold); }

/* ── Courier Services ── */
@keyframes prFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes prSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-sc-primary {
    background: var(--pr-gold);
    color: var(--pr-black);
    border: 2px solid var(--pr-gold);
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--pr-transition);
}

.btn-sc-primary:hover {
    background: var(--pr-gold-light);
    border-color: var(--pr-gold-light);
    color: var(--pr-black);
}

.an-breadcrumb .breadcrumb-item a {
    color: var(--pr-text-muted);
}

.an-breadcrumb .breadcrumb-item.active {
    color: var(--pr-gold);
}

.an-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--pr-gray);
}

.an-section .text-muted {
    color: var(--pr-gray) !important;
}

.an-input {
    border-radius: 10px;
}

.cs-hero {
    background: linear-gradient(135deg, var(--pr-wellness-bg-start) 0%, #ffffff 50%, var(--pr-wellness-bg-end) 100%);
    color: var(--pr-text);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.cs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cs-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    color: var(--pr-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.cs-title {
    font-family: var(--pr-font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cs-subtitle {
    color: var(--pr-text-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

.cs-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    border: 2px solid rgba(201, 162, 39, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pr-gold);
    animation: prFloat 3s ease-in-out infinite;
}

.cs-edd-card {
    background: var(--pr-surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--pr-shadow-md);
}

.cs-edd-card-header {
    margin-bottom: 1.5rem;
}

.cs-edd-card .form-label {
    color: var(--pr-text-muted);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0.35rem;
}

.cs-edd-card h2 {
    color: var(--pr-text);
}

.cs-edd-submit {
    min-height: 46px;
}

.cs-edd-result {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.04) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    animation: prSlideUp 0.5s ease forwards;
}

.cs-edd-zone {
    display: inline-block;
    background: var(--pr-wellness);
    color: var(--pr-gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.cs-edd-range {
    font-family: var(--pr-font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--pr-text);
}

.cs-edd-days {
    font-size: 1rem;
    color: var(--pr-gray);
    font-weight: 500;
}

.cs-edd-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--pr-gray);
}

.cs-section-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.12);
    color: var(--pr-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.cs-section-title {
    font-family: var(--pr-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pr-text);
}

.cs-section-subtitle {
    color: var(--pr-gray);
    max-width: 560px;
}

.cs-courier-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    position: relative;
    transition: var(--pr-transition);
    box-shadow: var(--pr-shadow-sm);
}

.cs-courier-card:hover {
    border-color: var(--pr-gold);
    box-shadow: var(--pr-shadow-md);
    transform: translateY(-4px);
}

.cs-courier-card--featured {
    border-color: rgba(201, 162, 39, 0.35);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, var(--pr-surface) 40%);
}

.cs-courier-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pr-gold);
    color: var(--pr-black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.cs-courier-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pr-gold);
    margin-bottom: 1rem;
}

.cs-courier-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pr-text);
}

.cs-courier-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.75rem;
    color: var(--pr-gold);
    font-size: 14px;
}

.cs-courier-rating-num {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--pr-text);
    font-size: 13px;
}

.cs-courier-desc {
    font-size: 13px;
    color: var(--pr-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cs-courier-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 13px;
}

.cs-courier-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    color: var(--pr-text-muted);
}

.cs-courier-meta i {
    color: var(--pr-gold);
    margin-top: 2px;
}

.cs-reliability-bar {
    height: 4px;
    background: var(--pr-bg-alt);
    border-radius: 2px;
    overflow: hidden;
}

.cs-reliability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pr-gold), var(--pr-gold-light));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.cs-feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    height: 100%;
    transition: var(--pr-transition);
    box-shadow: var(--pr-shadow-sm);
}

.cs-feature-box:hover {
    border-color: rgba(201, 162, 39, 0.4);
}

.cs-feature-box i {
    font-size: 2rem;
    color: var(--pr-gold);
    margin-bottom: 1rem;
}

.cs-feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pr-text);
}

.cs-feature-box p {
    font-size: 14px;
    color: var(--pr-gray);
    margin: 0;
}

.cs-feature-box a {
    color: var(--pr-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cs-feature-box a:hover {
    color: var(--pr-gold-light);
}

/* About */
.pr-about-hero {
    background: linear-gradient(135deg, var(--pr-wellness-bg-start) 0%, #ffffff 50%, var(--pr-wellness-bg-end) 100%);
    color: var(--pr-text);
}

.pr-about-stat strong {
    display: block;
    font-family: var(--pr-font-display);
    font-size: 2rem;
    color: var(--pr-gold);
}

.pr-about-stat span {
    font-size: 13px;
    color: var(--pr-gray);
}

.pr-value-card {
    background: var(--pr-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: var(--pr-transition);
    box-shadow: var(--pr-shadow-sm);
}

.pr-value-card:hover { border-color: var(--pr-gold); }

.pr-value-card i {
    font-size: 32px;
    color: var(--pr-gold);
    margin-bottom: 16px;
}

/* Empty State */
.pr-empty-state h4 { margin-bottom: 8px; }

/* Pagination */
.pagination .page-link {
    background: var(--pr-dark-2);
    border-color: var(--pr-border);
    color: var(--pr-gray-light);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--pr-gold);
    border-color: var(--pr-gold);
    color: var(--pr-black);
}

/* List view */
.list-view .pr-product-body { flex: 1; padding: 20px; }

.pr-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--pr-shadow-md), 0 1px 0 rgba(201, 162, 39, 0.1);
}
@media (max-width: 991px) {
    .pr-hero-stats { gap: 24px; }
    .pr-track-timeline { flex-wrap: wrap; gap: 16px; }
    .pr-track-timeline::before { display: none; }
}

@media (max-width: 767px) {
    .pr-announcement span { font-size: 11px; }
    .pr-hero { padding: 40px 0; }
    .pr-auth-card { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Storefront (Bootstrap lg breakpoint: 992px)
   ═══════════════════════════════════════════════════════════════ */

html {
    overflow-x: hidden;
}

body.pr-body,
body.sc-body {
    overflow-x: hidden;
    max-width: 100vw;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ── Announcement Bar ── */
@media (max-width: 991.98px) {
    .pr-announcement .container > .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.35rem !important;
    }

    .sc-announcement-text {
        font-size: 11px;
        line-height: 1.4;
        white-space: normal;
    }

    .sc-countdown {
        font-size: clamp(10px, 2.8vw, 12px);
    }
}

/* ── Header / Navigation ── */
@media (max-width: 991.98px) {
    .pr-header .navbar {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .pr-logo {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
    }

    .pr-logo-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .pr-header .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem 0.6rem;
    }

    .pr-header-actions-mobile .btn-pr-icon {
        width: 42px;
        height: 42px;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.75rem 0.5rem 1rem;
        border-top: 1px solid rgba(201, 162, 39, 0.12);
        background: var(--pr-bg);
        border-radius: 0 0 12px 12px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pr-header .nav-link {
        padding: 0.75rem 0.65rem !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 8px;
    }

    .pr-header .nav-link::after {
        bottom: 0.35rem;
        height: 1px;
    }

    .pr-header .nav-link:hover,
    .pr-header .nav-link.active {
        background: rgba(201, 162, 39, 0.06);
    }

    .navbar-collapse .dropdown-menu {
        position: static !important;
        float: none;
        transform: none !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: none !important;
        background: var(--pr-surface) !important;
        margin: 0.25rem 0 0.5rem 0.75rem;
        padding: 0.35rem !important;
        border-radius: 10px !important;
    }

    .navbar-collapse .dropdown-item {
        padding: 0.65rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .pr-header-actions-mobile-menu {
        border-top: 1px solid rgba(201, 162, 39, 0.12);
        padding-top: 1rem;
        margin-top: 0.75rem;
    }
}

/* ── Footer ── */
@media (min-width: 992px) {
    .pr-footer-group {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .pr-footer-group .pr-footer-heading {
        margin-bottom: 0.75rem;
    }

    .pr-footer-group .collapse.d-lg-block {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }

    .pr-footer-brand {
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .pr-footer-main {
        padding: 3rem 0 2rem;
    }

    .pr-footer-brand {
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }

    .pr-footer-logo {
        justify-content: center;
    }

    .pr-footer-connect {
        text-align: center;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 767.98px) {
    .sc-newsletter {
        padding: 3.5rem 0;
    }

    .sc-newsletter-field {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }

    .sc-newsletter-input {
        border-radius: 12px !important;
    }

    .sc-newsletter-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .pr-footer .pr-social-links {
        justify-content: center;
    }

    .pr-newsletter-field {
        flex-direction: column;
    }

    .pr-newsletter-input {
        border-radius: 12px !important;
    }

    .pr-newsletter-btn {
        width: 100%;
        min-height: 44px;
        border-radius: 12px;
    }

    .pr-payment-badges {
        justify-content: center;
    }
}

/* ── Shop Page ── */
.pr-filter-offcanvas {
    background: var(--pr-surface);
    color: var(--pr-text);
    max-width: 320px;
}

.pr-filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--pr-border);
}

@media (max-width: 991.98px) {
    .pr-shop-toolbar {
        flex-direction: column;
        align-items: stretch !important;
    }

    .pr-shop-toolbar > p {
        text-align: center;
    }

    .pr-shop-toolbar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pr-sort-select {
        width: 100% !important;
        min-width: 0;
    }

    .pr-product-grid.list-view .pr-product-card {
        flex-direction: column;
    }

    .pr-product-grid.list-view .pr-product-image-wrap {
        width: 100%;
        aspect-ratio: 1;
    }
}

@media (max-width: 575.98px) {
    .pr-product-body {
        padding: 14px 14px 12px;
    }

    .pr-product-title {
        font-size: 0.875rem;
    }

    .pr-price-sale {
        font-size: 1rem;
    }

    .pr-price-original {
        font-size: 11px;
    }

    .pr-stock-badge {
        font-size: 8px;
        padding: 3px 6px;
    }

    .btn-pr-action {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 13px;
    }

    .btn-pr-action.pr-quick-add-btn {
        height: 32px;
        font-size: 10px;
        padding: 0 10px;
    }

    .pr-quick-add-text {
        display: none;
    }

    .pr-discount-badge,
    .pr-featured-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
}

@media (hover: none) {
    .pr-product-actions {
        opacity: 1;
        transform: translateY(0);
    }

    .pr-product-image-wrap::after {
        opacity: 0.35;
    }
}

/* ── Product Detail ── */
@media (max-width: 991.98px) {
    .pr-product-detail-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .pr-price-sale-lg {
        font-size: clamp(1.35rem, 5vw, 1.6rem);
    }

    .pr-add-to-cart-form .btn-lg {
        width: 100%;
        min-height: 48px;
    }

    .pr-nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pr-nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 13px;
    }

    .pr-tab-content {
        padding: 1.25rem;
    }

    .pr-specs-table {
        min-width: 280px;
    }
}

/* ── Account Pages ── */
@media (max-width: 991.98px) {
    .pr-account-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.25rem;
        padding: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }

    .pr-account-nav a,
    .pr-account-nav .pr-account-logout {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.65rem 1rem;
        min-height: 44px;
    }

    .pr-account-content {
        padding: 1.25rem;
    }
}

/* ── Blog, Contact, FAQ ── */
@media (max-width: 767.98px) {
    .pr-page-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .pr-blog-article-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .pr-contact-hero {
        padding: 2.5rem 0 2rem;
    }

    .pr-contact-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .pr-contact-info-card,
    .pr-contact-form-card {
        padding: 1.25rem;
    }

    .pr-contact-submit {
        min-height: 48px;
    }

    .cs-hero {
        padding: 2.5rem 0 2rem;
    }

    .cs-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .cs-edd-card {
        padding: 1.25rem;
    }

    .cs-edd-submit {
        margin-top: 0.25rem;
    }

    .cs-courier-card {
        padding: 1.25rem;
    }

    .cs-courier-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 9px;
    }

    .pr-video-banner {
        min-height: 280px;
    }

    .pr-video-title {
        font-size: clamp(1.35rem, 5vw, 2rem);
    }
}

/* ── Touch targets ── */
@media (max-width: 991.98px) {
    .btn,
    .btn-pr-icon,
    .btn-pr-gold,
    .btn-pr-outline,
    .btn-sc-primary,
    .form-control,
    .form-select {
        min-height: 44px;
    }

    .btn-sm {
        min-height: 38px;
    }
}

/* PulseRelax — Night Wear homepage accents */
.sc-section-nightwear .pr-product-card,
.sc-section-nightwear .sc-product-card {
    border-color: rgba(219, 112, 147, 0.15);
}

.sc-section-nightwear .pr-product-category {
    color: #db7093;
}

.sc-section-wellness .pr-product-category {
    color: #52b788;
}

.sc-section-wellness .pr-product-card:hover,
.sc-section-wellness .sc-product-card:hover {
    border-color: rgba(82, 183, 136, 0.35);
    box-shadow: 0 12px 32px rgba(82, 183, 136, 0.12);
}

.sc-collection-card-detox .sc-collection-cta {
    color: #95d5b2;
}

.sc-hero-wellness .sc-hero-title {
    text-shadow: 0 2px 24px rgba(82, 183, 136, 0.2);
}

/* Homepage Hero Slider — PulseRelax theme */
.sc-hero-slider {
    overflow: hidden;
    max-width: 100vw;
}

.sc-hero-slider-slide.sc-hero-wellness {
    background: linear-gradient(135deg, var(--pr-wellness-bg-start) 0%, #ffffff 45%, var(--pr-wellness-bg-end) 100%);
    color: var(--pr-text);
}

.sc-hero-slider-slide--banner .sc-hero-slider-banner-overlay {
    background: linear-gradient(135deg, rgba(244, 250, 247, 0.92) 0%, rgba(232, 245, 239, 0.75) 50%, rgba(244, 250, 247, 0.65) 100%);
}

.sc-hero-slider-nav {
    border-color: rgba(201, 162, 39, 0.35);
}

.sc-hero-slider-nav:hover {
    background: var(--pr-gold);
    border-color: var(--pr-gold);
    color: var(--pr-black);
}

.sc-hero-slider-dot.is-active {
    background: var(--pr-gold);
}

.sc-hero-slider-dot:hover:not(.is-active) {
    background: rgba(201, 162, 39, 0.55);
}

@media (max-width: 767.98px) {
    .sc-hero-slider {
        max-width: 100%;
    }

    .sc-hero-slider-slide.sc-hero,
    .sc-hero-slider-slide--banner {
        min-height: unset;
        max-height: 480px;
    }

    .sc-hero-slider .sc-hero-product {
        padding: 0.25rem 0 0.5rem;
    }

    .sc-hero-slider .sc-hero-product-img {
        max-height: 155px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .sc-hero-slider-actions .btn-sc-green,
    .sc-hero-slider-actions .btn-sc-outline {
        min-height: 44px;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
        width: 100%;
    }

    .sc-hero-wellness .sc-hero-title {
        text-shadow: none;
    }
}

@media (max-width: 575.98px) {
    .sc-hero-slider-slide.sc-hero,
    .sc-hero-slider-slide--banner {
        max-height: 450px;
    }

    .sc-hero-slider .sc-hero-product-img {
        max-height: 130px;
    }

    .sc-hero-slider-actions .btn-sc-green,
    .sc-hero-slider-actions .btn-sc-outline {
        min-height: 42px;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .sc-hero-slider-slide.sc-hero,
    .sc-hero-slider-slide--banner {
        min-height: min(600px, 75vh);
    }

    .sc-hero-slider .sc-hero-product-img {
        max-height: 320px;
    }
}

.text-wellness {
    color: #52b788 !important;
}

.sc-section-nightwear .pr-product-card:hover,
.sc-section-nightwear .sc-product-card:hover {
    border-color: rgba(219, 112, 147, 0.35);
    box-shadow: 0 12px 32px rgba(219, 112, 147, 0.12);
}

.sc-collection-card-nightwear .sc-collection-cta {
    color: #ffd1dc;
}

.sc-hero-nightwear .sc-hero-title {
    text-shadow: 0 2px 24px rgba(219, 112, 147, 0.2);
}

.pr-page-subtitle {
    color: var(--pr-text-muted);
    max-width: 640px;
}

/* Customer review detail modal — PulseRelax white popup theme */
.sc-reviews-modal-backdrop {
    background: rgba(10, 10, 10, 0.72);
}

.sc-reviews-modal-panel {
    background-color: #ffffff;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.22),
        0 0 48px rgba(201, 162, 39, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sc-reviews-modal-panel::before {
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.1), transparent 70%);
}

.sc-reviews-modal-close {
    background: #ffffff;
    border-color: rgba(201, 162, 39, 0.35);
    color: #222222;
}

.sc-reviews-modal-close:hover,
.sc-reviews-modal-close:focus-visible {
    background: var(--pr-gold);
    color: var(--pr-black);
    border-color: var(--pr-gold);
}

.sc-reviews-modal-title,
.sc-reviews-modal-name {
    color: #222222;
}

.sc-reviews-modal-text p {
    color: #333333;
}

.sc-reviews-modal-photo-wrap {
    background: #f5f5f5;
    border-color: rgba(201, 162, 39, 0.25);
}

.sc-reviews-modal-author .sc-reviews-product,
.sc-reviews-modal-product {
    color: rgba(34, 34, 34, 0.65);
}

.sc-reviews-card-inner {
    background-color: var(--pr-surface);
    background: linear-gradient(165deg, #ffffff 0%, var(--pr-bg) 48%, var(--pr-bg-alt) 100%);
}

@media (max-width: 575.98px) {
    .sc-reviews-modal {
        background: rgba(10, 10, 10, 0.55);
    }

    .sc-reviews-modal-dialog {
        background: transparent;
    }

    .sc-reviews-modal-panel {
        background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
        border-top-color: rgba(201, 162, 39, 0.35);
    }
}
