/* ===================================================
   VmetEuroCat — Premium Corporate Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0f1c2e;
    --navy-light: #1a2d44;
    --navy-mid: #243447;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dark: #a8892e;
    --surface: #f8f9fb;
    --surface-2: #f1f4f8;
    --border: #e2e8f0;
    --border-light: #f0f4f8;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --info: #0891b2;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --shadow-gold: 0 4px 20px rgba(201,168,76,.25);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--navy); margin-top: 0; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ===== TOP BAR ===== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.topbar .metal-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 20px; font-weight: 500; }
.topbar .metal-name { color: var(--gold); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; font-size: 11px; }
.topbar .metal-price { color: #fff; font-weight: 600; }
.topbar .metal-up { color: #4ade80; }
.topbar .metal-down { color: #f87171; }
.topbar .contact-info a { color: rgba(255,255,255,.7); }
.topbar .contact-info a:hover { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.navbar-main .brand-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 20px; color: var(--navy);
    letter-spacing: -.02em; text-decoration: none; padding: 14px 0;
}
.navbar-main .brand-logo .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: var(--gold);
    font-size: 16px; font-weight: 900; flex-shrink: 0;
}
.navbar-main .brand-logo span.accent { color: var(--gold); }
.navbar-main .nav-links {
    display: flex; align-items: center;
    list-style: none; margin: 0; padding: 0; gap: 2px; height: 64px;
}
.navbar-main .nav-links > li > a,
.navbar-main .nav-links > li > .nav-btn {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 14px; color: var(--text);
    transition: all var(--transition); border: none; background: none; cursor: pointer;
}
.navbar-main .nav-links > li > a:hover,
.navbar-main .nav-links > li > .nav-btn:hover { background: var(--surface-2); color: var(--navy); }
.navbar-main .nav-links > li > a.active { background: rgba(201,168,76,.1); color: var(--gold-dark); }
.nav-cart-btn {
    position: relative; display: flex; align-items: center; gap: 6px;
    background: var(--navy) !important; color: var(--white) !important;
    padding: 8px 16px !important; border-radius: var(--radius-sm) !important;
    font-weight: 600 !important; font-size: 13px !important;
    transition: all var(--transition) !important;
}
.nav-cart-btn:hover { background: var(--navy-light) !important; color: var(--gold) !important; }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: var(--navy);
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
/* ===== NOTIFICATION BELL ===== */
.notif-nav-item { position: relative; }
.notif-bell-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); background: var(--surface-2);
    color: var(--text-muted); cursor: pointer; transition: all var(--transition); padding: 0;
    font-size: 15px;
}
.notif-bell-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.06); }
.notif-bell-btn--admin { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
.notif-bell-btn--admin:hover { border-color: var(--gold); color: var(--gold); }
.notif-badge {
    position: absolute; top: -5px; right: -5px;
    background: var(--gold); color: var(--navy);
    font-size: 9px; font-weight: 800; min-width: 16px; height: 16px;
    border-radius: 100px; display: flex; align-items: center; justify-content: center;
    padding: 0 4px; border: 2px solid var(--white);
}
.notif-dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
    width: 340px; background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    z-index: 1100; display: none; overflow: hidden;
}
.notif-dropdown--right { left: auto; right: 0; transform: none; }
.notif-dropdown.open { display: block; }
.notif-dropdown-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    font-size: 13px; font-weight: 700; color: var(--navy);
}
.notif-mark-all {
    font-size: 11px; font-weight: 600; color: var(--gold); background: none;
    border: none; cursor: pointer; padding: 0; transition: color var(--transition);
}
.notif-mark-all:hover { color: var(--gold-dark); }
.notif-item {
    display: flex; align-items: flex-start; gap: 11px; padding: 12px 16px;
    border-bottom: 1px solid var(--border-light); text-decoration: none;
    transition: background var(--transition); color: inherit;
}
.notif-item:hover { background: var(--surface-2); }
.notif-item--unread { background: rgba(201,168,76,.04); }
.notif-icon {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 13px; margin-top: 1px;
}
.notif-text { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-msg   { font-size: 12px; color: var(--text-muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.notif-time  { font-size: 11px; color: var(--text-light); margin-top: 3px; }
.notif-dot   { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.notif-empty { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 16px; color: var(--text-muted); font-size: 13px; }
.notif-empty i { font-size: 24px; color: var(--text-light); }
.notif-dropdown-footer {
    display: flex; align-items: center; justify-content: center;
    padding: 11px 16px; font-size: 12px; font-weight: 600; color: var(--navy);
    text-decoration: none; background: var(--surface-2); transition: all var(--transition);
    border-top: 1px solid var(--border-light);
}
.notif-dropdown-footer:hover { background: var(--surface); color: var(--gold); }

.navbar-main .dropdown-menu {
    border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px; margin-top: 4px;
}
.navbar-main .dropdown-item {
    border-radius: var(--radius-sm); padding: 8px 12px;
    font-size: 14px; font-weight: 500; color: var(--text); transition: all var(--transition);
}
.navbar-main .dropdown-item:hover { background: var(--surface-2); color: var(--navy); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5f 100%);
    padding: 80px 0 90px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at -10% 80%, rgba(37,99,235,.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px; pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
    color: var(--gold); padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 18px; letter-spacing: -.03em;
}
.hero h1 .highlight {
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p.lead {
    color: rgba(255,255,255,.72); font-size: 1.05rem;
    max-width: 520px; margin-bottom: 32px; line-height: 1.7;
}
.hero-search-box {
    background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
    padding: 20px 24px; max-width: 580px;
}
.hero-search-box .form-control {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    color: var(--white); border-radius: var(--radius-sm);
    padding: 11px 16px; font-size: 14px; transition: all var(--transition);
}
.hero-search-box .form-control::placeholder { color: rgba(255,255,255,.45); }
.hero-search-box .form-control:focus {
    background: rgba(255,255,255,.12); border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.2); color: var(--white); outline: none;
}
.hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-item { text-align: left; }
.hero-stat-item .stat-value { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.hero-stat-item .stat-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy); font-weight: 700; border: none;
    padding: 11px 24px; border-radius: var(--radius-sm);
    font-size: 14px; transition: all var(--transition); cursor: pointer;
    display: inline-flex; align-items: center; gap: 7px; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,.35); color: var(--navy); }
.btn-outline-gold {
    background: transparent; color: var(--gold); border: 1.5px solid var(--gold);
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 7px;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy {
    background: var(--navy); color: var(--white); border: none;
    padding: 11px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 7px;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); color: var(--white); }
.btn-danger-outline {
    background: transparent; color: var(--danger); border: 1.5px solid rgba(220,38,38,.3);
    padding: 6px 14px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 12px; transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.btn-danger-outline:hover { background: var(--danger); color: var(--white); border-color: var(--danger); }

/* ===== SECTION ===== */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-header { margin-bottom: 40px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.stats-bar .stat-card { display: flex; align-items: center; gap: 14px; padding: 0 24px; border-right: 1px solid var(--border); }
.stats-bar .stat-card:last-child { border-right: none; }
.stats-bar .stat-icon { width: 44px; height: 44px; background: rgba(201,168,76,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.stats-bar .stat-value { font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.stats-bar .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* ===== BRAND GRID ===== */
.brand-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 20px 16px;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px; transition: all var(--transition);
    cursor: pointer; text-decoration: none; color: var(--text); min-height: 110px;
}
.brand-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); color: var(--navy); }
.brand-card img { height: 36px; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter var(--transition); }
.brand-card:hover img { filter: grayscale(0%); }
.brand-card .brand-name { font-size: 12px; font-weight: 600; color: var(--text-muted); text-align: center; letter-spacing: .02em; }
.brand-card:hover .brand-name { color: var(--navy); }
.brand-card .brand-count { font-size: 11px; color: var(--text-light); background: var(--surface-2); padding: 2px 8px; border-radius: 100px; }

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 20px; transition: all var(--transition);
    position: relative; display: flex; flex-direction: column;
}
.product-card:hover { border-color: rgba(201,168,76,.4); box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .brand-logo-sm { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-card .brand-logo-sm img { height: 24px; width: auto; object-fit: contain; }
.product-card .brand-logo-sm span { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.product-card .reference { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.product-card .car-models { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-type-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: .03em; margin-bottom: 12px; }
.type-ceramic { background: rgba(37,99,235,.08); color: #1d4ed8; }
.type-metallic { background: rgba(75,85,99,.08); color: #374151; }
.type-dpf { background: rgba(16,163,127,.08); color: #065f46; }
.type-default { background: rgba(201,168,76,.1); color: var(--gold-dark); }
.pgm-row { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.pgm-chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.pgm-chip.pt { border-color: rgba(37,99,235,.2); color: #1e40af; background: rgba(37,99,235,.05); }
.pgm-chip.pd { border-color: rgba(124,58,237,.2); color: #5b21b6; background: rgba(124,58,237,.05); }
.pgm-chip.rh { border-color: rgba(5,150,105,.2); color: #064e3b; background: rgba(5,150,105,.05); }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-light); }
.product-card .price { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.product-card .price-label { font-size: 11px; color: var(--text-light); font-weight: 500; }
.product-card .price-request { font-size: 13px; color: var(--text-muted); font-style: italic; }
.btn-detail { background: var(--surface-2); color: var(--navy); border: none; padding: 7px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; transition: all var(--transition); display: inline-flex; align-items: center; gap: 5px; text-decoration: none; }
.btn-detail:hover { background: var(--navy); color: var(--white); }

/* ===== CARD ACTIONS (Favorites + Cart + Details) ===== */
.product-card .card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-light); gap: 8px; }
.product-card .price-info { flex: 1; min-width: 0; }
.product-card .card-btns { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }

/* Favorite icon button (small, on cards) */
.btn-fav {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); background: var(--surface-2);
    color: var(--text-muted); display: inline-flex; align-items: center;
    justify-content: center; cursor: pointer; transition: all var(--transition);
    flex-shrink: 0; font-size: 13px; padding: 0;
}
.btn-fav:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.06); }
.btn-fav.fav-btn--active { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.08); }
.btn-fav.fav-btn--active:hover { background: rgba(239,68,68,.14); }

/* Favorite button (large, on detail page) */
.btn-fav-lg {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 11px 20px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); background: var(--surface-2);
    color: var(--text-muted); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all var(--transition);
}
.btn-fav-lg:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.06); }
.btn-fav-lg.fav-btn--active { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.08); }
.btn-fav-lg.fav-btn--active:hover { background: rgba(239,68,68,.14); }

/* Cart icon button (small, on cards) */
.btn-cart-sm {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); background: var(--surface-2);
    color: var(--text-muted); display: inline-flex; align-items: center;
    justify-content: center; cursor: pointer; transition: all var(--transition);
    flex-shrink: 0; font-size: 13px; padding: 0;
}
.btn-cart-sm:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,.08); }

/* ===== FILTER SIDEBAR ===== */
.filter-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 80px; }
.filter-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.filter-title a { font-size: 12px; font-weight: 500; color: var(--gold); text-transform: none; letter-spacing: 0; }
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.form-select-custom, .form-control-custom {
    width: 100%; padding: 9px 12px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 13px; color: var(--text); background: var(--surface);
    font-family: 'Inter', sans-serif; transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none; -webkit-appearance: none;
}
.form-select-custom { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; padding-right: 32px; }
.form-select-custom:focus, .form-control-custom:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); outline: none; }

