/* ============================================
   BantuDelice — Design System
   Version: 3.0
   Date: 2026-04-01
   Couleurs : #ff5a1f Orange Brand · #009543 Vert Congo
   ============================================ */

/* ============================================
   IMPORTS & VARIABLES CSS
   ============================================ */
/* Polices chargees via <link> dans app-modern.blade.php (Plus Jakarta Sans, Outfit, Poppins, Inter) */

:root {
    /* Couleurs principales */
    --primary: #ff5a1f;
    --primary-dark: #e04d15;
    --primary-light: #ff7a4a;
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #081226;
    
    /* Couleurs neutres */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Couleurs de statut */
    --success: #009543;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Typographie */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Rayons de bordure */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-md) 0;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 var(--space-md) 0;
    color: var(--gray-600);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 53, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.btn-secondary {
    color: var(--gray-800);
    background: var(--white);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.btn-outline {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   HEADER MODERNE
   ============================================ */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.modern-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.cart-icon:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.85rem 0.4rem 0.45rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-profile-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
    border-color: rgba(15, 23, 42, 0.14);
}

.header-profile-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f8fafc;
}

.header-profile-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-profile-copy strong {
    max-width: 118px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-profile-copy small {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: capitalize;
}

.mobile-account-panel {
    display: none;
}

.mobile-account-summary {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    text-decoration: none;
    color: #0f172a;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.mobile-account-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
    background: #e2e8f0;
    flex-shrink: 0;
}

.mobile-account-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mobile-account-copy strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.mobile-account-copy small {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: capitalize;
}

.mobile-account-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.8rem;
}

.mobile-account-links a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}



/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-profile-chip {
        display: none;
    }

    .mobile-account-panel {
        display: block;
        margin-bottom: 0.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 52, 96, 0.85) 100%),
                url('/images/thedrop24BG.jpg') no-repeat center center;
    background-size: cover;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.75) 100%);
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--warning) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-search {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 550px;
}

.hero-search input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--gray-800);
}

.hero-search input::placeholder {
    color: var(--gray-400);
}

.hero-search input:focus {
    outline: none;
}

.hero-search .btn {
    padding: var(--space-md) var(--space-xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTION TITRE
   ============================================ */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

/* ============================================
   CARTES RESTAURANT
   ============================================ */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.restaurant-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.restaurant-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.restaurant-card:hover .restaurant-card-image img {
    transform: scale(1.05);
}

.restaurant-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.restaurant-card-favorite {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.restaurant-card-favorite:hover {
    color: var(--error);
    transform: scale(1.1);
}

.restaurant-card-content {
    padding: var(--space-lg);
}

.restaurant-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.restaurant-card-cuisine {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.restaurant-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-100);
}

.restaurant-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.restaurant-card-rating i {
    color: var(--warning);
}

.restaurant-card-delivery {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--warning) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-100);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.service-card:hover .service-card__media img {
    transform: scale(1.04);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--gray-900);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--g);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.service-card__cta:hover {
    color: var(--g2);
}

.service-support-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 28px;
    border: 1px solid var(--bd);
    border-radius: var(--r20);
    background: linear-gradient(135deg, rgba(0, 149, 67, 0.06), rgba(255, 255, 255, 0.98));
    box-shadow: var(--s2);
}

.service-support-callout__eyebrow {
    margin-bottom: 6px;
    color: var(--g);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-support-callout h3 {
    margin: 0 0 6px;
    color: var(--tx);
    font-size: 1.2rem;
}

.service-support-callout p {
    margin: 0;
    color: var(--tx2);
    line-height: 1.65;
}

/* ============================================
   PRODUITS SPÉCIAUX
   ============================================ */
.products-carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-card-image {
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: var(--space-lg);
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.product-card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   FOOTER MODERNE
   ============================================ */
.modern-footer {
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-app-buttons img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   FOOTER — TÉLÉCHARGEMENT APP & MOYENS DE PAIEMENT
   ============================================ */
.bd-footer-extra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bd-footer-extra__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bd-app-badges,
.bd-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.bd-app-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    height: 44px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    text-decoration: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.bd-app-badge:hover,
.bd-app-badge:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.bd-app-badge[aria-disabled="true"] {
    cursor: default;
}

.bd-app-badge i {
    font-size: 1.35rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.bd-app-badge__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.bd-app-badge__copy small {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
}

.bd-app-badge__copy strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
}

.bd-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    height: 38px;
    padding: 0 0.9rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.bd-payment-badge i {
    font-size: 0.95rem;
}

.bd-payment-badge--mtn i { color: #ffcc00; }
.bd-payment-badge--airtel i { color: #ff1f1f; }
.bd-payment-badge--cash i { color: #4ade80; }

.bd-payment-note {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
    .bd-footer-extra {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .bd-app-badges,
    .bd-payment-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .bd-app-badge,
    .bd-payment-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray-50); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .hero-search {
        flex-direction: column;
    }
    
    .hero-search .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
}

/* ============================================
   OVERRIDE ANCIEN CSS
   ============================================ */
.m9ls-header,
.navigation,
.footer,
.copym9-agile {
    display: none !important;
}


.float-nav-shell {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(15,23,42,0.08);
    backdrop-filter: blur(18px);
}

.float-nav-inner {
    max-width: 1320px;
}

.float-brand img {
    height: 48px !important;
}

.nav-menu {
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
}

.nav-actions .btn {
    font-weight: 700;
}

@media (max-width: 991px) {
    .float-nav-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.nav-link--service,
.nav-link--utility,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.nav-link--primary {
    color: var(--success);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 250px;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    display: none;
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    gap: 0.35rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 600;
}

.nav-dropdown-menu a:hover {
    background: rgba(0, 149, 67, 0.08);
    color: #007836;
}

.bd-brand-lockup {
    min-width: 0;
}

.bd-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.45rem 0.9rem 0.45rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.bd-brand-chip__badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.bd-brand-chip__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.bd-brand-chip__name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.bd-brand-chip__label {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bd-brand-chip--footer {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    padding-right: 1rem;
    margin-bottom: 1rem;
}

.bd-brand-chip--footer .bd-brand-chip__name {
    color: #ffffff;
}

.bd-brand-chip--footer .bd-brand-chip__label {
    color: rgba(255, 255, 255, 0.68);
}

.bd-site-switcher {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.bd-site-switcher__dropdown {
    position: relative;
}

.bd-site-switcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    height: 42px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.bd-site-switcher__icon,
.bd-site-switcher__chevron {
    color: #007836;
    font-size: 0.8rem;
}

.bd-site-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    display: none;
    z-index: 1100;
}

.bd-site-switcher__dropdown.open .bd-site-switcher__menu {
    display: grid;
    gap: 0.35rem;
}

.bd-site-switcher__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    color: #0f172a;
}

.bd-site-switcher__option small {
    color: #64748b;
}

.bd-site-switcher__option:hover,
.bd-site-switcher__option.is-active {
    background: rgba(0, 149, 67, 0.08);
    color: #007836;
}

.bd-site-switcher__sites {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.bd-site-switcher__pill {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
}

.bd-site-switcher__pill.is-active,
.bd-site-switcher__pill:hover {
    background: rgba(0, 149, 67, 0.1);
    color: #007836;
    border-color: rgba(0, 149, 67, 0.18);
}

.nav-cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #009543;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(0, 149, 67, 0.22);
}

.nav-cta-pill:hover {
    background: #007836;
    color: #ffffff;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    z-index: 10000;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
}

.flash-success {
    background: #05944f;
}

.flash-error {
    background: #dc2626;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    cursor: pointer;
}

.footer-brand-image {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-platform-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
}

@media (max-width: 991px) {
    .nav-actions {
        gap: 0.75rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 0.35rem;
        box-shadow: none;
    }

    .bd-site-switcher {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .bd-site-switcher__sites {
        justify-content: flex-start;
    }

    .nav-cta-pill {
        display: none;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
body.bd-product-detail-page .product-page {
    min-height: calc(100vh - 80px);
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

body.bd-product-detail-page .breadcrumb-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

body.bd-product-detail-page .breadcrumb-modern a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.bd-product-detail-page .breadcrumb-modern a:hover {
    color: #009543;
}

body.bd-product-detail-page .breadcrumb-modern .separator {
    color: #cbd5e1;
}

body.bd-product-detail-page .breadcrumb-modern .current {
    color: #0f172a;
    font-weight: 600;
}

body.bd-product-detail-page .premium-breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

body.bd-product-detail-page .product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.bd-product-detail-page .product-image-section {
    position: relative;
    min-height: 400px;
    background: #f1f5f9;
}

body.bd-product-detail-page .product-image,
body.bd-product-detail-page .product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.bd-product-detail-page .premium-product-gallery img {
    border-radius: 26px;
}

body.bd-product-detail-page .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #009543;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

body.bd-product-detail-page .product-info-section,
body.bd-product-detail-page .premium-product-info {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

body.bd-product-detail-page .restaurant-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
}

body.bd-product-detail-page .product-title {
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

body.bd-product-detail-page .product-price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.bd-product-detail-page .current-price {
    color: #009543;
    font-size: 2rem;
    font-weight: 700;
}

body.bd-product-detail-page .original-price {
    color: #94a3b8;
    font-size: 1.25rem;
    text-decoration: line-through;
}

body.bd-product-detail-page .discount-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
}

body.bd-product-detail-page .product-description {
    margin-bottom: 2rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

body.bd-product-detail-page .order-form {
    margin-top: auto;
}

body.bd-product-detail-page .form-group {
    margin-bottom: 1.5rem;
}

body.bd-product-detail-page .form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
}

body.bd-product-detail-page .quantity-selector {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: fit-content;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
}

body.bd-product-detail-page .qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-product-detail-page .qty-btn:hover {
    background: #009543;
    color: #ffffff;
}

body.bd-product-detail-page .qty-input {
    width: 60px;
    height: 48px;
    border: none;
    background: #ffffff;
    color: #0f172a;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

body.bd-product-detail-page .qty-input:focus {
    outline: none;
}

body.bd-product-detail-page .instructions-input {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    resize: vertical;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.bd-product-detail-page .instructions-input:focus {
    outline: none;
    border-color: #009543;
    box-shadow: 0 0 0 4px rgba(0, 149, 67, 0.15);
}

body.bd-product-detail-page .instructions-input::placeholder {
    color: #94a3b8;
}

body.bd-product-detail-page .btn-add-cart {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #009543 0%, #22c55e 100%);
    color: #ffffff;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-product-detail-page .btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

body.bd-product-detail-page .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 149, 67, 0.35);
}

body.bd-product-detail-page .btn-add-cart:hover::before {
    left: 100%;
}

body.bd-product-detail-page .btn-add-cart.is-disabled,
body.bd-product-detail-page .btn-add-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

body.bd-product-detail-page .product-availability-note {
    margin-top: 10px;
    color: #b45309;
    font-weight: 600;
}

body.bd-product-detail-page .related-section {
    margin-top: 4rem;
}

body.bd-product-detail-page .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

body.bd-product-detail-page .section-title {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 700;
}

body.bd-product-detail-page .see-all-link,
body.bd-product-detail-page .pd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
}

body.bd-product-detail-page .see-all-link {
    gap: 0.5rem;
    color: #009543;
    font-weight: 600;
    transition: gap 0.3s ease;
}

body.bd-product-detail-page .see-all-link:hover {
    gap: 0.75rem;
}

body.bd-product-detail-page .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

body.bd-product-detail-page .product-card,
body.bd-product-detail-page .related-section .product-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

body.bd-product-detail-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

body.bd-product-detail-page .product-card-content {
    padding: 1rem;
}

body.bd-product-detail-page .product-card-name {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.bd-product-detail-page .product-card-price {
    color: #009543;
    font-size: 1.1rem;
    font-weight: 700;
}

body.bd-product-detail-page .alert-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    animation: slideIn 0.3s ease;
}

body.bd-product-detail-page .alert-success {
    border: 1px solid #a7f3d0;
    background: #d1fae5;
    color: #065f46;
}

body.bd-product-detail-page .alert-success i {
    color: #009543;
    font-size: 1.25rem;
}

body.bd-product-detail-page .pd-btn-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: #009543;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease;
}

body.bd-product-detail-page .pd-btn-primary:hover {
    background: #007836;
    color: #ffffff;
}

@media (max-width: 992px) {
    body.bd-product-detail-page .product-detail-card {
        grid-template-columns: 1fr;
    }

    body.bd-product-detail-page .product-image-section {
        min-height: 300px;
    }

    body.bd-product-detail-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    body.bd-product-detail-page .product-page {
        padding: 100px 0 40px;
    }

    body.bd-product-detail-page .product-info-section {
        padding: 1.5rem;
    }

    body.bd-product-detail-page .product-title,
    body.bd-product-detail-page .current-price {
        font-size: 1.5rem;
    }

    body.bd-product-detail-page .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AUTH PAGES
   ============================================ */
body.bd-auth-page {
    --brand-primary: var(--auth-brand-primary, var(--layout-brand-primary));
    --brand-primary-dark: var(--auth-brand-primary-dark, var(--layout-brand-primary));
    --brand-primary-soft: var(--auth-brand-primary-soft, var(--layout-brand-soft));
    --brand-secondary: var(--auth-brand-secondary, #1a1a2e);
    --brand-surface: var(--auth-brand-surface, #f8fafc);
}

body.bd-auth-page .auth-hidden {
    display: none;
}

body.bd-auth-page .auth-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--brand-primary-soft);
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.bd-auth-page .auth-brand-pill--center {
    margin-right: auto;
    margin-left: auto;
}

body.bd-auth-page .auth-brand-pill__dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--brand-primary);
}

body.bd-auth-page .login-page,
body.bd-auth-page .signup-page,
body.bd-auth-page .forgot-page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background: linear-gradient(135deg, var(--brand-surface) 0%, #ffffff 50%, var(--brand-surface) 100%);
}

body.bd-auth-page .login-page::before,
body.bd-auth-page .signup-page::before,
body.bd-auth-page .forgot-page-shell::before {
    content: '';
    position: absolute;
    top: -50%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--brand-primary-soft) 0%, transparent 60%);
    pointer-events: none;
}

body.bd-auth-page .login-page::before {
    right: -30%;
}

body.bd-auth-page .signup-page::before,
body.bd-auth-page .forgot-page-shell::before {
    left: -30%;
}

body.bd-auth-page .login-page::after,
body.bd-auth-page .forgot-page-shell::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, var(--brand-primary-soft) 0%, transparent 50%);
    pointer-events: none;
}

body.bd-auth-page .login-container,
body.bd-auth-page .signup-container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

body.bd-auth-page .login-container {
    max-width: 1100px;
    grid-template-columns: 1fr 1fr;
}

body.bd-auth-page .signup-container {
    max-width: 1200px;
    grid-template-columns: 1fr 1.2fr;
}

body.bd-auth-page .login-benefits,
body.bd-auth-page .signup-benefits,
body.bd-auth-page .login-form-wrapper,
body.bd-auth-page .signup-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.bd-auth-page .benefits-header h1 {
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

body.bd-auth-page .benefits-header h1 span {
    position: relative;
    color: var(--brand-primary);
}

body.bd-auth-page .benefits-header h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--brand-primary-soft);
}

body.bd-auth-page .benefits-header p {
    margin-bottom: 2.5rem;
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.7;
}

body.bd-auth-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

body.bd-auth-page .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

body.bd-auth-page .benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px var(--brand-primary-soft);
}

body.bd-auth-page .benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #ffffff;
    font-size: 1.25rem;
}

body.bd-auth-page .benefit-content h4 {
    margin-bottom: 0.25rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}

body.bd-auth-page .benefit-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-auth-page .login-card,
body.bd-auth-page .signup-card,
body.bd-auth-page .forgot-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

body.bd-auth-page .login-card,
body.bd-auth-page .signup-card {
    padding: 2.5rem;
}

body.bd-auth-page .forgot-panel {
    padding: 2rem;
}

body.bd-auth-page .login-card::before,
body.bd-auth-page .signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-secondary));
}

body.bd-auth-page .form-header,
body.bd-auth-page .forgot-header {
    text-align: center;
}

body.bd-auth-page .form-header {
    margin-bottom: 2rem;
}

body.bd-auth-page .form-header h2,
body.bd-auth-page .forgot-title {
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 700;
}

body.bd-auth-page .form-header p,
body.bd-auth-page .forgot-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

body.bd-auth-page .forgot-shell {
    position: relative;
    z-index: 1;
    max-width: 450px;
    margin: 0 auto;
}

body.bd-auth-page .forgot-header {
    margin-bottom: 2rem;
}

body.bd-auth-page .forgot-icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

body.bd-auth-page .auth-social-row,
body.bd-auth-page .social-login,
body.bd-auth-page .social-signup {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.bd-auth-page .btn-social,
body.bd-auth-page .auth-social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.bd-auth-page .btn-social:hover,
body.bd-auth-page .auth-social-link:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #334155;
}

body.bd-auth-page .btn-social.google i,
body.bd-auth-page .auth-social-link.google i {
    color: #db4437;
}

