/* ==========================================================================
   Store Vegtables - Iraqi Produce & WhatsApp Store (CSS Design System - Phase 1)
   ========================================================================== */

:root {
    /* Color Palette */
    --primary: #059669;
    --primary-hover: #047857;
    --primary-light: #ECFDF5;
    --dark-green: #064E3B;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --bg-light: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 35px -10px rgba(6, 78, 59, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Alexandria', 'Tajawal', 'Cairo', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--dark-green));
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--dark-green);
    border: 1.5px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:disabled {
    background: #CBD5E1;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-whatsapp-confirm {
    background: linear-gradient(135deg, #25D366, #16A34A);
    color: white;
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Header & Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.85rem;
    gap: 0.5rem;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.brand-info {
    min-width: 0;
    flex-shrink: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    padding-bottom: 4px !important;
}

.brand-logo {
    width: 68px;
    height: 52px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    flex-shrink: 0;
    padding: 0;
    overflow: hidden !important;
    transition: transform 0.25s ease;
}

.brand-logo:hover {
    transform: scale(1.08);
}

.brand-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.brand-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.brand-info h1 {
    font-size: clamp(1.05rem, 3.8vw, 1.55rem) !important;
    font-weight: 900 !important;
    color: var(--dark-green) !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: visible !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0.15rem 0.2rem 0.35rem !important;
    letter-spacing: -0.3px !important;
}

.brand-info h1 span {
    color: var(--primary) !important;
}

@media (max-width: 640px) {
    .brand-info h1 {
        font-size: 1.35rem !important;
    }
}

/* Sub-Header Info Strip */
.header-sub-bar {
    background: #ECFDF5;
    border-top: 1px solid #A7F3D0;
    border-bottom: 1px solid #A7F3D0;
    padding: 0.55rem 0;
    margin-top: 0.5rem;
}

.sub-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sub-tagline {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    color: #065F46 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-align: right !important;
}

.work-hours-badge {
    background: #FEF3C7 !important;
    color: #92400E !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    padding: 4px 14px !important;
    border-radius: var(--radius-full) !important;
    border: 1.5px solid #FCD34D !important;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.brand-info p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 1px;
    white-space: nowrap;
}

/* Social Media Links in Navbar Header */
.social-nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.social-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #ffffff !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    border: none;
    flex-shrink: 0;
}

.social-nav-link.fb-link {
    background: #1877F2;
}

.social-nav-link.fb-link:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 5px 14px rgba(24, 119, 242, 0.4);
}

.social-nav-link.ig-link {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.nav-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
}

.social-nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.65rem !important;
    flex-shrink: 0 !important;
}

.social-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    color: #ffffff !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    border: none;
    flex-shrink: 0;
}

.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    color: #ffffff !important;
    padding: 0.65rem 1.15rem !important;
    font-size: 0.95rem !important;
    font-weight: 900 !important;
    border-radius: var(--radius-full) !important;
    border: 1.5px solid #34D399 !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.cart-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.55) !important;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

.cart-btn i {
    font-size: 1.15rem;
    color: #FDE68A;
}

.cart-count {
    background: #F59E0B !important;
    color: #000000 !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    padding: 3px 9px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5) !important;
    margin-right: 2px;
}

