/* ==========================================================================
   JS.DEMO - Real-Life Food Photography & Anti-Theft Protected CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Color Palette matching reference layout */
    --color-brand-dark: #14532d;      /* Deep Forest Green */
    --color-brand-main: #166534;      /* Forest Green */
    --color-brand-green: #15803d;     /* Primary Action Green */
    --color-brand-light: #22c55e;     /* Vibrant Green */
    --color-brand-bg: #f0fdf4;        /* Soft Light Green Tint */
    --color-lime-accent: #84cc16;     /* Discount Badge Lime */
    --color-lime-light: #d9f99d;
    
    --color-bg-page: #f8fafc;
    --color-card-bg: #ffffff;
    --color-border: #e2e8f0;
    --color-border-dark: #cbd5e1;
    
    --color-text-dark: #0f172a;
    --color-text-body: #334155;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    
    --transition: all 0.25s ease-in-out;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

/* ANTI-THEFT & CONTENT PROTECTION CSS RULES */
body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    
    /* Disable Text Selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection inside interactive form inputs */
input, select, textarea, button, .search-input, .form-field input {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Disable Image Drag & Drop */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

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

/* ==========================================================================
   DESKTOP HEADER & TOP BAR
   ========================================================================== */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-info-item i {
    color: var(--color-brand-green);
}

/* Mobile top ticker marquee (hidden on desktop) */
.mobile-top-marquee {
    display: none !important;
}

/* Main Navigation Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.mobile-hamburger-btn {
    display: none !important;
    background: none;
    font-size: 1.4rem;
    color: var(--color-text-dark);
    padding: 0.4rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-brand-main);
    justify-content: flex-start;
}

.brand-icon-box {
    width: 38px;
    height: 38px;
    background: var(--color-brand-main);
    color: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-box-wrapper {
    display: flex;
    align-items: center;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    border: 1.5px solid var(--color-border-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
}

.desktop-search-only {
    display: flex !important;
}

.mobile-search-row {
    display: none !important; /* HIDE MOBILE SEARCH ROW ON DESKTOP */
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    outline: none;
}

.search-category-select {
    border: none;
    border-left: 1px solid var(--color-border);
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    color: var(--color-text-body);
    background: #f8fafc;
    outline: none;
    cursor: pointer;
}

.search-btn {
    background: var(--color-brand-main);
    color: #ffffff;
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--color-brand-dark);
}

