:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --red-price: #ef4444;
    --green-status: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 85px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

.css-logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.css-logo i {
    color: var(--primary-color);
    font-size: 32px;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 12px;
}

.css-logo span {
    color: var(--primary-color);
}

.logo-accent {
    color: #f43f5e;
    -webkit-text-fill-color: #f43f5e;
}

.catalog-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.catalog-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.search-bar {
    flex-grow: 1;
    display: flex;
    max-width: 500px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-btn {
    background-color: var(--white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.2s ease;
}
.search-btn:hover {
    background-color: #f8fafc;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.phone-link:hover { color: var(--primary-color); }

.icon-btn {
    background: #f1f5f9;
    color: var(--text-main);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    transition: all 0.2s ease;
}
.icon-btn:hover {
    background: #e2e8f0;
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.login-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}
.login-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.lang-selector {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.lang-selector:hover { background: #e2e8f0; }
.flag { width: 20px; border-radius: 2px;}

/* Mega Menu / Catalog Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay */
    height: calc(100vh - 70px);
    z-index: 99;
    display: none; /* Hidden by default */
}

.mega-menu.active {
    display: block;
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    height: 500px; /* Fixed height for the dropdown */
}

.mega-sidebar {
    width: 280px;
    background: #f8f9fa;
    border-right: 1px solid var(--border-color);
    border-radius: 0 0 0 12px;
    overflow-y: auto;
}

.mega-sidebar ul {
    list-style: none;
    padding: 10px 0;
}

.mega-sidebar li {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-main);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.mega-sidebar li .sidebar-icon {
    width: 25px;
    color: var(--text-muted);
}

.mega-sidebar li:hover, .mega-sidebar li.active {
    background: var(--white);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.mega-sidebar li:hover .sidebar-icon, .mega-sidebar li.active .sidebar-icon {
    color: var(--primary-color);
}

.mega-sidebar li .arrow {
    font-size: 12px;
    color: #ccc;
}

.mega-content {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
    border-radius: 0 0 12px 0;
}

.mega-panel {
    display: none;
}
.mega-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mega-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.mega-grid {
    display: flex;
    gap: 40px;
}

.mega-column {
    flex: 1;
}

.mega-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: color 0.2s;
}

.mega-item:hover {
    color: var(--primary-color);
}

.mega-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 4px;
    padding: 3px;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-main {
    flex: 3;
    border-radius: var(--radius-xl);
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    padding: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.hero-text-overlay h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promo-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.3;
}

.promo-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.promo-slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.4s ease;
}

.promo-slide.active {
    opacity: 1;
}

.promo-card:hover .promo-slide.active {
    transform: scale(1.05);
}

.promo-footer {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.category-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #3b82f6;
}

.cat-img-wrapper {
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 2px solid #f8fafc;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item:hover .cat-img-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.retro-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.category-item span {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: var(--text-main);
}

/* Products Section */
.product-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-all:hover { text-decoration: underline; }

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

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

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

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444; /* Red color for discounted price */
    margin: 0;
}

.prod-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.prod-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    flex-grow: 1;
    color: var(--text-main);
    line-height: 1.4;
}

.prod-status {
    color: var(--green-status);
    font-size: 12px;
    margin-bottom: 8px;
    background: #ecfdf5;
    padding: 4px 8px;
    border-radius: 20px;
    align-self: flex-start;
    font-weight: 700;
}

.prod-price {
    color: var(--text-main);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}
.prod-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.add-cart-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.add-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* Banner Section */
.banner-section {
    margin-bottom: 50px;
}

.question-banner {
    background: linear-gradient(135deg, #6bb9f0, #3498db);
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}
.contact-btn:hover {
    background: var(--primary-hover);
}

.banner-icon {
    font-size: 120px;
    opacity: 0.8;
    transform: rotate(-15deg);
}

/* Partners Section */
.partners-section {
    margin-bottom: 60px;
}
.partners-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}
.partners-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
    padding: 10px 0;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-track {
    display: inline-flex;
    gap: 20px;
    animation: scroll-partners 20s linear infinite;
    padding-right: 20px; /* balance out gap */
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    width: 220px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Modern Dark Footer */
.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-top: 4px solid var(--primary-color);
}

.footer-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.15), transparent 25%), radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1), transparent 25%);
    pointer-events: none;
}

