/* ===== PINBALL PAVILION THEME ===== */
/* Modern Bootstrap 5.3 refresh. Brand palette: Red, White & Blue.
   Legacy accent hooks (--gold / --teal / --dark) are kept and mapped to the RWB
   palette so older rules keep working while new components use the aliases. */
:root {
    --red: #c8102e;
    --red-dark: #9e0c24;
    --blue: #0a3161;
    --blue-light: #12467f;
    --navy: #071b3d;
    --white: #ffffff;

    /* Neutrals */
    --ink: #14181f;
    --muted: #667085;
    --line: #e6e8ec;
    --surface: #ffffff;
    --surface-2: #f6f8fb;

    /* Legacy accent hooks now mapped to the RWB palette */
    --gold: var(--red);
    --gold-dark: var(--red-dark);
    --teal: var(--blue);
    --dark: var(--navy);
    --dark2: #0c2450;
    --dark3: #123063;
    --text-light: #d7deeb;

    /* Design tokens */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-xs: 0 1px 2px rgba(16,24,40,.06);
    --shadow-sm: 0 2px 8px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
    --shadow-md: 0 10px 24px rgba(16,24,40,.10);
    --shadow-lg: 0 24px 48px -12px rgba(16,24,40,.18);
    --transition: 0.2s cubic-bezier(.4,0,.2,1);

    /* Bootstrap 5.3 theme overrides */
    --bs-primary: #c8102e;
    --bs-primary-rgb: 200,16,46;
    --bs-body-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --bs-body-color: #14181f;
    --bs-body-bg: #f6f8fb;
}

html { font-size: 15px; }
body {
    font-family: var(--bs-body-font-family);
    background: var(--surface-2);
    color: var(--ink);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-weight: 800; letter-spacing: -0.01em; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

/* Bootstrap primary button remapped to brand red */
.btn-primary {
    --bs-btn-bg: var(--red); --bs-btn-border-color: var(--red);
    --bs-btn-hover-bg: var(--red-dark); --bs-btn-hover-border-color: var(--red-dark);
    --bs-btn-active-bg: var(--red-dark); --bs-btn-active-border-color: var(--red-dark);
    --bs-btn-disabled-bg: var(--red); --bs-btn-disabled-border-color: var(--red);
}
.btn { font-weight: 600; border-radius: var(--radius-sm); transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition); }
.btn:active { transform: translateY(1px); }
.btn-lg { border-radius: var(--radius); }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    color: var(--text-light);
    font-size: 0.78rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: var(--text-light); margin: 0 8px; transition: color var(--transition); }
.topbar a:hover { color: #fff; }

/* ---- STICKY HEADER ---- */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* ---- HEADER ---- */
.site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.site-header .brand-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}
.site-header .brand-text span { color: var(--red); }
.site-header .tagline { font-size: 0.65rem; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }

/* ---- SEARCH ---- */
.header-search .input-group { box-shadow: var(--shadow-xs); border-radius: 999px; overflow: hidden; }
.header-search .input-group-text {
    background: #fff;
    border: 1px solid var(--line);
    border-right: none;
    color: var(--muted);
    padding-left: 18px;
}
.header-search .form-control {
    border: 1px solid var(--line);
    border-left: none;
    border-right: none;
    padding: 10px 14px;
    font-size: 0.92rem;
    box-shadow: none;
}
.header-search .form-control:focus { border-color: var(--line); box-shadow: none; }
.header-search .btn-search {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0 22px;
    font-weight: 600;
    transition: background-color var(--transition);
}
.header-search .btn-search:hover { background: var(--red); }

