/* ============================================================
   MotorStore - Ana CSS
   Tasarım: Industrial Premium / Dark Accent
   Fontlar: Oswald (display) + DM Sans (body)
============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --accent:       #FF6B00;
    --accent-dark:  #D45500;
    --accent-light: #FF8C38;
    --dark:         #111418;
    --dark-2:       #1C2027;
    --dark-3:       #252C36;
    --mid:          #3A4350;
    --text:         #1A1F26;
    --text-muted:   #6B7685;
    --border:       #E4E8EE;
    --surface:      #FAFBFC;
    --white:        #FFFFFF;
    --success:      #17A94A;
    --danger:       #E53535;
    --warning:      #F0B429;
    --info:         #2B7FD9;

    --radius-sm:    6px;
    --radius:       10px;
    --radius-lg:    16px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
    --shadow:       0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
    --transition:   .2s ease;
    --font-display: 'Oswald', sans-serif;
    --font-body:    'DM Sans', sans-serif;
}

/* ---- RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .navbar-brand .brand-text {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: .02em;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--dark);
    color: #aaa;
    font-size: 12.5px;
}
.topbar a { color: #aaa; }
.topbar a:hover { color: var(--accent); }

/* ---- NAVBAR ---- */
.main-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    transition: box-shadow .25s;
}
.main-navbar.scrolled { box-shadow: var(--shadow); }

.brand-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .04em;
}
.brand-text span { color: var(--accent); }

/* Search */
.nav-search {
    position: relative;
    width: 420px;
    max-width: 100%;
}
.nav-search .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border: 1.5px solid var(--border);
    padding: 9px 16px;
    font-size: 14px;
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.nav-search .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,0,.12);
    background: var(--white);
}
.btn-search {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 0 16px;
    transition: background var(--transition);
}
.btn-search:hover { background: var(--accent-dark); color: white; }

/* Live search dropdown */
.live-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    display: none;
    overflow: hidden;
}
.live-search-results.show { display: block; }
.ls-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    transition: background var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}
.ls-item:hover { background: var(--surface); }
.ls-item img { width: 40px; height: 40px; object-fit: cover; border-radius: var(--radius-sm); }
.ls-item-name { font-size: 14px; font-weight: 500; }
.ls-item-price { font-size: 13px; color: var(--accent); font-weight: 600; }

/* Nav icon buttons */
.nav-icon-btn {
    background: none;
    border: none;
    padding: 6px 8px;
    font-size: 1.2rem;
    color: var(--text);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-icon-btn:hover { color: var(--accent); background: rgba(255,107,0,.07); }

.cart-badge, .notif-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(30%, -30%);
    padding: 0 3px;
    font-family: var(--font-body);
}
.notif-badge { background: var(--danger); }

/* ---- CATEGORY BAR ---- */
.category-bar {
    background: var(--dark);
    border-bottom: 2px solid var(--accent);
}
.cat-link {
    color: #ccc;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 2px;
    white-space: nowrap;
    transition: color var(--transition);
}
.cat-link:hover { color: var(--accent); }

/* ---- CART DROPDOWN ---- */
.cart-dropdown, .notif-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0;
}
.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-item img {
    width: 50px; height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.mini-cart-item-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.mini-cart-item-price { font-size: 13px; color: var(--accent); font-weight: 600; }
.mini-cart-remove {
    background: none; border: none; padding: 0;
    color: var(--text-muted); font-size: 0.85rem;
    cursor: pointer; margin-left: auto; flex-shrink: 0;
    transition: color var(--transition);
}
.mini-cart-remove:hover { color: var(--danger); }

/* Notif item */
.notif-item {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
    cursor: pointer;
    transition: background var(--transition);
}
.notif-item:hover { background: var(--surface); }
.notif-item.unread { background: #fff8f3; }
.notif-item.unread:hover { background: #fff0e6; }
.notif-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; }
.notif-item.unread .notif-icon { background: #ffe4cc; color: var(--accent); }
.notif-title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.notif-body  { font-size: 12px; color: var(--text-muted); }
.notif-time  { font-size: 11px; color: var(--text-muted); }

/* ---- BUTTONS ---- */
.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    transition: background var(--transition), transform .15s, box-shadow .15s;
}
.btn-accent:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,107,0,.30);
}
.btn-accent:active { transform: translateY(0); }

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    padding: 9px 22px;
    transition: all var(--transition);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
}

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
    position: relative;
    height: 540px;
    background: var(--dark-3);
    display: flex;
    align-items: center;
}
@media (max-width: 768px) { .hero-slide { height: 320px; } }
.hero-slide img {
    position: absolute;
    inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: .45;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}
