/* ============================================================
   SVA Silks — Brand Theme CSS
   Gold/Maroon/Navy luxury palette, Playfair Display headings
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8C97A;
    --gold-dark:   #A0803A;
    /* Admin-configurable fallbacks (overridden by inline :root in app.blade.php) */
    --sva-header-bg:  #4A0E1C;
    --sva-nav-bg:     #4A0E1C;
    --sva-accent:     #C9A84C;
    --sva-footer-bg:  #4A0E1C;
    --maroon:      #6B1D2A;
    --maroon-deep: #4A0E1C;
    --navy:        #1B2A4A;
    --navy-light:  #2A3F6B;
    --cream:       #FFFBF5;
    --cream-dark:  #F5EDD8;
    --text-dark:   #1A1A2E;
    --text-muted:  #6B6B7B;
    --shadow-sm:   0 2px 12px rgba(74,14,28,.12);
    --shadow-md:   0 8px 32px rgba(74,14,28,.18);
    --shadow-lg:   0 16px 48px rgba(74,14,28,.22);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --transition:  all 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Typography override ─────────────────────────────────── */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--text-dark);
}

h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
}

.gold { color: var(--gold) !important; }
.maroon { color: var(--maroon) !important; }
.navy { color: var(--navy) !important; }

/* ── Scroll animations ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Top Bar ─────────────────────────────────────────────── */
.sva-top-bar {
    background: var(--sva-header-bg, var(--maroon-deep));
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}
.sva-top-bar a { color: rgba(255,255,255,.85); text-decoration: none; }
.sva-top-bar a:hover { color: var(--gold-light); }
.sva-top-bar .marquee-wrap {
    overflow: hidden;
    position: relative;
    flex: 1;
    margin: 0 16px;
}
.sva-top-bar .marquee-inner {
    display: inline-flex;
    animation: sva-marquee 28s linear infinite;
    white-space: nowrap;
}
.sva-top-bar .marquee-inner:hover { animation-play-state: paused; }
@keyframes sva-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.sva-top-bar .top-right { display: flex; align-items: center; gap: 12px; }
.sva-top-bar select {
    background: transparent;
    border: 1px solid rgba(201,168,76,.4);
    color: rgba(255,255,255,.85);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .75rem;
    cursor: pointer;
}
.sva-top-bar select option { background: var(--maroon-deep); color: #fff; }

/* ── Header ─────────────────────────────────────────────── */
.sva-header {
    background: #fff;
    border-bottom: 1px solid rgba(201,168,76,.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s;
}
.sva-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.sva-header .container { display: flex; align-items: center; gap: 20px; padding: 14px 15px; }

/* Logo */
.sva-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.sva-logo-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sva-header-bg, var(--maroon-deep)), var(--navy));
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--sva-accent, var(--gold));
    overflow: hidden;
}
.sva-logo-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.sva-logo-circle span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--gold); letter-spacing: 1px;
}
.sva-logo-text { line-height: 1.2; }
.sva-logo-text .name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--maroon-deep); letter-spacing: 1px;
}
.sva-logo-text .sub {
    display: block;
    font-size: .65rem; color: var(--gold-dark);
    letter-spacing: 2px; text-transform: uppercase;
}

/* Search */
.sva-search {
    flex: 1; max-width: 480px;
    display: flex; align-items: center;
    border: 1.5px solid rgba(201,168,76,.35);
    border-radius: 50px;
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
}
.sva-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.sva-search input {
    border: none; background: transparent;
    padding: 10px 16px; font-size: .9rem;
    flex: 1; outline: none; color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}
.sva-search input::placeholder { color: var(--text-muted); }
.sva-search button {
    background: var(--sva-header-bg, var(--maroon-deep));
    border: none; color: var(--sva-accent, var(--gold));
    padding: 10px 18px; cursor: pointer;
    font-size: 1rem;
    transition: background .2s;
}
.sva-search button:hover { background: var(--maroon); }