.header-actions a {
    color: var(--ink);
    font-size: 0.85rem;
    margin-left: 8px;
    font-weight: 600;
}
.header-actions a:hover { color: var(--red); }
.header-actions .cart-btn {
    background: var(--red);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
}
.header-actions .cart-btn:hover { background: var(--red-dark); color: #fff !important; }

/* ---- CATEGORY NAV ---- */
.gold-nav {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 0;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--red);
}
.gold-nav .navbar-toggler { color: #fff; border-color: rgba(255,255,255,.35); }
.gold-nav .navbar-toggler:focus { box-shadow: none; }
.gold-nav .nav-item { text-align: center; }
.gold-nav .nav-link {
    color: rgba(255,255,255,.88) !important;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color var(--transition), background-color var(--transition);
}
.gold-nav .nav-link i { font-size: 1.15rem; }
.gold-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--red);
    transition: width var(--transition);
}
.gold-nav .nav-link:hover, .gold-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.06); }
.gold-nav .nav-link:hover::after, .gold-nav .nav-link.active::after { width: 70%; }
.gold-nav .dropdown-menu {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    padding: 6px;
}
.gold-nav .dropdown-item { color: var(--text-light); font-size: 0.85rem; padding: 9px 14px; border-radius: 8px; transition: background-color var(--transition), color var(--transition); }
.gold-nav .dropdown-item:hover { background: var(--red); color: #fff; }
@media (max-width: 991.98px) {
    .gold-nav .nav-link { flex-direction: row; justify-content: flex-start; gap: 10px; padding: 12px 8px; }
    .gold-nav .nav-link::after { display: none; }
}

/* ---- HERO ---- */
.hero-section {
    background: radial-gradient(1200px 500px at 15% -10%, rgba(200,16,46,.22), transparent 60%),
                linear-gradient(135deg, #071b3d 0%, #0a3161 55%, #0c2450 100%);
    color: white;
    padding: 84px 0 64px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--red);
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(rgba(7,27,61,.55), rgba(7,27,61,.55)),
                url('/images/site_images/PinballImage001.jpeg') center/cover no-repeat;
    opacity: 1;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff; font-size: .8rem; font-weight: 600;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
    backdrop-filter: blur(6px);
}
.hero-section h1 { font-size: 3.25rem; font-weight: 900; line-height: 1.06; letter-spacing: -0.02em; }
.hero-section h1 span { color: #fff; background: linear-gradient(90deg, #ff5a6e, var(--red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-section p { font-size: 1.15rem; color: #c7d2e5; max-width: 520px; }

/* ---- BUTTONS (brand) ---- */
.btn-gold {
    background: var(--red); color: #fff; font-weight: 700; border: none;
    padding: 13px 30px; border-radius: var(--radius); font-size: 1rem;
    box-shadow: 0 8px 20px -6px rgba(200,16,46,.5);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.btn-gold:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(200,16,46,.6); }
.btn-outline-gold {
    border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; font-weight: 700;
    padding: 12px 28px; border-radius: var(--radius); font-size: 1rem;
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
}
.btn-outline-gold:hover { background: #fff; color: var(--blue); transform: translateY(-2px); }

/* ---- STATS BAR ---- */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-xs);
    padding: 22px 0;
}
.stat-item .stat-value { font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-item .stat-value span { color: var(--red); }
.stat-item .stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 600; }

/* ---- SECTION TITLES ---- */
.section-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--navy);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 24px;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 48px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

