/* ==========================================================
   Storefront — public landing & product pages
   ========================================================== */

:root {
    --brand: #4f46e5;
    --brand-dark: #4338ca;
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --soft: #f9fafb;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    color: var(--text);
    background: var(--bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

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

/* ---------- Header ---------- */
.site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.site-header .navbar { padding: .9rem 0; }
.site-header .navbar-brand {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 800; font-size: 1.25rem;
    color: var(--text) !important;
    letter-spacing: -.01em;
}
.site-header .logo-img {
    max-height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.site-header .brand-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--brand) 0%, #7c3aed 100%);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px -2px rgba(79,70,229,.4);
}
.site-header .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: .5rem 1rem !important;
    position: relative;
}
.site-header .nav-link.active { color: var(--brand) !important; }
.site-header .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: 2px;
    height: 2px; border-radius: 2px;
    background: var(--brand);
}
.site-header .search-box {
    position: relative;
    width: 220px;
}
.site-header .search-box i {
    position: absolute;
    left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--muted);
}
.site-header .search-box .form-control {
    padding-left: 38px;
    border-radius: 999px;
    background: var(--soft);
    border-color: var(--border);
}

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--soft);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    transition: background .15s;
}
.cart-link:hover { background: var(--brand); color: #fff; }
.cart-link i { font-size: 1.15rem; }
.cart-count {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--brand);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    border: 2px solid #fff;
    min-width: 22px;
    text-align: center;
}
.cart-link:hover .cart-count {
    background: #fff;
    color: var(--brand);
}