/* Header actions */
.sva-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.sva-action-btn {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; padding: 6px 10px;
    border: none; background: transparent;
    color: var(--text-dark); cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    text-decoration: none; font-size: .7rem;
}
.sva-action-btn i { font-size: 1.3rem; }
.sva-action-btn:hover { color: var(--maroon); background: var(--cream); }
.sva-action-btn .badge-count {
    position: absolute; top: 2px; right: 4px;
    min-width: 18px; height: 18px;
    background: var(--gold); color: var(--maroon-deep);
    border-radius: 50px; font-size: .65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

/* Nav */
.sva-nav {
    background: linear-gradient(90deg, var(--sva-nav-bg, var(--maroon-deep)) 0%, color-mix(in srgb, var(--sva-nav-bg, var(--maroon-deep)) 60%, var(--navy)) 100%);
    border-bottom: 2px solid var(--sva-accent, var(--gold));
}
.sva-nav .container { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.sva-nav .container::-webkit-scrollbar { display: none; }
.sva-nav-link {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    padding: 12px 16px;
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: .4px;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.sva-nav-link:hover, .sva-nav-link.active {
    color: var(--gold-light);
    background: rgba(255,255,255,.08);
}
.sva-nav-link.sale { color: var(--gold-light); font-weight: 600; }

/* ── Hero Slider ─────────────────────────────────────────── */
.sva-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}
.sva-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0;
    transition: opacity .8s ease;
    padding: 60px 0;
}
.sva-slide.active { opacity: 1; position: relative; }
.sva-slide-inner { position: relative; z-index: 2; color: #fff; max-width: 620px; }
.sva-hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .75rem; font-weight: 600;
    padding: 4px 14px; border-radius: 50px;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}
.sva-slide-inner h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.sva-slide-inner h1 .gold { color: var(--gold) !important; }
.sva-slide-inner p {
    font-size: 1rem; line-height: 1.7;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}
.sva-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-sva-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--maroon-deep); border: none;
    padding: 13px 28px; border-radius: 50px;
    font-weight: 600; font-size: .9rem;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.btn-sva-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.5);
}
.btn-sva-outline {
    border: 2px solid rgba(255,255,255,.6);
    color: #fff; background: transparent;
    padding: 11px 26px; border-radius: 50px;
    font-weight: 500; font-size: .9rem;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.btn-sva-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,.08);
}
/* Slider controls */
.sva-hero-dots {
    position: absolute; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 5;
}
.sva-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.4); border: none;
    cursor: pointer; transition: var(--transition); padding: 0;
}
.sva-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.sva-hero-prev, .sva-hero-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5; background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff; width: 44px; height: 44px;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; cursor: pointer;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.sva-hero-prev { left: 20px; }
.sva-hero-next { right: 20px; }
.sva-hero-prev:hover, .sva-hero-next:hover {
    background: var(--gold); color: var(--maroon-deep);
    border-color: var(--gold);
}

/* ── Gold divider line ───────────────────────────────────── */
.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Section headers ─────────────────────────────────────── */
.sva-section { padding: 60px 0; }
.sva-section-header { text-align: center; margin-bottom: 40px; }
.sva-section-header .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .75rem; font-weight: 600;
    color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 10px;
}
.sva-section-header .eyebrow::before,
.sva-section-header .eyebrow::after {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
}
.sva-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--maroon-deep);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}
.sva-section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: .95rem; }

