/* =============================================
   MEDICAL ZONE — PROFESSIONAL GLOBAL STYLESHEET
   ============================================= */

:root {
    --navy: #0a1628;
    --navy-mid: #132240;
    --teal: #0d6eaa;
    --teal-light: #1a8fcc;
    --teal-pale: #e8f4fb;
    --gold: #c9a55a;
    --gold-light: #e0bc76;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-50: #f0f4f8;
    --gray-100: #e2e8f0;
    --gray-300: #a0aec0;
    --gray-600: #4a5568;
    --gray-800: #1a202c;
    --red: #e53e3e;
    --green: #38a169;

    --font-ar: 'Cairo', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-ar);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-ar); border: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 72px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  align-items: center;  
}
.logo-main {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 2px;
}
.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 3px;
}

/* Nav */
.main-nav { margin: 0 auto; }
.main-nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
}
.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--teal);
    background: var(--teal-pale);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    font-size: 15px;
    transition: all var(--transition);
    position: relative;
}
.icon-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-pale);
}
.cart-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 18px;
    height: 18px;
    background: var(--teal);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-sm {
    padding: 7px 18px;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-outline-sm:hover {
    background: var(--navy);
    color: var(--white);
}

/* =====================
   HOME PAGE
   ===================== */

/* ---- Hero ---- */
.hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}
.page-home .home-hero {
    background: var(--navy);
}
/* طبقة صورة الهيرو */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(10, 22, 40, 0.2) 0%,
        rgba(10, 22, 40, 0.35) 45%,
        rgba(10, 22, 40, 0.5) 100%
    );
    pointer-events: none;
}
.page-home .hero-container {
    position: relative;
    z-index: 1;
    display: block;
    grid-template-columns: 1fr;
    width: 100%;
}
.page-home .hero-content {
    max-width: 640px;
}
/* منع أي واتساب في الهيدر */
.header-actions a.header-wa-btn,
.header-actions .header-wa-btn,
.header-inner a[href*="wa.me"] {
    display: none !important;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    font-family: var(--font-ar);
    color: var(--gold-light);
    font-weight: 400;
    font-size: 34px;
    white-space: nowrap;
    display: block;
    margin-top: 8px;
}

.hero-desc {
    color: rgba(255,255,255,0.70);
    font-size: 16px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(13,110,170,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,110,170,0.5);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.08);
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-item strong {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
}
.stat-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.hero-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}
.hero-report-card {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 16px;
    backdrop-filter: blur(8px);
    align-items: center;
}
.hero-report-card img {
    width: 80px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.report-card-text {
    flex: 1;
}
.report-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.report-card-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 8px;
}
.report-card-text a {
    font-size: 12px;
    color: var(--teal-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 28px 0;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 20px;
    flex-shrink: 0;
}
.trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.trust-item p {
    font-size: 12px;
    color: var(--gray-300);
}
.trust-sep {
    width: 1px;
    height: 48px;
    background: var(--gray-100);
}

/* ---- Promo Banners ---- */
.promo-section {
    padding: 60px 0;
    background: var(--off-white);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
}
.promo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.promo-main img { height: 420px; }
.promo-small img { height: 196px; }
.promo-card:hover img { transform: scale(1.04); }
.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
}
.promo-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 24px;
}
.promo-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.promo-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.promo-small .promo-content h3 { font-size: 16px; }
.promo-content p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-bottom: 14px;
}
.promo-stack { display: flex; flex-direction: column; gap: 20px; }
.btn-white {
    display: inline-flex;
    padding: 10px 22px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-white:hover { background: var(--gold); }
.btn-white-sm {
    display: inline-flex;
    padding: 7px 16px;
    background: var(--white);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-white-sm:hover { background: var(--gold); }

/* ---- Products Section ---- */
.products-section {
    padding: 70px 0;
    background: var(--white);
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 48px;
}
.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    padding: 8px 16px;
    border: 1.5px solid var(--teal);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.view-all-link:hover {
    background: var(--teal);
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}
.product-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}
.badge-discount, .badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.badge-discount { background: var(--red); color: var(--white); }
.badge-new { background: var(--teal); color: var(--white); }
.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    z-index: 2;
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.action-btn {
    width: 34px;
    height: 34px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition);
}
.action-btn:hover { color: var(--teal); background: var(--teal-pale); }
.product-body {
    padding: 16px;
}
.product-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 40px;
}
.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.price-new {
    font-size: 17px;
    font-weight: 800;
    color: var(--teal);
}
.price-old {
    font-size: 13px;
    color: var(--gray-300);
    text-decoration: line-through;
}
.btn-add-cart {
    width: 100%;
    padding: 10px 16px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--transition);
}
.btn-add-cart:hover { background: var(--teal); }