.modern-footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.footer-brand h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.modern-footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #f1f5f9;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
}

.footer-links-group li {
    margin-bottom: 15px;
}

.footer-links-group a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-group a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-contact .c-icon {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}

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

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* Floating Action Button (FAB) */
.fab-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.2s, background 0.2s;
}

.fab-btn:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}


/* Shopping Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

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

.cart-sidebar {
    width: 400px;
    background: var(--white);
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

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

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.close-cart {
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.close-cart:hover {
    background: #e2e8f0;
    color: var(--red-price);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
}

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

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    padding-right: 20px;
}

.cart-item-price {
    color: var(--red-price);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls button {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.remove-item-btn {
    position: absolute;
    top: 5px;
    right: 0;
    background: #fee2e2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--red-price);
    cursor: pointer;
    transition: all 0.2s;
}
.remove-item-btn:hover {
    background: var(--red-price);
    color: white;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
}

.checkout-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    margin-top: 60px;
    font-size: 16px;
}

/* Checkout Page Styles */
.bg-gray {
    background-color: #f4f7fb;
}

.checkout-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.checkout-page-title {
    margin-bottom: 30px;
}

.checkout-page-title h2 {
    color: var(--primary-color);
    font-size: 28px;
}

.checkout-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.checkout-form-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-summary-col {
    flex: 1;
    position: sticky;
    top: 90px;
}

