* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --dark: #0A0A0A;
    --dark-card: #141414;
    --dark-surface: #1A1A1A;
    --text: #E8E8E8;
    --text-muted: #888;
    --accent: #C9A84C;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: all 0.3s;
}
.navbar.scrolled { padding: 0.6rem 2rem; }
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 35px;
    width: auto;
    filter: invert(1);
    transition: opacity 0.3s;
}
.logo-img:hover { opacity: 0.8; }
.footer-logo-img {
    height: 30px;
    width: auto;
    filter: invert(1);
    opacity: 0.8;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--gold);
}
.cart-count {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ========== HERO ========== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpg') center/cover;
    filter: brightness(0.25);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--dark));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 1rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ========== FEATURES BAR ========== */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.feature-item {
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid rgba(201,168,76,0.1);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--gold);
}
.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ========== SECTIONS ========== */
section { padding: 6rem 2rem; }
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-label {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
}
.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 1rem auto 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== PRODUCT GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.product-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}
.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrapper { overflow: hidden; position: relative; }
.quick-view {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(201,168,76,0.95);
    color: var(--dark);
    text-align: center;
    padding: 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.3s;
    cursor: pointer;
}
.product-card:hover .quick-view { transform: translateY(0); }
.product-info { padding: 1.5rem; }
.product-brand {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.product-specs {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
}
.product-price .old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.btn-add {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.btn-add:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ========== BANNER ========== */
.promo-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2rem;
    border-radius: 4px;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner-bg.jpg') center/cover;
    filter: brightness(0.3);
}
.promo-content {
    position: relative;
    z-index: 2;
}
.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.promo-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
    transition: border-color 0.3s;
}
.why-card:hover { border-color: rgba(201,168,76,0.2); }
.why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
    padding: 2.5rem;
}
.stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card blockquote {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.reviewer-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.reviewer-name { font-size: 0.9rem; font-weight: 500; }
.reviewer-title { font-size: 0.75rem; color: var(--text-muted); }

/* ========== FAQ ========== */
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    color: var(--gold);
    font-size: 1.3rem;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

/* ========== CART SIDEBAR ========== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
    position: fixed;
    top: 0; right: -450px;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--dark-card);
    z-index: 2001;
    transition: right 0.4s;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}
.cart-close {
    background: none; border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2rem;
}
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-item img {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 4px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; margin-bottom: 0.3rem; }
.cart-item-price { color: var(--gold); font-size: 0.85rem; }
.cart-item-remove {
    background: none; border: none;
    color: var(--text-muted); cursor: pointer;
    font-size: 0.8rem;
    align-self: flex-start;
}
.cart-item-remove:hover { color: #e74c3c; }
.cart-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}
.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.cart-total span:last-child {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

/* ========== ORDER MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--dark-card);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: scale(0.9);
    transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.modal .subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.order-summary {
    background: var(--dark-surface);
    border-radius: 4px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}
.order-summary h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.order-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    color: var(--text-muted);
}
.order-line.total {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}
.cod-notice {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.cod-notice .icon { font-size: 1.3rem; }
.cod-notice p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.success-msg {
    text-align: center;
    padding: 2rem;
}
.success-msg .checkmark { font-size: 3rem; margin-bottom: 1rem; }
.success-msg h3 { margin-bottom: 0.5rem; }
.success-msg p { color: var(--text-muted); font-size: 0.9rem; }
.success-msg .order-number {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 1rem 0;
    letter-spacing: 2px;
}
.success-details {
    text-align: left;
    background: var(--dark-surface);
    border-radius: 4px;
    padding: 1.2rem;
    margin: 1.5rem 0;
}
.success-details h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.success-details .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 0.35rem 0;
    color: var(--text-muted);
}
.success-details .detail-row span:first-child { color: var(--text); }

/* Loading spinner */
.loading-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1.5rem;
}
.loading-overlay.active { display: flex; }
.spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(201,168,76,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ========== FOOTER ========== */
footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}
footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
footer ul a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--dark);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .features-bar { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* =====================================================
   BREADCRUMB
===================================================== */
.breadcrumb-bar {
    background: var(--dark-card);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 0.8rem 2rem;
    margin-top: 65px;
}
.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.breadcrumb-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner .sep { color: rgba(201,168,76,0.35); }
.breadcrumb-inner span:last-child { color: var(--text); }

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
    margin-top: 65px;
    padding: 5rem 2rem 3.5rem;
    text-align: center;
    background: var(--dark-card);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}
.page-hero-sm { padding: 3.5rem 2rem 2.5rem; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    margin: 0.8rem 0 0.6rem;
}
.page-hero p { color: var(--text-muted); font-size: 1rem; }