/* ── Category Grid ───────────────────────────────────────── */
.sva-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sva-cat-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}
.sva-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sva-cat-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.sva-cat-card:hover img { transform: scale(1.06); }
.sva-cat-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.sva-cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(74,14,28,.75) 0%, transparent 60%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 20px 16px;
    text-align: center;
}
.sva-cat-overlay span {
    color: #fff; font-size: 1.1rem; font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.sva-cat-overlay small {
    color: var(--gold-light);
    font-size: .72rem; letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* ── Product Cards ───────────────────────────────────────── */
.sva-product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.sva-product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.sva-product-img {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.sva-product-img img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform .6s ease;
}
.sva-product-card:hover .sva-product-img img { transform: scale(1.05); }
.sva-product-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 3px 10px; border-radius: 50px;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
}
.badge-new { background: var(--navy); color: #fff; }
.badge-sale { background: var(--maroon); color: #fff; }
.badge-hot { background: var(--gold); color: var(--maroon-deep); }
.sva-product-actions {
    position: absolute; top: 10px; right: 10px;
    display: flex; flex-direction: column; gap: 6px;
    opacity: 0; transform: translateX(10px);
    transition: var(--transition);
}
.sva-product-card:hover .sva-product-actions { opacity: 1; transform: translateX(0); }
.sva-product-actions .action-btn {
    width: 32px; height: 32px;
    background: #fff; border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: .85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}
.sva-product-actions .action-btn:hover { background: var(--maroon); color: #fff; }
.sva-product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.sva-product-cat {
    font-size: .7rem; color: var(--gold-dark);
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 4px; font-weight: 500;
}
.sva-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600;
    color: var(--text-dark); margin-bottom: 8px;
    line-height: 1.3;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sva-product-name:hover { color: var(--maroon); }
.sva-product-stars { color: var(--gold); font-size: .8rem; margin-bottom: 8px; }
.sva-product-price {
    margin-top: auto; display: flex;
    align-items: center; gap: 8px; flex-wrap: wrap;
}
.sva-price-current {
    font-size: 1.1rem; font-weight: 700;
    color: var(--maroon-deep);
    font-family: 'Playfair Display', serif;
}
.sva-price-old {
    font-size: .85rem; color: var(--text-muted);
    text-decoration: line-through;
}
.sva-price-disc {
    font-size: .7rem; font-weight: 700;
    background: var(--cream-dark); color: var(--maroon);
    padding: 2px 6px; border-radius: 4px;
}
.sva-product-footer {
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(0,0,0,.06);
    display: flex; gap: 8px;
}
.btn-add-cart {
    flex: 1;
    background: var(--maroon-deep); color: #fff;
    border: none; border-radius: 50px;
    padding: 9px 14px; font-size: .8rem; font-weight: 600;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.btn-add-cart:hover { background: var(--maroon); }
.btn-buy-now {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--maroon-deep); border: none;
    border-radius: 50px; padding: 9px 14px;
    font-size: .8rem; font-weight: 700;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    text-decoration: none; display: flex; align-items: center;
}
.btn-buy-now:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--maroon-deep); }

/* ── Product tabs ────────────────────────────────────────── */
.sva-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.sva-tab {
    padding: 9px 22px; border-radius: 50px;
    border: 1.5px solid rgba(201,168,76,.3);
    background: transparent; cursor: pointer;
    font-size: .85rem; font-weight: 500;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.sva-tab:hover { border-color: var(--gold); color: var(--maroon); }
.sva-tab.active {
    background: var(--maroon-deep); color: var(--gold);
    border-color: var(--maroon-deep);
}
.sva-tab-pane { display: none; }
.sva-tab-pane.active { display: block; }

/* ── Craftsmanship Banner ────────────────────────────────── */
.sva-craft-banner {
    background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--navy) 50%, #2C1810 100%);
    position: relative; overflow: hidden;
    padding: 70px 0;
}
.sva-craft-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.sva-craft-content { position: relative; z-index: 2; color: #fff; }
.sva-craft-content .eyebrow {
    font-size: .75rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 16px;
    display: block;
}
.sva-craft-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px; line-height: 1.25;
}
.sva-craft-content p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; max-width: 540px; }
.sva-craft-stats { display: flex; gap: 0; }
.sva-stat {
    flex: 1; text-align: center;
    padding: 30px 10px;
    border-right: 1px solid rgba(201,168,76,.2);
}
.sva-stat:last-child { border-right: none; }
.sva-stat .num {
    font-size: 2.2rem; font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    display: block; line-height: 1;
    margin-bottom: 6px;
}
.sva-stat .label {
    font-size: .8rem; color: rgba(255,255,255,.7);
    letter-spacing: .5px; font-family: 'Poppins', sans-serif;
}
.sva-hexagon {
    width: 220px; height: 220px;
    position: relative; margin: 0 auto;
}
.sva-hexagon::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--maroon));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: .25;
}
.sva-hexagon-inner {
    position: absolute; inset: 20px;
    background: rgba(255,255,255,.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
}
.sva-hexagon-inner span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800;
    color: var(--gold);
    text-align: center; line-height: 1.1;
}

/* ── Testimonials ────────────────────────────────────────── */
.sva-testimonials { background: var(--cream); padding: 70px 0; }
.sva-testi-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,168,76,.12);
    height: 100%;
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.sva-testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sva-testi-quote {
    font-size: 2.5rem; color: var(--gold); line-height: 1;
    margin-bottom: 12px; font-family: 'Playfair Display', serif;
    opacity: .6;
}
.sva-testi-text {
    font-size: .92rem; line-height: 1.7;
    color: var(--text-muted); flex: 1; margin-bottom: 20px;
    font-style: italic;
}
.sva-testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.sva-testi-author { display: flex; align-items: center; gap: 12px; }
.sva-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon-deep), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem; font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}
.sva-testi-info .name {
    font-weight: 600; font-size: .9rem; color: var(--text-dark);
    display: block;
}
.sva-testi-info .loc {
    font-size: .75rem; color: var(--text-muted);
    display: block;
}

