/* ==========================================================================
   ARSAHA FOOD IMPORTS - CORPORATE DESIGN SYSTEM
   شركة أرساها لاستيراد وتجارة المواد الغذائية - طرابلس، ليبيا
   هاتف ومبيعات: 0912002615 | دومين: arsaha.ly
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Color Palette (Clean, High-Trust Food Industry Standard)
   -------------------------------------------------------------------------- */
:root {
    /* Corporate Navy Palette */
    --navy-950: #06101E;
    --navy-900: #0B1E36;
    --navy-850: #102A4C;
    --navy-800: #173864;
    --navy-700: #1F4A84;
    --navy-600: #2C62AA;
    
    /* Warm Harvest Gold / Amber (Food Quality & Wheat) */
    --gold-600: #B45309;
    --gold-500: #D97706;
    --gold-400: #F59E0B;
    --gold-300: #FBBF24;
    --gold-100: #FEF3C7;
    --gold-50:  #FFFBEB;

    /* Semantic Accents */
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-50:  #ECFDF5;
    
    /* Clean Commercial Neutrals */
    --bg-page: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-subtle: #F1F5F9;
    --bg-muted: #E2E8F0;

    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-inverse: #FFFFFF;

    /* Subtle Realistic Shadows (No artificial AI glowing orbs) */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12);
    
    /* Borders & Radius */
    --border-subtle: #E2E8F0;
    --border-strong: #CBD5E1;
    --border-accent: #F59E0B;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
    --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Fundamentals
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-ar);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.65;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elegant Scrollbar */
::-webkit-scrollbar {
    width: 9px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Preloader (Light & Clean)
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-brand-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preloader-logo-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.preloader-line {
    width: 160px;
    height: 3px;
    background: #E2E8F0;
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    animation: loadTrack 1.2s infinite ease-in-out;
}

@keyframes loadTrack {
    0% { transform: translateX(100%); }
    50% { transform: translateX(-50%); }
    100% { transform: translateX(-150%); }
}

/* --------------------------------------------------------------------------
   4. Top Announcement & Corporate Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background: var(--navy-950);
    color: #E2E8F0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.55rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #CBD5E1;
    font-weight: 500;
}

.top-item:hover {
    color: var(--gold-400);
}

.top-item i {
    color: var(--gold-400);
    font-size: 0.85rem;
}

.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    color: #F8FAFC;
    font-size: 0.75rem;
    font-weight: 600;
}

.top-pill i {
    color: #34D399;
}

/* --------------------------------------------------------------------------
   5. Main Navigation Bar (Clean Corporate White Header)
   -------------------------------------------------------------------------- */
.main-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.brand-names {
    display: flex;
    flex-direction: column;
}

.brand-title-ar {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1.15;
}

.brand-title-ar span {
    color: var(--gold-600);
}

.brand-meta-en {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.2rem;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--navy-900);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 2.5px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cart-icon-btn {
    position: relative;
    background: var(--bg-subtle);
    color: var(--navy-900);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    transition: var(--transition);
}

.cart-icon-btn:hover {
    background: var(--gold-50);
    border-color: var(--gold-400);
    color: var(--gold-600);
}

.cart-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 3px;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-900);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--gold-600);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    color: var(--navy-900);
    font-size: 1.2rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Executive Hero Section (Navy with Authentic Food Showcase)
   -------------------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 65%, var(--navy-850) 100%);
    color: #FFFFFF;
    padding: 4.5rem 0 5rem 0;
    position: relative;
    border-bottom: 3px solid var(--gold-500);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold-300);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    line-height: 1.2;
    color: #FFFFFF;
}

.hero-title .highlight-gold {
    color: var(--gold-400);
}

.hero-description {
    font-size: 1.1rem;
    color: #CBD5E1;
    line-height: 1.8;
    max-width: 580px;
}

.hero-btn-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 800;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-wa-solid {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 800;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-wa-solid:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Stats Row */
.hero-key-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-en);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: #94A3B8;
    margin-top: 0.25rem;
}

/* Layered Human Product Showcase (No generic single AI image) */
.hero-showcase-stage {
    position: relative;
    padding: 1.5rem;
}

.hero-product-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hero-mini-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.hero-mini-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-400);
}