.hero-content .subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}
.hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    max-width: 440px;
    margin-bottom: 28px;
}
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}
.slider-dot.active {
    width: 24px;
    background: var(--accent);
}

/* ---- SECTION HEADERS ---- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* ---- PRODUCT CARD ---- */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.product-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface);
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.badge-sale {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--danger);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
}
.badge-new {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.fav-btn {
    position: absolute;
    top: 8px; right: 8px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.fav-btn:hover, .fav-btn.active { color: var(--danger); border-color: var(--danger); }
.fav-btn.active { background: #fff0f0; }

.product-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-brand {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.product-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating { margin-bottom: 8px; }
.star-icon { color: #F5A623; font-size: 12px; }
.rating-count { font-size: 12px; color: var(--text-muted); }

.product-pricing {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}
.product-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-footer {
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
.btn-add-cart {
    width: 100%;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background var(--transition), transform .15s;
}
.btn-add-cart:hover { background: var(--accent); transform: translateY(-1px); }
.btn-add-cart.loading { opacity: .6; pointer-events: none; }

/* Stock badges */
.stock-none { color: var(--danger); font-size: 12px; font-weight: 600; }
.stock-low  { color: var(--warning); font-size: 12px; font-weight: 600; }

/* ---- FILTER SIDEBAR ---- */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 76px;
}
.filter-section { margin-bottom: 24px; }
.filter-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* Price range slider */
.price-range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
}
.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

/* ---- BREADCRUMB ---- */
.breadcrumb-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.breadcrumb { margin-bottom: 0; font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text); font-weight: 500; }

/* ---- PRODUCT DETAIL ---- */
.product-detail-gallery {
    position: sticky;
    top: 80px;
}
.gallery-main {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.gallery-main img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
    cursor: zoom-in;
}
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
    width: 70px; height: 70px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.product-detail-title {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.product-detail-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.product-detail-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.qty-input-group {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}
.qty-btn {
    width: 36px; height: 42px;
    border: none;
    background: var(--surface);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--border); }
.qty-input {
    width: 52px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    appearance: none;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ---- CART PAGE ---- */
.cart-table thead th {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    padding: 10px 12px;
}
.cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-img { width: 64px; height: 64px; object-fit: contain; border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 4px; }

/* ---- CHECKOUT ---- */
.checkout-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.checkout-section-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkout-section-title .step-num {
    width: 26px; height: 26px;
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-summary { position: sticky; top: 80px; }
.order-summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.order-total-row:last-child { border-bottom: none; }
.order-grand-total {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

/* Address card */
.address-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    position: relative;
}
.address-card:hover { border-color: var(--accent); background: #fff8f3; }
.address-card.selected { border-color: var(--accent); background: #fff8f3; }
.address-card .radio-indicator {
    position: absolute;
    top: 14px; right: 14px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: all var(--transition);
}
.address-card.selected .radio-indicator {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: inset 0 0 0 4px white;
}
.address-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.address-detail { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Payment method */
.payment-method-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-method-card:hover { border-color: var(--accent); }
.payment-method-card.selected { border-color: var(--accent); background: #fff8f3; }
.payment-method-icon { font-size: 1.4rem; color: var(--text-muted); }
.payment-method-card.selected .payment-method-icon { color: var(--accent); }

/* ---- USER PANEL ---- */
.panel-sidebar .nav-link {
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    margin-bottom: 2px;
}
.panel-sidebar .nav-link:hover { background: var(--surface); color: var(--accent); }
.panel-sidebar .nav-link.active { background: var(--accent); color: white; }
.panel-sidebar .nav-link.active i { color: white; }
.panel-sidebar .nav-link i { font-size: 1rem; color: var(--text-muted); width: 20px; }

.panel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
}
.panel-stat-card {
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}
.panel-stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* ---- ORDER STATUS BADGES ---- */
.badge-status {
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}
.badge-pending     { background: #FFF3CD; color: #856404; }
.badge-processing  { background: #CCE5FF; color: #004085; }
.badge-shipped     { background: #D4EDDA; color: #155724; }
.badge-delivered   { background: #D4EDDA; color: #155724; }
.badge-cancelled   { background: #F8D7DA; color: #721C24; }
.badge-refunded    { background: #E2E3E5; color: #383D41; }

/* ---- FORMS ---- */
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
    color: var(--text);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,0,.12);
    outline: none;
}
.form-label { font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--text); }
.form-text  { font-size: 12px; color: var(--text-muted); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.invalid-feedback { font-size: 12px; }
.is-invalid { border-color: var(--danger); }
.is-invalid:focus { box-shadow: 0 0 0 3px rgba(229,53,53,.12); }

/* Auth forms */
.auth-wrapper {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    padding: 40px 16px;
}
.auth-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}
.auth-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.auth-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

/* ---- WALLET ---- */
.wallet-balance-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-radius: var(--radius-lg);
    color: white;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.wallet-balance-card::after {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,107,0,.15);
}
.wallet-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
}
.wallet-label { font-size: 13px; opacity: .7; margin-bottom: 8px; }

/* ---- ALERTS ---- */
.alert {
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    padding: 14px 16px;
}
.alert-success { background: #ECFDF5; color: #065F46; }
.alert-danger   { background: #FEF2F2; color: #991B1B; }
.alert-warning  { background: #FFFBEB; color: #92400E; }
.alert-info     { background: #EFF6FF; color: #1E40AF; }
.text-accent    { color: var(--accent); }

/* ---- PAGINATION ---- */
.pagination .page-link {
    color: var(--text);
    border-color: var(--border);
    border-radius: var(--radius-sm) !important;
    margin: 0 2px;
    font-size: 14px;
    padding: 7px 13px;
    transition: all var(--transition);
}
.pagination .page-link:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
.pagination .page-item.active .page-link { background: var(--accent); border-color: var(--accent); }
.pagination .page-item.disabled .page-link { color: var(--text-muted); }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: #aaa; }
.footer-heading { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-links { }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { margin-bottom: 10px; font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact i { color: var(--accent); font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.footer-brand .brand-text { color: white; }
.footer-bottom { color: #777; }
.social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: .95rem;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--accent); color: white; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons img { filter: brightness(0.7); height: 22px; }

/* ---- TRUST BADGES ---- */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
}
.trust-item i { font-size: 1.4rem; color: var(--accent); }

/* ---- LOADING / SKELETON ---- */
@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.skeleton {
    background: var(--border);
    border-radius: 4px;
    animation: skeleton-pulse 1.5s ease infinite;
}

/* ---- TOAST ---- */
.toast-container { z-index: 9999; }
.toast-motorstore {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
}
.toast-motorstore.success { border-left: 4px solid var(--success); }
.toast-motorstore.error   { border-left: 4px solid var(--danger);  }
.toast-motorstore.info    { border-left: 4px solid var(--info);    }

/* ---- UTILITIES ---- */
.rounded-ms    { border-radius: var(--radius); }
.rounded-ms-lg { border-radius: var(--radius-lg); }
.text-success-ms { color: var(--success); }
.text-danger-ms  { color: var(--danger);  }

/* ---- RESPONSIVE TWEAKS ---- */
@media (max-width: 991px) {
    .nav-search { width: 100%; }
    .filter-sidebar { position: static; }
}
@media (max-width: 576px) {
    .auth-card { padding: 28px 20px; }
    .hero-content h1 { font-size: 1.6rem; }
    .wallet-amount { font-size: 2rem; }
}
