/* ============================================
   ELEPHANT HOUSE - Modern Food Store Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1B3A2D;
    --primary-light: #2d6a4f;
    --primary-dark: #0f261c;
    --accent: #D4A843;
    --accent-light: #e8c76a;
    --accent-dark: #b8912e;
    --warm: #C7522A;
    --warm-light: #e07a55;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --text: #2C2C2C;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --border: #E8E0D8;
    --shadow: rgba(27, 58, 45, 0.08);
    --shadow-lg: rgba(27, 58, 45, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--primary-dark);
    color: var(--cream);
    padding: 8px 0;
    font-size: 13px;
}

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

.top-bar a {
    color: var(--accent-light);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar i {
    margin-right: 5px;
}

/* ---- HEADER ---- */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 520px;
}

.search-bar form {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.search-bar form:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: transparent;
    color: var(--text);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 22px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-light);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
}

.header-actions a i {
    font-size: 22px;
    color: var(--primary);
}

.header-actions a:hover {
    color: var(--primary-light);
}

.header-actions a:hover i {
    color: var(--accent);
}

/* ---- NAVIGATION ---- */
.main-nav {
    background: var(--primary);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-inner a {
    color: var(--white);
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.nav-inner a:hover,
.nav-inner a.active {
    background: var(--primary-light);
    color: var(--accent-light);
}

.nav-inner a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-inner a:hover::after,
.nav-inner a.active::after {
    width: 60%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 14px 20px;
    cursor: pointer;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text) !important;
    padding: 10px 20px !important;
    display: block;
    font-size: 13px !important;
    background: none !important;
}

.dropdown-menu a:hover {
    background: var(--cream) !important;
    color: var(--primary) !important;
    padding-left: 25px !important;
}

.dropdown-menu a::after {
    display: none;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 38, 28, 0.85) 0%, rgba(27, 58, 45, 0.5) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    padding: 40px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-content .btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

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

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Default hero when no banners */
.hero-default {
    min-height: 450px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-default::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.08);
    top: -200px;
    right: -100px;
}

.hero-default::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.06);
    bottom: -100px;
    left: -50px;
}

.hero-default .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

/* ---- SECTION STYLES ---- */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* ---- CATEGORY GRID ---- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 15px var(--shadow);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.category-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.category-card-img i {
    font-size: 48px;
    color: var(--accent-light);
}

.category-card-img .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 38, 28, 0.6), transparent);
}

.category-card h3 {
    padding: 18px 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.category-card .sub-count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 3px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 15px var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.product-img {
    height: 220px;
    overflow: hidden;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

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

.product-img .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--warm);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-price .price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.product-category-tag {
    font-size: 11px;
    background: var(--cream);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
}

/* ---- OFFERS SECTION ---- */
.offers-section {
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.offer-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.offer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 38, 28, 0.8), rgba(27, 58, 45, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.offer-card-content h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.offer-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* ---- FEATURES ---- */
.features-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 35px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 32px;
    color: var(--accent);
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.feature-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- FOOTER ---- */
.main-footer {
    background: var(--primary-dark);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 248, 240, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-section ul li a i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--cream);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 248, 240, 0.4);
}

.footer-newsletter button {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 248, 240, 0.5);
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header .breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb a {
    color: var(--accent-light);
}

.page-content {
    padding: 50px 0;
}

.page-content .content-area {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 2px 15px var(--shadow);
    line-height: 1.8;
}

.page-content .content-area h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 15px;
}

.page-content .content-area p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* ---- LOADING ---- */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ---- VIEW ALL BUTTON ---- */
.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

/* ---- NO IMAGE PLACEHOLDER ---- */
.no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    color: var(--text-muted);
    font-size: 40px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: slideUp 0.6s ease forwards;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .header-inner { gap: 15px; }
    .search-bar { max-width: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 36px; }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .header-actions {
        gap: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-inner {
        flex-direction: column;
    }

    .nav-inner a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: var(--primary-light);
    }

    .dropdown-menu a {
        color: var(--white) !important;
        padding: 10px 35px !important;
    }

    .dropdown-menu a:hover {
        background: var(--primary) !important;
        color: var(--accent-light) !important;
    }

    .hero-slide {
        min-height: 350px;
    }

    .hero-default {
        min-height: 300px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .category-card-img {
        height: 120px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 15px;
    }

    .product-img { height: 170px; }

    .product-info { padding: 12px; }

    .product-info h3 { font-size: 13px; }

    .product-price .price { font-size: 17px; }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .page-header h1 { font-size: 28px; }

    .page-content .content-area { padding: 25px; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 20px; }
    .logo-text small { font-size: 9px; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-img { height: 140px; }
    .product-info { padding: 10px; }
    .product-info h3 { font-size: 12px; }
    .product-price .price { font-size: 15px; }
    .product-brand { font-size: 10px; }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