/* =====================================================
   INNER SECTIONS
===================================================== */
.inner-section { padding: 5rem 2rem; }
.inner-section-content { max-width: 1200px; margin: 0 auto; }
.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}
.inner-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
}
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-img-box {
    background: var(--dark-card);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    height: 380px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.about-img-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.about-img-text { text-align: center; position: relative; z-index: 1; }
.about-number { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); line-height: 1; }
.about-number-label { color: var(--text-muted); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.5rem; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.number-item {
    text-align: center; padding: 2.5rem 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.04); border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
}
.number-item:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.big-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 0.4rem; }
.big-number-label { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 1px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
    background: var(--dark-card); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px;
    padding: 2.5rem 2rem; text-align: center; transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--dark-surface); border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
    margin: 0 auto 1.2rem;
}
.team-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-role { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.team-bio { color: var(--text-muted); font-size: 0.83rem; line-height: 1.7; }
.cta-section { background: var(--dark-card); }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contact-item {
    display: flex; gap: 1.2rem; margin-bottom: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-value a { color: var(--text); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }
.contact-note { font-size: 0.78rem; color: var(--text-muted); }
.contact-success {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.25);
    border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem;
}
.contact-success p { color: var(--text); font-size: 0.9rem; line-height: 1.6; }

/* =====================================================
   LEGAL PAGES — redesigned for readability
===================================================== */
.legal-content { max-width: 820px; margin: 0 auto; }

.legal-intro {
    background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}
.legal-intro p { color: #c8c8c8; font-size: 0.95rem; line-height: 1.85; }

.legal-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
.legal-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin: 2rem 0 0.8rem;
    opacity: 0.85;
}
.legal-section p {
    color: #c0c0c0;
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 0.9rem;
}
.legal-section ul, .legal-section ol {
    color: #c0c0c0;
    font-size: 0.92rem;
    line-height: 1.9;
    padding-left: 1.6rem;
    margin: 0.9rem 0;
}
.legal-section li { margin-bottom: 0.45rem; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a { color: var(--gold); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

.legal-table {
    width: 100%; border-collapse: collapse;
    margin: 1.5rem 0; font-size: 0.87rem;
    border-radius: 8px; overflow: hidden;
}
.legal-table thead tr { background: rgba(201,168,76,0.1); }
.legal-table th {
    text-align: left; padding: 1rem 1.2rem;
    color: var(--gold); font-size: 0.72rem;
    letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.legal-table td {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #bfbfbf; vertical-align: top; line-height: 1.6;
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* Return page steps */
.returns-highlights {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 3rem;
}
.return-highlight {
    text-align: center; padding: 2rem 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
}
.return-highlight:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.return-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.return-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; }
.return-desc { color: var(--text-muted); font-size: 0.78rem; line-height: 1.5; }

.steps-list { margin: 2rem 0; }
.step-item {
    display: flex; gap: 2rem; margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
    transition: border-color 0.3s;
}
.step-item:hover { border-color: rgba(201,168,76,0.2); }
.step-num {
    font-family: 'Playfair Display', serif; font-size: 2.5rem;
    color: rgba(201,168,76,0.25); line-height: 1; flex-shrink: 0; width: 60px; text-align: center;
}
.step-content h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.step-content p { color: #b8b8b8; font-size: 0.88rem; line-height: 1.75; margin: 0; }
.step-content a { color: var(--gold); }

/* =====================================================
   PRODUCT PAGE — complete redesign
===================================================== */
.product-body { background: var(--dark); }

/* Breadcrumb on product page */
.product-body .breadcrumb-bar { margin-top: 65px; }

/* Main wrapper */
.pg-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    gap: 4rem;
    align-items: start;
}

/* ---- Image column ---- */
.pg-col-image {
    position: sticky;
    top: 80px;
}
.pg-img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-card);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}
.pg-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.pg-img-frame:hover .pg-main-image { transform: scale(1.04); }
.pg-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 5;
    background: var(--gold); color: var(--dark);
    padding: 0.35rem 0.9rem; font-size: 0.65rem;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 2px;
}
.pg-discount-ribbon {
    position: absolute; top: 1rem; right: 1rem; z-index: 5;
    background: rgba(10,10,10,0.85);
    color: var(--gold); border: 1px solid rgba(201,168,76,0.4);
    padding: 0.35rem 0.8rem; font-size: 0.75rem;
    font-weight: 700; border-radius: 2px;
}

/* Trust grid under image */
.pg-trust-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem;
}
.pg-trust-item {
    display: flex; align-items: center; gap: 0.7rem;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
    padding: 0.9rem 1rem;
    transition: border-color 0.25s;
}
.pg-trust-item:hover { border-color: rgba(201,168,76,0.2); }
.pg-trust-icon { font-size: 1.3rem; flex-shrink: 0; }
.pg-trust-item strong { display: block; font-size: 0.75rem; color: var(--text); margin-bottom: 0.1rem; }
.pg-trust-item span { font-size: 0.68rem; color: var(--text-muted); }