/* ---- Categories ---- */
.categories-section {
    padding: 70px 0;
    background: var(--off-white);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
    color: var(--gray-600);
}
.cat-card:hover {
    border-color: var(--teal);
    color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.cat-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--teal);
    transition: all var(--transition);
}
.cat-card:hover .cat-icon-wrap {
    background: var(--teal);
    color: var(--white);
}
.cat-card span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

/* ---- Blog ---- */
.blog-section {
    padding: 70px 0;
    background: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.blog-img-wrap {
    position: relative;
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-cat-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}
.blog-body {
    padding: 20px;
}
.blog-date {
    font-size: 12px;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.blog-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 10px;
}
.blog-body p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}
.blog-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.blog-link:hover { gap: 10px; }

/* =====================
   STORE PAGE
   ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 48px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: var(--white); }
.page-hero h1 {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 15px; }

.store-main { padding: 48px 0 80px; }
.store-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar */
.store-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}
.widget-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal-pale);
}
.sidebar-cats { list-style: none; }
.sidebar-cats li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
}
.sidebar-cats li a:hover,
.sidebar-cats li.active a {
    background: var(--teal-pale);
    color: var(--teal);
}
.sidebar-cats li a i { width: 18px; text-align: center; color: var(--teal); }

/* Store categories — desktop */
.store-cats-toggle {
    display: none;
}
.store-cats-panel {
    display: block;
}
.widget-title-desktop {
    display: block;
}

.sidebar-fb-banner {
    background: linear-gradient(135deg, #1877f2, #0d5db0);
    color: var(--white);
    text-align: center;
    border: none;
}
.fb-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.sidebar-fb-banner p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}
.btn-secondary-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--white);
    color: #1877f2;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-secondary-sm:hover { background: var(--navy); color: var(--white); }

/* Store Toolbar */
.store-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.results-info {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
}
.toolbar-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.search-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    color: var(--gray-300);
    font-size: 14px;
}
.search-inline input {
    border: none;
    background: transparent;
    font-family: var(--font-ar);
    font-size: 13px;
    color: var(--gray-800);
    outline: none;
    width: 180px;
    direction: rtl;
}
.search-inline input::placeholder { color: var(--gray-300); }
.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}
.sort-select {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-ar);
    font-size: 13px;
    color: var(--gray-800);
    background: var(--white);
    cursor: pointer;
    outline: none;
    direction: rtl;
}

/* Store Grid (3 columns) */
.store-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.store-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.page-btn, .page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600);
    transition: all var(--transition);
}
.page-number:hover, .page-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-pale);
}
.page-number.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.page-dots {
    font-size: 16px;
    color: var(--gray-300);
    padding: 0 4px;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--navy);
}
.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 48px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand .logo-icon {
    background: rgba(255,255,255,0.1);
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--teal-light);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}
.footer-contact strong { color: rgba(255,255,255,0.8); }
.footer-bottom {
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 26px;
    color: rgba(255,255,255,0.35);
}
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.mobile-menu-btn:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
    color: var(--teal);
}

/* =====================
   MOBILE DRAWER
   ===================== */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.55);
    z-index: 1100;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.drawer-overlay.open {
    display: block;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100dvh;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}
.mobile-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}
.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.drawer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}
.drawer-close {
    width: 36px;
    height: 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}