/* Hero Section Centered Layout & Proportional Typography */
.hero-banner {
    background: linear-gradient(135deg, #064E3B 0%, #0F5132 50%, #059669 100%);
    color: white;
    padding: 2.75rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text-centered {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badges-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    width: 100%;
}

/* Step 1: Topmost & Largest Badge */
.badge-fresh-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ECFDF5;
    color: #047857;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-full);
    border: 2px solid #A7F3D0;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

/* Step 2: Medium Badge Below It */
.badge-free-del-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    color: #FDE68A;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.4rem 1.15rem;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(245, 158, 11, 0.45);
}

/* Step 3: Main Title Below Badges */
.hero-title-main {
    font-size: clamp(1.15rem, 4.2vw, 1.75rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

@media (max-width: 640px) {
    .hero-title-main {
        font-size: 1.18rem !important;
        line-height: 1.4 !important;
    }
}

/* Step 4: Small Subtitle Below Main Title */
.hero-sub-main {
    font-size: 0.95rem;
    color: #A7F3D0;
    line-height: 1.6;
    font-weight: 600;
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 650px !important;
    margin-top: 1.25rem !important;
    align-items: stretch !important;
}

.hero-features .stat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    height: 100% !important;
    min-height: 76px !important;
    padding: 0.75rem 0.85rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.hero-features .stat-card div {
    text-align: center !important;
    width: 100% !important;
}

.hero-features .stat-card h4,
.hero-features .stat-card p {
    text-align: center !important;
    margin: 0 auto !important;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.85rem 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.stat-card div {
    text-align: center;
}

.stat-card i {
    font-size: 1.6rem;
    color: #FCD34D;
}

.stat-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.stat-card p {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
}

/* Controls Bar */
.main-content {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.controls-bar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    width: 100%;
}

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

.search-box input {
    width: 100%;
    padding: 0.9rem 3.2rem 0.9rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: white;
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.categories-tabs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--dark-green);
    color: white;
    border-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

/* Responsive Products Grid System */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Medium Desktop / Laptops: 3 columns */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Tablets & Small Laptops: 2 columns */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(5, 150, 105, 0.3);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    background: #F1F5F9;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.badge-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(6, 78, 59, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.badge-tag.out-of-stock {
    background: #EF4444;
}

.product-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}

.product-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Quick Weight Chips Layout (Option 1) */
.quick-chips-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.quick-chips-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.quick-chips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.chip-btn {
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    padding: 0.45rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    text-align: center;
}

.chip-btn:hover:not(:disabled) {
    background: #ECFDF5;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.15);
}

.chip-btn.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #047857;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.chip-weight {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.chip-btn.active .chip-weight {
    color: #ffffff;
}

.chip-price {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 1px;
}

.chip-btn.active .chip-price {
    color: #A7F3D0;
}

/* Option 2: Instant Direct Stepper Layout */
.option2-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.option2-direct-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-radius: 12px;
    padding: 0.35rem 0.5rem;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    transition: all 0.25s ease;
}

.option2-step-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.option2-step-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.option2-weight-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.option2-weight-val {
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.1;
}

.option2-weight-cost {
    font-size: 0.72rem;
    color: #FDE68A;
    font-weight: 800;
}

/* Option 3: Quick Grocery Checklist View (List Layout) */
.products-grid.option3-grid-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
}

.option3-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.option3-item-card:hover {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.1);
}

.option3-item-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-grow: 1;
    min-width: 0;
}

.option3-item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #F1F5F9;
}

.option3-item-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.option3-item-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.option3-item-price {
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--primary);
}

.option3-item-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Smart Grocery Suggestion Banner */
.smart-suggest-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #059669;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 0.75rem 0 0.85rem;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-suggest-banner.active {
    bottom: 0;
}

.suggest-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.suggest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.suggest-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #064E3B;
}

.close-suggest-btn {
    background: transparent;
    border: none;
    color: #64748B;
    font-size: 1rem;
    cursor: pointer;
}

.suggest-chips-scroll {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.suggest-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggest-chip-btn:hover {
    background: #047857;
    color: #ffffff;
}

/* Smart Dropdown Weight Selector */
.weight-selector-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.weight-dropdown-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark-green);
    background: #ECFDF5;
    border: 1.5px solid #A7F3D0;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.05);
}

.weight-dropdown-select:focus, .weight-dropdown-select:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.weight-dropdown-select option {
    font-weight: 700;
    color: var(--text-main);
    padding: 8px;
    background: white;
}

/* Custom Weight Stepper Component with Large Touch Buttons */
.custom-weight-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    background: #FEF3C7;
    border: 1.5px solid #FCD34D;
    border-radius: var(--radius-md);
    padding: 3px;
}

.custom-step-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #F59E0B;
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.custom-step-btn:hover {
    background: #D97706;
}