body.bd-auth-page .btn-social.facebook i,
body.bd-auth-page .auth-social-link.facebook i {
    color: #4267b2;
}

body.bd-auth-page .divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.bd-auth-page .divider::before,
body.bd-auth-page .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

body.bd-auth-page .divider span {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

body.bd-auth-page .progress-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

body.bd-auth-page .progress-step {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

body.bd-auth-page .progress-step.active {
    background: var(--brand-primary);
}

body.bd-auth-page .progress-step.completed {
    background: #009543;
}

body.bd-auth-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

body.bd-auth-page .form-group,
body.bd-auth-page .forgot-field {
    margin-bottom: 1.25rem;
}

body.bd-auth-page .form-label,
body.bd-auth-page .forgot-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
}

body.bd-auth-page .forgot-label__icon {
    margin-right: 0.5rem;
    color: var(--brand-primary);
}

body.bd-auth-page .input-group {
    position: relative;
}

body.bd-auth-page .input-group i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

body.bd-auth-page .input-group input,
body.bd-auth-page .forgot-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.bd-auth-page .forgot-input {
    padding-left: 1rem;
}

body.bd-auth-page .input-group input:focus,
body.bd-auth-page .forgot-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--brand-primary-soft);
}

body.bd-auth-page .input-group input:focus + i {
    color: var(--brand-primary);
}

body.bd-auth-page .input-group input::placeholder,
body.bd-auth-page .forgot-input::placeholder {
    color: #94a3b8;
}

body.bd-auth-page .input-group.valid input {
    border-color: var(--brand-primary);
}

body.bd-auth-page .input-group.invalid input {
    border-color: #dc2626;
}

body.bd-auth-page .password-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 2;
    padding: 0.25rem;
    border: none;
    background: none;
    color: #94a3b8;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.3s ease;
}

body.bd-auth-page .password-toggle:hover {
    color: #475569;
}

body.bd-auth-page .form-error,
body.bd-auth-page .forgot-error {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.375rem;
    color: #dc2626;
    font-size: 0.8rem;
}

body.bd-auth-page .form-error i {
    font-size: 0.75rem;
}

body.bd-auth-page .password-strength {
    margin-top: 0.5rem;
}

body.bd-auth-page .strength-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 0.375rem;
}

body.bd-auth-page .strength-segment {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

body.bd-auth-page .strength-segment.weak {
    background: #ef4444;
}

body.bd-auth-page .strength-segment.medium {
    background: #f59e0b;
}

body.bd-auth-page .strength-segment.strong {
    background: #009543;
}

body.bd-auth-page .strength-text,
body.bd-auth-page .forgot-help {
    color: #64748b;
    font-size: 0.75rem;
}

body.bd-auth-page .forgot-help {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
}

body.bd-auth-page .profile-upload {
    margin-bottom: 1.5rem;
    text-align: center;
}

body.bd-auth-page .upload-area {
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border: 3px dashed #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-auth-page .upload-area:hover {
    border-color: #009543;
    background: rgba(0, 149, 67, 0.05);
}

body.bd-auth-page .upload-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.bd-auth-page .upload-icon {
    color: #94a3b8;
    font-size: 1.5rem;
}

body.bd-auth-page .upload-text {
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-auth-page .upload-text span {
    color: #009543;
    font-weight: 600;
}

body.bd-auth-page .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

body.bd-auth-page .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

body.bd-auth-page.bd-auth-login .checkbox-wrapper {
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

body.bd-auth-page .checkbox-wrapper input[type="checkbox"] {
    display: none;
}

body.bd-auth-page .checkbox-custom {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    transition: all 0.3s ease;
}

body.bd-auth-page.bd-auth-login .checkbox-custom {
    width: 20px;
    height: 20px;
    margin-top: 0;
}

body.bd-auth-page .checkbox-wrapper input:checked + .checkbox-custom {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
}

body.bd-auth-page .checkbox-custom i {
    color: #ffffff;
    font-size: 0.625rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

body.bd-auth-page .checkbox-wrapper input:checked + .checkbox-custom i {
    opacity: 1;
    transform: scale(1);
}

body.bd-auth-page .checkbox-label {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

body.bd-auth-page .checkbox-label a,
body.bd-auth-page .forgot-link,
body.bd-auth-page .forgot-back-link,
body.bd-auth-page .form-footer a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

body.bd-auth-page .checkbox-label a,
body.bd-auth-page .forgot-link,
body.bd-auth-page .forgot-back-link,
body.bd-auth-page .form-footer a {
    font-weight: 600;
}

body.bd-auth-page .forgot-link:hover,
body.bd-auth-page .forgot-back-link:hover,
body.bd-auth-page .form-footer a:hover,
body.bd-auth-page .checkbox-label a:hover {
    color: var(--brand-primary-dark);
    text-decoration: underline;
}

body.bd-auth-page .btn-submit,
body.bd-auth-page .forgot-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: var(--brand-primary);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-auth-page .forgot-submit {
    border-radius: 14px;
    background: var(--brand-primary);
    font-weight: 700;
}

body.bd-auth-page .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

body.bd-auth-page .btn-submit:hover,
body.bd-auth-page .forgot-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--brand-primary-soft);
}

body.bd-auth-page .btn-submit:hover::before {
    left: 100%;
}

body.bd-auth-page .forgot-submit:hover {
    background: var(--brand-primary-dark);
}

body.bd-auth-page .btn-submit:active,
body.bd-auth-page .forgot-submit:active {
    transform: translateY(0);
}

body.bd-auth-page .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

body.bd-auth-page .btn-submit.loading {
    pointer-events: none;
    opacity: 0.85;
}

body.bd-auth-page .btn-submit.loading .btn-text,
body.bd-auth-page .btn-submit.loading i {
    visibility: hidden;
}

body.bd-auth-page .btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body.bd-auth-page .alert,
body.bd-auth-page .forgot-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.bd-auth-page .forgot-alert {
    border-radius: 14px;
    text-align: center;
}

body.bd-auth-page .alert-success {
    border: 1px solid #a7f3d0;
    background: #d1fae5;
    color: #065f46;
}

body.bd-auth-page .alert-error {
    border: 1px solid #fecaca;
    background: #fee2e2;
    color: #991b1b;
}

body.bd-auth-page .forgot-alert--success {
    background: var(--brand-primary);
    color: #ffffff;
}

body.bd-auth-page .forgot-alert--error {
    background: #dc2626;
    color: #ffffff;
}

body.bd-auth-page .alert i {
    font-size: 1.25rem;
}

body.bd-auth-page .trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

body.bd-auth-page .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #64748b;
    font-size: 0.75rem;
}

body.bd-auth-page .trust-badge i,
body.bd-auth-page .forgot-info-box__icon {
    color: #009543;
}

body.bd-auth-page .form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

body.bd-auth-page .form-footer p,
body.bd-auth-page .forgot-back-wrap {
    color: #475569;
    font-size: 0.95rem;
}

body.bd-auth-page .form-footer__secondary {
    margin-top: 0.75rem;
    color: #64748b;
    font-size: 0.85rem;
}

body.bd-auth-page .form-footer__muted-link {
    color: #475569;
}

body.bd-auth-page .forgot-info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
    background: #f8fafc;
}

body.bd-auth-page .forgot-info-box__text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    color: #475569;
    font-size: 0.875rem;
}

body.bd-auth-page .forgot-back-wrap {
    margin: 1.5rem 0 0;
    text-align: center;
}

@media (max-width: 992px) {
    body.bd-auth-page .login-container,
    body.bd-auth-page .signup-container {
        grid-template-columns: 1fr;
    }

    body.bd-auth-page .login-container {
        max-width: 480px;
    }

    body.bd-auth-page .signup-container {
        max-width: 520px;
    }

    body.bd-auth-page .login-benefits,
    body.bd-auth-page .signup-benefits {
        display: none;
    }
}

@media (max-width: 576px) {
    body.bd-auth-page .login-page,
    body.bd-auth-page .signup-page,
    body.bd-auth-page .forgot-page-shell {
        padding: 100px 0 40px;
    }

    body.bd-auth-page .login-card,
    body.bd-auth-page .signup-card,
    body.bd-auth-page .forgot-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }

    body.bd-auth-page .form-row {
        grid-template-columns: 1fr;
    }

    body.bd-auth-page .social-login,
    body.bd-auth-page .social-signup {
        flex-direction: column;
    }

    body.bd-auth-page .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    body.bd-auth-page .trust-badges {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
}

/* ============================================
   RESTAURANTS LIST PAGE
   ============================================ */
body.bd-restaurants-page {
    background: #f4f6f9;
    font-family: 'Inter', system-ui, sans-serif;
}

body.bd-restaurants-page .restaurants-page-shell {
    min-height: 80vh;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.bd-restaurants-page .restaurants-page-heading {
    margin-bottom: 32px;
}
.restaurants-page-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.restaurants-near-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 99px;
    border: 2px solid #009543;
    background: #fff;
    color: #009543;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s, color .18s;
    flex-shrink: 0;
    margin-top: 6px;
}
.restaurants-near-btn:hover,
.restaurants-near-btn.is-active { background: #009543; color: #fff; }
.restaurants-near-btn:disabled { opacity: .6; cursor: wait; }
.restaurants-empty-icon { font-size: 2.5rem; margin-bottom: 8px; }
.restaurants-empty-title { font-weight: 700; font-size: 1.05rem; color: #0f172a; margin: 0 0 6px; }
.restaurants-empty-sub { color: #64748b; font-size: .9rem; margin: 0 0 20px; }
.restaurants-fallback-map { margin: 16px 0; }
.restaurants-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #009543;
    color: #fff;
    border-radius: 99px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    margin-top: 12px;
}
.restaurants-empty-cta:hover { background: #007a36; color: #fff; }

body.bd-restaurants-page .restaurants-page-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

body.bd-restaurants-page .restaurants-page-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

body.bd-restaurants-page .restaurants-filter-card {
    margin-bottom: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

body.bd-restaurants-page .restaurants-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

body.bd-restaurants-page .restaurants-filter-field {
    min-width: 0;
}

body.bd-restaurants-page .restaurants-filter-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 600;
}

body.bd-restaurants-page .restaurants-filter-input,
body.bd-restaurants-page .filter-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    accent-color: #009543;
}

body.bd-restaurants-page .restaurants-filter-input:focus,
body.bd-restaurants-page .filter-select:focus {
    outline: none;
    border-color: #009543;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.1);
}

body.bd-restaurants-page .restaurants-results-grid {
    gap: 24px;
}

body.bd-restaurants-page .restaurants-feed-card {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

body.bd-restaurants-page .restaurants-feed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body.bd-restaurants-page .restaurants-feed-card__media {
    height: 160px;
    background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
}

body.bd-restaurants-page .restaurants-feed-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.bd-restaurants-page .restaurants-feed-card__overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 48%, transparent 100%);
}

body.bd-restaurants-page .restaurants-feed-card__eta,
body.bd-restaurants-page .restaurants-feed-card__badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

body.bd-restaurants-page .restaurants-feed-card__eta {
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 600;
}

body.bd-restaurants-page .restaurants-feed-card__badge-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
}

body.bd-restaurants-page .restaurants-feed-card__badge {
    position: static;
    padding: 6px 12px;
    background: #009543;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
}

body.bd-restaurants-page .restaurants-feed-card__favorite-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

body.bd-restaurants-page .restaurants-feed-card__favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.78);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.24);
    cursor: pointer;
    transition: transform 0.18s, background 0.18s;
}