/* ===== PAGINATION ===== */
.pagination-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; margin-top: 12px; }
.pagination-info { font-size: 13px; color: var(--text-muted); }
.pagination { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.page-item .page-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--white); color: var(--text); font-size: 13px; font-weight: 500; transition: all var(--transition); text-decoration: none; }
.page-item .page-link:hover { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,.06); }
.page-item.active .page-link { background: var(--navy); border-color: var(--navy); color: var(--white); }
.page-item.disabled .page-link { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ===== CART ===== */
.cart-table { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table thead th { background: var(--surface-2); padding: 12px 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--border); }
.cart-table tbody td { padding: 16px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-table tbody tr:hover { background: var(--surface); }
.qty-input { width: 64px; padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-align: center; color: var(--navy); font-family: 'Inter', sans-serif; }
.qty-input:focus { border-color: var(--gold); outline: none; }
.order-summary-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.order-summary-card .header { background: var(--navy); color: var(--white); padding: 16px 20px; font-weight: 700; font-size: 15px; }
.order-summary-card .body { padding: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; color: var(--text-muted); }
.summary-row.total { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; font-size: 18px; font-weight: 800; color: var(--navy); }

/* ===== FORM ===== */
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.form-control, .form-select {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 14px; color: var(--text); background: var(--surface);
    font-family: 'Inter', sans-serif; transition: all var(--transition);
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); background: var(--white); outline: none; }
.form-control.is-invalid { border-color: var(--danger); }
.invalid-feedback { font-size: 12px; color: var(--danger); margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* ===== CHECKOUT CARD ===== */
.checkout-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.checkout-card .card-header { background: var(--surface-2); padding: 16px 24px; border-bottom: 1px solid var(--border); }
.checkout-card .card-header h5 { margin: 0; font-size: 15px; font-weight: 700; color: var(--navy); }
.checkout-card .card-body { padding: 24px; }

/* ===== ALERTS ===== */
.alert-vmet { border: none; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.alert-success-vmet { background: rgba(22,163,74,.08); color: #15803d; border-left: 3px solid #16a34a; }
.alert-danger-vmet { background: rgba(220,38,38,.08); color: #b91c1c; border-left: 3px solid var(--danger); }
.alert-info-vmet { background: rgba(8,145,178,.08); color: #0e7490; border-left: 3px solid var(--info); }

/* ===== ADMIN LAYOUT ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); flex-shrink: 0; display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 100; }
.admin-sidebar .sidebar-brand { padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar .sidebar-brand .name { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.admin-sidebar .sidebar-brand .name span { color: var(--gold); }
.admin-sidebar .sidebar-brand .sub { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 500; margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }
.admin-sidebar .sidebar-nav { padding: 16px 12px; flex: 1; }
.admin-sidebar .nav-section-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; padding: 4px 8px; margin-bottom: 6px; margin-top: 16px; }
.admin-sidebar .nav-section-title:first-child { margin-top: 0; }
.admin-sidebar .sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--radius-sm); color: rgba(255,255,255,.65); font-size: 13.5px; font-weight: 500; transition: all var(--transition); text-decoration: none; margin-bottom: 2px; }
.admin-sidebar .sidebar-link i { width: 18px; text-align: center; font-size: 14px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.admin-sidebar .sidebar-link:hover, .admin-sidebar .sidebar-link.active { background: rgba(255,255,255,.08); color: var(--white); }
.admin-sidebar .sidebar-link.active i { color: var(--gold); }
.admin-main { flex: 1; margin-left: 240px; display: flex; flex-direction: column; min-height: 100vh; background: var(--surface); }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-topbar .page-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0; }
.admin-content { padding: 28px; flex: 1; }
.admin-stat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.admin-stat-card .icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.icon-navy { background: rgba(15,28,46,.08); color: var(--navy); }
.icon-gold { background: rgba(201,168,76,.12); color: var(--gold-dark); }
.icon-success { background: rgba(22,163,74,.1); color: var(--success); }
.icon-info { background: rgba(8,145,178,.1); color: var(--info); }
.admin-stat-card .stat-val { font-size: 1.7rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.admin-stat-card .stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }
.data-table { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table thead th { background: var(--surface-2); padding: 11px 16px; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border-light); font-size: 14px; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface); }

/* Status Badges */
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.status-pending { background: rgba(217,119,6,.1); color: #92400e; }
.status-confirmed { background: rgba(8,145,178,.1); color: #0e7490; }
.status-completed { background: rgba(22,163,74,.1); color: #15803d; }
.status-cancelled { background: rgba(220,38,38,.1); color: #b91c1c; }

/* ===== SERVICES ===== */
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--transition); height: 100%; }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card .icon-wrap { width: 56px; height: 56px; background: rgba(201,168,76,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold-dark); margin-bottom: 20px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 60px 0 0; margin-top: auto; }
.footer .footer-brand .name { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.footer .footer-brand .name span { color: var(--gold); }
.footer .footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 10px; line-height: 1.7; max-width: 280px; }
.footer h6 { color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,.5); font-size: 13.5px; transition: color var(--transition); }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; margin-top: 48px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.35); }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: 6px; font-size: 13px; }
.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--border); margin-right: 6px; }
.breadcrumb-item.active { color: var(--navy); font-weight: 500; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--gold); }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 40px 0 44px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(201,168,76,.06) 0%, transparent 60%); pointer-events: none; }
.page-header h1 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 6px; letter-spacing: -.03em; word-break: break-word; }
.page-header p { color: rgba(255,255,255,.6); margin: 0; font-size: 15px; }
.page-header .d-flex { flex-wrap: wrap; gap: 16px !important; }
.page-header img { max-width: 100%; flex-shrink: 0; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.product-detail-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 36px 36px 32px; position: relative; }
.product-detail-header .ref-code { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: 8px; }
.product-detail-header .brand-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 100px; }
.product-detail-header .brand-chip img { height: 20px; }
.product-detail-header .brand-chip span { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.product-detail-body { padding: 32px 36px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.info-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.info-item .label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.info-item .value { font-size: 14px; font-weight: 600; color: var(--navy); }
.pgm-detail-table { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.pgm-detail-table .pgm-header { background: var(--navy); color: var(--gold); padding: 12px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.pgm-detail-table .pgm-content { padding: 16px 20px; }
.pgm-metal-row { display: flex; align-items: center; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.pgm-metal-row:last-child { border-bottom: none; }
.pgm-metal-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-pt { background: #3b82f6; }
.dot-pd { background: #8b5cf6; }
.dot-rh { background: #10b981; }
.pgm-metal-name { font-weight: 700; font-size: 14px; color: var(--navy); width: 90px; }
.pgm-metal-code { font-size: 13px; font-weight: 600; color: var(--text-muted); font-family: 'Courier New', monospace; flex: 1; }
.price-highlight-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.price-highlight-box .price-amount { font-size: 2.2rem; font-weight: 900; color: var(--gold); letter-spacing: -.04em; line-height: 1; }
.price-highlight-box .price-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 500; }

/* ===== CONFIRMATION ===== */
.confirmation-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; max-width: 600px; margin: 0 auto; }
.confirmation-icon { width: 72px; height: 72px; background: rgba(22,163,74,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--success); margin: 0 auto 24px; }

/* ===== UTILITIES ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.tag { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border); }
.empty-state { padding: 60px 20px; text-align: center; color: var(--text-muted); }
.empty-state i { font-size: 48px; color: var(--border); margin-bottom: 16px; display: block; }
.empty-state h4 { color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-light); }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 12px !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }

/* ===== FOOTER METAL BAR ===== */
.footer-metal-bar { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px; }
.footer-metal-item { display: flex; align-items: center; gap: 6px; }
.footer-metal-item .metal-name { color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.footer-metal-item .metal-val { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600; }

/* ===== HOVER TRANSITIONS ===== */
.brand-card, .product-card, .service-card, .faq-item, .btn-gold, .btn-navy, .btn-outline-gold,
.btn-detail, .btn-fav, .btn-fav-lg, .btn-cart-sm, .nav-cart-btn, .notif-bell-btn,
.user-nav-btn, .nav-register-btn, .admin-stat-card, .stat-card,
.footer ul li a, .footer-bottom a, .breadcrumb-item a {
    transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.admin-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(201,168,76,.3); }

/* ===== RESPONSIVE ===== */

/* Tablet landscape — 992–1199px */
@media (max-width: 1199px) {
    .navbar-main .nav-links > li > a,
    .navbar-main .nav-links > li > .nav-btn { padding: 8px 10px; font-size: 13.5px; }
    .hero { padding: 64px 0 72px; }
    .hero-search-box { max-width: 100%; }
}

/* Admin sidebar overlay */
.admin-sidebar-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 99;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
}
.admin-sidebar-overlay--visible { display: block; }

/* Admin hamburger */
.admin-hamburger {
    background: none; border: none; padding: 4px 6px; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; margin-right: 12px;
}
.admin-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all .2s;
}

/* Admin sidebar close */
.admin-sidebar-close {
    background: none; border: none; padding: 4px 8px; cursor: pointer;
    color: rgba(255,255,255,.6); font-size: 16px;
    transition: color .2s;
}
.admin-sidebar-close:hover { color: #fff; }

/* Tablet portrait — 768–991px */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); transition: transform .25s ease; }
    .admin-sidebar.admin-sidebar--open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-hamburger { display: flex !important; }
    .admin-sidebar-close { display: block !important; }
    .hero { padding: 56px 0 64px; }
    .hero-stats { gap: 20px; }
    .stats-bar .stat-card { padding: 0 14px; }
    .section { padding: 52px 0; }
    .product-detail-header, .product-detail-body { padding: 28px 24px; }
    .price-highlight-box { gap: 14px; }
    .section-header.d-flex { flex-direction: column; align-items: flex-start !important; }
    .pagination-wrapper { flex-direction: column; gap: 12px; align-items: flex-start; }
    .filter-card { position: static; }
}

/* Mobile — max 767px */
@media (max-width: 767px) {
    .hero { padding: 40px 0 52px; }
    .hero h1 { font-size: 1.75rem; }
    .hero p.lead { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; margin-top: 28px; padding-top: 20px; }
    .hero-stat-item .stat-value { font-size: 1.4rem; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.4rem; }
    .page-header { padding: 24px 0 28px; }
    .page-header .d-flex { align-items: flex-start !important; }
    .page-header img { height: 44px !important; }
    .topbar { display: none; }
    .product-detail-header, .product-detail-body { padding: 20px 16px; }
    .price-highlight-box { flex-direction: column; text-align: center; }
    .confirmation-card { padding: 28px 16px; }
    .footer { padding: 40px 0 0; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer .row.g-5 > [class*="col-"] { padding-top: 0; }
    .stats-bar .stat-card { padding: 12px 12px; border-right: none; border-bottom: 1px solid var(--border); }
    .stats-bar .row > div:last-child .stat-card,
    .stats-bar .row > div:nth-last-child(2) .stat-card { border-bottom: none; }
    .cart-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cart-table table { min-width: 520px; }
    .checkout-card .card-body { padding: 16px; }
    .product-card { padding: 16px; }
    .brand-card { min-height: 90px; padding: 14px 10px; }
    .info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pgm-detail-table .pgm-content { padding: 12px 14px; }
    .hero-search-box { padding: 16px; }
    .section-header.d-flex { flex-direction: column; align-items: flex-start !important; gap: 16px !important; }
    .faq-question { padding: 14px 16px; font-size: 14px; }
    .faq-answer { padding: 12px 16px 14px; }
    .detail-tabs { overflow-x: auto; gap: 0; -webkit-overflow-scrolling: touch; }
    .detail-tab { white-space: nowrap; }
    .pagination-wrapper { flex-direction: column; gap: 12px; align-items: flex-start; }
    .pagination { flex-wrap: wrap; }
    .breadcrumb { flex-wrap: wrap; }
    .models-grid { gap: 4px; padding: 10px 12px; }
    .model-link { font-size: 12px; padding: 4px 10px; }
    .filter-card { margin-bottom: 16px; }
}

/* Small mobile — max 480px */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-stats { gap: 16px; }
    .hero-stat-item .stat-value { font-size: 1.25rem; }
    .btn-gold, .btn-navy, .btn-outline-gold { padding: 10px 18px; font-size: 13px; }
    .brand-card { min-height: 80px; }
    .product-card .price { font-size: 16px; }
    .price-highlight-box .price-amount { font-size: 1.8rem; }
    .confirmation-card { padding: 24px 14px; }
    .page-header h1 { font-size: 1.4rem; }
    .footer-metal-bar { gap: 14px; }
    .notif-dropdown { width: calc(100vw - 32px); left: 50%; transform: translateX(-50%); }
    .info-grid { grid-template-columns: 1fr; }
}

/* ===== MODELS / ENGINES PANEL ===== */
.models-panel { background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);overflow:hidden; }
.models-panel-title { background:var(--navy);color:var(--white);font-size:14px;font-weight:700;padding:12px 18px; }
.models-grid { display:flex;flex-wrap:wrap;gap:6px;padding:14px 16px; }
.model-link { display:inline-flex;align-items:center;padding:5px 12px;border:1.5px solid var(--border);border-radius:100px;font-size:13px;font-weight:600;color:var(--navy);text-decoration:none;transition:all .15s;background:var(--surface); }
.model-link:hover { border-color:var(--gold);color:var(--gold);background:rgba(201,168,76,.06); }
.model-link.active { background:var(--gold);border-color:var(--gold);color:var(--navy); }

/* ===== PRICE HISTORY TAB ===== */
.detail-tabs { display:flex;border-bottom:2px solid var(--border);margin-bottom:24px;gap:0; }
.detail-tab { padding:10px 20px;font-size:14px;font-weight:600;color:var(--text-muted);cursor:pointer;border:none;background:none;border-bottom:2px solid transparent;margin-bottom:-2px;transition:all .2s; }
.detail-tab.active { color:var(--navy);border-bottom-color:var(--gold); }
.detail-tab:hover:not(.active) { color:var(--navy); }
.detail-tab-panel { display:none; }
.detail-tab-panel.active { display:block; }

/* ===== COMPATIBLE VEHICLES TABLE ===== */
.compat-table > div:last-child { border-bottom: none !important; }

/* ===== USER NAV ===== */
.user-nav-btn { display: flex; align-items: center; gap: 7px; background: none; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .2s; white-space: nowrap; }
.user-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.user-nav-item { position: relative; }
.user-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 180px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); z-index: 999; overflow: hidden; }
.user-dropdown.open { display: block; }
.user-dropdown a { display: flex; align-items: center; padding: 10px 16px; font-size: 13px; color: var(--text); text-decoration: none; transition: background .15s; }
.user-dropdown a:hover { background: var(--surface); color: var(--navy); }
.nav-register-btn { display: inline-flex; align-items: center; gap: 5px; background: var(--gold); color: var(--navy) !important; font-size: 13px !important; font-weight: 700 !important; padding: 6px 14px; border-radius: var(--radius); transition: background .2s; text-decoration: none !important; }
.nav-register-btn:hover { background: var(--gold-dark); }

/* ===== PROFILE / ACCOUNT ===== */
.btn-outline-vmet { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: all .2s; }
.btn-outline-vmet:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FAQ ===== */
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 24px; font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: color .2s; }
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 14px 24px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-item.open .faq-answer { display: block; }