.custom-input-inner {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.custom-weight-input {
    width: 100%;
    padding: 0.45rem 2.2rem 0.45rem 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    color: #78350F;
    border: 1px solid #FBBF24;
    border-radius: var(--radius-sm);
    background: white;
    outline: none;
    text-align: center;
}

.custom-weight-input:focus {
    border-color: #D97706;
}

.custom-unit-tag {
    position: absolute;
    right: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #92400E;
    pointer-events: none;
}

/* Product Item Custom Note Input */
.item-note-input {
    width: 100%;
    padding: 0.45rem 0.65rem;
    font-family: inherit;
    font-size: 0.78rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    outline: none;
    transition: var(--transition);
    background: #F9FAFB;
}

.item-note-input:focus {
    border-color: var(--primary);
    background: white;
}

.card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.qty-stepper {
    display: flex;
    align-items: center;
    background: #F1F5F9;
    border-radius: var(--radius-md);
    padding: 2px;
}

.step-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: white;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.qty-display {
    width: 28px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.add-cart-btn {
    flex-grow: 1;
    padding: 0.55rem 0.65rem;
    font-size: 0.85rem;
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 440px;
    max-width: 95vw;
    height: 100%;
    height: 100dvh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

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

.cart-header {
    padding: 1.25rem 1.5rem;
    background: var(--dark-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Free Delivery Progress Bar */
.free-delivery-bar-wrap {
    background: #ECFDF5;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #A7F3D0;
}

.free-del-text {
    font-size: 0.82rem;
    font-weight: 800;
    color: #065F46;
    margin-bottom: 0.35rem;
}

.progress-track {
    width: 100%;
    height: 7px;
    background: #D1FAE5;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.close-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(255,255,255,0.3);
}

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

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

.empty-cart-state i {
    font-size: 3.5rem;
    color: #CBD5E1;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F8FAFC;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
}

.cart-item-weight {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.cart-item-note-text {
    font-size: 0.75rem;
    color: #D97706;
    font-weight: 700;
    margin-top: 2px;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2px;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: var(--transition);
}

.remove-item-btn:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px)) !important;
    border-top: 1px solid var(--border);
    background: white;
    flex-shrink: 0 !important;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.delivery-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.del-fee-price {
    color: var(--text-main);
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
}

/* Lock background scrolling and suppress floating cart bar when any modal is open */
body.modal-open {
    overflow: hidden !important;
}

body.modal-open .mobile-sticky-cart-bar,
.modal.active ~ .mobile-sticky-cart-bar,
.cart-drawer-overlay.active ~ .mobile-sticky-cart-bar,
.cart-drawer.active ~ .mobile-sticky-cart-bar {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Mobile Sticky Floating Cart Bar */
.mobile-sticky-cart-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 78, 59, 0.96);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    z-index: 900;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.15);
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
}

.mobile-sticky-cart-bar.active {
    display: flex;
}

.mobile-cart-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-cart-info i {
    font-size: 1.4rem;
    color: #FCD34D;
}

.mobile-cart-info span {
    font-size: 0.75rem;
    opacity: 0.85;
    display: block;
}

.mobile-cart-info strong {
    font-size: 1.05rem;
    font-weight: 900;
}

.btn-whatsapp-mobile {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 530px;
    max-height: 88vh;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    flex-shrink: 0 !important;
}

/* Universal Responsive Modal & Bottom Sheet Safe Area System for All Mobile Devices & PCs */
.product-modal-content,
.checkout-modal-content {
    max-width: 580px !important;
    max-height: calc(88vh - env(safe-area-inset-bottom, 0px)) !important;
    height: auto !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
}

.checkout-modal-content {
    max-width: 540px !important;
}

.checkout-modal-content form,
.modal-content form {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.product-modal-content .modal-body,
.checkout-modal-content .modal-body,
.modal-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    flex: 1 !important;
    min-height: 0 !important;
    padding: 1.25rem 1.25rem 1.75rem !important;
}

.modal-sticky-footer {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px)) !important;
    border-top: 1px solid var(--border) !important;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08) !important;
    z-index: 999 !important;
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

.modal-sticky-footer button {
    width: 100% !important;
    padding: 0.9rem 1rem !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    justify-content: center !important;
    border-radius: var(--radius-md) !important;
    touch-action: manipulation;
}

/* Interactive GPS Location Button & Info */
.btn-gps-location {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px dashed #0284C7;
    color: #0369A1;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.08);
}

.btn-gps-location:hover:not(:disabled) {
    background: #E0F2FE;
    border-color: #0369A1;
    transform: translateY(-1px);
}

.btn-gps-location.success {
    background: #ECFDF5 !important;
    border: 1.5px solid #10B981 !important;
    color: #047857 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15) !important;
}

.gps-status-info {
    font-size: 0.76rem;
    color: #64748B;
    margin-top: 6px;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 640px) {
    #productDetailModal, #checkoutModal {
        align-items: flex-end !important;
        padding: 0 !important;
    }
    .product-modal-content, .checkout-modal-content {
        max-height: calc(85vh - env(safe-area-inset-bottom, 0px)) !important;
        height: auto !important;
        border-radius: 24px 24px 0 0 !important;
        animation: slideUpSheet 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: env(safe-area-inset-bottom, 0px);
    }
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Step-by-Step Guided Action Modal */
.guided-step-modal {
    text-align: center;
    padding: 1.5rem 1.25rem;
}

.guided-icon-badge {
    width: 65px;
    height: 65px;
    background: #ECFDF5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.15);
}

.guided-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #064E3B;
    margin-bottom: 0.35rem;
}