body.bd-restaurants-page .restaurants-feed-card__favorite-btn.is-active {
    background: linear-gradient(135deg, #009543, #22c55e);
}

body.bd-restaurants-page .restaurants-feed-card__favorite-btn:hover {
    transform: scale(1.04);
}

body.bd-restaurants-page .restaurants-feed-card__content {
    padding: 14px 16px 16px;
}

body.bd-restaurants-page .restaurants-feed-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

body.bd-restaurants-page .restaurants-feed-card__title,
body.bd-restaurants-page .restaurants-feed-card__cuisine {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.bd-restaurants-page .restaurants-feed-card__title {
    margin: 0;
    flex: 1;
    color: #191919;
    font-size: 1rem;
}

body.bd-restaurants-page .restaurants-feed-card__rating {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: #191919;
    font-size: 0.8125rem;
    font-weight: 700;
}

body.bd-restaurants-page .restaurants-feed-card__cuisine {
    margin-bottom: 8px;
}

body.bd-restaurants-page .restaurants-feed-card__meta {
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

body.bd-restaurants-page .restaurants-feed-card__delivery strong {
    color: #191919;
    font-weight: 700;
}

body.bd-restaurants-page .restaurants-feedback {
    padding: 60px 20px;
    text-align: center;
    color: #64748b;
}

body.bd-restaurants-page .restaurants-feedback p {
    margin: 0;
    color: inherit;
    font-size: 1rem;
}

body.bd-restaurants-page .restaurants-feedback.is-error {
    color: #dc2626;
}

body.bd-restaurants-page .restaurants-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

body.bd-restaurants-page .restaurants-pagination-status {
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-restaurants-page .pagination-btn {
    padding: 0.7rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, opacity 0.18s;
}

body.bd-restaurants-page .pagination-btn:hover:not(:disabled) {
    border-color: #009543;
    color: #009543;
}

body.bd-restaurants-page .pagination-btn.is-disabled,
body.bd-restaurants-page .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.bd-restaurants-page .restaurants-pagination.is-hidden {
    display: none;
}

@media (max-width: 767px) {
    body.bd-restaurants-page .restaurants-page-shell {
        padding: 88px 0 48px;
    }

    body.bd-restaurants-page .restaurants-filter-card {
        padding: 1.1rem;
        border-radius: 20px;
    }

    body.bd-restaurants-page .restaurants-pagination {
        flex-direction: column;
    }

    body.bd-restaurants-page .restaurants-pagination-status {
        text-align: center;
    }
}

/* ============================================
   RESTAURANT MENU PAGE
   ============================================ */
body.bd-restaurant-menu-page .restaurant-page {
    min-height: 100vh;
    padding-top: 80px;
    background: #f8fafc;
}

body.bd-restaurant-menu-page .restaurant-hero {
    position: relative;
    height: 350px;
    overflow: hidden;
}

body.bd-restaurant-menu-page .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

body.bd-restaurant-menu-page .hero-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3rem 0 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

body.bd-restaurant-menu-page .hero-content .container {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

body.bd-restaurant-menu-page .restaurant-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.bd-restaurant-menu-page .restaurant-info {
    flex: 1;
}

body.bd-restaurant-menu-page .restaurant-name {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.bd-restaurant-menu-page .restaurant-slogan {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

body.bd-restaurant-menu-page .restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

body.bd-restaurant-menu-page .meta-item,
body.bd-restaurant-menu-page .status-badge,
body.bd-restaurant-menu-page .rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

body.bd-restaurant-menu-page .meta-item {
    color: rgba(255, 255, 255, 0.9);
}

body.bd-restaurant-menu-page .status-badge,
body.bd-restaurant-menu-page .rating-badge,
body.bd-restaurant-menu-page .cuisine-tag,
body.bd-restaurant-menu-page .restaurant-hero-action--favorite {
    backdrop-filter: blur(10px);
}

body.bd-restaurant-menu-page .status-badge {
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 20px;
    font-weight: 600;
}

body.bd-restaurant-menu-page .status-badge.is-open {
    border-color: #05944f;
    background: rgba(5, 148, 79, 0.2);
}

body.bd-restaurant-menu-page .status-badge.is-closed {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
}

body.bd-restaurant-menu-page .status-badge__hint,
body.bd-restaurant-menu-page .rating-badge__count {
    font-size: 0.85rem;
    opacity: 0.9;
}

body.bd-restaurant-menu-page .rating-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

body.bd-restaurant-menu-page .cuisines-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

body.bd-restaurant-menu-page .cuisine-tag {
    padding: 0.375rem 0.875rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
}

body.bd-restaurant-menu-page .restaurant-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

body.bd-restaurant-menu-page .restaurant-hero-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

body.bd-restaurant-menu-page .restaurant-hero-action--favorite {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

body.bd-restaurant-menu-page .restaurant-hero-action--favorite.is-active {
    background: linear-gradient(135deg, #009543, #f59e0b);
}

body.bd-restaurant-menu-page .restaurant-hero-action--cart {
    background: #ffffff;
    color: #0f172a;
}

body.bd-restaurant-menu-page .menu-content {
    padding: 2rem 0 4rem;
}

body.bd-restaurant-menu-page .breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

body.bd-restaurant-menu-page .breadcrumb-modern a,
body.bd-restaurant-menu-page .restaurant-reviews__link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.bd-restaurant-menu-page .breadcrumb-modern a:hover,
body.bd-restaurant-menu-page .restaurant-reviews__link:hover {
    color: #009543;
}

body.bd-restaurant-menu-page .breadcrumb-modern .separator {
    color: #cbd5e1;
}

body.bd-restaurant-menu-page .breadcrumb-modern .current {
    color: #0f172a;
    font-weight: 600;
}

body.bd-restaurant-menu-page .restaurant-flash-message {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    background: #ecfdf5;
    color: #065f46;
    font-weight: 600;
}

body.bd-restaurant-menu-page .restaurant-promos {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #009543 0%, #f59e0b 100%);
    color: #ffffff;
}

body.bd-restaurant-menu-page .restaurant-promos__title {
    margin: 0 0 1rem;
    color: inherit;
    font-size: 1.25rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .restaurant-promos__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

body.bd-restaurant-menu-page .restaurant-promos__card {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

body.bd-restaurant-menu-page .restaurant-promos__value {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .restaurant-promos__name {
    font-size: 0.875rem;
    opacity: 0.9;
}

body.bd-restaurant-menu-page .restaurant-promos__date {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

body.bd-restaurant-menu-page .category-section {
    margin-bottom: 3rem;
}

body.bd-restaurant-menu-page .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

body.bd-restaurant-menu-page .category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .category-title::before {
    content: '';
    width: 4px;
    height: 28px;
    border-radius: 2px;
    background: #009543;
}

body.bd-restaurant-menu-page .category-count {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

body.bd-restaurant-menu-page .products-grid,
body.bd-restaurant-menu-page .restaurant-reviews__grid {
    display: grid;
    gap: 1.5rem;
}

body.bd-restaurant-menu-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

body.bd-restaurant-menu-page .restaurant-reviews__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

body.bd-restaurant-menu-page .product-card,
body.bd-restaurant-menu-page .restaurant-review-card,
body.bd-restaurant-menu-page .empty-category {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.bd-restaurant-menu-page .product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.bd-restaurant-menu-page .product-card.is-unavailable {
    opacity: 0.75;
}

body.bd-restaurant-menu-page .product-card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

body.bd-restaurant-menu-page .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

body.bd-restaurant-menu-page .product-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

body.bd-restaurant-menu-page .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.bd-restaurant-menu-page .product-card:hover .product-image {
    transform: scale(1.05);
}

body.bd-restaurant-menu-page .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: #009543;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

body.bd-restaurant-menu-page .product-badge--unavailable {
    right: 12px;
    left: auto;
    background: rgba(17, 24, 39, 0.9);
}

body.bd-restaurant-menu-page .product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

body.bd-restaurant-menu-page .product-info--footer {
    padding-top: 0;
}

body.bd-restaurant-menu-page .product-name {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.bd-restaurant-menu-page .product-description {
    display: -webkit-box;
    overflow: hidden;
    flex: 1;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.bd-restaurant-menu-page .product-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}

body.bd-restaurant-menu-page .product-price {
    color: #009543;
    font-size: 1.125rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

body.bd-restaurant-menu-page .quick-add-form {
    margin: 0;
}

body.bd-restaurant-menu-page .btn-view,
body.bd-restaurant-menu-page .btn-quick-add,
body.bd-restaurant-menu-page .empty-category__link,
body.bd-restaurant-menu-page .restaurant-reviews__button,
body.bd-restaurant-menu-page .floating-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

body.bd-restaurant-menu-page .btn-view {
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-restaurant-menu-page .btn-view:hover {
    background: #009543;
    color: #ffffff;
}

body.bd-restaurant-menu-page .btn-quick-add {
    padding: 0.5rem 1rem;
    border: 1px solid #009543;
    border-radius: 8px;
    background: #009543;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.bd-restaurant-menu-page .btn-quick-add:hover {
    border-color: #047857;
    background: #047857;
}

body.bd-restaurant-menu-page .btn-quick-add[disabled] {
    border-color: #e2e8f0;
    background: #e2e8f0;
    color: #64748b;
    cursor: not-allowed;
}

body.bd-restaurant-menu-page .empty-category {
    padding: 3rem 2rem;
    color: #64748b;
    text-align: center;
}

body.bd-restaurant-menu-page .empty-category--menu {
    max-width: 500px;
    margin: 3rem auto;
}

body.bd-restaurant-menu-page .empty-category__title {
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 1.3rem;
}

body.bd-restaurant-menu-page .empty-category__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

body.bd-restaurant-menu-page .empty-category__link {
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
}

body.bd-restaurant-menu-page .empty-category__link--primary {
    background: #009543;
}

body.bd-restaurant-menu-page .empty-category__link--dark {
    background: #111827;
}

body.bd-restaurant-menu-page .restaurant-reviews {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

body.bd-restaurant-menu-page .restaurant-reviews__header,
body.bd-restaurant-menu-page .restaurant-review-card__head,
body.bd-restaurant-menu-page .restaurant-review-card__user {
    display: flex;
    align-items: center;
}

body.bd-restaurant-menu-page .restaurant-reviews__header {
    justify-content: space-between;
    margin-bottom: 2rem;
}

body.bd-restaurant-menu-page .restaurant-reviews__title {
    margin: 0;
    color: #191919;
    font-size: 1.75rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .restaurant-reviews__link {
    color: #05944f;
    font-size: 0.9375rem;
    font-weight: 600;
}

body.bd-restaurant-menu-page .restaurant-review-card {
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.bd-restaurant-menu-page .restaurant-review-card__head {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

body.bd-restaurant-menu-page .restaurant-review-card__user {
    gap: 0.75rem;
}

body.bd-restaurant-menu-page .restaurant-review-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
}

body.bd-restaurant-menu-page .restaurant-review-card__name {
    color: #191919;
    font-size: 0.9375rem;
    font-weight: 600;
}

body.bd-restaurant-menu-page .restaurant-review-card__date {
    color: #6b7280;
    font-size: 0.75rem;
}

body.bd-restaurant-menu-page .restaurant-review-card__rating {
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: #f6f6f6;
    color: #191919;
    font-weight: 600;
}

body.bd-restaurant-menu-page .restaurant-review-card__text {
    margin: 0;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

body.bd-restaurant-menu-page .restaurant-review-card__empty {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
    font-style: italic;
}

body.bd-restaurant-menu-page .restaurant-reviews__actions {
    margin-top: 2rem;
    text-align: center;
}

body.bd-restaurant-menu-page .restaurant-reviews__button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 999px;
    background: #05944f;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

body.bd-restaurant-menu-page .restaurant-reviews__button:hover {
    background: #047857;
}

body.bd-restaurant-menu-page .floating-cart {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 100;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: #009543;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 149, 67, 0.4);
    transition: all 0.3s ease;
}

body.bd-restaurant-menu-page .floating-cart:hover {
    transform: scale(1.05);
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 149, 67, 0.5);
}

@media (max-width: 991px) {
    body.bd-restaurant-menu-page .hero-content .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    body.bd-restaurant-menu-page .restaurant-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body.bd-restaurant-menu-page .restaurant-hero {
        height: 280px;
    }

    body.bd-restaurant-menu-page .restaurant-logo {
        width: 80px;
        height: 80px;
    }

    body.bd-restaurant-menu-page .restaurant-name {
        font-size: 1.75rem;
    }

    body.bd-restaurant-menu-page .products-grid {
        grid-template-columns: 1fr;
    }

    body.bd-restaurant-menu-page .floating-cart {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }
}

@media (max-width: 767px) {
    body.bd-restaurant-menu-page .restaurant-page {
        padding-top: 64px;
    }

    body.bd-restaurant-menu-page .restaurant-hero {
        height: auto;
        min-height: 320px;
    }

    body.bd-restaurant-menu-page .hero-content {
        padding: 1.5rem 0 1.25rem;
    }

    body.bd-restaurant-menu-page .restaurant-logo {
        width: 92px;
        height: 92px;
        border-radius: 18px;
    }

    body.bd-restaurant-menu-page .restaurant-name {
        font-size: 1.6rem;
    }

    body.bd-restaurant-menu-page .restaurant-slogan {
        font-size: 0.98rem;
    }

    body.bd-restaurant-menu-page .products-grid {
        gap: 1rem;
    }

    body.bd-restaurant-menu-page .category-header,
    body.bd-restaurant-menu-page .restaurant-reviews__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============================================
   CART PAGE
   ============================================ */
body.bd-cart-page {
    background: #f8fafc;
    font-family: 'Inter', system-ui, sans-serif;
}

body.bd-cart-page *,
body.bd-cart-page *::before,
body.bd-cart-page *::after {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body.bd-cart-page {
    --g: #009543;
    --g2: #22c55e;
    --g3: #dcfce7;
    --g4: #f0fdf4;
    --or: #ff5a1f;
    --or3: #fff7ed;
    --tx: #0f172a;
    --tx2: #475569;
    --tx3: #94a3b8;
    --bd: #e2e8f0;
    --bg2: #f8fafc;
    --bg3: #f1f5f9;
    --r8: 8px;
    --r12: 12px;
    --r16: 16px;
    --r20: 20px;
    --r24: 24px;
    --r99: 999px;
    --s1: 0 1px 3px rgba(0, 0, 0, 0.06);
    --s2: 0 4px 16px rgba(0, 0, 0, 0.08);
    --s3: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.cart-mini-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 24px;
    background: #fff;
    border-bottom: 1.5px solid #e2e8f0;
}

.cart-mini-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-mini-nav__brand,
.cart-mini-nav__actions,
.cart-mini-nav__account {
    display: flex;
    align-items: center;
}

.cart-mini-nav__brand {
    gap: 8px;
    text-decoration: none;
}

.cart-mini-nav__brand-image {
    width: auto;
    height: 34px;
}

.cart-mini-nav__brand-name {
    display: none;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-mini-nav__actions {
    gap: 12px;
}

.cart-mini-nav__continue {
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.cart-mini-nav__account {
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.cart-header {
    padding: 28px 24px 0;
    background: #fff;
    border-bottom: 1.5px solid var(--bd);
}

.cart-header__inner,
.cart-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-header__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cart-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--bd);
    border-radius: var(--r8);
    color: var(--tx2);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.cart-header__back:hover {
    border-color: var(--g);
    color: var(--g);
}

.cart-header__title,
.cart-panel__head h2,
.cart-item__name,
.cart-summary__head,
.cart-empty h2 {
    font-family: 'Poppins', sans-serif;
}

.cart-header__title {
    color: var(--tx);
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-header__count {
    padding: 3px 10px;
    border-radius: var(--r99);
    background: var(--g3);
    color: var(--g);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
}

.cstepper {
    display: flex;
    align-items: center;
    gap: 0;
    padding-bottom: 0;
}

.cstep {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
}

.cstep__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}

.cstep__num.done,
.cstep__num.active {
    background: var(--g);
    color: #fff;
}

.cstep__num.active {
    box-shadow: 0 0 0 4px rgba(0, 149, 67, 0.2);
}

.cstep__num.pending {
    background: var(--bg3);
    color: var(--tx3);
}

.cstep__icon {
    font-size: 0.7rem;
}

.cstep__label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.cstep__label.done,
.cstep__label.active {
    color: var(--g);
}

.cstep__label.pending {
    color: var(--tx3);
}

.cstep__line {
    flex: 1;
    min-width: 48px;
    height: 2px;
    margin: 0 12px;
    background: var(--bd);
}

.cstep__line.done {
    background: var(--g);
}

.cart-shell {
    min-height: 60vh;
    padding: 32px 24px 60px;
    background: var(--bg2);
}

.cart-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.cart-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: var(--r12);
    font-size: 0.88rem;
    font-weight: 600;
}

.cart-alert--full,
.cart-empty-wrap {
    grid-column: 1 / -1;
}

.cart-alert.success {
    background: var(--g3);
    color: #007836;
}

.cart-alert.error {
    background: #fee2e2;
    color: #b91c1c;
}

.cart-panel,
.cart-summary,
.cart-empty {
    overflow: hidden;
    border: 1.5px solid var(--bd);
    border-radius: var(--r20);
    background: #fff;
}

.cart-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1.5px solid var(--bd);
}

.cart-panel__head h2 {
    color: var(--tx);
    font-size: 0.95rem;
    font-weight: 700;
}

.cart-panel__head a {
    color: var(--g);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.cart-panel__title-icon,
.cart-summary__icon {
    margin-right: 8px;
    color: var(--g);
}

.cart-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1.5px solid var(--bd);
    transition: background 0.15s;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--bg2);
}

.cart-item__img {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: var(--r16);
    background: var(--bg3);
    object-fit: cover;
}

.cart-item__info {
    min-width: 0;
    flex: 1;
}

.cart-item__name {
    margin-bottom: 4px;
    color: var(--tx);
    font-size: 0.95rem;
    font-weight: 700;
}

.cart-item__desc {
    margin-bottom: 10px;
    color: var(--tx3);
    font-size: 0.78rem;
    line-height: 1.5;
}

.cart-item__price {
    color: var(--tx2);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.cart-qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    overflow: hidden;
    border: 1.5px solid var(--bd);
    border-radius: var(--r8);
}

.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: #fff;
    color: var(--tx2);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.cart-qty-btn:hover {
    background: var(--g4);
    color: var(--g);
}

.cart-qty-input {
    width: 40px;
    height: 34px;
    border: none;
    border-right: 1.5px solid var(--bd);
    border-left: 1.5px solid var(--bd);
    background: #fff;
    color: var(--tx);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    appearance: none;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.cart-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cart-item-subtotal {
    color: var(--tx);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.cart-item__actions,
.cart-update-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item__actions {
    margin-top: 8px;
}

.cart-update-btn,
.cart-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--r8);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-update-btn {
    border: 1.5px solid var(--bd);
    background: #fff;
    color: var(--tx2);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.cart-update-btn:hover {
    border-color: var(--g);
    background: var(--g4);
    color: var(--g);
}

.cart-update-btn--spaced {
    margin-left: 10px;
}

.cart-delete-form {
    display: inline;
}

.cart-delete-btn {
    padding: 6px 12px;
    border: 1.5px solid #fee2e2;
    background: #fff;
    color: #ef4444;
    transition: background 0.15s;
}

.cart-delete-btn:hover {
    background: #fee2e2;
}

.cart-summary {
    position: sticky;
    top: 90px;
}

.cart-summary__head {
    padding: 18px 22px;
    border-bottom: 1.5px solid var(--bd);
    color: var(--tx);
    font-size: 0.95rem;
    font-weight: 700;
}

.cart-summary__body {
    padding: 20px 22px;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--tx2);
    font-size: 0.88rem;
}

.cart-summary-row strong {
    color: var(--tx);
    font-weight: 600;
}

.cart-summary-row.total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1.5px solid var(--bd);
    color: var(--tx);
    font-size: 1rem;
    font-weight: 700;
}

.cart-summary-row.total span {
    color: var(--g);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.cart-summary-delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--tx3);
    font-size: 0.75rem;
    line-height: 1.5;
}

.cart-summary-delivery-note i {
    margin-top: 1px;
    color: var(--tx3);
    flex-shrink: 0;
}

.loyalty-block {
    margin-bottom: 16px;
    padding: 14px;
    border: 1.5px solid #fed7aa;
    border-radius: var(--r12);
    background: linear-gradient(135deg, var(--or3), #fef3c7);
}

.loyalty-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.loyalty-block__title,
.loyalty-block__pts {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.loyalty-block__title {
    color: #92400e;
}

.loyalty-block__pts {
    color: var(--or);
}

.loyalty-block p {
    margin: 0;
    color: #78350f;
    font-size: 0.76rem;
    line-height: 1.5;
}

.min-order-warn {
    padding: 14px;
    border: 1.5px solid #fde68a;
    border-radius: var(--r12);
    background: #fef3c7;
    text-align: center;
}

.min-order-warn--spaced {
    margin-top: 16px;
}

.min-order-warn p {
    margin: 0;
    color: #92400e;
    font-size: 0.82rem;
    font-weight: 600;
}

.cart-btn-checkout,
.cart-btn-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cart-btn-checkout {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--r12);
    background: var(--g);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 149, 67, 0.32);
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.cart-btn-checkout--spaced {
    margin-top: 20px;
}

.cart-btn-checkout:hover {
    background: #007836;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 149, 67, 0.4);
}

.cart-btn-continue {
    display: block;
    margin-top: 14px;
    color: var(--tx2);
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s;
}

.cart-btn-continue:hover {
    color: var(--g);
}

.cart-empty {
    max-width: 480px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
}

.cart-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg3);
    font-size: 2.2rem;
}

.cart-empty h2 {
    margin-bottom: 10px;
    color: var(--tx);
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-empty p {
    margin-bottom: 24px;
    color: var(--tx2);
    font-size: 0.9rem;
    line-height: 1.65;
}

.cart-btn-explore {
    display: inline-flex;
    padding: 13px 28px;
    border-radius: var(--r99);
    background: var(--g);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 149, 67, 0.3);
    transition: background 0.18s;
}

.cart-btn-explore:hover {
    background: #007836;
    color: #fff;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
body.bd-checkout-page {
    background: #f5f5f7;
    font-family: 'Inter', system-ui, sans-serif;
}

body.bd-checkout-page .co-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 24px;
    background: #fff;
    border-top: 3px solid #009543;
    border-bottom: 1px solid #e8eaed;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

body.bd-checkout-page .co-nav__inner,
body.bd-checkout-page .co-stepbar__inner,
body.bd-checkout-page .co-page__wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

body.bd-checkout-page .co-nav__inner,
body.bd-checkout-page .co-nav__logo,
body.bd-checkout-page .co-nav__right,
body.bd-checkout-page .co-stepbar__inner,
body.bd-checkout-page .payment-method-row,
body.bd-checkout-page .co-stock-hd,
body.bd-checkout-page .co-step-item,
body.bd-checkout-page .co-summary__hd {
    display: flex;
    align-items: center;
}

body.bd-checkout-page .co-nav__inner {
    justify-content: space-between;
    gap: 12px;
}

body.bd-checkout-page .co-nav__logo {
    gap: 10px;
    text-decoration: none;
}

body.bd-checkout-page .co-nav__logo-img {
    display: block;
    width: auto;
    height: 28px;
}

body.bd-checkout-page .co-nav__logo-name {
    display: none;
    color: #009543;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

body.bd-checkout-page .co-nav__logo-name.is-fallback {
    display: block;
}

body.bd-checkout-page .co-nav__right {
    gap: 10px;
}

body.bd-checkout-page .co-nav__back {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

body.bd-checkout-page .co-nav__back:hover {
    border-color: #009543;
    background: #f0fdf4;
    color: #009543;
}

body.bd-checkout-page .co-nav__back svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

body.bd-checkout-page .co-nav__secure {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #009543;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

body.bd-checkout-page .co-nav__secure svg {
    width: 11px;
    height: 11px;
}

body.bd-checkout-page .co-stepbar {
    padding: 0 24px;
    background: #fff;
    border-bottom: 1px solid #e8eaed;
}

body.bd-checkout-page .co-step-item {
    gap: 8px;
    padding: 13px 0;
}

body.bd-checkout-page .co-step-wire {
    flex: 1;
    min-width: 20px;
    align-self: center;
    height: 1.5px;
    margin: 0 12px;
}

body.bd-checkout-page .co-step-wire--done {
    background: #009543;
}

body.bd-checkout-page .co-step-wire--idle {
    background: #e2e8f0;
}

body.bd-checkout-page .co-step-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    transition: box-shadow 0.2s;
}

body.bd-checkout-page .co-step-node--done,
body.bd-checkout-page .co-step-node--active {
    background: #009543;
    color: #fff;
}

body.bd-checkout-page .co-step-node--active {
    box-shadow: 0 0 0 4px rgba(0, 149, 67, 0.16);
}

body.bd-checkout-page .co-step-node--idle {
    background: #f1f5f9;
    color: #94a3b8;
}

body.bd-checkout-page .co-step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
}

body.bd-checkout-page .co-step-text--done,
body.bd-checkout-page .co-step-text--active {
    color: #009543;
}

body.bd-checkout-page .co-step-text--idle {
    color: #94a3b8;
}

body.bd-checkout-page .co-page {
    padding: 24px 0 96px;
    background: #f5f5f7;
}

body.bd-checkout-page .co-page__wrap {
    padding: 0 24px;
}

body.bd-checkout-page .co-layout {
    display: grid;
    grid-template-columns: 1fr 368px;
    gap: 22px;
    align-items: start;
}

body.bd-checkout-page .co-main {
    min-width: 0;
}

body.bd-checkout-page .co-alert {
    margin-bottom: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
}

body.bd-checkout-page .co-alert--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

body.bd-checkout-page .co-alert ul {
    margin: 4px 0 0;
    padding-left: 18px;
}

body.bd-checkout-page .co-stock-wrap {
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid rgba(220, 38, 38, 0.14);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(249, 115, 22, 0.06));
}

body.bd-checkout-page .co-stock-hd {
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

body.bd-checkout-page .co-stock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #dc2626, #fb923c);
    color: #fff;
    font-size: 0.82rem;
}

body.bd-checkout-page .co-stock-title,
body.bd-checkout-page .co-card__title,
body.bd-checkout-page .co-rname,
body.bd-checkout-page .co-grand__lbl,
body.bd-checkout-page .payment-method-title,
body.bd-checkout-page .co-summary__title,
body.bd-checkout-page .co-multi-title {
    font-family: 'Poppins', sans-serif;
}

body.bd-checkout-page .co-stock-title {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
}

body.bd-checkout-page .co-stock-sub {
    margin-top: 3px;
    color: #475569;
    font-size: 0.8rem;
}

body.bd-checkout-page .co-stock-card {
    margin-top: 8px;
    padding: 12px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    background: #fff;
}

body.bd-checkout-page .co-stock-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

body.bd-checkout-page .co-rupture {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.7rem;
    font-weight: 800;
}

body.bd-checkout-page .co-suggests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

body.bd-checkout-page .co-suggest-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

body.bd-checkout-page .co-card,
body.bd-checkout-page .co-summary-card {
    overflow: hidden;
    background: #fff;
}

body.bd-checkout-page .co-card {
    margin-bottom: 14px;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

body.bd-checkout-page .co-card__hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 14px;
    border-bottom: 1px solid #f1f5f9;
}

body.bd-checkout-page .co-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: #f0fdf4;
    color: #009543;
    font-size: 0.8rem;
}

body.bd-checkout-page .co-card__title {
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
}

body.bd-checkout-page .co-card__body {
    padding: 18px 20px;
}

body.bd-checkout-page .co-label {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

body.bd-checkout-page .co-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

body.bd-checkout-page .co-input:focus {
    outline: none;
    border-color: #009543;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.1);
}

body.bd-checkout-page .co-input--disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

body.bd-checkout-page .co-input--area {
    min-height: 80px;
    resize: vertical;
}

body.bd-checkout-page .co-field {
    margin-bottom: 13px;
}

body.bd-checkout-page .co-field:last-child {
    margin-bottom: 0;
}

body.bd-checkout-page .co-grid2,
body.bd-checkout-page .co-tip-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

body.bd-checkout-page .co-grid2 {
    gap: 12px;
}

body.bd-checkout-page .co-tip-promo-grid {
    gap: 14px;
}

body.bd-checkout-page .co-inline {
    display: flex;
    gap: 8px;
}

body.bd-checkout-page .co-inline .co-input {
    flex: 1;
}

body.bd-checkout-page .co-hint,
body.bd-checkout-page .co-map-status,
body.bd-checkout-page .co-schedule-hint {
    color: #94a3b8;
    font-size: 0.74rem;
}

body.bd-checkout-page .co-hint {
    margin-top: 5px;
}

body.bd-checkout-page .co-fulfill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px;
}

body.bd-checkout-page .fulfillment-option {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

body.bd-checkout-page .fulfillment-option:hover {
    border-color: #86efac;
    background: #fafff9;
}

body.bd-checkout-page .fulfillment-option.is-active {
    border-color: #009543;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.08);
}

body.bd-checkout-page .co-ff-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 4px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.8rem;
    transition: background 0.15s, color 0.15s;
}

body.bd-checkout-page .fulfillment-option.is-active .co-ff-icon {
    background: #dcfce7;
    color: #009543;
}

body.bd-checkout-page .co-ff-title {
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
}

body.bd-checkout-page .co-ff-desc {
    color: #64748b;
    font-size: 0.74rem;
    line-height: 1.4;
}

body.bd-checkout-page .co-ff-radio {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.15s;
}

body.bd-checkout-page .fulfillment-option.is-active .co-ff-radio {
    border-color: #009543;
}

body.bd-checkout-page .fulfillment-option.is-active .co-ff-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #009543;
}

body.bd-checkout-page .fulfillment-option input[type=radio] {
    display: none;
}

body.bd-checkout-page .co-schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
}

body.bd-checkout-page .co-schedule-label {
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 600;
}

body.bd-checkout-page .co-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    cursor: pointer;
}

body.bd-checkout-page .co-toggle input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

body.bd-checkout-page .co-toggle__track {
    position: relative;
    display: block;
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: #e2e8f0;
    transition: background 0.2s;
}

body.bd-checkout-page .co-toggle input:checked ~ .co-toggle__track {
    background: #009543;
}

body.bd-checkout-page .co-toggle__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    pointer-events: none;
}

body.bd-checkout-page .co-toggle input:checked ~ .co-toggle__track .co-toggle__thumb {
    transform: translateX(18px);
}

body.bd-checkout-page #scheduleOrderPanel {
    display: none;
    gap: 12px;
    padding: 0 20px 16px;
}

body.bd-checkout-page .co-hidden {
    display: none !important;
}

body.bd-checkout-page .co-field--spaced {
    margin-top: 13px;
}

body.bd-checkout-page .co-field-error {
    color: #ef4444;
    font-size: 0.78rem;
}

body.bd-checkout-page .co-stock-product {
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
}

body.bd-checkout-page .co-stock-meta {
    margin-top: 2px;
    color: #64748b;
    font-size: 0.76rem;
}

body.bd-checkout-page .co-map-wrap {
    height: 240px;
    overflow: hidden;
    margin-top: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
}

body.bd-checkout-page .co-map-canvas {
    width: 100%;
    height: 240px;
}

body.bd-checkout-page .co-map-helpers {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

body.bd-checkout-page .co-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 11px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

body.bd-checkout-page .co-map-btn:hover {
    border-color: #009543;
    background: #f0fdf4;
    color: #009543;
}

body.bd-checkout-page .co-map-status {
    margin-top: 7px;
    color: var(--gray-500);
}

body.bd-checkout-page .co-map-status.is-error {
    color: var(--error);
}

body.bd-checkout-page .co-map-fallback {
    padding: 1rem;
    color: #6b7280;
}

body.bd-checkout-page .co-precision-alert {
    display: none;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

body.bd-checkout-page .co-precision-alert.is-visible {
    display: flex;
}

body.bd-checkout-page .co-precision-alert--warn {
    border: 1px solid #fdba74;
    background: #fff7ed;
    color: #9a3412;
}

body.bd-checkout-page .co-precision-alert--ok {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
}

body.bd-checkout-page .checkout-suggestions {
    position: relative;
    z-index: 50;
    display: none;
    overflow: hidden;
    margin-top: 4px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.bd-checkout-page .checkout-suggestions.is-visible {
    display: block;
}

body.bd-checkout-page .checkout-suggestion-item {
    display: block;
    width: 100%;
    padding: 9px 14px;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: transparent;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    text-align: left;
    cursor: pointer;
}

body.bd-checkout-page .checkout-suggestion-item:last-child {
    border-bottom: none;
}

body.bd-checkout-page .checkout-suggestion-item:hover {
    background: #f0fdf4;
    color: #009543;
}

body.bd-checkout-page .co-pickup-info {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

body.bd-checkout-page .co-pickup-info__lbl,
body.bd-checkout-page .co-rcount,
body.bd-checkout-page .co-item__desc,
body.bd-checkout-page .co-item__qty {
    color: #94a3b8;
}

body.bd-checkout-page .co-pickup-info__lbl {
    margin-bottom: 3px;
    font-size: 0.72rem;
}

body.bd-checkout-page .co-pickup-info__name {
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
}

body.bd-checkout-page .co-pickup-info__addr {
    margin-top: 3px;
    color: #475569;
    font-size: 0.8rem;
}

body.bd-checkout-page .co-map-btn--fixed {
    flex-shrink: 0;
}

body.bd-checkout-page .co-voucher-btn {
    padding: 10px 13px;
    border: none;
    border-radius: 10px;
    background: #009543;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

body.bd-checkout-page .co-voucher-btn:hover,
body.bd-checkout-page .co-voucher-btn.is-applied {
    background: #007836;
}

body.bd-checkout-page .payment-methods-card {
    margin-bottom: 14px;
}

body.bd-checkout-page .payment-methods-title {
    display: none;
}

body.bd-checkout-page .payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

body.bd-checkout-page .payment-method-row {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.15s;
}

body.bd-checkout-page .payment-method-row:hover {
    border-color: #86efac;
    box-shadow: 0 2px 8px rgba(0, 149, 67, 0.08);
}

body.bd-checkout-page .payment-method-row.is-active {
    border-color: #009543;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.07);
}

body.bd-checkout-page .payment-method-row.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

body.bd-checkout-page .payment-method-input {
    display: none;
}

body.bd-checkout-page .payment-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    overflow: hidden;
    margin-top: 1px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
}

body.bd-checkout-page .payment-method-icon--mtn,
body.bd-checkout-page .payment-method-icon--airtel {
    padding: 3px;
}

body.bd-checkout-page .payment-method-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.bd-checkout-page .payment-method-copy {
    min-width: 0;
    flex: 1;
}

body.bd-checkout-page .payment-method-title {
    margin: 0 0 2px;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
}

body.bd-checkout-page .payment-method-description {
    margin: 0;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.35;
}

body.bd-checkout-page .payment-method-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    flex-shrink: 0;
    margin-top: 3px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.15s;
}

body.bd-checkout-page .payment-method-row.is-active .payment-method-dot {
    border-color: #009543;
}

body.bd-checkout-page .payment-method-row.is-active .payment-method-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #009543;
}

body.bd-checkout-page .co-phone-wrap {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

body.bd-checkout-page .co-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.bd-checkout-page .co-payment-operator-hint {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 0.76rem;
}

body.bd-checkout-page .co-payment-operator-hint.is-detected {
    color: var(--gray-700);
}

body.bd-checkout-page #paymentOperatorLogoWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

body.bd-checkout-page #paymentOperatorLogo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.bd-checkout-page .co-loyalty__input {
    width: 14px;
    height: 14px;
    accent-color: #009543;
}

body.bd-checkout-page .co-voucher-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

body.bd-checkout-page .co-voucher-row__label,
body.bd-checkout-page .co-voucher-row__value {
    color: #059669;
}

body.bd-checkout-page .co-voucher-row__label {
    font-weight: 600;
}

body.bd-checkout-page .co-voucher-row__value {
    font-weight: 700;
}

body.bd-checkout-page .co-voucher-success {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: #009543;
    color: #fff;
    font-size: 0.875rem;
}

body.bd-checkout-page .co-summary-card {
    position: sticky;
    top: 80px;
    border: 1px solid #e8eaed;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

body.bd-checkout-page .co-summary__hd {
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
}

body.bd-checkout-page .co-summary__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
}

body.bd-checkout-page .co-summary__title svg {
    color: #009543;
    flex-shrink: 0;
}

body.bd-checkout-page .co-summary__edit {
    padding: 4px 10px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #009543;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

body.bd-checkout-page .co-summary__edit:hover {
    background: #dcfce7;
}

body.bd-checkout-page .co-summary__body {
    padding: 16px 18px;
}

body.bd-checkout-page .co-items-scroll {
    max-height: 310px;
    overflow-y: auto;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

body.bd-checkout-page .co-items-scroll::-webkit-scrollbar {
    width: 4px;
}

body.bd-checkout-page .co-items-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

body.bd-checkout-page .co-items-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

body.bd-checkout-page .co-rgroup {
    margin-bottom: 9px;
    padding: 13px;
    border: 1px solid #f1f5f9;
    border-radius: 13px;
    background: #fafafa;
}

body.bd-checkout-page .co-rgroup__hd {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid #f1f5f9;
}

body.bd-checkout-page .co-rlogo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
    border-radius: 9px;
    object-fit: cover;
}

body.bd-checkout-page .co-rinfo {
    min-width: 0;
    flex: 1;
}

body.bd-checkout-page .co-rname {
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
}

body.bd-checkout-page .co-rcount {
    margin-top: 1px;
    font-size: 0.72rem;
}

body.bd-checkout-page .co-rsubtotal {
    flex-shrink: 0;
    text-align: right;
}

body.bd-checkout-page .co-rsubtotal__val {
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

body.bd-checkout-page .co-item {
    display: flex;
    gap: 9px;
    padding: 6px 0;
    border-bottom: 1px solid #f8fafc;
}

body.bd-checkout-page .co-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

body.bd-checkout-page .co-item__img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 9px;
    object-fit: cover;
}

body.bd-checkout-page .co-item__body {
    min-width: 0;
    flex: 1;
}

body.bd-checkout-page .co-item__name {
    margin: 0;
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

body.bd-checkout-page .co-item__desc {
    margin: 2px 0 0;
    font-size: 0.7rem;
    line-height: 1.3;
}

body.bd-checkout-page .co-item__qty {
    margin-top: 3px;
    font-size: 0.7rem;
}

body.bd-checkout-page .co-item__price {
    align-self: flex-start;
    flex-shrink: 0;
    margin: 0;
    color: #009543;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

body.bd-checkout-page .co-multi-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding: 11px 13px;
    border: 1px solid #fde68a;
    border-radius: 11px;
    background: #fffbeb;
}

body.bd-checkout-page .co-multi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f59e0b;
    color: #fff;
    font-size: 0.76rem;
}

body.bd-checkout-page .co-multi-title {
    margin-bottom: 2px;
    color: #78350f;
    font-size: 0.8rem;
    font-weight: 700;
}

body.bd-checkout-page .co-multi-sub {
    color: #92400e;
    font-size: 0.74rem;
    line-height: 1.4;
}

body.bd-checkout-page .co-totals {
    padding-top: 11px;
    border-top: 1.5px solid #f1f5f9;
}

body.bd-checkout-page .co-trow,
body.bd-checkout-page .co-grand,
body.bd-checkout-page .co-loyalty__hd,
body.bd-checkout-page #loyaltyDiscountRow,
body.bd-checkout-page .co-mcta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.bd-checkout-page .co-trow {
    margin-bottom: 7px;
}

body.bd-checkout-page .co-trow__lbl {
    color: #64748b;
    font-size: 0.8rem;
}

body.bd-checkout-page .co-trow__val {
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 600;
}

body.bd-checkout-page .co-grand {
    margin-top: 6px;
    padding-top: 11px;
    border-top: 2px solid #e2e8f0;
}

body.bd-checkout-page .co-grand__lbl {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
}

body.bd-checkout-page .co-grand__val {
    color: #009543;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

body.bd-checkout-page .co-loyalty {
    margin: 10px 0;
    padding: 11px 13px;
    border: 1px solid #bbf7d0;
    border-radius: 11px;
    background: #f0fdf4;
}

body.bd-checkout-page .co-loyalty__title,
body.bd-checkout-page .co-loyalty__cb {
    display: flex;
    align-items: center;
    gap: 5px;
}

body.bd-checkout-page .co-loyalty__title {
    color: #009543;
    font-size: 0.78rem;
    font-weight: 700;
}

body.bd-checkout-page .co-loyalty__cb {
    cursor: pointer;
    color: #009543;
    font-size: 0.76rem;
    font-weight: 600;
}

body.bd-checkout-page #loyaltyDiscountRow {
    display: none;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #bbf7d0;
}

body.bd-checkout-page .co-ld-lbl,
body.bd-checkout-page .co-ld-val {
    color: #009543;
    font-size: 0.74rem;
}

body.bd-checkout-page .co-ld-val {
    font-weight: 700;
}

body.bd-checkout-page #checkoutSubmitBtn,
body.bd-checkout-page .co-mcta-btn,
body.bd-checkout-page .payment-status-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #009543;
    color: #fff;
}

body.bd-checkout-page #checkoutSubmitBtn {
    width: 100%;
    margin-top: 12px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 149, 67, 0.3);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

body.bd-checkout-page #checkoutSubmitBtn:hover {
    background: #007836;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 149, 67, 0.38);
}

body.bd-checkout-page #checkoutSubmitBtn:active {
    transform: translateY(0);
}

body.bd-checkout-page .co-ssl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 0.7rem;
    text-align: center;
}

body.bd-checkout-page .co-ssl svg {
    color: #009543;
    flex-shrink: 0;
}

body.bd-checkout-page .co-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: none;
    padding: 12px 16px 16px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

body.bd-checkout-page .co-mcta-row {
    margin-bottom: 10px;
}

body.bd-checkout-page .co-mcta-lbl {
    color: #64748b;
    font-size: 0.74rem;
}

body.bd-checkout-page .co-mcta-val {
    color: #009543;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

body.bd-checkout-page .co-mcta-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 149, 67, 0.3);
}

body.bd-checkout-page .payment-status-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.78);
}

body.bd-checkout-page .payment-status-card {
    position: relative;
    width: 360px;
    max-width: 100%;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(17, 24, 39, 0.94), rgba(30, 41, 59, 0.94));
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: paymentCardFloat 4s ease-in-out infinite;
}

body.bd-checkout-page .payment-status-card::before,
body.bd-checkout-page .payment-status-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

body.bd-checkout-page .payment-status-card::before {
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.28), transparent 70%);
    animation: paymentGlowPulse 3s ease-in-out infinite;
}

body.bd-checkout-page .payment-status-card::after {
    bottom: -70px;
    left: -70px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
    animation: paymentGlowPulse 4s ease-in-out infinite 1s;
}

body.bd-checkout-page .payment-status-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.bd-checkout-page .payment-status-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(34, 197, 94, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: paymentWaveExpand 2.5s infinite;
}

body.bd-checkout-page .payment-status-wave:nth-child(2) {
    animation-delay: 0.8s;
}

body.bd-checkout-page .payment-status-wave:nth-child(3) {
    animation-delay: 1.6s;
}

body.bd-checkout-page .payment-status-body {
    position: relative;
    z-index: 1;
}

body.bd-checkout-page .payment-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    font-size: 13px;
}

body.bd-checkout-page .payment-status-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.8);
    animation: paymentBadgePing 1.8s infinite;
}

body.bd-checkout-page .payment-status-title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
}

body.bd-checkout-page .payment-status-subtitle {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

body.bd-checkout-page .payment-status-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

body.bd-checkout-page .payment-status-label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.bd-checkout-page .payment-status-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

body.bd-checkout-page .payment-status-status-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

body.bd-checkout-page .payment-status-loader {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #22c55e;
    border-radius: 50%;
    animation: paymentSpin 1s linear infinite;
}

body.bd-checkout-page .payment-status-card.is-paid .payment-status-badge {
    border-color: rgba(16, 185, 129, 0.42);
    background: rgba(16, 185, 129, 0.18);
}

body.bd-checkout-page .payment-status-card.is-paid .payment-status-badge-dot,
body.bd-checkout-page .payment-status-card.is-paid .payment-status-loader {
    background: #009543;
    border-top-color: #009543;
}

body.bd-checkout-page .payment-status-card.is-failed .payment-status-badge {
    border-color: rgba(239, 68, 68, 0.42);
    background: rgba(239, 68, 68, 0.18);
}

body.bd-checkout-page .payment-status-card.is-failed .payment-status-badge-dot {
    background: #ef4444;
    box-shadow: none;
    animation: none;
}

body.bd-checkout-page .payment-status-card.is-failed .payment-status-loader {
    border-top-color: #ef4444;
    animation-duration: 1.6s;
}

body.bd-checkout-page .payment-status-card.is-timeout .payment-status-badge {
    border-color: rgba(245, 158, 11, 0.42);
    background: rgba(245, 158, 11, 0.18);
}

body.bd-checkout-page .payment-status-card.is-timeout .payment-status-badge-dot,
body.bd-checkout-page .payment-status-card.is-timeout .payment-status-loader {
    background: #f59e0b;
    border-top-color: #f59e0b;
}

body.bd-checkout-page .payment-status-card.is-processing .payment-status-badge,
body.bd-checkout-page .payment-status-card.is-initiated .payment-status-badge {
    border-color: rgba(59, 130, 246, 0.42);
    background: rgba(59, 130, 246, 0.18);
}

body.bd-checkout-page .payment-status-card.is-processing .payment-status-badge-dot,
body.bd-checkout-page .payment-status-card.is-initiated .payment-status-badge-dot {
    background: #3b82f6;
}

body.bd-checkout-page .payment-status-card.is-processing .payment-status-loader,
body.bd-checkout-page .payment-status-card.is-initiated .payment-status-loader {
    border-top-color: #3b82f6;
}

body.bd-checkout-page .payment-status-card.is-expired .payment-status-badge {
    border-color: rgba(249, 115, 22, 0.42);
    background: rgba(249, 115, 22, 0.18);
}

body.bd-checkout-page .payment-status-card.is-expired .payment-status-badge-dot {
    background: #ff5a1f;
    box-shadow: none;
    animation: none;
}

body.bd-checkout-page .payment-status-card.is-expired .payment-status-loader {
    border-top-color: #ff5a1f;
}

body.bd-checkout-page .payment-status-actions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

body.bd-checkout-page .payment-status-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e, #009543);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

body.bd-checkout-page .payment-status-button:hover {
    transform: translateY(-2px);
}

body.bd-checkout-page .payment-status-button:active {
    transform: scale(0.98);
}

body.bd-checkout-page .payment-status-button:disabled {
    opacity: 0.75;
    cursor: wait;
}

body.bd-checkout-page .payment-status-close {
    display: inline-flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
}

@keyframes paymentCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes paymentGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes paymentBadgePing {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes paymentSpin {
    to { transform: rotate(360deg); }
}

@keyframes paymentWaveExpand {
    0% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

@media (max-width: 1024px) {
    .co-layout {
        grid-template-columns: 1fr 330px;
    }
}

@media (max-width: 900px) {
    .cart-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item__right {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .co-layout {
        grid-template-columns: 1fr;
    }

    .co-sidebar {
        display: none;
    }

    .co-mobile-cta {
        display: block;
    }

    .co-page {
        padding: 16px 0 110px;
    }

    .co-page__wrap {
        padding: 0 14px;
    }

    .co-nav {
        height: 56px;
        padding: 0 14px;
    }

    .co-stepbar {
        padding: 0 14px;
    }

    .co-card__body {
        padding: 14px 16px;
    }

    .co-card__hd {
        padding: 14px 16px 12px;
    }

    .co-fulfill-grid,
    .co-tip-promo-grid,
    .co-grid2 {
        grid-template-columns: 1fr;
    }

    .co-fulfill-grid {
        padding: 12px 16px;
    }

    .co-schedule-row {
        padding: 14px 16px;
    }

    #scheduleOrderPanel {
        padding: 0 16px 14px;
    }
}

@media (max-width: 600px) {
    .cstep__label {
        display: none;
    }
}

@media (max-width: 480px) {
    .co-nav__secure {
        display: none;
    }

    .co-fulfill-grid {
        grid-template-columns: 1fr;
    }

    .payment-status-card {
        padding: 22px;
        border-radius: 20px;
    }

    .payment-status-title {
        font-size: 22px;
    }

    .payment-status-value {
        font-size: 16px;
    }
}


/* ============================================
   HUB SECTION — restauré depuis backup 20260516
   ============================================ */
.hub-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #060f0a 0%, #0a1a0e 50%, #060f0a 100%);
}

.hub-intro {
    max-width: 660px;
    margin: 0 auto 64px;
    padding: 0 24px;
    text-align: center;
}

.hub-intro .sec__tag {
    justify-content: center;
    background: rgba(0, 149, 67, 0.20);
    border: 1px solid rgba(0, 149, 67, 0.3);
    color: #86efac;
}

.hub-intro h2 {
    margin: 14px 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
}

.hub-intro p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.975rem;
    line-height: 1.75;
}

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

.hub-card {
    position: relative;
    overflow: hidden;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r20);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hub-card::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--g), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hub-card--active {
    border-color: rgba(0, 149, 67, 0.4);
    background: linear-gradient(135deg, rgba(0, 149, 67, 0.25) 0%, rgba(21, 128, 61, 0.15) 100%);
    box-shadow: 0 0 0 1px rgba(0, 149, 67, 0.2), 0 8px 32px rgba(0, 149, 67, 0.15);
}

.hub-card--active::after {
    opacity: 1;
}

.hub-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 3px 10px;
    border-radius: var(--r99);
    font-size: 0.65rem;
    font-weight: 700;
}

.hub-badge.active-b { background: rgba(0, 149, 67, 0.3); color: #4ade80; border: 1px solid rgba(0, 149, 67, 0.4); }
.hub-badge.coming-b { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.45); border: 1px solid rgba(255, 255, 255, 0.1); }
.hub-badge.progress-b { background: rgba(249, 115, 22, 0.2); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }

.hub-card__name {
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.hub-card__desc {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.6;
}

.hub-card__link:hover {
    opacity: 0.85;
}

.hub-card__link.disabled {
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
}


/* ============================================
   JOURNEY SECTION — restauré depuis backup 20260516
   ============================================ */
.journey-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #fff;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--g), var(--g2), var(--or), var(--g2), var(--g));
    background-size: 200% 100%;
    animation: gradShift 4s linear infinite;
}

@keyframes gradShift {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.journey-intro {
    max-width: 620px;
    margin: 0 auto 64px;
    padding: 0 24px;
    text-align: center;
}

.journey-intro h2 {
    margin: 12px 0;
    color: var(--tx);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
}

.journey-intro p {
    color: var(--tx2);
    font-size: 1rem;
    line-height: 1.75;
}

.journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    z-index: 0;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--g3), var(--g), var(--g2), var(--or), var(--g3));
    background-size: 200% 100%;
    animation: gradShift 3s linear infinite;
}

