/* Tickevent - Style inspiré Eventbrite (eventbrite.com) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --eb-primary: #f05537;
    --eb-primary-hover: #dd4a2e;
    --eb-primary-light: rgba(240, 85, 55, 0.08);
    --eb-dark: #1e0a0a;
    --eb-text: #39364e;
    --eb-text-muted: #6f6b7d;
    --eb-bg: #ffffff;
    --eb-bg-alt: #f5f5f5;
    --eb-border: #e6e6e6;
    --eb-radius: 8px;
    --eb-radius-lg: 12px;
    --eb-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --eb-shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--eb-bg);
    color: var(--eb-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ========== HEADER (Eventbrite-like) ========== */
.navbar-eb {
    background: var(--eb-bg) !important;
    border-bottom: 1px solid var(--eb-border);
    padding: 0.6rem 0;
}
.navbar-eb .navbar-brand {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--eb-primary) !important;
    letter-spacing: -0.03em;
}
.navbar-eb .navbar-brand .site-logo-nav { max-height: 36px; width: auto; object-fit: contain; vertical-align: middle; }
.navbar-eb .nav-main {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar-eb .nav-main .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--eb-text) !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--eb-radius);
    transition: background 0.2s, color 0.2s;
}
.navbar-eb .nav-main .nav-link:hover {
    background: var(--eb-bg-alt);
    color: var(--eb-primary) !important;
}
.navbar-eb .nav-right .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--eb-text) !important;
    padding: 0.4rem 0.6rem !important;
}
.navbar-eb .nav-right .nav-link:hover { color: var(--eb-primary) !important; }
.navbar-eb .btn-signup {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--eb-primary);
    color: #fff !important;
    border: none;
}
.navbar-eb .btn-signup:hover {
    background: var(--eb-primary-hover);
    color: #fff !important;
}
.navbar-eb .dropdown-menu {
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    box-shadow: var(--eb-shadow-hover);
    padding: 0.5rem;
}
.navbar-eb .dropdown-item {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}
.navbar-eb .dropdown-item:hover { background: var(--eb-bg-alt); }

/* ========== HERO (Eventbrite: big search + categories) + carousel fond ========== */
.hero-eb {
    position: relative;
    min-height: 420px;
    padding: 2rem 0;
    border-bottom: 1px solid var(--eb-border);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-eb-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-eb-carousel #heroCarousel,
.hero-eb-carousel .carousel-inner,
.hero-eb-carousel .carousel-item {
    height: 100%;
}
.hero-eb-carousel .carousel-inner { position: relative; }
.hero-eb-carousel .carousel-item {
    position: relative;
}
.hero-eb-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-eb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.hero-eb-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-eb .hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-eb .hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.hero-eb .search-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--eb-bg);
    border: 1px solid var(--eb-border);
    border-radius: 999px;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--eb-shadow);
}
.hero-eb .search-wrap:focus-within {
    border-color: var(--eb-primary);
    box-shadow: 0 0 0 3px var(--eb-primary-light);
}
.hero-eb .search-wrap input {
    border: none;
    flex: 1;
    font-size: 0.95rem;
    padding: 0.4rem 0;
}
.hero-eb .search-wrap input:focus { outline: none; }
.hero-eb .search-wrap .btn-search {
    background: var(--eb-primary);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
}
.hero-eb .search-wrap .btn-search:hover { background: var(--eb-primary-hover); color: #fff; }

/* Category pills (Eventbrite: Music, Nightlife, etc.) */
.categories-eb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.categories-eb a {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eb-text);
    padding: 0.4rem 0.9rem;
    background: var(--eb-bg);
    border: 1px solid var(--eb-border);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.categories-eb a:hover {
    border-color: rgba(255,255,255,0.9);
    color: #fff;
    background: rgba(255,255,255,0.2);
}
.hero-eb .categories-eb a {
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

/* ========== TOP DESTINATIONS (Eventbrite: cities grid) ========== */
.destinations-eb {
    padding: 2rem 0;
}
.destinations-eb .section-head {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eb-dark);
    margin-bottom: 1rem;
}
.destinations-eb .city-card {
    display: block;
    height: 120px;
    border-radius: var(--eb-radius-lg);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: var(--eb-border);
}
.destinations-eb .city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destinations-eb .city-card .city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem 1rem;
}
.destinations-eb .city-card .city-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.destinations-eb .city-card:hover .city-overlay { background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); }

