/* ============================================================
   Suifour Furniture — retail-style.css
   Warm wood tones | Mobile-first | Factory Direct retail vibe
   SLV Group
   ============================================================ */

:root {
    --walnut:     #5C3D1E;
    --oak:        #8B5A2B;
    --honey:      #C68642;
    --sand:       #DEB887;
    --cream:      #FAF6F0;
    --white:      #FFFFFF;
    --forest:     #2D6A4F;
    --sage:       #52B788;
    --charcoal:   #2C2C2C;
    --mid:        #666666;
    --light:      #F0EBE3;
    --border:     #E8DDD1;
    --shadow-sm:  0 2px 8px rgba(92,61,30,.08);
    --shadow-md:  0 4px 20px rgba(92,61,30,.12);
    --shadow-lg:  0 8px 40px rgba(92,61,30,.18);
    --radius:     12px;
    --radius-sm:  8px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--white); }

/* ===================== PROMO BAR ===================== */
.promo-bar {
    background: var(--walnut);
    color: var(--sand);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .03em;
    overflow: hidden;
}
.promo-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    white-space: nowrap;
}
.promo-bar .divider { opacity: .4; }
@media (max-width: 768px) {
    .promo-bar-inner { animation: ticker 20s linear infinite; }
    @keyframes ticker {
        0%   { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }
}

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px;
    background: var(--walnut);
    color: var(--sand);
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: .9rem;
    letter-spacing: .05em;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--walnut); letter-spacing: .12em;
}
.logo-sub {
    font-size: .6rem; font-weight: 500;
    color: var(--honey); letter-spacing: .2em;
    text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem; font-weight: 500;
    color: var(--mid);
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--walnut);
    background: var(--light);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-find-store {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: var(--walnut);
    color: var(--cream);
    border-radius: 50px;
    font-size: .85rem; font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-find-store:hover { background: var(--oak); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    width: 32px; height: 32px;
    background: none; border: none; cursor: pointer;
    padding: 4px; border-radius: 6px;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--walnut); border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #3D2010 0%, #7A4520 40%, #C68642 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: .25;
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto; padding: 80px 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { color: var(--cream); }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--sand);
    font-size: .8rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px;
    margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 18px; }
.hero-title span { color: var(--sand); }
.hero-subtitle { font-size: 1.1rem; opacity: .85; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: var(--sand); color: var(--walnut);
    border-radius: 50px; font-weight: 700; font-size: .95rem;
    transition: all var(--transition);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,.4); color: var(--white);
    border-radius: 50px; font-weight: 600; font-size: .95rem;
    transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 48px;
}
.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--sand);
}
.hero-stat-label { font-size: .78rem; opacity: .7; margin-top: 4px; }

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--walnut);
    margin-bottom: 16px;
}
.hero-card-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-icon {
    width: 40px; height: 40px;
    background: var(--light); border-radius: var(--radius-sm);
    display: grid; place-items: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.hero-card-info { flex: 1; }
.hero-card-name { font-weight: 600; font-size: .9rem; }
.hero-card-price { color: var(--forest); font-weight: 700; }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
    display: inline-block;
    color: var(--honey); font-weight: 600; font-size: .8rem;
    letter-spacing: .15em; text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title { color: var(--walnut); margin-bottom: 14px; }
.section-desc { color: var(--mid); max-width: 560px; margin: 0 auto; }

/* ===================== FEATURE STRIP ===================== */
.feature-strip { background: var(--walnut); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
.feature-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 28px 20px;
    color: var(--cream);
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.05); }
.feature-icon {
    font-size: 2rem; margin-bottom: 10px;
}
.feature-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; color: var(--sand); }
.feature-desc { font-size: .78rem; opacity: .7; }

/* ===================== PRODUCT GRID ===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light);
    position: relative;
}
.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-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--forest); color: var(--white);
    font-size: .72rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: .05em;
}
.product-badge.rto { background: var(--honey); color: var(--walnut); }
.product-body { padding: 16px; }
.product-cat { font-size: .72rem; color: var(--honey); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--walnut); margin-bottom: 10px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.2rem; font-weight: 700; color: var(--walnut); }
.product-price .orig { font-size: .8rem; color: var(--mid); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.product-cta {
    display: flex; align-items: center; gap: 6px;
    color: var(--forest); font-size: .82rem; font-weight: 600;
    padding: 6px 12px; border: 1.5px solid var(--forest);
    border-radius: 50px; transition: all var(--transition);
}
.product-cta:hover { background: var(--forest); color: var(--white); }

/* ===================== STORE CARD ===================== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.store-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sand);
    transition: all var(--transition);
}
.store-card:hover { border-left-color: var(--walnut); box-shadow: var(--shadow-md); }
.store-region {
    font-size: .7rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--honey); margin-bottom: 6px;
}
.store-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--walnut); margin-bottom: 8px; }
.store-addr { font-size: .85rem; color: var(--mid); margin-bottom: 12px; line-height: 1.5; }
.store-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.store-meta a, .store-hours {
    display: flex; align-items: center; gap: 5px;
    font-size: .8rem; font-weight: 500;
}
.store-meta a { color: var(--forest); }
.store-meta a:hover { text-decoration: underline; }
.store-hours { color: var(--mid); }

/* ===================== PROMO BANNERS ===================== */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.promo-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    min-height: 220px;
    display: flex; align-items: flex-end;
    background: linear-gradient(135deg, var(--walnut), var(--honey));
    transition: transform var(--transition);
}
.promo-card:hover { transform: scale(1.02); }
.promo-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: .4;
}
.promo-body {
    position: relative; z-index: 1;
    padding: 24px; color: var(--white);
}
.promo-tag {
    display: inline-block;
    background: var(--sand); color: var(--walnut);
    font-size: .72rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
    margin-bottom: 8px;
}
.promo-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.promo-desc { font-size: .85rem; opacity: .85; margin-bottom: 12px; }
.promo-expiry { font-size: .75rem; opacity: .65; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--walnut) 0%, var(--oak) 100%);
    color: var(--cream); text-align: center; padding: 80px 20px;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { opacity: .8; font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== MAP SECTION ===================== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 440px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===================== ABOUT PAGE ===================== */
.about-hero {
    background: linear-gradient(135deg, var(--walnut), var(--oak));
    color: var(--cream); padding: 100px 20px 80px;
    text-align: center;
}
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { opacity: .85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.milestones {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px;
    margin-top: 48px;
}
.milestone-item { text-align: center; }
.milestone-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 700; color: var(--walnut);
}
.milestone-label { color: var(--mid); font-size: .85rem; margin-top: 4px; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-info-box {
    background: var(--white); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    height: fit-content;
}
.contact-info-box h3 { color: var(--walnut); margin-bottom: 20px; }
.contact-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
    width: 36px; height: 36px;
    background: var(--light); border-radius: 8px;
    display: grid; place-items: center; flex-shrink: 0;
    color: var(--walnut);
}
.contact-form {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow-sm);
}
.contact-form h3 { color: var(--walnut); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: .9rem;
    color: var(--charcoal); background: var(--cream);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--honey);
    background: var(--white);
}
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
    width: 100%; padding: 14px;
    background: var(--walnut); color: var(--cream);
    border: none; border-radius: 50px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: all var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { background: var(--oak); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===================== COLLECTIONS PAGE ===================== */
.cat-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 40px;
}
.cat-tab {
    padding: 8px 20px; border-radius: 50px;
    font-size: .88rem; font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--mid); cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
}
.cat-tab:hover, .cat-tab.active {
    background: var(--walnut); color: var(--cream);
    border-color: var(--walnut);
}