.jstep {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.jstep.on {
    opacity: 1;
    transform: none;
}

.jstep__bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 104px;
    height: 104px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    cursor: default;
    transition: transform 0.25s, box-shadow 0.25s;
}

.jstep__bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.jstep__bubble::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: bubblePulse 2.5s ease-in-out infinite;
}

@keyframes bubblePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.jstep__icon {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    line-height: 1;
}

.jstep__step-label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.jstep:nth-child(1) .jstep__bubble { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.jstep:nth-child(2) .jstep__bubble { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.jstep:nth-child(3) .jstep__bubble { background: linear-gradient(135deg, #d97706, #f59e0b); }
.jstep:nth-child(4) .jstep__bubble { background: linear-gradient(135deg, var(--g), var(--g2)); }
.jstep:nth-child(5) .jstep__bubble { background: linear-gradient(135deg, #007836, #009543); }

.jstep:nth-child(3) .jstep__bubble::before,
.jstep:nth-child(4) .jstep__bubble::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: ringPulse 1.8s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.jstep__content {
    text-align: center;
}

.jstep__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--g);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
}

.jstep__title {
    margin-bottom: 6px;
    color: var(--tx);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.jstep__body {
    color: var(--tx2);
    font-size: 0.78rem;
    line-height: 1.55;
}

.jstep__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--r99);
    font-size: 0.68rem;
    font-weight: 700;
}

.status--done { background: var(--g3); color: var(--g); }
.status--progress { background: #fef3c7; color: #92400e; animation: statusBlink 1.2s ease-in-out infinite; }
.status--pending { background: var(--bg3); color: var(--tx3); }

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.journey-mockup {
    position: relative;
    max-width: 360px;
    margin: 56px auto 0;
    padding: 0 24px;
}

.jmock {
    overflow: hidden;
    border: 2px solid var(--bd);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--s4);
}

.jmock__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    background: var(--tx);
}

.jmock__bar span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.jmock__bar i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.jmock__body {
    padding: 16px;
}

.jmock__tracker {
    margin-bottom: 14px;
    padding: 16px;
    border-radius: var(--r16);
    background: var(--bg3);
}

.jmock__trk-title {
    margin-bottom: 12px;
    color: var(--tx);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.jmock__step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bd);
}

.jmock__step:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.jmock__step-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 0.75rem;
}