.checkout-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.checkout-card .card-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.checkout-card .card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.triple .form-group {
    flex: 1;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.phone-input span {
    padding: 12px 15px;
    background: #f8f9fa;
    border-right: 1px solid var(--border-color);
}

.phone-input input {
    border: none;
    flex: 1;
    border-radius: 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.summary-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.summary-items {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.summary-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #fafafa;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

/* Product Page Styles */
.product-page-main {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
}
.breadcrumb a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb a:hover {
    color: var(--primary-color);
}
.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb i.fa-chevron-right {
    font-size: 12px;
    color: #cbd5e1;
}

.product-top-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

/* Gallery */
.product-gallery {
    flex: 2;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb {
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.thumb.active {
    border-color: var(--primary-color);
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Info Sidebar */
.product-info-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.main-info-card h1 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    background: #e6f7f3;
    color: var(--green-status);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-section {
    margin-bottom: 25px;
}
.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--red-price);
}
.price-unit {
    color: var(--text-muted);
    font-size: 16px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.buy-now-btn, .add-to-cart-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

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

.add-to-cart-btn {
    background: #e6f0fa;
    color: var(--primary-color);
}
.add-to-cart-btn:hover {
    background: #cce0f5;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.card-header h3 {
    font-size: 16px;
    color: var(--text-main);
}
.card-header a {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
}

.info-list {
    list-style: none;
    color: var(--text-muted);
    font-size: 14px;
}
.info-list li {
    margin-bottom: 8px;
}

.ad-banner {
    background: linear-gradient(135deg, #605ca8, #403b8c);
    color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.ad-banner h4 { margin-bottom: 5px; font-size: 16px; }
.ad-banner p { font-size: 12px; margin-bottom: 15px; opacity: 0.8; }
.ad-banner button {
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Specifications */
.product-specs-section {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.product-specs-section h2 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 20px;
}
.specs-table {
    display: flex;
    flex-direction: column;
}
.spec-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.spec-row:last-child {
    border-bottom: none;
}
.spec-name {
    flex: 1;
    color: var(--text-muted);
    font-size: 15px;
}
.spec-value {
    flex: 2;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    text-align: right;
}

/* Auth Page Styles */
.auth-page {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: var(--primary-color);
}

.auth-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    background: var(--white);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.auth-header h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.auth-group .required {
    color: var(--red-price);
}

.auth-group input[type="text"],
.auth-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 40px;
}

.password-input i {
    position: absolute;
    right: 15px;
    color: var(--text-muted);
    cursor: pointer;
}

.auth-submit-btn {
    width: 100%;
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.auth-submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Admin Page Styles */
.admin-page {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-color);
    margin: 0;
}

.admin-sidebar {
    width: 250px;
    background: #1e293b;
    color: white;
    padding: 20px 0;
    flex-shrink: 0;
}

.admin-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid #334155;
    margin-bottom: 20px;
}
.admin-logo h2 {
    font-size: 20px;
    margin: 0;
    color: white;
}

.admin-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.admin-menu li {
    padding: 15px 20px;
}
.admin-menu li.active {
    background: var(--primary-color);
}
.admin-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-menu a:hover {
    opacity: 0.8;
}

.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.admin-header {
    background: white;
    padding: 20px 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.admin-header h2 {
    margin: 0;
    font-size: 22px;
}

.admin-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.admin-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.admin-form .form-group {
    margin-bottom: 15px;
}
.admin-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
.admin-form input, .admin-form select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}
.admin-form input:focus, .admin-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.admin-btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}
.admin-btn-secondary {
    background: #64748b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}
.admin-btn-edit {
    background: #eab308;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin-right: 5px;
}
.admin-btn-danger {
    background: var(--red-price);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th, .admin-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}
.admin-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}
.admin-table td {
    vertical-align: middle;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hero-section { flex-direction: column; }
    .hero-sidebar { display: none; }
}
@media (max-width: 900px) {
    .categories-section { flex-wrap: wrap; }
    .category-item { min-width: 120px; }
    .footer-container { flex-direction: column; }
    .partners-logos { flex-wrap: wrap; }
    .partner-logo { min-width: 150px; }
}
@media (max-width: 600px) {
    .cart-sidebar { width: 100%; }
    .header-container { flex-wrap: wrap; gap: 10px; }
    .search-bar { order: 3; width: 100%; margin: 10px 0; }
    .hero-text-overlay h1 { font-size: 36px; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #ef4444;
    text-decoration: none;
}

/* Ad Banner Default Styles */
.ad-banner-section { margin: 40px 0; }
.ad-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; display: flex; align-items: center; min-height: 200px; background: linear-gradient(90deg, var(--primary-color) 0%, #1e3a8a 100%); box-shadow: var(--shadow-md); }
.ad-banner-img { position: absolute; right: 0; top: 0; height: 100%; width: 50%; object-fit: cover; opacity: 0.4; }
.ad-banner-content { position: relative; z-index: 2; padding: 40px 60px; color: white; width: 60%; }
.ad-banner-content h3 { font-size: 32px; font-weight: 700; margin-bottom: 15px; color: white; }
.ad-banner-content p { font-size: 18px; opacity: 0.9; margin-bottom: 20px; color: white; }
.ad-banner-btn { background: white; color: var(--primary-color); display: inline-block; padding: 8px 20px; font-size: 14px; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; border: none; }
.ad-banner-btn:hover { background: #f1f5f9; transform: translateY(-2px); }

/* Improved Mobile Responsiveness */
@media (max-width: 768px) {
    .ad-banner { flex-direction: column; text-align: center; justify-content: center; min-height: 250px; }
    .ad-banner-img { width: 100%; height: 100%; opacity: 0.2; }
    .ad-banner-content { width: 100%; padding: 30px 20px; }
    .ad-banner-content h3 { font-size: 24px; }
    .ad-banner-content p { font-size: 16px; }
    
    .question-banner { flex-direction: column; text-align: center; padding: 30px; gap: 20px; }
    .banner-icon { margin: 0 auto; }
    
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .product-card { padding: 10px; }
    .product-img-wrapper { height: 150px; }
    .product-title { font-size: 14px; }
    .product-price { font-size: 16px; }
    .btn-icon { padding: 6px 10px; font-size: 12px; }
    
    .footer-links-group, .footer-contact, .footer-newsletter { margin-top: 20px; }
    
    .admin-main { padding: 15px; }
    .admin-card { padding: 15px; }
    .admin-table th, .admin-table td { padding: 8px; font-size: 12px; }
    
    .logo-img { height: 60px; } /* Slightly smaller logo on mobile */
}


/* Additional Tablet/Mobile Fixes */
@media (max-width: 1100px) {
    .header-container { flex-wrap: wrap; justify-content: space-between; }
    .search-bar { order: 10; width: 100%; margin-top: 15px; }
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .product-img-wrapper { height: 180px !important; }
    .product-title { font-size: 15px !important; }
}
@media (max-width: 480px) {
    .header-contact { display: none; } /* Hide phone on very small screens to avoid clutter */
    .product-img-wrapper { height: 150px !important; }
    .product-grid { gap: 10px !important; }
}


/* Footer Mobile Enhancements */
@media (max-width: 850px) {
    .footer-top { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand img { margin: 0 auto 20px !important; }
    .footer-contact li { justify-content: center; }
    .social-links { justify-content: center; }
    .newsletter-form { max-width: 400px; margin: 0 auto; }
    .footer-links-group h3, .footer-contact h3, .footer-newsletter h3 { text-align: center; }
}


/* Mega Menu Responsive Improvements */
.mega-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 900px) {
    .mega-menu-container {
        flex-direction: column;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
    }
    .mega-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .mega-sidebar ul {
        display: flex;
        flex-direction: row;
        width: max-content;
        padding: 5px;
        margin: 0;
    }
    .mega-sidebar li {
        padding: 10px 15px;
        white-space: nowrap;
    }
    .mega-sidebar li .arrow {
        display: none; /* Hide arrows on mobile horizontally scrolling categories */
    }
    .mega-content {
        height: auto;
        overflow-y: visible;
        padding: 15px;
    }
    .mega-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mega-products-grid {
        grid-template-columns: 1fr;
    }
    .mega-item {
        padding: 10px;
    }
}


/* Checkout Responsive Fixes */
@media (max-width: 900px) {
    .checkout-container {
        flex-direction: column;
    }
    .checkout-form-col {
        width: 100%;
        flex: unset;
    }
    .checkout-summary-col {
        width: 100%;
        flex: unset;
    }
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        width: 100%;
    }
}


.btn-danger {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}
.btn-danger:hover {
    background-color: #d32f2f;
}
.summary-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.summary-actions button {
    flex: 1;
}


/* --- MOBILE RESPONSIVE FIXES FOR HEADER AND LAYOUT --- */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }
    .logo-img {
        height: 35px;
    }
    .catalog-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .search-bar {
        order: 10;
        width: 100%;
        max-width: 100%;
        margin-top: 5px;
    }
    .header-actions {
        gap: 10px;
    }
    .phone-link {
        font-size: 0;
        padding: 8px;
        background: #f1f5f9;
        border-radius: 8px;
    }
    .phone-link i {
        font-size: 16px;
        color: var(--primary-color);
        margin: 0;
    }
    .login-btn span {
        display: none;
    }
    .login-btn {
        padding: 8px 12px;
    }
    .cart-btn-toggle {
        padding: 8px;
    }
    .hero-slides {
        height: 250px;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
    }
    .hero-text-overlay {
        padding: 20px !important;
    }
}

/* --- MOBILE RESPONSIVE FIXES FOR PRODUCT CARDS --- */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
        gap: 10px !important;
    }
    .product-card {
        padding: 10px !important;
    }
    .product-img-wrapper {
        height: 130px !important;
    }
    .product-title {
        font-size: 13px !important;
        margin-bottom: 5px !important;
        line-height: 1.3 !important;
    }
    .product-price {
        font-size: 14px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 2px !important;
    }
    .product-old-price {
        font-size: 11px !important;
    }
    .product-actions {
        margin-top: 10px !important;
    }
    .add-to-cart-btn {
        padding: 8px !important;
        font-size: 14px !important;
    }
}