/* Order tracking timeline */
.status-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-top: .5rem;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    width: 100px;
}
.timeline-bullet {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    color: #94a3b8;
    border: 2px solid var(--border);
    font-size: 1.2rem;
    transition: all .25s;
}
.timeline-step.is-done .timeline-bullet {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.timeline-step.is-current .timeline-bullet {
    box-shadow: 0 0 0 5px rgba(99,102,241,.18);
    transform: scale(1.05);
}
.timeline-label {
    font-size: .85rem;
    color: #94a3b8;
    margin-top: .5rem;
    font-weight: 500;
}
.timeline-step.is-done .timeline-label { color: var(--text); }
.timeline-step.is-current .timeline-label {
    color: var(--brand);
    font-weight: 700;
}
.timeline-line {
    flex: 1 1 auto;
    height: 3px;
    background: var(--border);
    margin: 23px 4px 0 4px;
    border-radius: 2px;
    transition: background .25s;
}
.timeline-line.is-done { background: var(--brand); }

@media (max-width: 640px) {
    .timeline-step { width: 70px; }
    .timeline-label { font-size: .7rem; }
    .timeline-bullet { width: 38px; height: 38px; font-size: 1rem; }
    .timeline-line { margin-top: 18px; }
}

/* ---------- Hero ---------- */
.hero {
    background: url('../img/band1.png') center center / cover no-repeat;
    color: #fff;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0%, transparent 50%);
    pointer-events: none;
}
.hero-decor {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
    z-index: 0;
}
.hero-decor.decor-1 {
    width: 460px; height: 460px;
    top: -180px; right: -120px;
    background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
}
.hero-decor.decor-2 {
    width: 320px; height: 320px;
    bottom: -120px; left: -80px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,.25);
}
.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.hero h1 .hero-accent {
    background: linear-gradient(120deg, #fde047, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero p.lead {
    font-size: 1.15rem;
    opacity: .92;
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero .hero-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.hero .btn-hero {
    padding: .8rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border-width: 2px;
}
.hero .btn-light {
    background: #fff;
    color: var(--brand);
    border: 0;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,.3);
}
.hero .btn-light:hover { background: #f8fafc; transform: translateY(-1px); }
.hero .btn-outline-light:hover { background: rgba(255,255,255,.15); }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    color: rgba(255,255,255,.85);
}
.hero-stat strong {
    display: block;
    font-size: 1.85rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.02em;
}
.hero-stat span {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .85;
}

/* Hero spotlight card (right column on desktop) */
.hero-card {
    display: block;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
    transform: rotate(-2deg);
    transition: transform .35s ease, box-shadow .35s ease;
    text-decoration: none;
    color: var(--text);
    max-width: 460px;
    margin-left: auto;
}
.hero-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 40px 70px -20px rgba(0,0,0,.55);
}
.hero-card-img {
    aspect-ratio: 4/3;
    background: var(--soft);
    overflow: hidden;
}
.hero-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-card-body { padding: 1.5rem 1.75rem; }
.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .75rem;
}
.hero-card h4 {
    font-weight: 700;
    margin: 0 0 .75rem;
    font-size: 1.25rem;
}
.hero-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand);
}
.hero-card-price span {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

/* Decorative blobs (fallback if no spotlight product) */
.hero-collage {
    position: relative;
    aspect-ratio: 1;
    max-width: 460px;
    margin-left: auto;
    display: flex; align-items: center; justify-content: center;
}
.hero-collage > i {
    font-size: 9rem;
    color: rgba(255,255,255,.5);
    z-index: 2;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}
.hero-blob.blob-a { width:60%; height:60%; top:5%; right:5%; background:rgba(255,255,255,.18); }
.hero-blob.blob-b { width:50%; height:50%; bottom:0;  left:5%; background:rgba(253,224,71,.25); }
.hero-blob.blob-c { width:40%; height:40%; bottom:25%; right:30%; background:rgba(236,72,153,.3); }

/* ---------- Section ---------- */
.section { padding: 5rem 0; }
.section-soft { background: var(--soft); }
.section-header { margin-bottom: 2.5rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--brand);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.section-header p {
    color: var(--muted);
    margin: 0;
    font-size: 1.05rem;
}

/* ---------- Feature strip (under hero) ---------- */
.feature-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.feature-item {
    text-align: center;
    padding: .25rem;
}
.feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: var(--soft);
    color: var(--brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.feature-item h6 {
    font-weight: 700;
    margin: 0 0 .25rem;
    font-size: 1rem;
}
.feature-item small { color: var(--muted); }

/* ---------- Product card ---------- */
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.15);
    border-color: var(--brand);
}
.product-card .product-img-wrap {
    aspect-ratio: 1;
    background: var(--soft);
    overflow: hidden;
    position: relative;
}
.product-card .product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-card .badge-sale,
.product-card .badge-feat {
    position: absolute;
    top: 12px;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.product-card .badge-sale {
    left: 12px;
    background: #ef4444;
    color: #fff;
}
.product-card .badge-feat {
    right: 12px;
    background: #f59e0b;
    color: #fff;
}
.product-card .badge-out {
    position: absolute; inset: 0;
    background: rgba(255,255,255,.85);
    display: flex; align-items: center; justify-content: center;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.product-card .product-body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card .product-cat {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}
.product-card .product-name {
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .5rem;
    font-size: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .product-name a { color: inherit; }
.product-card .product-price {
    margin-top: auto;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.product-card .product-price .price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
    font-size: .9rem;
    margin-left: .25rem;
}

/* ---------- Category card ---------- */
.category-card {
    border-radius: 14px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(79,70,229,.4);
    color: #fff;
}
.category-card .cat-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.category-card h5 { font-weight: 700; margin: 0 0 .25rem; }
.category-card small { opacity: .8; }

.category-card.alt-1 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.category-card.alt-2 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.category-card.alt-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.category-card.alt-4 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.category-card.alt-5 { background: linear-gradient(135deg, #14b8a6, #0ea5e9); }

/* ---------- About section ---------- */
.about-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}
.about-section p { font-size: 1.05rem; line-height: 1.7; }
.about-points { margin-top: 1.5rem; }
.about-point {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .6rem 0;
}
.about-point .ap-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(79,70,229,.12);
    color: var(--brand);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}
.about-point strong { display: block; font-size: 1rem; }
.about-point small { color: var(--muted); }

.about-image {
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}
.about-tile {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,.2);
    transition: transform .3s ease;
}
.about-tile:hover { transform: translateY(-6px); }
.about-tile.tile-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); transform: rotate(-3deg); }
.about-tile.tile-2 { background: linear-gradient(135deg, #ec4899, #f43f5e); transform: rotate(3deg); margin-top: 2rem; }
.about-tile.tile-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); transform: rotate(3deg); margin-bottom: 2rem; }
.about-tile.tile-4 { background: linear-gradient(135deg, #10b981, #06b6d4); transform: rotate(-3deg); }
.about-tile:hover { transform: rotate(0deg) translateY(-6px); }

/* ---------- Big CTA banner ---------- */
.cta-banner {
    padding: 4rem 0;
}
.cta-banner-inner {
    background: linear-gradient(135deg, #1e293b 0%, #4338ca 100%);
    color: #fff;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 20%, rgba(255,255,255,.1) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(255,255,255,.06) 0%, transparent 40%);
    pointer-events: none;
}
.cta-banner-inner > .row { position: relative; }
.cta-banner-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.cta-banner-inner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner-inner .btn-light {
    background: #fff;
    color: var(--brand);
    border-radius: 999px;
    padding: .8rem 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
}
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--soft); }
.newsletter-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px -25px rgba(0,0,0,.2);
}
.newsletter-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 12px 24px -8px rgba(79,70,229,.5);
}
.newsletter-card h3 {
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: .5rem;
}
.newsletter-card > p { color: var(--muted); margin-bottom: 1.5rem; }
.newsletter-form {
    display: flex;
    gap: .5rem;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.newsletter-form .form-control {
    flex: 1 1 240px;
    border-radius: 999px;
    padding-left: 1.25rem;
    border-color: var(--border);
}
.newsletter-form .btn {
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* ---------- Product detail page ---------- */
.product-detail {
    padding: 3rem 0;
}
.product-detail .product-image {
    aspect-ratio: 1;
    background: var(--soft);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.product-detail .product-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.product-detail h1 { font-weight: 700; }
.product-detail .price-block {
    display: flex; align-items: baseline; gap: .75rem;
    font-size: 2rem; font-weight: 700;
}
.product-detail .price-block .old {
    font-size: 1.25rem; font-weight: 400; color: var(--muted); text-decoration: line-through;
}
.product-detail .stock-row { color: var(--muted); margin-bottom: 1.25rem; }
.product-detail .stock-row .in-stock { color: #10b981; font-weight: 600; }
.product-detail .stock-row .out-of-stock { color: #ef4444; font-weight: 600; }

/* ---------- Filters bar ---------- */
.filters-bar {
    background: var(--soft);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}
.filters-bar .form-label { font-size: .8rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}
.site-footer h5, .site-footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.site-footer .footer-brand i {
    color: var(--brand);
    margin-right: .5rem;
}
.site-footer p { color: #cbd5e1; }
.site-footer ul li { margin-bottom: .5rem; color: #cbd5e1; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer hr { border-color: #1e293b; margin: 2rem 0 1rem; }
/* Override Bootstrap's .text-muted (which is too dark on this dark bg). */
.site-footer .text-muted,
.site-footer .text-muted i { color: #94a3b8 !important; }
.site-footer .copyright { color: #94a3b8; }

/* ---------- Empty state ---------- */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted);
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: .3;
}

/* ---------- Pagination ---------- */
.pagination .page-link {
    color: var(--text);
    border-color: var(--border);
}
.pagination .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}

/* ---------- Cart table on small screens ---------- */
.cart-table { min-width: 560px; }
.cart-table .qty-input { width: 80px; }

/* ---------- Checkout summary (sticky on desktop only) ---------- */
@media (min-width: 992px) {
    .checkout-summary { position: sticky; top: 90px; }
}

@media (max-width: 991.98px) {
    .site-header .navbar { padding: .75rem 0; }
    .site-header .search-box {
        width: 100%;
        margin-top: .75rem;
    }
    .site-header .navbar-collapse { margin-top: .5rem; }
    .site-header .header-search { width: 100%; }
    .hero        { padding: 3.5rem 0 4.5rem; }
    .hero h1     { font-size: 2.25rem; }
    .hero-stats  { gap: 1.5rem; margin-top: 2rem; }
    .section     { padding: 3rem 0; }
    .section-header h2 { font-size: 1.75rem; }
    .about-section h2  { font-size: 1.75rem; }
    .about-image       { max-width: 380px; }
    .cta-banner        { padding: 2.5rem 0; }
    .cta-banner-inner  { padding: 2.5rem 1.75rem; border-radius: 20px; }
    .cta-banner-inner h2 { font-size: 1.6rem; }
    .feature-strip     { padding: 2rem 0; }
}

@media (max-width: 575.98px) {
    .hero        { padding: 2.5rem 0 3rem; }
    .hero h1     { font-size: 1.85rem; }
    .hero p.lead { font-size: .95rem; }
    .hero-eyebrow { font-size: .7rem; padding: .3rem .8rem; }
    .hero-stats  { gap: 1.25rem; margin-top: 1.75rem; }
    .hero-stat strong { font-size: 1.4rem; }
    .hero-stat span   { font-size: .7rem; }
    .hero .btn-hero   { padding: .65rem 1.25rem; font-size: .9rem; }
    .feature-icon { width: 46px; height: 46px; font-size: 1.2rem; }
    .feature-item h6 { font-size: .9rem; }
    .feature-item small { font-size: .75rem; }
    .section     { padding: 2.25rem 0; }
    .section-header  { margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 1.4rem; }
    .section-eyebrow   { font-size: .7rem; }
    .about-section h2  { font-size: 1.5rem; }
    .about-image       { max-width: 280px; }
    .about-tile        { font-size: 2rem; border-radius: 14px; }
    .cta-banner        { padding: 2rem 0; }
    .cta-banner-inner  { padding: 2rem 1.25rem; border-radius: 16px; }
    .cta-banner-inner h2 { font-size: 1.35rem; }
    .newsletter-card   { padding: 2rem 1.25rem; border-radius: 18px; }
    .newsletter-card h3 { font-size: 1.4rem; }
    .newsletter-icon   { width: 52px; height: 52px; font-size: 1.4rem; }
    .product-detail { padding: 1.5rem 0; }
    .product-detail h1 { font-size: 1.5rem; }
    .product-detail .price-block { font-size: 1.5rem; }
    .product-card .product-body  { padding: .75rem; }
    .product-card .product-name  { font-size: .9rem; }
    .product-card .product-price { font-size: 1rem; }
    .category-card { padding: 1.25rem .75rem; }
    .category-card h5 { font-size: .95rem; }
    .empty-state   { padding: 2.5rem 1rem; }
    .empty-state i { font-size: 3rem; }
    .breadcrumb    { font-size: .85rem; }
    .site-footer   { padding: 2rem 0 1rem; }
}