/* ── Trust Badges ────────────────────────────────────────── */
.sva-trust { background: #fff; padding: 48px 0; border-top: 1px solid rgba(201,168,76,.15); }
.sva-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sva-trust-item {
    text-align: center; padding: 24px 16px;
    border: 1px solid rgba(201,168,76,.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.sva-trust-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.sva-trust-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--maroon); font-size: 1.5rem;
}
.sva-trust-item h5 {
    font-size: .9rem; font-weight: 700;
    color: var(--maroon-deep); margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.sva-trust-item p { font-size: .78rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Newsletter ──────────────────────────────────────────── */
.sva-newsletter {
    background: linear-gradient(135deg, var(--maroon-deep), var(--navy));
    padding: 60px 0;
    text-align: center; color: #fff;
}
.sva-newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; margin-bottom: 10px;
}
.sva-newsletter p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: .95rem; }
.sva-newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; border-radius: 50px; overflow: hidden; }
.sva-newsletter-form input {
    flex: 1; border: none; padding: 14px 20px;
    font-size: .9rem; outline: none; font-family: 'Poppins', sans-serif;
    background: rgba(255,255,255,.95);
    color: var(--text-dark);
}
.sva-newsletter-form button {
    background: var(--gold); color: var(--maroon-deep);
    border: none; padding: 14px 24px;
    font-weight: 700; font-size: .9rem;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    transition: var(--transition); white-space: nowrap;
}
.sva-newsletter-form button:hover { background: var(--gold-light); }

/* ── Footer ─────────────────────────────────────────────── */
.sva-footer {
    background: linear-gradient(135deg, #0D0D1A 0%, var(--sva-footer-bg, var(--maroon-deep)) 100%);
    color: rgba(255,255,255,.8);
    padding: 60px 0 0;
    font-family: 'Poppins', sans-serif;
}
.sva-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201,168,76,.15);
}
.sva-footer h5 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.sva-footer p { font-size: .85rem; line-height: 1.7; margin-bottom: 16px; color: rgba(255,255,255,.7); }
.sva-footer-links { list-style: none; padding: 0; margin: 0; }
.sva-footer-links li { margin-bottom: 8px; }
.sva-footer-links a {
    color: rgba(255,255,255,.7); text-decoration: none;
    font-size: .85rem; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.sva-footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.sva-social-icons { display: flex; gap: 10px; margin-top: 16px; }
.sva-social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,.35);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); text-decoration: none; font-size: 1rem;
    transition: var(--transition);
}
.sva-social-icon:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); }
.sva-footer-contact p {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: .85rem; margin-bottom: 10px; color: rgba(255,255,255,.7);
}
.sva-footer-contact i { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.sva-footer-bottom {
    padding: 16px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: .8rem; color: rgba(255,255,255,.5);
}
.sva-footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.sva-footer-bottom a:hover { color: var(--gold-light); }

/* ── Product Detail page ─────────────────────────────────── */
.sva-product-detail .product-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}
.sva-breadcrumb-nav { background: var(--cream); padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,.15); }
.sva-breadcrumb-nav .breadcrumb-item a { color: var(--gold-dark); text-decoration: none; font-size: .85rem; }
.sva-breadcrumb-nav .breadcrumb-item.active { color: var(--text-muted); font-size: .85rem; }

/* ── Cart & Checkout ─────────────────────────────────────── */
.sva-checkout-step {
    background: var(--maroon-deep); color: var(--gold);
    padding: 6px 14px; border-radius: 50px;
    font-size: .75rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase;
}
.sva-order-summary-title {
    font-family: 'Playfair Display', serif;
    color: var(--maroon-deep);
}

/* ── Scroll to top ───────────────────────────────────────── */
.sva-scroll-top {
    position: fixed; bottom: 80px; right: 20px; z-index: 9999;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--maroon-deep); color: var(--gold);
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.sva-scroll-top.visible { opacity: 1; pointer-events: all; }
.sva-scroll-top:hover { background: var(--gold); color: var(--maroon-deep); }