.hero-mini-card.featured-card {
    grid-column: span 2;
    flex-direction: row;
    text-align: right;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
}

.hero-mini-card img {
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.featured-card img {
    height: 140px;
}

.hero-mini-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.featured-card .hero-mini-info {
    margin-top: 0;
    flex-grow: 1;
}

.hero-badge-brand {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-400);
    text-transform: uppercase;
}

.hero-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
}

.hero-card-pack {
    font-size: 0.75rem;
    color: #CBD5E1;
}

/* --------------------------------------------------------------------------
   7. B2B Trust Pillars / Operational Highlights
   -------------------------------------------------------------------------- */
.trust-pillars-bar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.25rem 0;
    box-shadow: var(--shadow-xs);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-50);
    border: 1px solid var(--gold-100);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pillar-text h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
}

.pillar-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. Section Headers
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 5rem 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gold-50);
    color: var(--gold-600);
    border: 1px solid var(--gold-100);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(1.85rem, 2.6vw, 2.5rem);
    font-weight: 900;
    color: var(--navy-900);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.section-title span {
    color: var(--gold-600);
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. Products Catalog (Crisp, High-Converting White Cards)
   -------------------------------------------------------------------------- */
.catalog-section {
    background: var(--bg-page);
}

.catalog-toolbar {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* Clean Search Bar */
.search-input-wrap {
    position: relative;
    width: 100%;
}

.search-field {
    width: 100%;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 3rem 0.85rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.search-field:focus {
    background: #FFFFFF;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.search-field::placeholder {
    color: var(--text-light);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

.clear-search-btn {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    transform: translateY(-50%);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: none;
}

.clear-search-btn.active {
    display: block;
}

/* Category Filter Tabs */
.filter-tabs-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--bg-subtle);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: #FFFFFF;
    color: var(--navy-900);
    border-color: var(--navy-800);
}

.filter-tab.active {
    background: var(--navy-900);
    color: #FFFFFF;
    border-color: var(--navy-900);
    box-shadow: var(--shadow-sm);
}

.filter-tab-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
}

.filter-tab.active .filter-tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Products Grid */
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
}

/* Authentic Human Product Card */
.product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #CBD5E1;
}

.product-card-top {
    position: relative;
    height: 200px;
    background: #FFFFFF;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.product-card-top img {
    max-height: 175px;
    max-width: 90%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
}

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

.product-brand-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    color: var(--navy-900);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xs);
    z-index: 2;
}

.product-origin-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(5, 150, 105, 0.2);
    z-index: 2;
}

.product-card-body {
    padding: 1.15rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
    background: #FFFFFF;
}

.product-category-crumb {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-600);
}

.product-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-spec-row {
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-spec-row strong {
    color: var(--navy-900);
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.btn-add-quote {
    background: var(--bg-subtle);
    color: var(--navy-900);
    border: 1px solid var(--border-subtle);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: var(--transition);
}

.btn-add-quote:hover {
    background: var(--navy-900);
    color: #FFFFFF;
    border-color: var(--navy-900);
}

.btn-wa-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-wa-icon:hover {
    background: #20BD5A;
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   10. Brands & Agency Showcase
   -------------------------------------------------------------------------- */
.brands-section {
    background: #FFFFFF;
    border-block: 1px solid var(--border-subtle);
}

.brands-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.brand-showcase-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--bg-page);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition);
}

.brand-showcase-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-500);
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.brand-title-badge {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.brand-showcase-card.lavino .brand-title-badge { color: #DC2626; }
.brand-showcase-card.siro .brand-title-badge { color: #059669; }
.brand-showcase-card.novella .brand-title-badge { color: #D97706; }
.brand-showcase-card.arsaha .brand-title-badge { color: var(--navy-900); }

.brand-showcase-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
}

.brand-showcase-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. About Company Section (Authentic B2B Presentation)
   -------------------------------------------------------------------------- */
.about-section {
    background: var(--bg-page);
}

.about-b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-b2b-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-b2b-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-b2b-content strong {
    color: var(--navy-900);
}

.about-values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.about-val-box {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    display: flex;
    gap: 0.85rem;
    box-shadow: var(--shadow-xs);
}

.about-val-box i {
    font-size: 1.35rem;
    color: var(--gold-600);
    margin-top: 0.2rem;
}

.about-val-box h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.2rem;
}

.about-val-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.about-b2b-visual {
    position: relative;
}

.about-photo-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid #FFFFFF;
    box-shadow: var(--shadow-lg);
}

.about-photo-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-stamp-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FFFFFF;
    border: 1.5px solid var(--border-subtle);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-stamp-card i {
    font-size: 2rem;
    color: var(--gold-600);
}

.about-stamp-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
}