.drawer-close:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
    color: var(--teal);
}
.drawer-nav {
    padding: 12px 0;
    flex: 1;
}
.drawer-nav ul {
    list-style: none;
}
.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
    border-right: 3px solid transparent;
}
.drawer-nav a i {
    width: 20px;
    text-align: center;
    color: var(--teal);
    font-size: 15px;
}
.drawer-nav a:hover,
.drawer-nav a.active {
    color: var(--teal);
    background: var(--teal-pale);
    border-right-color: var(--teal);
}
.drawer-nav a.active {
    font-weight: 700;
}
.drawer-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 10px 24px;
}
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
}
.drawer-footer .btn-outline-sm {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.drawer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.drawer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 14px;
    transition: all var(--transition);
}
.drawer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    /* إخفاء شريط الإعلان — موبايل فقط */
    .announcement-bar {
        display: none !important;
    }

    /* Header */
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-inner { gap: 12px; height: 64px; }
    .header-actions .icon-btn { display: none; }
    .header-actions { gap: 6px; }

    /* Hero — الرئيسية ملء الشاشة */
    .page-home .site-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        border-bottom-color: transparent;
    }
    .page-home .site-header.scrolled {
        background: var(--white);
        border-bottom-color: var(--gray-100);
    }
    .page-home .home-hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
    }
    .page-home .hero-media,
    .page-home .hero-bg-img {
        width: 100%;
        height: 100%;
    }
    .page-home .home-hero .hero-container {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        flex: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        /* مسافة آمنة فوق زر واتساب العائم */
        padding: 72px 20px 108px;
    }
    .page-home .hero-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
        margin-bottom: 0;
    }
    .page-home .hero-eyebrow {
        justify-content: center;
        font-size: 14px;
        margin-bottom: 14px;
    }
    .page-home .hero-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 10px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }
    .page-home .hero-title em {
        font-size: 26px;
        display: block;
        margin-top: 8px;
    }
    /* إخفاء الوصف على الموبايل فقط */
    .page-home .hero-desc {
        display: none !important;
    }
    .page-home .hero-cta {
        margin: 20px 0 24px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .page-home .hero-cta .btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 28px;
        font-size: 17px;
    }
    .page-home .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 360px;
        padding: 16px 12px;
        background: rgba(10, 22, 40, 0.35);
        border-radius: var(--radius-md);
        backdrop-filter: blur(6px);
    }
    .page-home .stat-divider {
        display: none;
    }
    .page-home .stat-item {
        text-align: center;
    }
    .page-home .stat-item strong {
        font-size: 22px;
        display: block;
    }
    .page-home .stat-item span {
        font-size: 11px;
        line-height: 1.35;
    }

    /* Hero — باقي الصفحات */
    .hero:not(.home-hero) {
        min-height: auto;
        padding: 52px 0 44px;
    }
    .hero-title { font-size: 32px; }
    .hero-title em { font-size: 24px; white-space: normal; }
    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .hero-cta { margin-bottom: 32px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-item strong { font-size: 24px; }

    /* Sections */
    .promo-grid { grid-template-columns: 1fr; }
    .promo-main img { height: 280px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .categories-section { padding: 36px 0; }
    .cat-card span { font-size: 12px; }
    .blog-grid { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Trust bar */
    .trust-bar-inner { flex-direction: column; gap: 20px; }
    .trust-sep { width: 60px; height: 1px; }

    /* Store — قائمة أقسام منسدلة */
    .store-layout { grid-template-columns: 1fr; }
    .store-sidebar { position: static; }
    .store-cats-widget {
        padding: 0;
        border: none;
        background: transparent;
        margin-bottom: 12px;
    }
    .store-cats-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding: 14px 16px;
        background: var(--white);
        border: 1.5px solid var(--gray-100);
        border-radius: var(--radius-md);
        font-family: var(--font-ar);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        cursor: pointer;
        box-shadow: var(--shadow-sm);
    }
    .store-cats-toggle i:first-child {
        color: var(--teal);
    }
    .store-cats-chevron {
        transition: transform var(--transition);
        color: var(--gray-300);
        font-size: 14px;
    }
    .store-cats-toggle[aria-expanded="true"] .store-cats-chevron {
        transform: rotate(180deg);
    }
    .widget-title-desktop {
        display: none;
    }
    .store-cats-panel {
        display: none;
        margin-top: 8px;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
    .store-cats-panel.open {
        display: block;
    }
    .sidebar-fb-banner {
        display: none;
    }
    .store-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .store-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
    .toolbar-controls { flex-direction: column; }
    .search-inline input { width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .store-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 28px; }
    .btn-primary { padding: 12px 22px; font-size: 14px; }
}

@media (max-width: 360px) {
    .products-grid { grid-template-columns: 1fr; }
    .store-grid { grid-template-columns: 1fr !important; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== إصلاح موضع زر القائمة للموبايل وإخفاء القائمة العلوية ===== */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex !important;
        order: 2;
    }
    .header-inner {
        justify-content: space-between;
    }
    .page-home .header-actions {
        display: none !important;
    }
}

/* =============================================
   ADDITIONS: Mobile Drawer, Quick View, Loading
   ============================================= */

/* ---- Mobile Menu Button ---- */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
}

/* ---- Mobile Drawer ---- */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
}
.drawer-overlay.open {
    display: block;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    padding: 24px;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-xl);
}
.mobile-drawer.open {
    right: 0;
}
.drawer-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 14px;
    cursor: pointer;
}
.drawer-nav ul {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
}
.drawer-nav a:hover,
.drawer-nav a.active {
    background: var(--teal-pale);
    color: var(--teal);
}
.drawer-nav a i {
    width: 20px;
    text-align: center;
}