/* ── WhatsApp float override ─────────────────────────────── */
.social-chat-icons { bottom: 130px !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sva-footer-grid { grid-template-columns: 1fr 1fr; }
    .sva-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .sva-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sva-header .container { flex-wrap: wrap; gap: 12px; padding: 12px 15px; }
    .sva-logo-text .name { font-size: .95rem; }
    .sva-search { max-width: 100%; order: 3; flex: 0 0 100%; }
    .sva-actions { order: 2; }
    .sva-hero { min-height: 400px; }
    .sva-slide-inner h1 { font-size: 1.7rem; }
    .sva-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .sva-craft-stats { flex-wrap: wrap; }
    .sva-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(201,168,76,.2); }
    .sva-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sva-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sva-newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
    .sva-newsletter-form input, .sva-newsletter-form button { border-radius: var(--radius-sm) !important; }
    .sva-top-bar .top-right { display: none; }
    .sva-action-btn span { display: none; }
}
@media (max-width: 480px) {
    .sva-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sva-footer-grid { grid-template-columns: 1fr; }
    .sva-trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sva-hero-btns { flex-direction: column; gap: 10px; }
    .sva-section { padding: 40px 0; }
    .sva-craft-banner { padding: 50px 0; }
    .sva-testimonials { padding: 50px 0; }
}

/* ── Override Bootstrap defaults for brand palette ───────── */
.btn-primary, .btn-success {
    background: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
    color: #fff !important;
}
.btn-primary:hover, .btn-success:hover {
    background: var(--maroon) !important;
    border-color: var(--maroon) !important;
}
.text-primary { color: var(--maroon) !important; }
.bg-primary { background: var(--maroon-deep) !important; }
a { color: inherit; }

/* ── Utility: section bg alt ─────────────────────────────── */
.sva-bg-cream { background: var(--cream); }
.sva-bg-cream-dark { background: var(--cream-dark); }

/* View all button */
.btn-sva-view-all {
    border: 1.5px solid var(--gold);
    color: var(--maroon-deep); background: transparent;
    padding: 10px 28px; border-radius: 50px;
    font-size: .85rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    display: inline-block;
}
.btn-sva-view-all:hover {
    background: var(--maroon-deep); color: var(--gold);
    border-color: var(--maroon-deep);
}

/* ============================================================
   SVA — Page-wide overrides (applies to ALL inner pages)
   ============================================================ */

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-section, .breadcrumb-wrap {
    background: var(--cream) !important;
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 10px 0 !important;
}
.breadcrumb-item a { color: var(--gold-dark) !important; text-decoration: none !important; font-size: .85rem; }
.breadcrumb-item.active { color: var(--text-muted) !important; font-size: .85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold) !important; }

/* ── Cards ──────────────────────────────────────────────────── */
.card { border-color: rgba(201,168,76,.12) !important; border-radius: var(--radius-md) !important; }
.card-header { background: var(--cream) !important; border-bottom: 1px solid rgba(201,168,76,.15) !important; }

/* ── Buttons (global) ───────────────────────────────────────── */
.btn-primary, .btn-success {
    background: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
}
.btn-primary:hover, .btn-success:hover {
    background: var(--maroon) !important;
    border-color: var(--maroon) !important;
}
.btn-outline-primary {
    color: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
}
.btn-outline-primary:hover {
    background: var(--maroon-deep) !important;
    color: #fff !important;
}

/* ── Product Detail page ────────────────────────────────────── */
.product-title, .product-details__title,
h1.product-name, .pd-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
}
.price-title, .product-price, .current-price,
.pd-price, .__price { color: var(--maroon-deep) !important; }
.regular-price, .old-price { color: var(--text-muted) !important; }
.discount-badge, .badge-discount {
    background: var(--gold) !important;
    color: var(--maroon-deep) !important;
}
/* Gallery image ring */
.pd-img-wrap .swiper-slide img,
.quickviewSlider2 .swiper-slide img {
    border-radius: var(--radius-sm) !important;
}
/* Thumbnail strip */
.pd-thumb-wrap .swiper-slide.swiper-slide-thumb-active img {
    border: 2px solid var(--gold) !important;
}
/* Quantity input */
.quantity-btn { color: var(--maroon-deep) !important; }
.increment-btn, .decrement-btn { border-color: rgba(201,168,76,.3) !important; }
/* Variation pills */
.product-quantity-price__single--choose.active,
.product-variant.active {
    border-color: var(--gold) !important;
    color: var(--maroon-deep) !important;
    background: rgba(201,168,76,.08) !important;
}
/* Product rating stars */
.rating i, .star-icon { color: var(--gold) !important; }
/* Add to cart / Buy now buttons */
.btn-add-to-cart-page, .add-to-cart-btn[type=submit] {
    background: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 50px !important;
}
.btn-buy-now-page {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    border-color: var(--gold) !important;
    color: var(--maroon-deep) !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
}