.about-stamp-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Cold Chain Logistics (Professional Warehouse Infrastructure)
   -------------------------------------------------------------------------- */
.logistics-section {
    background: #FFFFFF;
    border-block: 1px solid var(--border-subtle);
}

.logistics-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.logistics-card {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: var(--transition);
}

.logistics-card:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-900);
}

.logistics-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--navy-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.logistics-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-900);
}

.logistics-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Contact & Direct WhatsApp Order Section
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--bg-page);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-tile {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.contact-tile:hover {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-sm);
    transform: translateX(-4px);
}

.contact-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-subtle);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-tile:hover .contact-tile-icon {
    background: var(--navy-900);
    color: var(--gold-400);
}

.contact-tile-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-tile-text strong {
    font-size: 1.1rem;
    color: var(--navy-900);
}

/* Direct Form */
.contact-form-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 0.35rem;
}

.contact-form-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
}

.form-control {
    width: 100%;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.92rem;
    transition: var(--transition);
}

.form-control:focus {
    background: #FFFFFF;
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(11, 30, 54, 0.1);
}

.form-textarea {
    min-height: 90px;
    resize: vertical;
}

/* --------------------------------------------------------------------------
   14. Slide-out Quote Basket Drawer
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    background: #FFFFFF;
    box-shadow: 15px 0 35px rgba(0, 0, 0, 0.2);
    z-index: 2010;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.drawer-head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy-900);
    color: #FFFFFF;
}

.drawer-head h3 {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-close-btn {
    background: transparent;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cart-empty-box {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty-box i {
    font-size: 2.5rem;
    color: var(--gold-500);
    margin-bottom: 0.75rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.75rem;
}

.cart-item-row img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 3px;
    border: 1px solid var(--border-subtle);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
}

.cart-item-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-del {
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.cart-item-del:hover {
    color: #DC2626;
}

.drawer-foot {
    padding: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-subtle);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   15. Quick View Modal
   -------------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.96);
    transition: var(--transition);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    background: #DC2626;
    color: #FFFFFF;
}

.modal-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    padding: 2.25rem;
}

.modal-image-box {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-box img {
    max-height: 260px;
    object-fit: contain;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.modal-specs-box {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
}

.modal-specs-box div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.modal-specs-box i {
    color: var(--emerald-600);
}

/* --------------------------------------------------------------------------
   16. Floating Quick Actions (WhatsApp & Phone)
   -------------------------------------------------------------------------- */
.floating-dock {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-wa {
    background: #25D366;
    color: #FFFFFF;
}

.fab-phone {
    background: var(--navy-900);
    color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   17. Toast Notifications
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    pointer-events: none;
}

.toast {
    background: var(--navy-950);
    color: #FFFFFF;
    border-right: 4px solid var(--gold-500);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    pointer-events: auto;
}

.toast i {
    color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   18. Corporate Footer
   -------------------------------------------------------------------------- */
.main-footer {
    background: var(--navy-950);
    color: #94A3B8;
    padding-top: 4.5rem;
    border-top: 3px solid var(--gold-500);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-500);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #CBD5E1;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-links a:hover {
    color: var(--gold-400);
    transform: translateX(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #64748B;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   19. Responsive Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-btn-row {
        justify-content: center;
    }
    .hero-key-stats {
        width: 100%;
        max-width: 520px;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-b2b-grid {
        grid-template-columns: 1fr;
    }
    .brands-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logistics-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-menu {
        position: fixed;
        top: 74px;
        right: 0;
        left: 0;
        background: #FFFFFF;
        border-bottom: 2px solid var(--navy-900);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateY(0);
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .hero-product-grid-cards {
        grid-template-columns: 1fr;
    }
    .hero-mini-card.featured-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
    .brands-showcase-grid {
        grid-template-columns: 1fr;
    }
    .modal-split {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
