/* ============================================================
   CamperVanDirect.eu — Main Stylesheet
   Colors: Navy #0F2137 | Amber #E8890C | Off-white #F5F1EB
   Fonts: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

:root {
    --navy:        #0F2137;
    --navy-light:  #1A3354;
    --navy-dark:   #091828;
    --amber:       #E8890C;
    --amber-light: #F5A830;
    --amber-dark:  #C4720A;
    --cream:       #F5F1EB;
    --cream-dark:  #EAE4D8;
    --text:        #1A1A2E;
    --text-muted:  #5A6B7B;
    --white:       #FFFFFF;
    --danger:      #D63B3B;
    --success:     #2C9E5A;
    --border:      rgba(15,33,55,0.12);
    --shadow-sm:   0 2px 8px rgba(15,33,55,0.08);
    --shadow-md:   0 8px 32px rgba(15,33,55,0.14);
    --shadow-lg:   0 20px 60px rgba(15,33,55,0.20);
    --radius:      6px;
    --radius-lg:   12px;
    --transition:  0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── Header ── */
.site-header {
    background: var(--navy-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.logo { height: 64px; width: auto; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    overflow-x: auto;
}
.main-nav a {
    color: rgba(255,255,255,0.80);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.main-nav a:hover {
    color: var(--amber);
    background: rgba(232,137,12,0.10);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
    position: relative;
    color: var(--white);
    padding: 8px;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
}
.cart-btn:hover { color: var(--amber); background: rgba(232,137,12,0.12); }
.cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--amber);
    color: var(--navy-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.70rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-nav {
    display: none;
    background: var(--navy);
    padding: 16px 24px;
    flex-direction: column;
    gap: 2px;
}
.mobile-nav a {
    color: rgba(255,255,255,0.85);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav.open { display: flex; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1A3354 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero::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='%23E8890C' fill-opacity='0.04'%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");
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 56px;
    width: 100%;
}
.hero-logo {
    flex: 0 0 340px;
    width: 340px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
    animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hero-text { flex: 1; min-width: 0; }
.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.80rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amber);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    flex: 0 0 32px;
    height: 2px;
    background: var(--amber);
    opacity: 0.5;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: var(--white);
    margin-bottom: 20px;
}
.hero h1 span { color: var(--amber); }
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
    text-decoration: none;
}
.btn-primary {
    background: var(--amber);
    color: var(--navy-dark);
    border-color: var(--amber);
}
.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232,137,12,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.60);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}
.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Trust bar ── */
.trust-bar {
    background: var(--amber);
    padding: 14px 0;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-dark);
}

/* ── Section titles ── */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
}
.section-title p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.title-rule {
    width: 60px;
    height: 3px;
    background: var(--amber);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ── Product card ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--amber);
    color: var(--navy-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
}
.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.product-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.product-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex: 1;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.product-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--navy);
}
.add-to-cart-btn {
    background: var(--amber);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 9px 16px;
    cursor: pointer;
    transition: all var(--transition);
}
.add-to-cart-btn:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
}

/* ── Category pills ── */
.category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    border: 2px solid var(--border);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ── Product detail ── */
.product-detail { padding: 60px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-dark);
    margin-bottom: 12px;
}
.gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}
.gallery-thumb {
    flex: 0 0 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--amber); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-category-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-dark);
}
.product-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
}
.product-short-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    border-left: 3px solid var(--amber);
    padding-left: 16px;
}
.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.product-price-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--navy);
}
.product-price-vat {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.atc-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-input {
    width: 72px;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    text-align: center;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition);
}
.qty-input:focus { outline: none; border-color: var(--amber); }
.product-long-desc {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.product-long-desc h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--navy);
}
.product-long-desc p, .product-long-desc li {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 10px;
}
.product-long-desc ul {
    list-style: disc;
    padding-left: 20px;
}

/* ── Cart ── */
.cart-section { padding: 60px 0; flex: 1; }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.80rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--text-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    background: var(--white);
}
.cart-item-img { width: 72px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.cart-item-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    text-transform: uppercase;
}
.cart-qty-input {
    width: 56px;
    padding: 6px 10px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
}
.cart-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: color var(--transition);
}
.cart-remove:hover { color: var(--danger); }
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}
.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.summary-total {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    padding-top: 12px;
    border-top: 2px solid var(--navy);
    margin-top: 8px;
}
.checkout-btn {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--amber);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px;
    cursor: pointer;
    transition: all var(--transition);
}
.checkout-btn:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232,137,12,0.35);
}
.cart-empty {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.cart-empty h2 { font-size: 2rem; margin-bottom: 12px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Page header ── */
.page-header {
    background: var(--navy);
    padding: 48px 0;
    margin-bottom: 48px;
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-header p { color: rgba(255,255,255,0.65); margin-top: 8px; font-size: 1rem; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb span { opacity: 0.4; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(232,137,12,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Alerts ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.alert-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-error   { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.alert-info    { background: #D1ECF1; color: #0C5460; border: 1px solid #BEE5EB; }

/* ── Success page ── */
.success-page { text-align: center; padding: 80px 40px; max-width: 560px; margin: 0 auto; }
.success-icon {
    width: 80px; height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}
.success-page h1 { font-size: 2.5rem; margin-bottom: 16px; }
.success-page p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Admin ── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
    background: var(--navy-dark);
    padding: 24px 0;
}
.admin-sidebar .logo { padding: 0 20px 24px; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.70);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(232,137,12,0.15);
    color: var(--amber);
}
.admin-content { padding: 40px; background: var(--cream); }
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.admin-header h1 { font-size: 2rem; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.data-table th {
    background: var(--navy);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 16px;
    text-align: left;
}
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px; margin-bottom: 36px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.stat-card .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.stat-card .stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--navy);
}
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-pending  { background: #FEF3C7; color: #92400E; }
.badge-paid     { background: #D1FAE5; color: #064E3B; }
.badge-shipped  { background: #DBEAFE; color: #1E40AF; }
.badge-cancelled{ background: #FEE2E2; color: #7F1D1D; }

/* ── Footer ── */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0;
}
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; flex-direction: column; gap: 6px; }
.footer-badges span { font-size: 0.82rem; }
.footer-links h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.80rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .nav-toggle { display: flex; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-gallery { position: static; }
    .cart-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .hero-inner { flex-direction: column; gap: 24px; text-align: center; }
    .hero-logo { flex: 0 0 220px; width: 220px; }
    .hero-eyebrow { justify-content: center; }
    .hero-cta { justify-content: center; }
}
@media (max-width: 600px) {
    .hero { padding: 48px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .cart-table thead { display: none; }
    .cart-table td { display: block; padding: 8px 16px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
    .product-grid { grid-template-columns: 1fr; }
}