.jmock__step-ic.done { background: var(--g); color: #fff; }
.jmock__step-ic.active { background: var(--or); color: #fff; animation: statusBlink 1s infinite; }
.jmock__step-ic.wait { border: 1.5px solid var(--bd); background: var(--bg3); color: var(--tx3); }

.jmock__step-txt {
    flex: 1;
    color: var(--tx);
    font-size: 0.78rem;
    font-weight: 600;
}

.jmock__step-t {
    color: var(--tx3);
    font-size: 0.68rem;
}

.jmock__eta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding: 12px 16px;
    border-radius: var(--r12);
    background: var(--g);
    color: #fff;
}

.jmock__eta-label {
    opacity: 0.85;
    font-size: 0.8rem;
}

.jmock__eta-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Curseur custom supprimé — le curseur natif du navigateur est conservé */
#bdHomeCursor { display: none !important; }

.rev,
.rev-l {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.rev-l {
    transform: translateX(-28px);
}

.rev.on,
.rev-l.on {
    opacity: 1;
    transform: none;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
body.bd-search-page {
    background: #f4f6f9 !important;
}

body.bd-search-page .search-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%, #f0fdf4 100%);
}

body.bd-search-page .search-hero-copy {
    max-width: 760px;
}

body.bd-search-page .search-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.bd-search-page .search-hero-title {
    margin: 1rem 0 0.5rem;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.02;
    color: #0f172a;
}

body.bd-search-page .search-hero-description {
    margin: 0;
    color: #475569;
    font-size: 1.05rem;
}

body.bd-search-page .search-page-shell {
    padding: 1rem 0 3rem;
}

body.bd-search-page .search-panel {
    border-radius: 24px;
}

body.bd-search-page .search-panel-title {
    margin-bottom: 1rem;
    font-weight: 900;
    color: #0f172a;
}

body.bd-search-page .search-filter-form .form-control {
    border-radius: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
}

body.bd-search-page .search-filter-form .form-control:focus {
    border-color: #009543 !important;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.1) !important;
    outline: none;
}

body.bd-search-page .search-filter-submit,
body.bd-search-page .search-filter-reset {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

body.bd-search-page .search-filter-submit {
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
}

body.bd-search-page .search-filter-reset {
    padding: 0.5rem;
    background: transparent;
    color: #64748b;
    font-weight: 600;
}

body.bd-search-page .search-reco-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

body.bd-search-page .search-reco-thumb {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

body.bd-search-page .search-reco-copy {
    min-width: 0;
}

body.bd-search-page .search-reco-name {
    font-weight: 800;
    color: #0f172a;
}

body.bd-search-page .search-reco-meta {
    display: block;
    color: #6b7280;
}

body.bd-search-page .search-reco-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

body.bd-search-page .search-reco-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #007836;
    font-size: 0.75rem;
    font-weight: 700;
}

body.bd-search-page .search-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

body.bd-search-page .search-section-head--spaced {
    margin-top: 2rem;
}

body.bd-search-page .search-section-title {
    margin: 0;
    font-weight: 900;
    color: #0f172a;
}

body.bd-search-page .search-section-count {
    color: #64748b;
}

body.bd-search-page .search-result-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    border: 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.bd-search-page .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

body.bd-search-page .search-result-media {
    position: relative;
    height: 180px;
    background: #f8fafc;
}

body.bd-search-page .search-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.bd-search-page .search-result-score {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

body.bd-search-page .search-result-score--promo {
    background: #009543;
}

body.bd-search-page .search-result-body {
    padding: 1.25rem;
}

body.bd-search-page .search-result-title {
    margin: 0 0 0.25rem;
    font-weight: 900;
    color: #0f172a;
}

body.bd-search-page .search-result-meta {
    margin-bottom: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.bd-search-page .search-result-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

body.bd-search-page .search-result-chip {
    display: inline-flex;
    align-items: center;
    max-width: 70%;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.bd-search-page .search-result-rating {
    color: #009543;
    white-space: nowrap;
}

body.bd-search-page .search-result-price-group {
    min-width: 0;
}

body.bd-search-page .search-result-price {
    color: #0f172a;
}

body.bd-search-page .search-result-price-old {
    color: #64748b;
    font-size: 0.8rem;
}

body.bd-search-page .search-empty-alert {
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

/* ============================================
   CUISINE PAGE
   ============================================ */
body.bd-cuisine-page .cuisine-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    min-height: calc(100vh - 80px);
}

body.bd-cuisine-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

body.bd-cuisine-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

body.bd-cuisine-page .page-header h1 span {
    color: var(--primary);
}

body.bd-cuisine-page .page-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

body.bd-cuisine-page .breadcrumb-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

body.bd-cuisine-page .breadcrumb-modern a {
    color: var(--gray-500);
    text-decoration: none;
}

body.bd-cuisine-page .breadcrumb-modern a:hover {
    color: var(--primary);
}

body.bd-cuisine-page .breadcrumb-modern .separator {
    color: var(--gray-300);
}

body.bd-cuisine-page .breadcrumb-modern .current {
    color: var(--primary);
    font-weight: 600;
}

body.bd-cuisine-page .restaurants-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

body.bd-cuisine-page .restaurant-card {
    display: block;
    text-decoration: none;
}

body.bd-cuisine-page .cuisine-restaurant-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

body.bd-cuisine-page .restaurant-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

body.bd-cuisine-page .restaurant-content {
    padding: 1.25rem;
}

body.bd-cuisine-page .restaurant-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

body.bd-cuisine-page .restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

body.bd-cuisine-page .restaurant-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

body.bd-cuisine-page .restaurant-meta i {
    color: var(--primary);
}

body.bd-cuisine-page .rating {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(251, 191, 36, 0.1);
    color: #b45309;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

body.bd-cuisine-page .rating i {
    color: #fbbf24;
}

body.bd-cuisine-page .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

body.bd-cuisine-page .empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

body.bd-cuisine-page .empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

body.bd-cuisine-page .empty-state p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

body.bd-cuisine-page .cuisine-page-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #009543;
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* ============================================
   PARTNER PAGE
   ============================================ */
body.bd-partner-page .partner-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #052e16 0%, #009543 100%);
}

body.bd-partner-page .partner-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.bd-partner-page .partner-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-partner-page .partner-hero-description {
    max-width: 600px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.125rem;
}

body.bd-partner-page .partner-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

body.bd-partner-page .partner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

body.bd-partner-page .partner-benefit-card {
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 149, 67, 0.1) 0%, rgba(20, 83, 45, 0.08) 100%);
}

body.bd-partner-page .partner-benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: #009543;
    color: #fff;
    font-size: 1.25rem;
}

body.bd-partner-page .partner-benefit-title {
    margin: 0;
    font-size: 0.9375rem;
    color: #0f172a;
}

body.bd-partner-page .partner-alert {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
    text-align: center;
    color: #fff;
}

body.bd-partner-page .partner-alert.is-success {
    background: #009543;
}

body.bd-partner-page .partner-alert.is-error {
    background: #dc2626;
}

body.bd-partner-page .partner-card {
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

body.bd-partner-page .partner-heading {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #0f172a;
}

body.bd-partner-page .partner-subtitle {
    margin-bottom: 2rem;
    text-align: center;
    color: #64748b;
}

body.bd-partner-page .partner-form {
    display: grid;
    gap: 1.5rem;
}

body.bd-partner-page .partner-section-title {
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
    color: #009543;
    font-size: 1rem;
}

body.bd-partner-page .partner-grid,
body.bd-partner-page .partner-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

body.bd-partner-page .partner-upload-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.bd-partner-page .partner-field {
    display: grid;
    gap: 0.5rem;
}

body.bd-partner-page .partner-label {
    display: block;
    margin: 0;
    color: #334155;
    font-weight: 600;
}

body.bd-partner-page .partner-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.bd-partner-page .partner-input:focus {
    outline: none;
    border-color: #009543;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.1);
}

body.bd-partner-page .partner-upload-trigger {
    padding: 1.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

body.bd-partner-page .partner-upload-trigger:hover {
    border-color: #009543;
    background: #f8fff9;
}

body.bd-partner-page .partner-upload-preview {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 0.5rem;
    border-radius: 14px;
    object-fit: cover;
}

body.bd-partner-page .partner-upload-copy {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
}

body.bd-partner-page .partner-file-input {
    display: none;
}

body.bd-partner-page .partner-terms {
    margin: 0;
}

body.bd-partner-page .partner-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #475569;
}

body.bd-partner-page .partner-terms-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #009543;
}

body.bd-partner-page .partner-terms-link,
body.bd-partner-page .partner-login-link {
    color: #009543;
    font-weight: 600;
    text-decoration: none;
}

body.bd-partner-page .partner-terms-link:hover,
body.bd-partner-page .partner-login-link:hover {
    color: #007836;
}

body.bd-partner-page .partner-submit {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1.5rem;
    background: #009543;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease;
}

body.bd-partner-page .partner-submit:hover {
    background: #007836;
}

body.bd-partner-page .partner-login-note {
    margin-top: 1.5rem;
    text-align: center;
    color: #475569;
}

/* ============================================
   TRACK ORDER PAGE
   ============================================ */
body.bd-track-order-page {
    background: #f4f6f9 !important;
}

body.bd-track-order-page .to-page {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

body.bd-track-order-page .to-shell-boundary {
    max-width: 960px;
    margin: 0 auto;
}

body.bd-track-order-page .to-stack {
    display: grid;
    gap: 1.25rem;
}

body.bd-track-order-page .to-hero {
    padding: 120px 0 40px;
    color: #fff;
    background: linear-gradient(135deg, #052e16 0%, #14532d 50%, #009543 120%);
}

body.bd-track-order-page .to-hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

body.bd-track-order-page .to-hero-eyebrow {
    margin: 0 0 0.6rem;
    opacity: 0.8;
}

body.bd-track-order-page .to-hero-title {
    margin: 0 0 0.5rem;
    font-size: 2.4rem;
    font-weight: 900;
}

body.bd-track-order-page .to-hero-copy {
    margin: 0;
    opacity: 0.9;
    max-width: 680px;
}

body.bd-track-order-page .to-hero-meta {
    text-align: right;
}

body.bd-track-order-page .to-hero-meta-label {
    font-size: 0.9rem;
    opacity: 0.75;
}

body.bd-track-order-page .to-hero-meta-value {
    font-weight: 700;
}

body.bd-track-order-page .to-hero-action {
    margin-top: 0.75rem;
}

body.bd-track-order-page .to-shell {
    padding: 2rem 0 3rem;
    background: #f8fafc;
}

body.bd-track-order-page .to-btn-primary,
body.bd-track-order-page .to-btn-secondary,
body.bd-track-order-page .to-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.bd-track-order-page .to-btn-primary {
    background: #009543;
    color: #fff;
}

body.bd-track-order-page .to-btn-primary:hover {
    background: #007836;
    color: #fff;
}

body.bd-track-order-page .to-btn-secondary {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

body.bd-track-order-page .to-btn-secondary:hover {
    border-color: #009543;
    color: #009543;
}

body.bd-track-order-page .to-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

body.bd-track-order-page .to-card {
    padding: 1.5rem;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

body.bd-track-order-page .to-kpi-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

body.bd-track-order-page .to-kpi-card {
    padding: 1.4rem 1.5rem;
}

body.bd-track-order-page .to-kpi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body.bd-track-order-page .to-kpi-side {
    min-width: 130px;
    text-align: right;
}

body.bd-track-order-page .to-kpi-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.bd-track-order-page .to-kpi-label--plain {
    text-transform: none;
    letter-spacing: normal;
}

body.bd-track-order-page .to-kpi-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
}

body.bd-track-order-page .to-kpi-value--primary {
    font-size: 1.4rem;
    font-weight: 800;
}

body.bd-track-order-page .to-kpi-progress {
    font-size: 1.8rem;
    font-weight: 900;
    color: #009543;
}

body.bd-track-order-page .to-kpi-note {
    margin-top: 0.4rem;
    color: #475569;
}

body.bd-track-order-page .to-kpi-emphasis {
    margin-top: 0.4rem;
    color: #0f172a;
    font-weight: 700;
}

body.bd-track-order-page .to-kpi-subnote {
    margin-top: 0.35rem;
    color: #64748b;
}

body.bd-track-order-page .to-kpi-error {
    margin-top: 0.35rem;
    color: #b91c1c;
}

body.bd-track-order-page .to-progress-track {
    height: 10px;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 999px;
    background: #e5e7eb;
}

body.bd-track-order-page .to-progress-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #009543);
    transition: width 0.8s cubic-bezier(.4,0,.2,1);
}

/* ── Animations suivi commande ────────────────────── */
@keyframes bd-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0,149,67,.45); }
    70%  { box-shadow: 0 0 0 10px rgba(0,149,67,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,149,67,0); }
}
@keyframes bd-blink {
    0%,100% { opacity: 1; }
    50%     { opacity: .35; }
}
@keyframes bd-spin {
    to { transform: rotate(360deg); }
}

body.bd-track-order-page .to-edit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

body.bd-track-order-page .to-edit-banner-label {
    color: #007836;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.bd-track-order-page .to-edit-banner-title {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
}

body.bd-track-order-page .to-timeline {
    display: grid;
    gap: 1rem;
}

body.bd-track-order-page .timeline-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: flex-start;
}

body.bd-track-order-page .timeline-step__index {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #cbd5e1;
    color: #fff;
    font-weight: 800;
}

body.bd-track-order-page .timeline-title {
    color: #94a3b8;
    font-size: 1.05rem;
    font-weight: 800;
}

body.bd-track-order-page .timeline-copy {
    color: #64748b;
}

body.bd-track-order-page .timeline-step.is-done .timeline-step__index {
    background: #009543;
}

body.bd-track-order-page .timeline-step.is-active .timeline-step__index {
    background: #f59e0b;
    animation: bd-pulse-ring 2s infinite;
}

body.bd-track-order-page .timeline-step.is-done .timeline-title {
    color: #0f172a;
}

body.bd-track-order-page .timeline-step.is-active .timeline-title {
    color: #0f172a;
    animation: bd-blink 1.5s ease-in-out infinite;
}

body.bd-track-order-page .timeline-step.is-active .timeline-copy {
    color: #d97706;
    font-weight: 600;
}

body.bd-track-order-page .to-code-panel {
    padding: 1.5rem;
}

body.bd-track-order-page .to-code-panel--pickup {
    border: 1px solid rgba(37, 99, 235, 0.15);
    background: #eff6ff;
}

body.bd-track-order-page .to-code-panel--otp {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

body.bd-track-order-page .to-code-row,
body.bd-track-order-page .to-receipt-head,
body.bd-track-order-page .to-incident-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

body.bd-track-order-page .to-receipt-head,
body.bd-track-order-page .to-incident-row {
    align-items: flex-start;
}

body.bd-track-order-page .to-code-label {
    color: #007836;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.bd-track-order-page .to-code-label--pickup {
    color: #1d4ed8;
}

body.bd-track-order-page .to-code-value {
    color: #14532d;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

body.bd-track-order-page .to-code-value--pickup {
    color: #1e3a8a;
}

body.bd-track-order-page .to-code-copy {
    color: #007836;
}

body.bd-track-order-page .to-code-copy--pickup {
    color: #1d4ed8;
}

body.bd-track-order-page .to-code-side {
    max-width: 280px;
    color: #007836;
}

body.bd-track-order-page .to-code-side--pickup {
    max-width: 320px;
    color: #1d4ed8;
}

body.bd-track-order-page .to-section-heading {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 900;
}

body.bd-track-order-page .to-section-heading--small {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

body.bd-track-order-page .to-receipt-copy {
    margin: 0;
    color: #475569;
}

body.bd-track-order-page .to-verify-form,
body.bd-track-order-page .to-incident-form {
    display: grid;
    gap: 1rem;
}

body.bd-track-order-page .to-verify-form {
    max-width: 420px;
    margin-top: 1rem;
}

body.bd-track-order-page .to-form-field {
    display: grid;
    gap: 0.35rem;
}

body.bd-track-order-page .to-form-label {
    color: #334155;
    font-weight: 700;
}

body.bd-track-order-page .to-form-input {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
}

body.bd-track-order-page .to-form-input:focus {
    outline: none;
    border-color: #009543;
    box-shadow: 0 0 0 3px rgba(0, 149, 67, 0.08);
}

body.bd-track-order-page .to-form-textarea {
    min-height: 106px;
    resize: vertical;
}

body.bd-track-order-page .to-incident-panel {
    border: 1px solid rgba(234, 88, 12, 0.18);
    background: #fff7ed;
}

body.bd-track-order-page .to-incident-title {
    margin: 0 0 0.35rem;
    color: #9a3412;
    font-size: 1.15rem;
    font-weight: 900;
}

body.bd-track-order-page .to-incident-copy {
    margin: 0;
    color: #7c2d12;
}

body.bd-track-order-page .to-incident-meta {
    margin: 0.5rem 0 0;
    color: #9a3412;
    font-size: 0.92rem;
}

body.bd-track-order-page .to-incident-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

body.bd-track-order-page .to-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
}

body.bd-track-order-page .to-order-items,
body.bd-track-order-page .to-side-stack {
    display: grid;
    gap: 1rem;
}

body.bd-track-order-page .to-side-stack {
    gap: 1.25rem;
}

body.bd-track-order-page .to-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.bd-track-order-page .to-order-item-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

body.bd-track-order-page .to-order-item-copy,
body.bd-track-order-page .to-driver-copy {
    flex: 1;
}

body.bd-track-order-page .to-order-item-title,
body.bd-track-order-page .to-driver-name,
body.bd-track-order-page .to-side-value,
body.bd-track-order-page .to-address-value {
    color: #0f172a;
    font-weight: 800;
}

body.bd-track-order-page .to-order-item-meta,
body.bd-track-order-page .to-driver-phone,
body.bd-track-order-page .to-driver-empty,
body.bd-track-order-page .to-side-copy,
body.bd-track-order-page .to-order-summary-label,
body.bd-track-order-page .to-side-label {
    color: #64748b;
}

body.bd-track-order-page .to-order-item-price,
body.bd-track-order-page .to-order-summary-total span:last-child {
    color: #009543;
    font-weight: 800;
}

body.bd-track-order-page .to-order-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

body.bd-track-order-page .to-order-summary-row,
body.bd-track-order-page .to-order-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.bd-track-order-page .to-order-summary-row {
    margin-bottom: 0.45rem;
}

body.bd-track-order-page .to-order-summary-total {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #e5e7eb;
    font-size: 1.1rem;
    font-weight: 800;
}

body.bd-track-order-page .to-order-summary-total span:last-child {
    font-size: 1.2rem;
    font-weight: 900;
}

body.bd-track-order-page .to-side-list {
    display: grid;
    gap: 0.9rem;
}

body.bd-track-order-page .to-side-value,
body.bd-track-order-page .to-side-copy,
body.bd-track-order-page .to-address-value {
    margin-top: 0.35rem;
}

body.bd-track-order-page .to-map {
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    background: #f1f5f9;
}

body.bd-track-order-page .to-map-fallback {
    padding: 1rem;
    color: #64748b;
}

body.bd-track-order-page .to-distance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

body.bd-track-order-page .to-distance-card {
    padding: 0.9rem 1rem;
    border-radius: 14px;
}

body.bd-track-order-page .to-distance-card--restaurant {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

body.bd-track-order-page .to-distance-card--driver {
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: #ecfdf5;
}

body.bd-track-order-page .to-distance-label {
    margin: 0;
    font-size: 0.82rem;
}

body.bd-track-order-page .to-distance-card--restaurant .to-distance-label {
    color: #007836;
}

body.bd-track-order-page .to-distance-card--driver .to-distance-label {
    color: #065f46;
}

body.bd-track-order-page .to-distance-value {
    margin: 0.35rem 0 0;
    font-weight: 800;
}

body.bd-track-order-page .to-distance-card--restaurant .to-distance-value {
    color: #14532d;
}

body.bd-track-order-page .to-distance-card--driver .to-distance-value {
    color: #065f46;
}

body.bd-track-order-page .to-driver-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.bd-track-order-page .to-driver-avatar {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #059669;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

body.bd-track-order-page .to-address-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fafc;
}

body.bd-track-order-page .to-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
body.bd-about-page .about-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #14532d 0%, #007836 100%);
}

body.bd-about-page .about-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.bd-about-page .about-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-about-page .about-hero-copy {
    max-width: 600px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

body.bd-about-page .about-shell {
    max-width: 800px;
    margin: 0 auto;
}

body.bd-about-page .about-block {
    margin-bottom: 3rem;
}

body.bd-about-page .about-block--panel {
    padding: 2rem;
    border-radius: 24px;
    background: #f8fafc;
}

body.bd-about-page .about-heading-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.bd-about-page .about-heading {
    margin: 0;
    color: #0f172a;
}

body.bd-about-page .about-copy {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.8;
}

body.bd-about-page .about-values {
    background: #f8fafc;
}

body.bd-about-page .about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

body.bd-about-page .about-value-card {
    padding: 2rem;
    text-align: center;
}

body.bd-about-page .about-value-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #0f172a;
}

body.bd-about-page .about-value-copy {
    color: #64748b;
}

body.bd-about-page .about-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

body.bd-about-page .about-social-block,
body.bd-about-page .about-actions-block {
    text-align: center;
}

body.bd-about-page .about-action-heading {
    margin-bottom: 1.5rem;
    color: #0f172a;
}

body.bd-about-page .about-actions-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

body.bd-about-page .about-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

body.bd-about-page .about-action-icon {
    font-size: 1.25rem;
}

body.bd-about-page .about-action-copy {
    text-align: left;
}

body.bd-about-page .about-action-overline {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
body.bd-contact-page .contact-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--contact-brand-dark) 0%, var(--contact-brand-color) 100%);
}

body.bd-contact-page .contact-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.bd-contact-page .contact-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-contact-page .contact-hero-copy {
    max-width: 680px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
}

body.bd-contact-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    align-items: start;
}