/* ========== EVENT CARDS (Eventbrite style) ========== */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eb-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.card-eb {
    background: var(--eb-bg);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.card-eb:hover {
    box-shadow: var(--eb-shadow-hover);
    border-color: transparent;
}
.card-eb .card-img-top {
    height: 160px;
    object-fit: cover;
    background: var(--eb-border);
}
.card-eb .card-body { padding: 1rem 1.1rem; }
.card-eb .card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eb-dark);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}
.card-eb .card-meta {
    font-size: 0.8rem;
    color: var(--eb-text-muted);
}
.card-eb .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--eb-primary-light);
    color: var(--eb-primary);
}

/* ========== BUTTONS ========== */
.btn-sm, .btn-group-sm > .btn { font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: var(--eb-radius); }
.btn-primary { background: var(--eb-primary); border-color: var(--eb-primary); font-weight: 600; }
.btn-primary:hover { background: var(--eb-primary-hover); border-color: var(--eb-primary-hover); }
.btn-success { font-weight: 600; }
.form-control:focus, .form-select:focus {
    border-color: var(--eb-primary);
    box-shadow: 0 0 0 3px var(--eb-primary-light);
}
.form-control, .form-select { border-radius: var(--eb-radius); border-color: var(--eb-border); }

/* ========== PAGE CONTENT ========== */
.event-banner {
    max-height: 360px;
    object-fit: cover;
    width: 100%;
    border-radius: var(--eb-radius-lg);
    border: 1px solid var(--eb-border);
}
.event-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.event-share .btn-share {
    padding: 0.25rem 0.5rem;
}
.event-share .btn-share i { font-size: 1.1rem; }
.ticket-type-row {
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius);
    padding: 1rem 1.1rem;
    margin-bottom: 0.6rem;
    background: var(--eb-bg);
    transition: border-color 0.2s, background 0.2s;
}
.ticket-type-row:hover { border-color: var(--eb-primary); background: var(--eb-primary-light); }
.btn-buy { font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.75rem; }