/* ---- Info column ---- */
.pg-col-info { padding-top: 0.5rem; }
.pg-brand-tag {
    display: inline-block;
    color: var(--gold); font-size: 0.68rem;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 0.3rem;
}
.pg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400; line-height: 1.15;
    margin-bottom: 1rem;
}
.pg-rating-row {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.pg-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.pg-rating-count { color: var(--text-muted); }
.pg-sold { color: var(--text-muted); }

.pg-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(201,168,76,0.2), transparent);
    margin: 1.5rem 0;
}

/* Price block */
.pg-price-block {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1.5rem;
}
.pg-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; color: var(--gold); line-height: 1;
}
.pg-old-price {
    font-size: 1rem; color: var(--text-muted);
    text-decoration: line-through;
}
.pg-saving-badge {
    background: rgba(46,204,113,0.12);
    color: #2ecc71; border: 1px solid rgba(46,204,113,0.25);
    padding: 0.3rem 0.8rem; font-size: 0.75rem; font-weight: 600;
    border-radius: 4px;
}

/* Spec pills */
.pg-specs-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.pg-spec-pill {
    background: var(--dark-card);
    border: 1px solid rgba(201,168,76,0.18); border-radius: 4px;
    padding: 0.3rem 0.8rem; font-size: 0.72rem; color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Description */
.pg-description {
    color: #c0c0c0; font-size: 0.9rem;
    line-height: 1.85; margin-bottom: 1.5rem;
}

/* Features */
.pg-features {
    list-style: none; margin-bottom: 1.5rem;
}
.pg-features li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.87rem; color: #c0c0c0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pg-features li:last-child { border-bottom: none; }
.pg-check {
    color: var(--gold); font-weight: 700;
    flex-shrink: 0; margin-top: 0.05rem;
}

/* COD box */
.pg-cod-box {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2); border-radius: 8px;
    padding: 1.2rem 1.4rem; margin-bottom: 2rem;
}
.pg-cod-box > span { font-size: 1.4rem; flex-shrink: 0; }
.pg-cod-box strong { display: block; font-size: 0.85rem; margin-bottom: 0.3rem; color: var(--text); }
.pg-cod-box p { font-size: 0.78rem; color: #a8a8a8; line-height: 1.6; margin: 0; }

/* Quantity + CTA */
.pg-actions {
    display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem;
}
.pg-qty-ctrl {
    display: flex; align-items: center;
    border: 1px solid rgba(201,168,76,0.25); border-radius: 6px; overflow: hidden;
    flex-shrink: 0;
}
.pg-qty-btn {
    width: 44px; height: 52px;
    background: var(--dark-card); border: none; color: var(--gold);
    font-size: 1.4rem; cursor: pointer; transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
    user-select: none;
}
.pg-qty-btn:hover { background: var(--dark-surface); }
.pg-qty-num {
    width: 48px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 600;
    background: var(--dark-surface); color: var(--text);
    border-left: 1px solid rgba(201,168,76,0.15);
    border-right: 1px solid rgba(201,168,76,0.15);
}
.pg-cta-btn {
    flex: 1; height: 52px;
    background: var(--gold); color: var(--dark);
    border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.85rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 6px; transition: all 0.3s;
}
.pg-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

.pg-shipping-note {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: var(--text-muted);
    padding: 0.8rem;
    background: var(--dark-card); border-radius: 6px;
}
.pg-shipping-note a { color: var(--gold); text-decoration: none; }
.pg-shipping-note a:hover { text-decoration: underline; }

/* ---- Mobile sticky CTA ---- */
.mobile-sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
    background: var(--dark-card);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 0.9rem 1.2rem;
    flex-direction: row; align-items: center; gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.msc-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--gold);
    display: flex; align-items: center; gap: 0.6rem;
}
.msc-old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; font-family: 'Inter', sans-serif; }
.msc-btn {
    flex: 1; height: 48px;
    background: var(--gold); color: var(--dark);
    border: none; cursor: pointer; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 0.82rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    transition: background 0.2s;
}
.msc-btn:hover { background: var(--gold-light); }

/* ---- Specs table ---- */
.pg-specs-section {
    padding: 5rem 2rem;
    background: var(--dark-card);
    border-top: 1px solid rgba(201,168,76,0.06);
}
.pg-section-inner { max-width: 1200px; margin: 0 auto; }
.pg-specs-table-wrap { max-width: 800px; margin: 3rem auto 0; overflow-x: auto; }
.pg-specs-table { width: 100%; border-collapse: collapse; }
.pg-specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.pg-specs-table tr:last-child { border-bottom: none; }
.pg-specs-table tr:hover td { background: rgba(255,255,255,0.02); }
.spt-key {
    padding: 1.1rem 1.5rem; font-size: 0.8rem;
    color: var(--text-muted); letter-spacing: 0.5px;
    width: 42%;
}
.spt-val {
    padding: 1.1rem 1.5rem; font-size: 0.88rem;
    color: var(--text); font-weight: 500;
}