.rto-banner {
    background: linear-gradient(135deg, var(--forest), #1a4d38);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
    margin-bottom: 48px;
}
.rto-banner h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.rto-banner p { opacity: .85; }
.rto-steps { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.rto-step {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; font-weight: 600;
}
.rto-step-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: grid; place-items: center;
    font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.rto-price { text-align: right; }
.rto-from { font-size: .8rem; opacity: .7; }
.rto-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--sand); }
.rto-mo { font-size: .85rem; opacity: .7; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: transform var(--transition);
    color: var(--white);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--charcoal); color: #CCC; padding: 64px 0 0; }
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
    padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-main { color: var(--sand); }
.footer-logo .logo-sub { color: var(--honey); }
.footer-tagline { font-size: .88rem; line-height: 1.7; color: #AAA; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 4px 12px; border-radius: 50px;
    font-size: .72rem; font-weight: 600; color: var(--sand);
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white); font-size: 1rem;
    margin-bottom: 18px;
}
.footer-col a {
    display: block; color: #AAA; font-size: .88rem;
    margin-bottom: 10px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--sand); }
.footer-hours { font-size: .82rem; color: #888; line-height: 1.8; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    display: grid; place-items: center;
    transition: background var(--transition);
    margin-bottom: 0;
}
.footer-social a:hover { background: var(--honey); color: var(--walnut); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px; }
.footer-bottom-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    font-size: .8rem; color: #888;
}
.footer-bottom a { color: var(--sand); }

/* ===================== ADMIN STYLES ===================== */
.admin-body { background: #f4f6f9; }
.admin-header {
    background: var(--walnut); color: var(--cream);
    padding: 0 24px; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 100;
}
.admin-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sand); }
.admin-layout { display: flex; min-height: calc(100vh - 60px); }
.admin-sidebar {
    width: 220px; flex-shrink: 0;
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 20px 0;
}
.admin-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    font-size: .9rem; font-weight: 500;
    color: var(--mid); cursor: pointer;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
    color: var(--walnut);
    background: var(--light);
    border-left-color: var(--walnut);
}
.admin-main { flex: 1; padding: 28px; overflow-x: hidden; }
.admin-card {
    background: var(--white); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
    background: var(--light); color: var(--walnut);
    padding: 10px 14px; text-align: left; font-weight: 700;
    font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
}
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.admin-table tr:hover td { background: var(--cream); }
.btn-sm {
    padding: 5px 12px; border-radius: 6px;
    font-size: .78rem; font-weight: 600; cursor: pointer;
    border: none; transition: all var(--transition);
}
.btn-edit { background: var(--light); color: var(--walnut); }
.btn-delete { background: #FEE2E2; color: #B91C1C; }
.btn-add {
    padding: 10px 20px; border-radius: 50px;
    background: var(--walnut); color: var(--cream);
    font-weight: 600; border: none; cursor: pointer;
    transition: all var(--transition); font-size: .88rem;
}
.btn-add:hover { background: var(--oak); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 20px; box-shadow: var(--shadow-sm);
    text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--walnut); }
.stat-label { font-size: .8rem; color: var(--mid); margin-top: 4px; }

/* ===================== ALERTS ===================== */
.alert {
    padding: 12px 16px; border-radius: var(--radius-sm);
    margin-bottom: 16px; font-size: .9rem;
}
.alert-success { background: #DCFCE7; color: #166534; border-left: 3px solid #16A34A; }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 3px solid #DC2626; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { max-width: 480px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 12px;
        box-shadow: var(--shadow-md);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .btn-find-store span { display: none; }
    .hero { min-height: 70vh; }
    .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rto-banner { grid-template-columns: 1fr; }
    .rto-price { text-align: left; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .admin-sidebar { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-stats { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .stores-grid { grid-template-columns: 1fr; }
    .promos-grid { grid-template-columns: 1fr; }
}
