:root {
    --primary: #081c54;
    --primary-dark: #3190b3;
    --secondary: #2e18b6;
    --accent: #f4a261;
    --dark: #1d3557;
    --light: #f1faee;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border: #e2e8f0;
    --success: #38a169;
    --warning: #ecc94b;
    --danger: #e53e3e;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    font-size: 14px;
    /* Base font size for mobile */
}

body {
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    /* Prevent zoom on iOS */
}

.container {
    max-width: 95%;
    margin: 0 auto;
    /* padding: 0 12px; */
    width: 100%;
}

/* Header Styles - Mobile First */
.header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo-icon {
    font-size: 24px;
    margin-right: 6px;
    font-weight: 800;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Search Container - Improved Mobile Responsiveness */
.search-container {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
    margin: 0 8px;
    /* Default order for tablet/desktop */
}

.search-box {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    min-width: 0;
    width: 100%;
}

.search-input::placeholder {
    color: #a0aec0;
    font-size: 14px;
}

.search-button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 50px;
    /* Better touch target */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-button:hover {
    background: #238276;
}

.search-button i {
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    color: white;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    min-width: 50px;
    /* Better touch target */
    min-height: 44px;
    justify-content: center;
    position: relative;
}

.action-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.action-icon {
    font-size: 16px;
    margin-bottom: 2px;
}

.action-text {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.cart-count {
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: 700;
}


.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.suggestion-category {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.suggestion-category:last-child {
    border-bottom: none;
}

.suggestion-title {
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    color: black;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
    border-left: 3px solid transparent;
}

.suggestion-item:hover {
    background-color: #f8fafc;
    border-left-color: #3182ce;
}

.suggestion-item.correction {
    background-color: #f0f9ff;
    border-left-color: #0369a1;
}

.suggestion-item.correction:hover {
    background-color: #e0f2fe;
}

.suggestion-item i {
    width: 16px;
    color: #64748b;
}

.suggestion-item.correction i {
    color: #0369a1;
}

.suggestion-item.popular i {
    color: #dc2626;
}

.suggestion-hint {
    margin-left: auto;
    font-size: 11px;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
}

.suggestion-loading {
    padding: 20px;
    text-align: center;
    color: #64748b;
}

.suggestion-loading i {
    margin-right: 8px;
}




/* Mobile Styles */
@media (max-width: 768px) {
    .header-top {
        gap: 8px;
        padding: 8px 0;
    }

        .search-suggestions {
            position: fixed;
            top: 120px;
            left: 10px;
            right: 10px;
            z-index: 1001;
        }

    .logo {
        flex: 1;
        min-width: auto;
    }

    .logo-icon {
        font-size: 22px;
    }

    .logo-text {
        font-size: 16px;
    }

    .search-container {
        order: 3;
        /* Move search to bottom on mobile */
        margin: 8px 0 0;
        width: 100%;
        flex: 0 0 100%;
    }

    .search-box {
        border-radius: 10px;
    }

    .search-input {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .search-input::placeholder {
        font-size: 16px;
    }

    .search-button {
        padding: 0 20px;
        min-width: 60px;
    }

    .header-actions {
        gap: 4px;
    }

    .action-item {
        min-width: 44px;
        padding: 4px 6px;
    }

    .action-text {
        font-size: 10px;
    }

    .action-icon {
        font-size: 14px;
    }

    .trust-badges {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }

    .logo-icon {
        font-size: 20px;
        margin-right: 4px;
    }

    .header-actions {
        gap: 2px;
    }

    .action-item {
        min-width: 40px;
        padding: 4px;
    }

    .action-text {
        font-size: 9px;
    }

    .search-input {
        padding: 12px 14px;
    }

    .search-button {
        padding: 0 16px;
        min-width: 50px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .search-container {
        margin: 0 12px;
    }

    .search-input {
        padding: 11px 14px;
        font-size: 15px;
    }

    .search-button {
        padding: 0 18px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .search-container {
        max-width: 500px;
        margin: 0 20px;
    }
}

/* Navigation - Improved for mobile */
.nav-container {
    background: white;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.nav-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 8px 0;
    min-width: max-content;
    /* Allow horizontal scrolling */
}

.nav-item {
    margin-right: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    color: var(--text-dark);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    min-height: 40px;
    /* Better touch target */
    flex-shrink: 0;
}

.nav-item:hover {
    color: var(--primary);
    background-color: rgba(23, 71, 207, 0.05);
}

.nav-item.active {
    color: var(--primary);
    background-color: rgba(23, 71, 207, 0.1);
}

.nav-item i {
    margin-right: 6px;
    color: var(--secondary);
    font-size: 13px;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 8px;
    }

    .nav-menu {
        padding: 6px 0;
    }

    .nav-item {
        font-size: 12px;
        padding: 6px 10px;
        margin-right: 6px;
        min-height: 36px;
    }

    .nav-item i {
        font-size: 12px;
        margin-right: 4px;
    }
}

/* Main Banner - Mobile Optimized */
.banner-container {
    margin: 12px 0;
    position: relative;
}

.banner-slider {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 200px;
    /* Reduced height for mobile */
    box-shadow: var(--card-shadow);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

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

.banner-content {
    max-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.banner-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(23, 71, 207, 0.3);
    min-height: 44px;
    /* Better touch target */
}

.banner-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 71, 207, 0.4);
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.indicator.active {
    background: white;
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Categories Section - Mobile Optimized */
.categories-section {
    background: white;
    border-radius: 8px;
    padding: 16px 0;
    margin-bottom: 16px;
    box-shadow: var(--card-shadow);
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 0 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 8px;
    color: var(--primary);
}

.categories-grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px;
    /* Mais confortável para toque em mobile */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Suaviza scroll no iOS */

    scrollbar-width: thin;
    /* Firefox */
}

.categories-grid::-webkit-scrollbar {
    height: 6px;
    /* Altura da scrollbar horizontal */
}

.categories-grid::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.category-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Mantém conteúdo centralizado verticalmente */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    padding: 12px 16px;
    /* Mais espaço horizontal para toque */
    border-radius: 8px;
    background: white;
    min-height: 100px;
    scroll-snap-align: start;

    /* Para responsividade: largura mínima e máxima */
    min-width: 120px;
    max-width: 200px;
}

.category-item:hover {
    transform: translateY(-3px);
    background: var(--light);
    box-shadow: var(--card-hover-shadow);
}

.category-item.active {
    background: var(--light);
    box-shadow: 0 0 0 2px #f0f2f5;;
}

/* Responsividade: ajusta tamanho do item em telas menores */
@media (max-width: 480px) {
    .category-item {
        min-width: 100px;
        padding: 10px 12px;
    }
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light), white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    overflow: hidden;
    flex-shrink: 0;
}

.category-item:hover .category-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}

.category-item:hover .category-icon img {
    transform: scale(1.05);
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Products Section - Mobile Optimized */
.products-section {
    background: white;
    border-radius: 8px;
    padding: 16px 0;
    margin-bottom: 16px;
    box-shadow: var(--card-shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 12px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    padding: 6px 10px;
    border-radius: 6px;
    min-height: 36px;
    /* Better touch target */
}

.view-all:hover {
    background: var(--light);
    transform: translateX(3px);
}

.view-all i {
    margin-left: 4px;
    transition: transform 0.2s;
}

.view-all:hover i {
    transform: translateX(3px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default 2 columns for mobile */
    gap: 12px;
    padding: 0 12px;
    min-height: 200px;
    position: relative;
}

.product-card {
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.2s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff3b30, #ff6b6b);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--secondary), #2cd4b0);
}

.product-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-height: 100%;
    transition: all 0.1s ease;
}

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

.product-info {
    padding: 12px;
    border-top: 1px solid var(--border);
}

.product-category {
    color: var(--text-light);
    font-size: 10px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.stars {
    color: #ffc107;
    margin-right: 4px;
    font-size: 11px;
}

.rating-count {
    color: var(--text-light);
    font-size: 11px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 4px;
}

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

.original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    background: rgba(56, 161, 105, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.product-actions {
    display: flex;
    gap: 6px;
}

.btn-cart {
    flex: 1;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(31, 190, 171, 0.3);
    font-size: 12px;
    min-height: 36px;
    /* Better touch target */
}

.btn-cart:hover {
    background: #238276;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(31, 190, 171, 0.4);
}

.btn-wishlist {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    color: #e74c3c;
    border-color: #e74c3c;
    transform: scale(1.05);
}

/* Trust Badges - Mobile Optimized */
.trust-badges {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.trust-badge i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 13px;
    font-weight: 600;
}

.trust-badge-subtext {
    font-size: 11px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .trust-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Footer - Mobile Optimized */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 30px 0 0;
    margin-top: auto;
}

.footer-main {
    padding-bottom: 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-about {
    max-width: 100%;
}

.footer-about .logo {
    margin-bottom: 12px;
    color: white;
}

.footer-about p {
    color: #cbd5e0;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: #cbd5e0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-links a i {
    margin-right: 8px;
    width: 14px;
    text-align: center;
    color: var(--primary);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #cbd5e0;
    font-size: 13px;
}

.contact-info li i {
    margin-right: 8px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 0;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

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

.copyright {
    color: #94a3b8;
    font-size: 12px;
}

.payment-methods {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-method {
    width: 36px;
    height: 24px;
    background: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--dark);
}

/* Newsletter */
.newsletter {
    margin-top: 12px;
}

.newsletter p {
    color: #cbd5e0;
    margin-bottom: 10px;
    font-size: 12px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-input {
    padding: 10px 12px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    min-height: 44px;
    /* Better touch target */
}

.newsletter-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .banner-slider {
        height: 280px;
    }

    .banner-content {
        max-width: 400px;
        padding: 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .trust-badges {
        flex-direction: flex;
        justify-content: space-between;
        gap: 16px;
    }

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

    .newsletter-form {
        flex-direction: row;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .banner-slider {
        height: 350px;
    }

    .banner-content {
        max-width: 450px;
        padding: 25px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}