.guided-desc {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.guided-actions-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guided-btn-continue {
    background: #F1F5F9;
    color: #0F172A;
    border: 1.5px solid #CBD5E1;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.guided-btn-continue:hover {
    background: #E2E8F0;
    border-color: #94A3B8;
}

.guided-btn-checkout {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-size: 0.98rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
    transition: all 0.2s ease;
}

.guided-btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.4);
}

.modal-header {
    padding: 1.25rem 1.5rem;
    background: var(--dark-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-modal-content .modal-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
    background: white;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.summary-breakdown {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 3px;
}

.order-summary-box {
    background: #F8FAFC;
    border: 1px dashed var(--border);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1.25rem 0;
}

.summary-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.summary-list {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.summary-total strong {
    color: var(--primary);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--dark-green);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Footer */
.footer {
    background: #064E3B;
    color: white;
    padding: 2.5rem 0 5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--primary);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-icon-ft {
    color: #A7F3D0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon-ft:hover {
    color: white;
}

.footer-content p {
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-sub {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 0.35rem;
}

/* Unified Responsive System (Smartphones, iPads/Tablets & Desktops) */

/* 1. Smartphones & Small Devices (max-width: 640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 0.85rem;
    }

    .navbar {
        padding: 0.5rem 0 0;
    }

    .nav-container {
        padding: 0 0.65rem;
        gap: 0.5rem;
    }

    .brand {
        gap: 0.4rem;
        max-width: 100% !important;
        flex: 1 !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    .brand-logo {
        width: 66px;
        height: 48px;
    }

    .brand-info h1 {
        font-size: clamp(1.05rem, 3.5vw, 1.28rem) !important;
        line-height: 1.45 !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow: visible !important;
        text-align: center !important;
        padding: 0.1rem 0.1rem 0.25rem !important;
    }

    .cart-btn {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.85rem !important;
        border-radius: var(--radius-full) !important;
        white-space: nowrap !important;
    }

    .cart-btn i {
        font-size: 1rem !important;
    }

    .cart-count {
        font-size: 0.75rem !important;
        padding: 2px 7px !important;
    }

    .header-sub-bar {
        padding: 0.4rem 0;
        margin-top: 0.4rem;
    }

    .sub-bar-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.35rem !important;
        padding: 0 0.5rem !important;
        text-align: center !important;
    }

    .sub-tagline {
        font-size: 0.85rem !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .work-hours-badge {
        font-size: 0.78rem !important;
        padding: 3px 12px !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        max-width: 100% !important;
    }

    /* Hero Banner Mobile Spacing & Title */
    .hero-banner {
        padding: 1.5rem 0.5rem 1.8rem !important;
        overflow: visible !important;
    }

    .badge-fresh-main {
        font-size: 0.85rem !important;
        padding: 0.35rem 0.85rem !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 95% !important;
    }

    .badge-free-del-main {
        font-size: 0.78rem !important;
        padding: 0.25rem 0.75rem !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 95% !important;
    }

    .hero-title-main {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.65rem !important;
        padding: 0 0.5rem !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-sub-main {
        font-size: 0.8rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.15rem !important;
        padding: 0 0.5rem !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4rem !important;
    }

    .hero-features .stat-card {
        min-height: 72px !important;
        padding: 0.5rem 0.3rem !important;
        border-radius: 12px !important;
        gap: 0.25rem !important;
        box-sizing: border-box !important;
    }

    .stat-card h4 {
        font-size: 0.75rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
        word-break: normal !important;
        white-space: normal !important;
    }

    .stat-card p {
        font-size: 0.68rem !important;
        text-align: center !important;
        word-break: normal !important;
        white-space: normal !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }

    .product-img-wrap {
        height: 135px !important;
    }

    .product-title {
        font-size: 0.9rem !important;
        font-weight: 800 !important;
    }

    .product-price {
        font-size: 1.05rem !important;
    }

    .cart-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100% !important;
        height: 100dvh !important;
    }

    .cart-footer {
        padding: 1rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    .cart-footer .btn-whatsapp-large {
        padding: 0.85rem 1rem !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
    }

    .toast {
        bottom: 80px;
        right: 15px;
        left: 15px;
        text-align: center;
    }
}

/* 2. iPads & Tablets (min-width: 641px and max-width: 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .brand-info h1 {
        font-size: 1.45rem !important;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .cart-drawer {
        width: 420px !important;
        max-width: 90vw !important;
    }
}

/* 3. Laptops & Desktop PCs (min-width: 1025px) */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.25rem !important;
    }
}

/* Store Closed Notification Banner */
.store-closed-banner {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: sticky;
    top: 0;
    z-index: 200;
}