body.bd-contact-page .contact-form-card {
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

body.bd-contact-page .contact-heading {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #0f172a;
}

body.bd-contact-page .contact-heading--side {
    margin-bottom: 1.5rem;
}

body.bd-contact-page .contact-subtitle {
    margin-bottom: 1.5rem;
    color: #64748b;
}

body.bd-contact-page .contact-success {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
    background: var(--contact-brand-color);
    color: #fff;
    text-align: center;
}

body.bd-contact-page .contact-field {
    margin-bottom: 1.25rem;
}

body.bd-contact-page .contact-field--last {
    margin-bottom: 1.5rem;
}

body.bd-contact-page .contact-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #334155;
    font-weight: 600;
}

body.bd-contact-page .contact-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
}

body.bd-contact-page .contact-input--textarea {
    resize: vertical;
}

body.bd-contact-page .contact-input:focus {
    outline: none;
    border-color: var(--contact-brand-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--contact-brand-color) 18%, transparent);
}

body.bd-contact-page .contact-error {
    color: #dc2626;
    font-size: 0.875rem;
}

body.bd-contact-page .contact-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1.5rem;
    background: var(--contact-brand-color);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

body.bd-contact-page .contact-submit-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: brightness(10);
}

body.bd-contact-page .contact-info-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #f8fafc;
}