/* ---- Loading & Empty States ---- */
.loading-state,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--gray-300);
    font-size: 15px;
    grid-column: 1 / -1;
}
.loading-state i,
.empty-state i {
    font-size: 40px;
    color: var(--teal-light);
    opacity: 0.5;
}
.fa-spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Status Badges ---- */
.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.status-badge.used {
    background: #fff3cd;
    color: #856404;
}
.status-badge.rent {
    background: #d1ecf1;
    color: #0c5460;
}

/* ---- Quick View Modal ---- */
.quickview-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.quickview-modal.open {
    display: flex;
}
.quickview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.quickview-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}
.quickview-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    font-size: 14px;
    transition: all var(--transition);
}
.quickview-close:hover {
    background: var(--red);
    color: white;
}
.quickview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.quickview-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.quickview-info h2 {
    font-size: 20px;
    color: var(--navy);
    margin: 8px 0 16px;
    line-height: 1.4;
}
.qv-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0;
}
.qv-status {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 20px;
}
.qv-status strong {
    color: var(--teal);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .main-nav { display: none; }
    .header-actions .btn-outline-sm { display: none; }

    .quickview-grid {
        grid-template-columns: 1fr;
    }
    .quickview-img-wrap img {
        height: 220px;
       
    }
}


img[src=""], img:not([src]) {
    background-color: #f0f4f8;
    min-height: 100px;
}

/* ---- WhatsApp float & header ---- */
.mz-whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.mz-whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.04);
    color: #fff;
}
.mz-whatsapp-float i { font-size: 22px; }
@media (max-width: 480px) {
    .mz-whatsapp-float span { display: none; }
    .mz-whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        left: 16px;
    }
    .page-home .home-hero .hero-container {
        padding-bottom: 96px;
    }
}

/* واتساب الهيدر — معطّل (الزر العائم بالأسفل فقط) */
.header-wa-btn {
    display: none !important;
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding: 10px 14px;
    background: #e8faf0;
    color: #128C7E;
    border: 1.5px solid #25D366;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-whatsapp-outline:hover {
    background: #25D366;
    color: #fff;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---- Legal / FAQ pages ---- */
.legal-page { padding: 40px 0 80px; background: var(--off-white); }
.legal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h1 { color: var(--navy); margin-bottom: 8px; font-size: 28px; }
.legal-content h2 { color: var(--navy-mid); margin: 24px 0 12px; font-size: 18px; }
.legal-content p, .legal-content li { color: var(--gray-600); line-height: 1.8; }
.legal-updated { font-size: 13px; color: var(--gray-300); margin-bottom: 20px; }
.faq-list { margin-top: 24px; }
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    padding: 0 16px;
    background: var(--gray-50);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    padding: 16px 0;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 16px; }
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.support-cards .info-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-100);
}
.support-cards .info-card i { font-size: 28px; color: var(--teal); margin-bottom: 12px; }