.header-user-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.user-action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.user-action-item i {
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.cart-count-badge {
    background: var(--color-brand-main);
    color: #ffffff;
    border-radius: var(--radius-full);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Category Navigation Bar */
.cat-nav-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
}

.cat-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-shop-categories {
    background: var(--color-brand-main);
    color: #ffffff;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-shop-categories:hover {
    background: var(--color-brand-dark);
}

.cat-nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.cat-nav-links a {
    color: var(--color-text-dark);
    transition: var(--transition);
}

.cat-nav-links a:hover, .cat-nav-links a.active {
    color: var(--color-brand-green);
}

.flash-deals-badge {
    background: var(--color-lime-light);
    color: var(--color-brand-dark);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* MOBILE DRAWER NAVIGATION */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.active {
    display: block;
    opacity: 1;
}

.mobile-drawer-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 3600;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 25px rgba(0,0,0,0.15);
}

.mobile-drawer-backdrop.active .mobile-drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.2rem;
    background: var(--color-brand-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close-btn {
    background: none;
    color: #ffffff;
    font-size: 1.6rem;
}

.drawer-user-box {
    padding: 1rem 1.2rem;
    background: #f0fdf4;
    border-bottom: 1px solid #dcfce7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.drawer-menu-list {
    list-style: none;
    padding: 1rem 0;
    overflow-y: auto;
    flex-grow: 1;
}

.drawer-menu-item a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.drawer-menu-item a:hover, .drawer-menu-item a.active {
    background: #f8fafc;
    color: var(--color-brand-green);
    border-left-color: var(--color-brand-green);
}

/* HERO SECTION */
.hero-wrapper {
    padding: 1.5rem 0;
}

.hero-banner-card {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-badge-fresh {
    color: var(--color-brand-green);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.hero-title-bold {
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 0.8rem;
}

.hero-title-bold span {
    color: var(--color-brand-green);
}

.hero-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.btn-green {
    background: var(--color-brand-green);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-green:hover {
    background: var(--color-brand-dark);
}

.btn-white-outline {
    background: #ffffff;
    border: 1.5px solid var(--color-border-dark);
    color: var(--color-text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-white-outline:hover {
    border-color: var(--color-brand-green);
    color: var(--color-brand-green);
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.discount-circle-badge {
    position: absolute;
    top: 30px;
    left: 46%;
    width: 80px;
    height: 80px;
    background: var(--color-brand-dark);
    color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.discount-circle-badge span {
    font-size: 1.1rem;
    color: var(--color-lime-accent);
}

.hero-photo-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    border: 4px solid #ffffff;
}

.hero-photo-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* CATEGORIES & PRODUCTS */
.section-title-head {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.9rem 0.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.category-card:hover, .category-card.active {
    border-color: var(--color-brand-green);
    box-shadow: var(--shadow-hover);
}

.category-img-box {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--color-border);
    background: #f8fafc;
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* Promos */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.promo-card {
    border-radius: var(--radius-md);
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-card-dark {
    background: var(--color-brand-dark);
    color: #ffffff;
}

.promo-card-light {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: var(--color-text-dark);
}

.promo-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.promo-photo-thumb {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid #ffffff;
    flex-shrink: 0;
}

.promo-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Cards */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.discount-badge-corner {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-brand-green);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    z-index: 5;
}

.product-img-box {
    height: 145px;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f8fafc;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.product-unit {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

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

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-add-cart {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--color-border-dark);
    color: var(--color-brand-green);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: auto;
}

/* Estimator Card */
.estimator-wrapper-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.estimator-inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.why-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

/* REDESIGNED FOOTER */
footer {
    background: linear-gradient(180deg, #14532d 0%, #092e18 100%);
    color: #e2e8f0;
    padding: 4rem 0 1.8rem 0;
    position: relative;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--color-lime-accent);
    border-radius: 2px;
}

.footer-links-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 0.75rem;
}

.footer-link-item a {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
}

.footer-link-item a i {
    font-size: 0.75rem;
    color: var(--color-lime-accent);
    transition: transform 0.25s ease;
}

.footer-link-item a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-link-item a:hover i {
    transform: translateX(2px);
}

.social-pills-row {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.social-pill {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-pill:hover {
    background: var(--color-lime-accent);
    color: #0f172a;
    transform: translateY(-3px);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

.contact-info-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
}

.contact-info-point i {
    color: var(--color-lime-accent);
    margin-top: 0.2rem;
}

/* Styled Payment Badge Cards */
.payment-cards-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-card-box {
    background: #ffffff;
    color: #0f172a;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    letter-spacing: 0.02em;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Modals */
.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.modal-backdrop-custom.active {
    display: flex;
}

.auth-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    position: relative;
}

.auth-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.auth-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 1.2rem;
}

.auth-tab-btn {
    flex: 1;
    padding: 0.7rem;
    background: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab-btn.active {
    color: var(--color-brand-green);
    border-bottom-color: var(--color-brand-green);
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.form-field input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--color-border-dark);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.alert-toast-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FLOATING ANTI-THEFT PROTECTION ALERT TOAST */
.protection-toast-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0f172a;
    color: #ffffff;
    border-left: 4px solid #ef4444;
    padding: 0.85rem 1.3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

/* STRICT MOBILE RESPONSIVE MEDIA QUERIES (<= 768px ONLY) */
@media (max-width: 768px) {
    .top-bar-container {
        display: none !important;
    }
    .mobile-top-marquee {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-brand-main);
        text-align: center;
    }

    .main-header {
        padding: 0.5rem 0;
    }
    
    .header-grid {
        grid-template-columns: auto auto 1fr;
        gap: 0.5rem;
        align-items: center;
    }
    .mobile-hamburger-btn {
        display: block !important;
        padding: 0.2rem 0.4rem;
    }
    .brand-logo {
        font-size: 1.25rem;
        gap: 0.4rem;
        justify-content: flex-start !important;
        margin-left: 0;
    }
    .brand-icon-box {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .brand-logo div div:last-child {
        display: none;
    }

    .header-user-actions {
        justify-self: end;
        gap: 0.6rem;
    }

    .desktop-search-only {
        display: none !important;
    }
    .mobile-search-row {
        display: flex !important;
        grid-column: 1 / -1;
        margin-top: 0.4rem;
    }

    .search-input {
        padding: 0.55rem 0.75rem;
        font-size: 0.85rem;
    }
    .search-btn {
        padding: 0.55rem 1rem;
    }

    .user-action-item div div:first-child {
        display: none;
    }
    .user-action-item i {
        font-size: 1.35rem;
    }

    .cat-nav-bar {
        display: none !important;
    }

    .hero-wrapper {
        padding: 0.8rem 0;
    }
    .hero-banner-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 1.25rem;
        border-radius: var(--radius-md);
    }
    .hero-title-bold {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 0.88rem;
        margin-bottom: 1.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    .btn-green, .btn-white-outline {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
    }
    .hero-bullets {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        padding-top: 0.8rem;
    }
    .hero-bullet-item {
        font-size: 0.78rem;
    }
    .discount-circle-badge {
        top: 10px;
        right: 10px;
        left: auto;
        width: 60px;
        height: 60px;
        font-size: 0.65rem;
    }
    .discount-circle-badge span {
        font-size: 0.9rem;
    }
    .hero-photo-wrapper img {
        height: 200px;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    .category-card {
        padding: 0.6rem 0.2rem;
        gap: 0.4rem;
        border-radius: var(--radius-sm);
    }
    .category-img-box {
        width: 44px;
        height: 44px;
    }
    .category-card-title {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .promo-card {
        padding: 1.25rem;
    }
    .promo-title {
        font-size: 1.3rem;
    }
    .promo-photo-thumb {
        width: 90px;
        height: 90px;
    }

    .deals-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .product-card {
        padding: 0.75rem;
        border-radius: var(--radius-sm);
    }
    .product-img-box {
        height: 110px;
        margin-bottom: 0.5rem;
    }
    .product-title {
        font-size: 0.82rem;
        line-height: 1.3;
    }
    .product-unit {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    .product-price {
        font-size: 0.95rem;
    }
    .product-price-old {
        font-size: 0.75rem;
    }
    .btn-add-cart {
        padding: 0.45rem;
        font-size: 0.75rem;
    }

    .estimator-wrapper-card {
        padding: 1.25rem;
    }
    .estimator-inner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .why-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    .protection-toast-floating {
        bottom: 15px;
        right: 15px;
        left: 15px;
        font-size: 0.78rem;
    }
}