body.bd-contact-page .contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--contact-brand-soft);
}

body.bd-contact-page .contact-info-icon-image {
    width: 32px;
    height: 32px;
}

body.bd-contact-page .contact-info-title {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: #0f172a;
}

body.bd-contact-page .contact-info-copy {
    margin: 0;
    color: #475569;
}

body.bd-contact-page .contact-brand-link {
    color: var(--contact-brand-color);
}

body.bd-contact-page .contact-whatsapp-link {
    color: #25d366;
}

body.bd-contact-page .contact-links-card {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
}

body.bd-contact-page .contact-links-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

body.bd-contact-page .contact-primary-link,
body.bd-contact-page .contact-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
}

body.bd-contact-page .contact-primary-link {
    background: var(--contact-brand-color);
    color: #fff;
    font-weight: 700;
}

body.bd-contact-page .contact-secondary-link {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

body.bd-contact-page .contact-map-section {
    height: 400px;
}

body.bd-contact-page .contact-map-frame {
    border: 0;
}

/* DRIVER PAGE */
body.bd-driver-page {
    background:
        radial-gradient(circle at top right, rgba(0, 149, 67, 0.10), transparent 24rem),
        linear-gradient(180deg, #f8fbf8 0%, #ffffff 22rem);
}

body.bd-driver-page .driver-hero {
    padding: 150px 0 88px;
    background: linear-gradient(135deg, #11452a 0%, #007836 58%, #14a44d 100%);
    text-align: center;
}

body.bd-driver-page .driver-hero-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

body.bd-driver-page .driver-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
}

body.bd-driver-page .driver-hero-copy {
    max-width: 640px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.0625rem;
}

body.bd-driver-page .driver-shell {
    max-width: 760px;
    margin: 0 auto;
}

body.bd-driver-page .driver-alert {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

body.bd-driver-page .driver-alert.is-success {
    background: linear-gradient(135deg, #009543 0%, #14a44d 100%);
}

body.bd-driver-page .driver-alert.is-error {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    text-align: left;
}

body.bd-driver-page .driver-alert-list {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    text-align: left;
}

body.bd-driver-page .driver-alert-list li {
    margin-top: 0.25rem;
}

body.bd-driver-page .driver-password-wrap {
    position: relative;
}

body.bd-driver-page .driver-password-wrap .driver-input {
    width: 100%;
    padding-right: 44px;
}

body.bd-driver-page .driver-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
}

body.bd-driver-page .driver-samephone-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #6b7280;
    cursor: pointer;
}

body.bd-driver-page .driver-card {
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

body.bd-driver-page .driver-head {
    margin-bottom: 2rem;
    text-align: center;
}

body.bd-driver-page .driver-head-title {
    margin-bottom: 0.45rem;
    font-size: 1.65rem;
    color: #0f172a;
}

body.bd-driver-page .driver-head-copy {
    margin: 0;
    color: #64748b;
}

body.bd-driver-page .driver-form {
    display: grid;
    gap: 1.75rem;
}

body.bd-driver-page .driver-form-section {
    display: grid;
    gap: 1rem;
}

body.bd-driver-page .driver-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid #edf2f7;
    color: #009543;
    font-size: 1rem;
}

body.bd-driver-page .driver-grid {
    display: grid;
    gap: 1rem;
}

body.bd-driver-page .driver-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.bd-driver-page .driver-field {
    display: grid;
    gap: 0.5rem;
}

body.bd-driver-page .driver-label {
    display: block;
    color: #334155;
    font-weight: 700;
}

body.bd-driver-page .driver-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    font-size: 1rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.bd-driver-page .driver-input:focus {
    outline: none;
    border-color: rgba(0, 149, 67, 0.75);
    box-shadow: 0 0 0 4px rgba(0, 149, 67, 0.12);
}

body.bd-driver-page .driver-upload-field {
    display: grid;
    gap: 0.5rem;
}

body.bd-driver-page .driver-upload-card {
    display: grid;
    place-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdfc 0%, #f8fafc 100%);
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

body.bd-driver-page .driver-upload-card:hover {
    border-color: rgba(0, 149, 67, 0.45);
    background: #f7fbf7;
    transform: translateY(-2px);
}

body.bd-driver-page .driver-upload-image {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    object-fit: cover;
}

body.bd-driver-page .driver-upload-image--round {
    border-radius: 999px;
}

body.bd-driver-page .driver-upload-copy {
    color: #64748b;
    font-size: 0.8125rem;
    line-height: 1.5;
    text-align: center;
}

body.bd-driver-page .driver-file-input {
    display: none;
}

body.bd-driver-page .driver-terms {
    margin-top: -0.25rem;
}

body.bd-driver-page .driver-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #475569;
    font-size: 0.95rem;
    cursor: pointer;
}

body.bd-driver-page .driver-terms-input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: #009543;
}

body.bd-driver-page .driver-inline-link {
    color: #009543;
    text-decoration: none;
}

body.bd-driver-page .driver-inline-link--strong {
    font-weight: 700;
}

body.bd-driver-page .driver-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.95rem 1.5rem;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #009543 0%, #14a44d 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 16px 34px rgba(0, 149, 67, 0.24);
}

body.bd-driver-page .driver-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(0, 149, 67, 0.28);
}

body.bd-driver-page .driver-login-copy {
    margin: 1.5rem 0 0;
    text-align: center;
    color: #475569;
}

/* OFFERS PAGE */
body.bd-offers-page {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 22rem),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 24rem);
}

body.bd-offers-page .offers-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 88px;
    background: linear-gradient(135deg, #ff6b1f 0%, #f59e0b 48%, #009543 100%);
    text-align: center;
}

body.bd-offers-page .offers-hero-inner {
    position: relative;
    z-index: 1;
}

body.bd-offers-page .offers-hero-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

body.bd-offers-page .offers-hero-orb--left {
    left: -56px;
    bottom: -64px;
    width: 220px;
    height: 220px;
}

body.bd-offers-page .offers-hero-orb--right {
    top: -72px;
    right: -48px;
    width: 180px;
    height: 180px;
}