/* ---- LISTING CARD ---- */
.listing-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.listing-card .card-img-wrap {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--surface-2);
}
.listing-card .card-img-wrap img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.listing-card:hover .card-img-wrap img { transform: scale(2.2); }
.listing-card .card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.listing-card .card-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.35; }
.listing-card .card-title a { color: var(--ink); }
.listing-card .card-title a:hover { color: var(--red); }
.listing-card .price { font-size: 1.2rem; font-weight: 900; color: var(--blue); margin-top: auto; }
.listing-card .badge-condition { font-size: 0.68rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.listing-card .sold-overlay {
    position: absolute; inset: 0;
    background: rgba(7,27,61,.62);
    backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 1.1rem; letter-spacing: 2px;
}

/* ---- SIDEBAR ---- */
.sidebar-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.sidebar-box h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
    color: var(--navy);
    border-bottom: 2px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.cat-link { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.cat-link a { color: var(--blue); font-weight: 600; }
.cat-link a:hover { color: var(--red); }
.cat-link span { color: var(--muted); font-size: 0.8rem; }

/* ---- CATEGORY CARD (home) ---- */
.category-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(var(--red), var(--blue));
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.category-card .cat-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(200,16,46,.08); color: var(--red); font-size: 1.25rem;
}
.category-card .cat-name { font-weight: 700; color: var(--navy); }

/* ---- TOP SELLER ROW ---- */
.seller-row {
    display: flex; gap: 14px; align-items: center;
    padding: 12px; margin-bottom: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition);
}
.seller-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.seller-row .thumb {
    width: 70px; height: 70px; flex-shrink: 0; background: var(--surface-2);
    border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.seller-row .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

/* ---- SELL CTA ---- */
.sell-cta {
    background: radial-gradient(600px 200px at 100% 0%, rgba(200,16,46,.35), transparent 60%),
                linear-gradient(135deg, #071b3d, #0a3161);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

/* ---- BREADCRUMB ---- */
.pk-breadcrumb { background: #fff; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.pk-breadcrumb a { color: var(--blue); }
.pk-breadcrumb span { color: var(--muted); }

/* ---- DETAIL PAGE ---- */
.listing-detail .main-img { width: 100%; border-radius: var(--radius); max-height: 450px; object-fit: contain; background: var(--surface-2); padding: 16px; box-shadow: var(--shadow-sm); }
.listing-detail .price-tag { font-size: 2.1rem; font-weight: 900; color: var(--blue); }
.listing-detail .meta-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.listing-detail .meta-badge { background: var(--surface-2); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }

/* ---- CART ---- */
.cart-row { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-xs); }
.cart-row img { width: 80px; height: 80px; object-fit: contain; background: var(--surface-2); border-radius: 10px; padding: 6px; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
.cart-summary .total-line { font-size: 1.4rem; font-weight: 800; color: var(--blue); border-top: 2px solid var(--line); padding-top: 12px; margin-top: 12px; }

/* ---- FORMS ---- */
.pk-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--line); padding: 10px 14px; transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 0.2rem rgba(10,49,97,0.15); }

/* ---- FOOTER ---- */
.site-footer {
    background: linear-gradient(180deg, #081f45 0%, var(--navy) 100%);
    color: var(--text-light);
    padding: 56px 0 24px;
    margin-top: 64px;
    border-top: 3px solid var(--red);
}
.site-footer .footer-brand { color: #fff; font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; }
.site-footer .footer-brand span { color: var(--red); }
.site-footer .footer-about, .site-footer .footer-contact { color: #93a4c2; font-size: 0.85rem; }
.site-footer h6 { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-size: 0.82rem; }
.site-footer a { color: #93a4c2; font-size: 0.88rem; display: block; margin-bottom: 8px; transition: color var(--transition), padding-left var(--transition); }
.site-footer a:hover { color: #fff; padding-left: 4px; }
.site-footer .footer-social a {
    width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); border-radius: 10px; margin-bottom: 0; font-size: 1rem;
    transition: background-color var(--transition), transform var(--transition);
}
.site-footer .footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); padding-left: 0; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; margin-top: 40px; font-size: 0.82rem; color: #7286a8; text-align: center; }

/* ---- UTILITIES ---- */
.bg-gold { background: var(--red); }
.text-gold { color: var(--red); }
.text-teal { color: var(--blue); }
.fw-800 { font-weight: 800; }
.no-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, #071b3d, #0a3161); display: flex; align-items: center; justify-content: center; color: #557; font-size: 2.5rem; }

/* Listing Detail Tabs */
.listing-tabs { border-bottom: 2px solid var(--line); margin-top: 2rem; }
.listing-tabs .nav-link { color: var(--muted); font-weight: 600; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.03em; border: none; border-radius: 0; padding: 12px 22px; transition: color var(--transition); }
.listing-tabs .nav-link:hover { color: var(--red); background: transparent; }
.listing-tabs .nav-link.active { color: var(--navy); background: #fff; border-top: 3px solid var(--red); border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: none; margin-bottom: -2px; }
.listing-tab-content { background: #fff; border: 1px solid var(--line); border-top: none; padding: 24px; line-height: 1.8; color: #444; border-radius: 0 0 var(--radius) var(--radius); }

/* carousel styles */
.listing-carousel { display:flex; align-items:center; gap:8px; }
.listing-carousel .carousel-btn { width:40px; height:40px; display:flex; align-items:center; justify-content:center; position:relative; z-index:2; border-radius:999px; }
.listing-carousel .carousel-image-wrapper { flex:1; border-radius:var(--radius); overflow:hidden; }
.listing-carousel .carousel-image { border-radius:var(--radius); max-height:450px; object-fit:contain; background:var(--surface-2); padding:16px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.listing-carousel .carousel-image-wrapper:hover .carousel-image { transform: scale(1.7); }

/* recently listed carousel */
.recent-carousel { position: relative; padding: 0 44px; }
.recent-carousel .carousel-control-prev,
.recent-carousel .carousel-control-next { width: 40px; opacity: 1; }
.recent-carousel .carousel-control-prev { left: -4px; }
.recent-carousel .carousel-control-next { right: -4px; }
.recent-carousel .carousel-control-prev-icon,
.recent-carousel .carousel-control-next-icon {
    width: 40px; height: 40px; border-radius: 999px;
    background-color: var(--blue);
    background-size: 45% 45%;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition);
}
.recent-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.recent-carousel .carousel-control-next:hover .carousel-control-next-icon { background-color: var(--red); }
.recent-carousel .carousel-indicators { position: static; margin: 16px 0 0; }
.recent-carousel .carousel-indicators button {
    width: 10px; height: 10px; border-radius: 999px;
    background-color: var(--line); border: none; opacity: 1;
    transition: background-color var(--transition);
}
.recent-carousel .carousel-indicators button.active { background-color: var(--red); }
@media (max-width: 575.98px) {
    .recent-carousel { padding: 0 30px; }
}

/* ---- AUTH PAGES ---- */
.auth-section {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    padding: 48px 0;
    background: radial-gradient(900px 400px at 100% 0%, rgba(10,49,97,.06), transparent 60%),
                radial-gradient(700px 400px at 0% 100%, rgba(200,16,46,.06), transparent 60%),
                var(--surface-2);
}
.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
/* Brand/hero side of the split card */
.auth-brand {
    background: radial-gradient(600px 300px at 20% 0%, rgba(200,16,46,.35), transparent 60%),
                linear-gradient(150deg, #071b3d 0%, #0a3161 100%);
    color: #fff;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.auth-brand::after {
    content: '';
    position: absolute; inset: 0;
    background: url('/images/site_images/PinballImage001.jpeg') center/cover no-repeat;
    opacity: .10; mix-blend-mode: luminosity;
}
.auth-brand > * { position: relative; z-index: 1; }
.auth-brand .brand-text { font-size: 1.7rem; font-weight: 900; letter-spacing: -1px; color: #fff; }
.auth-brand .brand-text span { color: var(--red); }
.auth-brand h2 { font-size: 1.9rem; font-weight: 900; line-height: 1.15; margin-top: 20px; }
.auth-brand p { color: #c7d2e5; }
.auth-brand .auth-perks { list-style: none; padding: 0; margin: 24px 0 0; }
.auth-brand .auth-perks li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #dde5f2; font-size: .92rem; }
.auth-brand .auth-perks i { color: #ff7484; font-size: 1.05rem; }

/* Form side */
.auth-form { padding: 44px 40px; }
.auth-form h1 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.auth-form .auth-sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.auth-form .form-floating > label { color: var(--muted); }
.auth-form .form-control { padding: 12px 14px; }
.auth-form .btn-submit {
    background: var(--red); color: #fff; font-weight: 700; border: none;
    padding: 12px; border-radius: var(--radius); width: 100%;
    box-shadow: 0 8px 20px -6px rgba(200,16,46,.5);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.auth-form .btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(200,16,46,.6); }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .8rem; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.auth-footer-link { color: var(--blue); font-weight: 700; }
.auth-footer-link:hover { color: var(--red); }