/* ── Category / Listing page ────────────────────────────────── */
.filter-sidebar .card-header h5 {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}
.form-check-input:checked {
    background-color: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
}
.form-range::-webkit-slider-thumb {
    background: var(--gold) !important;
}

/* ── Product listing cards (theme_aster style override) ─────── */
.product-card .title, .product-card-title,
.pro-name, .product-title-sm {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}
.product-card { border-radius: var(--radius-md) !important; }
.product-card:hover { box-shadow: var(--shadow-md) !important; transform: translateY(-3px); }

/* ── Cart page ──────────────────────────────────────────────── */
.cart-table th {
    background: var(--cream) !important;
    color: var(--maroon-deep) !important;
    font-family: 'Playfair Display', serif !important;
    border-bottom: 1px solid rgba(201,168,76,.2) !important;
}
.cart-product-name { font-family: 'Playfair Display', serif !important; color: var(--maroon-deep) !important; }
.cart-summary-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}
.order-total, .grand-total-value { color: var(--maroon-deep) !important; font-weight: 700 !important; }

/* ── Checkout page ──────────────────────────────────────────── */
.checkout-steps { border-bottom: 2px solid rgba(201,168,76,.2) !important; }
.checkout-steps .active { color: var(--maroon-deep) !important; border-bottom-color: var(--gold) !important; }
.checkout-title, .billing-title, .shipping-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}
.checkout-order-summary .card { border-color: rgba(201,168,76,.2) !important; }
.checkout-order-summary .card-header {
    background: linear-gradient(135deg, var(--maroon-deep), var(--navy)) !important;
    color: var(--gold) !important;
}
.payment-method:checked + label { border-color: var(--gold) !important; }

/* ── User profile / dashboard ───────────────────────────────── */
.profile-sidebar .nav-link.active {
    background: var(--maroon-deep) !important;
    color: var(--gold) !important;
    border-radius: var(--radius-sm) !important;
}
.profile-sidebar .nav-link:hover { color: var(--maroon) !important; }
.profile-header h5 { font-family: 'Playfair Display', serif !important; color: var(--maroon-deep) !important; }
.order-status-badge.delivered { background: rgba(74,14,28,.1) !important; color: var(--maroon-deep) !important; }

/* ── Alert / toast colours ──────────────────────────────────── */
.alert-success { border-color: var(--gold) !important; color: var(--maroon-deep) !important; }

/* ── Section headings (inner pages) ────────────────────────── */
.section-title, .section-header h2, .inner-page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--maroon-deep) !important;
}

/* ── Pagination ─────────────────────────────────────────────── */
.page-item.active .page-link {
    background: var(--maroon-deep) !important;
    border-color: var(--maroon-deep) !important;
}
.page-link { color: var(--maroon) !important; }
.page-link:hover { color: var(--maroon-deep) !important; }

/* ── Feature / advertise section hide on homepage (SVA has own trust badges) */
.sva-homepage .advertise-section { display: none !important; }

/* ── Mobile sticky CTA (product detail) ────────────────────── */
.sva-sticky-cta {
    position: fixed; bottom: 56px; left: 0; right: 0;
    background: #fff; border-top: 1px solid rgba(201,168,76,.2);
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
    padding: 10px 16px; z-index: 888;
    display: flex; gap: 10px;
}
@media (min-width: 768px) { .sva-sticky-cta { display: none !important; } }
.sva-sticky-cta .btn-add-cart { flex: 1; padding: 11px; border-radius: 50px; }
.sva-sticky-cta .btn-buy-now  { padding: 11px 18px; border-radius: 50px; font-size: .85rem; text-decoration:none; display:flex; align-items:center; }