/* ========== AUTH (Connexion / Inscription) ========== */
.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 2rem 0 3rem;
    position: relative;
    background: linear-gradient(160deg, var(--eb-bg-alt) 0%, var(--eb-bg) 35%, rgba(240, 85, 55, 0.04) 100%);
    background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 10, 10, 0.45);
    z-index: 0;
}
.auth-page .container { position: relative; z-index: 1; }
.auth-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(240, 85, 55, 0.06);
    overflow: hidden;
    background: var(--eb-bg);
    max-width: 420px;
    margin: 0 auto;
}
.auth-card.auth-card--wide { max-width: 480px; }
.auth-card .auth-card-head {
    background: linear-gradient(135deg, var(--eb-primary), var(--eb-primary-hover));
    color: #fff;
    padding: 1.5rem 1.75rem;
    text-align: center;
}
.auth-card .auth-card-head .auth-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.auth-card .auth-card-head h1 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}
.auth-card .auth-card-head .auth-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}
.auth-card .card-body {
    padding: 1.75rem 1.75rem 1.5rem;
}
.auth-card .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--eb-dark);
    margin-bottom: 0.4rem;
}
.auth-card .form-control {
    padding: 0.6rem 0.85rem 0.6rem 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--eb-border);
    font-size: 0.95rem;
}
.auth-card .form-control:focus {
    border-color: var(--eb-primary);
    box-shadow: 0 0 0 3px var(--eb-primary-light);
}
.auth-card .input-wrap {
    position: relative;
}
.auth-card .input-wrap .input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eb-text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}
.auth-card .btn-auth {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    background: var(--eb-primary);
    border: none;
    color: #fff;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
}
.auth-card .btn-auth:hover {
    background: var(--eb-primary-hover);
    color: #fff;
}
.auth-card .btn-auth:active { transform: scale(0.99); }
.auth-card .auth-divider {
    margin: 1.25rem 0 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--eb-text-muted);
}
.auth-card .auth-link-wrap {
    text-align: center;
    margin-top: 1rem;
}
.auth-card .auth-link-wrap a {
    color: var(--eb-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.auth-card .auth-link-wrap a:hover { color: var(--eb-primary-hover); text-decoration: underline; }
.auth-card .auth-forgot {
    display: block;
    font-size: 0.85rem;
    color: var(--eb-text-muted);
    text-decoration: none;
    margin-top: 0.35rem;
}
.auth-card .auth-forgot:hover { color: var(--eb-primary); }
.auth-card .alert {
    border-radius: 10px;
    font-size: 0.875rem;
}

/* Rétrocompatibilité */
.card-auth {
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    box-shadow: var(--eb-shadow);
    overflow: hidden;
}
.card-auth .card-body { padding: 1.75rem; }
.card-auth .form-label { font-weight: 600; font-size: 0.875rem; color: var(--eb-dark); }

/* ========== DASHBOARD & ADMIN ========== */
.dash-page { max-width: 1200px; margin: 0 auto; }
.dash-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--eb-border);
}
.dash-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--eb-text-muted);
    text-decoration: none;
    border-radius: var(--eb-radius);
    transition: background 0.2s, color 0.2s;
}
.dash-nav a:hover { color: var(--eb-primary); background: var(--eb-primary-light); }
.dash-nav a.active { color: var(--eb-primary); background: var(--eb-primary-light); font-weight: 600; }
.dash-nav a i { font-size: 1.1em; }
.card-dash {
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    background: var(--eb-bg);
    box-shadow: var(--eb-shadow);
}
.card-dash .card-body { padding: 1.25rem; }
.card-dash .card-header {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--eb-border);
    background: var(--eb-bg-alt);
    border-radius: var(--eb-radius-lg) var(--eb-radius-lg) 0 0;
}
.stat-card {
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    padding: 1.25rem;
    background: var(--eb-bg);
    transition: box-shadow 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.stat-card:hover { box-shadow: var(--eb-shadow-hover); }
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--eb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.stat-card .stat-icon.icon-events { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.stat-card .stat-icon.icon-sales { background: rgba(5, 150, 105, 0.12); color: #059669; }
.stat-card .stat-icon.icon-revenue { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.stat-card .stat-icon.icon-users { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
.stat-card .stat-icon.icon-pending { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.stat-card .stat-icon.icon-commission { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.stat-card .stat-icon.icon-views { background: rgba(59, 130, 246, 0.12); color: #2563eb; }
.stat-card .stat-icon.icon-tickets { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.stat-card .h5 { font-size: 0.75rem; font-weight: 600; color: var(--eb-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.stat-card .h2 { font-weight: 700; color: var(--eb-dark); margin-bottom: 0; }
.stat-card a { font-size: 0.8rem; font-weight: 600; color: var(--eb-primary); text-decoration: none; }
.stat-card a:hover { text-decoration: underline; }
.btn-icon { display: inline-flex; align-items: center; gap: 0.35rem; }
.table .btn-icon { padding: 0.25rem 0.5rem; font-size: 0.8rem; }
.form-dash .form-label { font-weight: 600; font-size: 0.875rem; }
.form-dash .form-control, .form-dash .form-select { border-radius: var(--eb-radius); }

/* Tables */
.table thead th {
    font-weight: 600;
    color: var(--eb-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom-color: var(--eb-border);
}
.table .badge { font-size: 0.7rem; font-weight: 600; }

/* ========== PAGE TARIFS ========== */
.pricing-page {
    background: linear-gradient(180deg, var(--eb-bg-alt) 0%, var(--eb-bg) 12%);
    padding: 2.5rem 0 4rem;
}
.pricing-page .pricing-head { max-width: 560px; margin: 0 auto 2.5rem; }
.pricing-page .pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--eb-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.pricing-page .pricing-intro {
    font-size: 1rem;
    color: var(--eb-text-muted);
    line-height: 1.6;
    margin: 0;
}
.pricing-card {
    background: var(--eb-bg);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    box-shadow: var(--eb-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
    box-shadow: var(--eb-shadow-hover);
    border-color: rgba(240, 85, 55, 0.25);
}
.pricing-card.pricing-card--featured {
    border: 2px solid var(--eb-primary);
    box-shadow: 0 8px 24px rgba(240, 85, 55, 0.15);
}
.pricing-card.pricing-card--featured:hover {
    box-shadow: 0 12px 32px rgba(240, 85, 55, 0.2);
}
.pricing-card .pricing-card-badge {
    background: linear-gradient(135deg, var(--eb-primary), var(--eb-primary-hover));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    text-align: center;
    border-radius: var(--eb-radius-lg) var(--eb-radius-lg) 0 0;
}
.pricing-card .pricing-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pricing-card .pricing-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--eb-dark);
    margin-bottom: 1rem;
}
.pricing-card .pricing-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--eb-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.pricing-card.pricing-card--featured .pricing-price { color: var(--eb-primary); }
.pricing-card .pricing-period { font-size: 0.9rem; color: var(--eb-text-muted); }
.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    flex: 1;
}
.pricing-card .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--eb-text);
    margin-bottom: 0.6rem;
}
.pricing-card .pricing-features li i {
    color: var(--eb-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.pricing-card .pricing-cta {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: var(--eb-radius);
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pricing-card .pricing-cta.pricing-cta--primary {
    background: var(--eb-primary);
    color: #fff;
    border: 2px solid var(--eb-primary);
}
.pricing-card .pricing-cta.pricing-cta--primary:hover {
    background: var(--eb-primary-hover);
    border-color: var(--eb-primary-hover);
    color: #fff;
}
.pricing-card .pricing-cta.pricing-cta--outline {
    background: transparent;
    color: var(--eb-primary);
    border: 2px solid var(--eb-primary);
}
.pricing-card .pricing-cta.pricing-cta--outline:hover {
    background: var(--eb-primary-light);
    color: var(--eb-primary-hover);
    border-color: var(--eb-primary-hover);
}
.pricing-page .pricing-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--eb-text-muted);
}
.pricing-page .pricing-footer a {
    color: var(--eb-primary);
    font-weight: 600;
    text-decoration: none;
}
.pricing-page .pricing-footer a:hover {
    color: var(--eb-primary-hover);
    text-decoration: underline;
}
.pricing-page .pricing-empty {
    background: var(--eb-bg);
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--eb-text-muted);
}
.pricing-page .pricing-empty a { color: var(--eb-primary); font-weight: 600; }

/* ========== FOOTER (Eventbrite multi-column) ========== */
.footer-eb {
    background: var(--eb-dark);
    color: #9ca3af;
    padding: 3rem 0 2rem;
    margin-top: auto;
}
.footer-eb .footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-eb .footer-col h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer-eb .footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-eb .footer-col li { margin-bottom: 0.5rem; }
.footer-eb .footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-eb .footer-col a:hover { color: #fff; }
.footer-eb .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #6b7280;
}

/* Scan */
.scan-area {
    border: 2px dashed var(--eb-border);
    border-radius: var(--eb-radius-lg);
    padding: 2rem;
    text-align: center;
    background: var(--eb-bg-alt);
}

.breadcrumb { font-size: 0.85rem; background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--eb-text-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--eb-primary); }
.alert { border-radius: var(--eb-radius); }

@media (max-width: 768px) {
    .hero-eb { min-height: 380px; }
    .hero-eb .search-wrap { flex-direction: column; border-radius: var(--eb-radius-lg); padding: 0.75rem; }
    .hero-eb .search-wrap .btn-search { width: 100%; }
    .categories-eb { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
    .card-eb .card-img-top { height: 140px; }
}