/* ---- Reviews ---- */
.pg-reviews-section {
    padding: 5rem 2rem;
    background: var(--dark);
}
.pg-reviews-summary {
    display: flex; gap: 4rem; align-items: center;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
    padding: 2.5rem; margin-bottom: 3rem; max-width: 700px;
}
.prs-score { text-align: center; flex-shrink: 0; }
.prs-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); line-height: 1; }
.prs-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; margin: 0.3rem 0; }
.prs-total { font-size: 0.75rem; color: var(--text-muted); }
.prs-bars { flex: 1; }
.prs-bar-row {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 0.5rem; font-size: 0.75rem; color: var(--text-muted);
}
.prs-bar-row span:first-child { width: 28px; }
.prs-bar-row span:last-child { width: 32px; text-align: right; }
.prs-bar-track {
    flex: 1; height: 5px;
    background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden;
}
.prs-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.pg-reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pg-review-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
    padding: 1.8rem;
    transition: border-color 0.3s, transform 0.3s;
}
.pg-review-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }
.prc-header {
    display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem;
}
.prc-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--dark-surface); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
}
.prc-meta { flex: 1; }
.prc-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.1rem; }
.prc-city { font-size: 0.72rem; color: var(--text-muted); }
.prc-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.prc-text { color: #bbb; font-size: 0.87rem; line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.prc-verified { font-size: 0.68rem; color: #2ecc71; letter-spacing: 0.5px; }

/* ---- Related ---- */
.pg-related-section {
    padding: 5rem 2rem;
    background: var(--dark-card);
    border-top: 1px solid rgba(201,168,76,0.06);
}

/* =====================================================
   RESPONSIVE — mobile first
===================================================== */
@media (max-width: 1024px) {
    .pg-wrapper { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 2rem; }
    .pg-reviews-grid { grid-template-columns: 1fr 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .returns-highlights { grid-template-columns: repeat(2, 1fr); }
    .pg-reviews-summary { flex-direction: column; gap: 1.5rem; max-width: 100%; }
}

@media (max-width: 768px) {
    /* Global mobile */
    section { padding: 4rem 1.2rem; }
    .inner-section { padding: 3.5rem 1.2rem; }
    .page-hero { padding: 3.5rem 1.2rem 2.5rem; }

    /* Product page mobile */
    .pg-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }
    .pg-col-image {
        position: static;
        padding: 0;
    }
    .pg-img-frame {
        border-radius: 0;
        margin-bottom: 0;
        box-shadow: none;
    }
    .pg-main-image { aspect-ratio: 1 / 1; }
    .pg-trust-grid { display: none; } /* Hidden on mobile, shown in info */
    .pg-col-info { padding: 1.8rem 1.2rem 7rem; } /* Bottom padding for sticky CTA */
    .pg-title { font-size: 1.8rem; }
    .pg-price { font-size: 2rem; }
    .pg-actions { flex-direction: column; }
    .pg-qty-ctrl { width: 100%; justify-content: center; }
    .pg-cta-btn { width: 100%; }
    .pg-specs-pills { margin-bottom: 1rem; }

    /* Show mobile sticky CTA */
    .mobile-sticky-cta { display: flex; }

    /* Reviews */
    .pg-reviews-grid { grid-template-columns: 1fr; }
    .pg-reviews-summary { padding: 1.5rem; gap: 1.5rem; }

    /* Specs section */
    .pg-specs-section, .pg-reviews-section, .pg-related-section {
        padding: 3.5rem 1.2rem;
    }
    .pg-specs-table-wrap { margin-top: 2rem; }
    .spt-key, .spt-val { padding: 0.9rem 0.8rem; font-size: 0.82rem; }

    /* About */
    .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

    /* Returns */
    .returns-highlights { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .step-item { flex-direction: column; gap: 0.5rem; padding: 1.2rem; }
    .step-num { font-size: 1.8rem; width: auto; }

    /* Legal */
    .legal-content { padding: 0; }
    .legal-intro { padding: 1.5rem; }
    .legal-table { font-size: 0.78rem; }
    .legal-table th, .legal-table td { padding: 0.7rem 0.8rem; }

    /* Products grid */
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .features-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .returns-highlights { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pg-price { font-size: 1.7rem; }
    .pg-price-block { gap: 0.6rem; }
    .breadcrumb-inner { font-size: 0.7rem; }
}