body.bd-offers-page .offers-hero-badge {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

body.bd-offers-page .offers-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

body.bd-offers-page .offers-hero-copy {
    max-width: 620px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
}

body.bd-offers-page .offers-featured-section {
    margin-top: -60px;
}

body.bd-offers-page .offers-featured-grid,
body.bd-offers-page .offers-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

body.bd-offers-page .offers-featured-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.95rem;
    padding: 2rem;
    border-radius: 28px;
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

body.bd-offers-page .offers-featured-card--sunset {
    background: linear-gradient(135deg, #ff6b1f 0%, #f59e0b 100%);
}

body.bd-offers-page .offers-featured-card--forest {
    background: linear-gradient(135deg, #007836 0%, #14a44d 100%);
}

body.bd-offers-page .offers-featured-card--ember {
    background: linear-gradient(135deg, #b45309 0%, #f97316 100%);
}

body.bd-offers-page .offers-featured-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

body.bd-offers-page .offers-featured-orb--a {
    top: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
}

body.bd-offers-page .offers-featured-orb--b {
    left: -30px;
    bottom: -30px;
    width: 84px;
    height: 84px;
}

body.bd-offers-page .offers-featured-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

body.bd-offers-page .offers-featured-value {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    text-transform: none;
}

body.bd-offers-page .offers-featured-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.2rem;
}

body.bd-offers-page .offers-featured-copy {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

body.bd-offers-page .offers-code-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

body.bd-offers-page .offers-code-label {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.78);
}

body.bd-offers-page .offers-code-value {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

body.bd-offers-page .offers-code-button,
body.bd-offers-page .offers-featured-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

body.bd-offers-page .offers-featured-cta {
    width: 100%;
}

body.bd-offers-page .offers-secondary-section {
    background: #f8fafc;
}

body.bd-offers-page .offers-secondary-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

body.bd-offers-page .offers-secondary-head {
    padding: 1.5rem;
    color: #fff;
    text-align: center;
}

body.bd-offers-page .offers-secondary-head--sunset {
    background: linear-gradient(135deg, #ff6b1f 0%, #f59e0b 100%);
}

body.bd-offers-page .offers-secondary-head--forest {
    background: linear-gradient(135deg, #007836 0%, #14a44d 100%);
}

body.bd-offers-page .offers-secondary-head--terra {
    background: linear-gradient(135deg, #9a3412 0%, #ea580c 100%);
}

body.bd-offers-page .offers-secondary-head--gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

body.bd-offers-page .offers-secondary-name {
    margin: 0;
    font-size: 1.2rem;
}

body.bd-offers-page .offers-secondary-body {
    padding: 1.5rem;
}

body.bd-offers-page .offers-secondary-value {
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1.45rem;
}

body.bd-offers-page .offers-secondary-copy {
    margin: 0 0 1rem;
    color: #475569;
}

body.bd-offers-page .offers-secondary-link {
    color: #009543;
    font-weight: 700;
    text-decoration: none;
}

body.bd-offers-page .offers-reminder {
    padding: 3rem;
    border-radius: 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #14532d 0%, #0f766e 100%);
}

body.bd-offers-page .offers-reminder-title {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

body.bd-offers-page .offers-reminder-copy {
    max-width: 520px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.88);
}

body.bd-offers-page .offers-reminder-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

body.bd-offers-page .offers-reminder-primary,
body.bd-offers-page .offers-reminder-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

body.bd-offers-page .offers-reminder-primary {
    background: #fff;
    color: #14532d;
}

body.bd-offers-page .offers-reminder-secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body.bd-offers-page .offers-toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    background: #0f766e;
    color: #fff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease;
    z-index: 1000;
}

body.bd-offers-page .offers-toast.is-visible {
    transform: translateX(-50%) translateY(0);
}

/* SUPPORT AND LEGAL PAGES */
body.bd-support-page {
    background:
        radial-gradient(circle at top left, var(--support-brand-soft, rgba(0, 149, 67, 0.12)), transparent 24rem),
        linear-gradient(180deg, #f8fbf9 0%, #ffffff 22rem);
}

body.bd-support-page .support-hero {
    padding: 150px 0 86px;
    text-align: center;
    background: linear-gradient(135deg, var(--support-brand-dark, #11452a) 0%, var(--support-brand-color, #009543) 100%);
}

body.bd-support-page .support-hero--dark {
    background: linear-gradient(135deg, #111827 0%, var(--support-brand-dark, #11452a) 100%);
}

body.bd-support-page .support-hero-badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

body.bd-support-page .support-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-support-page .support-hero-title--compact {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

body.bd-support-page .support-hero-copy {
    max-width: 760px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
}

body.bd-support-page .support-hero-copy--compact {
    max-width: 680px;
    font-size: 1.05rem;
}

body.bd-support-page .support-section {
    background: transparent;
}

body.bd-support-page .support-shell,
body.bd-support-page .legal-shell,
body.bd-support-page .support-status-shell {
    margin: 0 auto;
}

body.bd-support-page .support-shell {
    max-width: 960px;
}

body.bd-support-page .legal-shell {
    max-width: 900px;
}

body.bd-support-page .support-status-shell {
    max-width: 760px;
}

body.bd-support-page .support-stack {
    display: grid;
    gap: 1.5rem;
}

body.bd-support-page .support-card,
body.bd-support-page .legal-card,
body.bd-support-page .support-status-card {
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.bd-support-page .support-card-title,
body.bd-support-page .legal-block-title {
    margin-bottom: 1rem;
    color: var(--support-brand-color, #009543);
    font-size: 1.4rem;
}

body.bd-support-page .support-card-heading {
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 1.35rem;
}

body.bd-support-page .support-faq-grid {
    display: grid;
    gap: 1rem;
}

body.bd-support-page .support-faq-item {
    padding: 1rem 1.1rem;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

body.bd-support-page .support-faq-question {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #0f172a;
}

body.bd-support-page .support-faq-answer,
body.bd-support-page .support-contact-copy,
body.bd-support-page .legal-block-copy,
body.bd-support-page .support-status-copy {
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

body.bd-support-page .legal-card {
    display: grid;
    gap: 1.5rem;
}

body.bd-support-page .legal-block {
    display: grid;
    gap: 0.75rem;
}

body.bd-support-page .legal-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #475569;
    line-height: 1.9;
}

body.bd-support-page .legal-list--tight {
    display: grid;
    gap: 0.3rem;
}

body.bd-support-page .legal-block-copy--compact {
    margin-bottom: 1rem;
}

body.bd-support-page .legal-note {
    padding: 1.5rem;
    border-radius: 20px;
    background: #f8fafc;
}

body.bd-support-page .legal-note-title {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    color: #0f172a;
}

body.bd-support-page .legal-link,
body.bd-support-page .support-status-link {
    color: var(--support-brand-color, #009543);
    font-weight: 700;
    text-decoration: none;
}

body.bd-support-page .support-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

body.bd-support-page .support-primary-link,
body.bd-support-page .support-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

body.bd-support-page .support-primary-link {
    background: var(--support-brand-color, #009543);
    color: #fff;
}

body.bd-support-page .support-primary-link--fit {
    width: fit-content;
}

body.bd-support-page .support-secondary-link {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

body.bd-support-page .support-status-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.bd-support-page .support-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--support-brand-veil, rgba(0, 149, 67, 0.12));
    color: var(--support-brand-color, #009543);
}

body.bd-support-page .support-status-label {
    margin-bottom: 0.1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

body.bd-support-page .support-status-value {
    color: var(--support-status-color, #6B7280);
    font-weight: 700;
}

body.bd-support-page .support-status-divider {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

/* THANKS PAGE */
body.bd-thanks-page {
    background:
        radial-gradient(circle at top right, rgba(0, 149, 67, 0.10), transparent 20rem),
        linear-gradient(180deg, #f8fbf8 0%, #ffffff 20rem);
}

body.bd-thanks-page .thanks-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #009543 0%, #052e16 100%);
}

body.bd-thanks-page .thanks-hero-inner {
    position: relative;
    z-index: 1;
}

body.bd-thanks-page .thanks-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 600;
}

body.bd-thanks-page .thanks-hero-title {
    margin: 1.5rem 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-thanks-page .thanks-hero-copy {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.90);
    font-size: 1.125rem;
}

body.bd-thanks-page .thanks-section {
    margin-top: -40px;
}

body.bd-thanks-page .thanks-shell {
    max-width: 700px;
    margin: 0 auto;
}

body.bd-thanks-page .thanks-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.15);
}

body.bd-thanks-page .thanks-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: #f8fafc;
}

body.bd-thanks-page .thanks-meta-label {
    margin-bottom: 0.25rem;
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-thanks-page .thanks-meta-value,
body.bd-thanks-page .thanks-estimate-value {
    margin: 0;
    color: #009543;
    font-weight: 800;
}

body.bd-thanks-page .thanks-meta-value {
    font-size: 1.25rem;
}

body.bd-thanks-page .thanks-meta-block--right {
    text-align: right;
}

body.bd-thanks-page .thanks-meta-date {
    margin: 0;
    color: #0f172a;
    font-weight: 600;
}

body.bd-thanks-page .thanks-card-body {
    padding: 2rem;
}

body.bd-thanks-page .thanks-section-title {
    margin-bottom: 1.5rem;
    color: #334155;
    font-size: 1rem;
    font-weight: 700;
}

body.bd-thanks-page .thanks-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

body.bd-thanks-page .thanks-timeline-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 0;
}

body.bd-thanks-page .thanks-timeline-line-fill {
    width: 33%;
    height: 100%;
    background: #009543;
}

body.bd-thanks-page .thanks-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

body.bd-thanks-page .thanks-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 0.5rem;
    border-radius: 999px;
    background: #cbd5e1;
    color: #fff;
    font-weight: 700;
}

body.bd-thanks-page .thanks-step.is-done .thanks-step-dot {
    background: #009543;
}

body.bd-thanks-page .thanks-step.is-active .thanks-step-dot {
    background: #f59e0b;
    animation: thanks-pulse 2s infinite;
}

body.bd-thanks-page .thanks-step-label {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-thanks-page .thanks-step.is-done .thanks-step-label,
body.bd-thanks-page .thanks-step.is-active .thanks-step-label {
    color: #0f172a;
    font-weight: 600;
}

body.bd-thanks-page .thanks-estimate {
    margin: 0 2rem 2rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 149, 67, 0.10) 0%, rgba(20, 83, 45, 0.08) 100%);
}

body.bd-thanks-page .thanks-estimate-label {
    margin-bottom: 0.25rem;
    color: #475569;
    font-size: 0.875rem;
}

body.bd-thanks-page .thanks-estimate-value {
    font-size: 1.5rem;
}

body.bd-thanks-page .thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 2rem 2rem;
}

body.bd-thanks-page .thanks-btn-primary,
body.bd-thanks-page .thanks-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
}

body.bd-thanks-page .thanks-btn-primary {
    background: #009543;
    color: #fff;
    font-weight: 700;
}

body.bd-thanks-page .thanks-btn-secondary {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

body.bd-thanks-page .thanks-info-card {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

body.bd-thanks-page .thanks-info-title {
    margin-bottom: 0.25rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}

body.bd-thanks-page .thanks-info-copy,
body.bd-thanks-page .thanks-support-copy {
    margin: 0;
    color: #475569;
    font-size: 0.9375rem;
}

body.bd-thanks-page .thanks-support {
    margin-top: 2rem;
    text-align: center;
    color: #475569;
}

body.bd-thanks-page .thanks-support-copy {
    margin-bottom: 1rem;
}

body.bd-thanks-page .thanks-support-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

body.bd-thanks-page .thanks-support-link {
    color: #009543;
    font-weight: 600;
    text-decoration: none;
}

body.bd-thanks-page .thanks-support-link--whatsapp {
    color: #25D366;
}

/* Badge statut — variantes */
body.bd-thanks-page .thanks-hero-badge.badge--pending {
    background: rgba(245, 158, 11, 0.25);
    color: #fff;
    border: 1.5px solid rgba(245, 158, 11, 0.55);
}
body.bd-thanks-page .thanks-hero-badge.badge--kitchen {
    background: rgba(0, 149, 67, 0.25);
    color: #fff;
    border: 1.5px solid rgba(0, 149, 67, 0.55);
}
body.bd-thanks-page .thanks-hero-badge.badge--onway {
    background: rgba(59, 130, 246, 0.25);
    color: #fff;
    border: 1.5px solid rgba(59, 130, 246, 0.55);
}

/* Bandeau d'attente restaurant */
body.bd-thanks-page .thanks-waiting-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 2rem 0;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    background: #fffbeb;
    border: 1.5px solid #fcd34d;
    font-size: 0.9375rem;
    color: #92400e;
    font-weight: 600;
}
body.bd-thanks-page .thanks-waiting-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
    animation: thanks-blink 1.2s ease-in-out infinite;
}
body.bd-thanks-page .thanks-waiting-text {
    flex: 1;
}
body.bd-thanks-page .thanks-waiting-link {
    color: #ff5a1f;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}
body.bd-thanks-page .thanks-waiting-link:hover { text-decoration: underline; }

/* Étape active clignotante */
body.bd-thanks-page .thanks-step.is-active.is-blinking .thanks-step-dot {
    animation: thanks-pulse 2s infinite, thanks-blink 1.5s ease-in-out infinite;
}

/* Valeur "En attente" en amber */
body.bd-thanks-page .thanks-estimate-pending {
    color: #f59e0b;
    font-size: 1rem;
    font-weight: 700;
}

@keyframes thanks-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes thanks-blink {
    0%, 100% { opacity: 1; }
    50%        { opacity: 0.3; }
}

/* REFUND POLICY PAGE */
body.bd-refund-policy-page {
    background:
        radial-gradient(circle at top right, rgba(0, 149, 67, 0.10), transparent 22rem),
        linear-gradient(180deg, #f8fbf8 0%, #ffffff 24rem);
}

body.bd-refund-policy-page .refund-hero {
    padding: 150px 0 84px;
    text-align: center;
    background: linear-gradient(135deg, #14532d 0%, #007836 100%);
}

body.bd-refund-policy-page .refund-hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body.bd-refund-policy-page .refund-hero-title {
    margin-top: 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}

body.bd-refund-policy-page .refund-hero-copy {
    max-width: 620px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.125rem;
}

body.bd-refund-policy-page .refund-shell {
    max-width: 800px;
    margin: 0 auto;
}

body.bd-refund-policy-page .refund-card {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
}

body.bd-refund-policy-page .refund-highlight {
    padding: 1.5rem;
    border-left: 4px solid #009543;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 149, 67, 0.10) 0%, rgba(245, 158, 11, 0.10) 100%);
}

body.bd-refund-policy-page .refund-highlight-title,
body.bd-refund-policy-page .refund-section-title {
    color: #009543;
}

body.bd-refund-policy-page .refund-highlight-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

body.bd-refund-policy-page .refund-highlight-copy,
body.bd-refund-policy-page .refund-copy,
body.bd-refund-policy-page .refund-help-copy {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

body.bd-refund-policy-page .refund-section {
    display: grid;
    gap: 1rem;
}

body.bd-refund-policy-page .refund-section-title {
    font-size: 1.5rem;
}

body.bd-refund-policy-page .refund-surface,
body.bd-refund-policy-page .refund-delay-card,
body.bd-refund-policy-page .refund-help {
    border-radius: 16px;
    background: #f8fafc;
}

body.bd-refund-policy-page .refund-surface {
    padding: 1.5rem;
}

body.bd-refund-policy-page .refund-surface--warning {
    border: 1px solid rgba(239, 68, 68, 0.20);
    background: rgba(239, 68, 68, 0.05);
}

body.bd-refund-policy-page .refund-list {
    margin: 0;
    padding-left: 1.5rem;
    color: #475569;
    line-height: 2;
}

body.bd-refund-policy-page .refund-delay-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.bd-refund-policy-page .refund-delay-card {
    padding: 1.5rem;
    text-align: center;
}

body.bd-refund-policy-page .refund-delay-title {
    margin-bottom: 0.25rem;
    color: #0f172a;
    font-size: 1rem;
}

body.bd-refund-policy-page .refund-delay-copy {
    margin: 0;
    color: #64748b;
    font-size: 0.875rem;
}

body.bd-refund-policy-page .refund-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.bd-refund-policy-page .refund-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

body.bd-refund-policy-page .refund-step-index {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #009543;
    color: #fff;
    font-weight: 700;
}

body.bd-refund-policy-page .refund-step-title {
    margin-bottom: 0.25rem;
    color: #0f172a;
    font-size: 1rem;
}

body.bd-refund-policy-page .refund-step-copy {
    margin: 0;
    color: #64748b;
    font-size: 0.9375rem;
}

body.bd-refund-policy-page .refund-help {
    margin-top: 0.5rem;
    padding: 1.5rem;
}

body.bd-refund-policy-page .refund-help-title {
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1.125rem;
}

body.bd-refund-policy-page .refund-help-copy {
    margin-bottom: 1rem;
    color: #475569;
}

body.bd-refund-policy-page .refund-help-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

body.bd-refund-policy-page .refund-btn-primary,
body.bd-refund-policy-page .refund-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

body.bd-refund-policy-page .refund-btn-primary {
    background: #009543;
    color: #fff;
}

body.bd-refund-policy-page .refund-btn-secondary {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

body.bd-refund-policy-page .refund-btn-secondary--whatsapp {
    border-color: #25D366;
    background: #25D366;
    color: #fff;
}

/* FAQ PAGE */
body.bd-faq-page {
    background:
        radial-gradient(circle at top left, var(--faq-brand-soft, rgba(0, 149, 67, 0.12)), transparent 22rem),
        linear-gradient(180deg, #f8fbf8 0%, #ffffff 20rem);
}

body.bd-faq-page .faq-hero {
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--faq-brand-dark, #14532d) 0%, var(--faq-brand-color, #007836) 100%);
}

body.bd-faq-page .faq-hero-badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

body.bd-faq-page .faq-hero-title {
    margin: 0.75rem 0 0.5rem;
    font-size: clamp(2rem, 5vw, 2.8rem);
}

body.bd-faq-page .faq-hero-copy {
    color: rgba(255, 255, 255, 0.90);
    font-size: 1.125rem;
}

body.bd-faq-page .faq-search {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0;
}

body.bd-faq-page .faq-search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    font-size: 1rem;
}

body.bd-faq-page .faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

body.bd-faq-page .faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

body.bd-faq-page .faq-category-btn:hover,
body.bd-faq-page .faq-category-btn.active {
    background: #fff;
    color: var(--faq-brand-dark, #14532d);
}

body.bd-faq-page .faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

body.bd-faq-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

body.bd-faq-page .faq-item {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s ease;
}

body.bd-faq-page .faq-item:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

body.bd-faq-page .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    color: #1e293b;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

body.bd-faq-page .faq-question:hover {
    color: var(--faq-brand-color, #009543);
}

body.bd-faq-page .faq-question i {
    color: var(--faq-brand-color, #009543);
    transition: transform 0.3s ease;
}

body.bd-faq-page .faq-item.open .faq-question i {
    transform: rotate(180deg);
}

body.bd-faq-page .faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    color: #475569;
    line-height: 1.7;
    transition: all 0.3s ease;
}

body.bd-faq-page .faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

body.bd-faq-page .faq-item[hidden] {
    display: none;
}

body.bd-faq-page .faq-contact {
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    background: #191919;
}

body.bd-faq-page .faq-contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

body.bd-faq-page .faq-contact-copy {
    color: rgba(255, 255, 255, 0.90);
}

body.bd-faq-page .faq-contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

body.bd-faq-page .faq-contact-card {
    min-width: 200px;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

body.bd-faq-page .faq-contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.bd-faq-page .faq-contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

body.bd-faq-page .faq-contact-card p {
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.9375rem;
}

@media (max-width: 1100px) {
    .hero2__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero2__card {
        display: none;
    }

    .steps-grid,
    .resto-grid,
    .prod-grid,
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-gallery-inner,
    .impact-inner {
        grid-template-columns: 1fr;
    }

    .impact-inner {
        gap: 40px;
    }

    body.bd-search-page .search-result-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    body.bd-partner-page .partner-benefits {
        grid-template-columns: 1fr;
    }

    body.bd-track-order-page .to-content-grid,
    body.bd-track-order-page .to-kpi-grid,
    body.bd-track-order-page .to-incident-actions {
        grid-template-columns: 1fr;
    }

    body.bd-about-page .about-values-grid,
    body.bd-contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    body.bd-offers-page .offers-featured-grid,
    body.bd-offers-page .offers-secondary-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.bd-refund-policy-page .refund-delay-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .journey-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        justify-items: center;
    }

    .journey-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav2__links,
    .nav2__search {
        display: none;
    }

    .nav2__mobile-toggle {
        display: flex;
    }

    .steps-grid,
    .resto-grid,
    .prod-grid,
    .hub-grid,
    .opp-grid,
    .stats-grid,
    .soc2__grid,
    .testi-grid,
    .app2__grid {
        grid-template-columns: 1fr;
    }

    .ft2__grid {
        grid-template-columns: 1fr 1fr;
    }

    .congo-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .congo-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .congo-map {
        grid-template-columns: 1fr;
    }

    .congo-map__panel {
        border-top: 1px solid var(--bd);
        border-left: none;
    }

    .service-support-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .sec__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }

    .food-orbs {
        height: 280px;
    }

    .fo-1 { width: 130px; height: 130px; }
    .fo-2 { left: 120px; width: 110px; height: 110px; }
    .fo-3 { top: 130px; left: 60px; width: 120px; height: 120px; }
    .fo-4 { top: 125px; left: 180px; width: 100px; height: 100px; }

    body.bd-search-page .search-result-chip {
        max-width: 100%;
    }

    body.bd-cuisine-page .page-header h1 {
        font-size: 2rem;
    }

    body.bd-partner-page .partner-upload-grid {
        grid-template-columns: 1fr;
    }

    body.bd-partner-page .partner-card {
        padding: 1.5rem;
    }

    body.bd-track-order-page .to-hero-title {
        font-size: 2rem;
    }

    body.bd-track-order-page .to-hero-meta {
        text-align: left;
    }

    body.bd-track-order-page .to-card {
        padding: 1.25rem;
    }

    body.bd-track-order-page .to-distance-grid {
        grid-template-columns: 1fr;
    }

    body.bd-track-order-page .to-order-item,
    body.bd-track-order-page .to-driver-row,
    body.bd-track-order-page .to-code-row,
    body.bd-track-order-page .to-receipt-head,
    body.bd-track-order-page .to-incident-row {
        align-items: flex-start;
        flex-direction: column;
    }

    body.bd-about-page .about-actions-row,
    body.bd-contact-page .contact-links-row {
        flex-direction: column;
    }

    body.bd-driver-page .driver-grid--two,
    body.bd-offers-page .offers-featured-grid,
    body.bd-offers-page .offers-secondary-grid {
        grid-template-columns: 1fr;
    }

    body.bd-offers-page .offers-featured-section {
        margin-top: -34px;
    }

    body.bd-offers-page .offers-code-box {
        flex-direction: column;
        align-items: flex-start;
    }

    body.bd-offers-page .offers-reminder {
        padding: 2rem 1.5rem;
    }

    body.bd-support-page .support-actions,
    body.bd-thanks-page .thanks-actions,
    body.bd-thanks-page .thanks-support-links {
        flex-direction: column;
    }

    body.bd-thanks-page .thanks-card-head {
        padding: 1.5rem;
    }

    body.bd-thanks-page .thanks-meta-block--right {
        text-align: left;
    }

    body.bd-thanks-page .thanks-card-body,
    body.bd-thanks-page .thanks-estimate,
    body.bd-thanks-page .thanks-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    body.bd-thanks-page .thanks-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1.5rem;
    }

    body.bd-thanks-page .thanks-timeline-line {
        display: none;
    }

    body.bd-refund-policy-page .refund-help-actions,
    body.bd-faq-page .faq-contact-options {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    body.bd-driver-page .driver-card {
        padding: 1.5rem;
        border-radius: 22px;
    }

    body.bd-driver-page .driver-upload-card {
        padding: 1.25rem;
    }

    body.bd-offers-page .offers-reminder-actions {
        flex-direction: column;
    }

    body.bd-offers-page .offers-reminder-primary,
    body.bd-offers-page .offers-reminder-secondary {
        width: 100%;
    }

    body.bd-support-page .support-card,
    body.bd-support-page .legal-card,
    body.bd-support-page .support-status-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    body.bd-thanks-page .thanks-timeline {
        grid-template-columns: 1fr;
    }

    body.bd-refund-policy-page .refund-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    body.bd-faq-page .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .ft2__grid {
        grid-template-columns: 1fr;
    }

    .ft2__bot {
        flex-direction: column;
        text-align: center;
    }

    .hero2__h1 {
        font-size: 2rem;
    }
}
