/* Reset e Base - Estilo SHEIN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Header - Estilo SHEIN Preto e Branco */
.header {
    background: #000000;
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #000000;
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cart-icon:hover {
    transform: scale(1.1);
    background: #000000;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid #ffffff;
}

/* Main Content */
.main-content {
    display: flex;
    min-height: calc(100vh - 100px);
}

/* Sidebar - Categorias */
.sidebar {
    width: 280px;
    background: #ffffff;
    padding: 2rem 0;
    border-right: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar h3 {
    color: #2c2c2c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    position: relative;
    border-left: 3px solid transparent;
}

.category-btn:hover {
    background: #f8f9fa;
    color: #000000;
    transform: translateX(3px);
}

.category-btn.active {
    background: #000000;
    color: white;
    border-left-color: #000000;
    font-weight: 600;
}

.category-btn.active::before {
    content: '●';
    position: absolute;
    right: 2rem;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Navigation */
.nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 100px;
    z-index: 100;
}

.nav-categories {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1rem;
}

.nav .category-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav .category-btn:hover {
    background: #e9ecef;
    color: #000000;
    transform: translateY(-2px);
}

.nav .category-btn.active {
    background: #000000;
    color: white;
    border-bottom-color: #000000;
    font-weight: 600;
}

.nav .category-btn i {
    margin-right: 0.5rem;
}



/* Products Grid */
.products-section {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
}

/* Home Page Styles */
.home-banner {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.home-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.home-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.home-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.products-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Product Card Enhancements */
.product-card.on-sale {
    position: relative;
    border: 2px solid #ff4757;
}

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
}

/* Category Button Icons */
.category-btn i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Product Card - Estilo SHEIN Preto e Branco */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #000000;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 1.5rem;
    position: relative;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

/* Size Selector - Estilo SHEIN */
.size-selector {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.size-selector label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.size-bubbles {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.size-bubble {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.size-bubble:hover {
    border-color: #000000;
    background: #f8f9fa;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-bubble.selected {
    background: #000000;
    border-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.size-bubble.selected::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
}

.size-bubble.selected span {
    opacity: 0;
}

/* Product Stock */
.product-stock {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.stock-label {
    color: #666;
    font-weight: 500;
}

.stock-quantity {
    color: #28a745;
    font-weight: 600;
}

.stock-quantity.low-stock {
    color: #dc3545;
    font-weight: 700;
}

/* Quantity Selector */
.quantity-selector {
    margin: 1rem 0;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: #2c2c2c;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    background: #ffffff;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* Add to Cart Button - Estilo SHEIN Preto e Branco */
.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #000000;
}

.add-to-cart:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.add-to-cart:active {
    transform: translateY(0);
}

/* Cart Sidebar - Estilo SHEIN Preto e Branco */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e0e0e0;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    background: #000000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

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

.cart-item-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.cart-item-size {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.quantity {
    font-weight: 600;
    color: #2c2c2c;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: #000000;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    border: 1px solid #000000;
}

.remove-item:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

.cart-footer {
    padding: 2rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #000000;
}

.checkout-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.empty-cart i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.empty-cart h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-products i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* Modal - Estilo SHEIN */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.modal-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn.primary {
    background: #000000;
    color: white;
    border: 2px solid #000000;
}

.modal-btn.primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.modal-btn.secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

.modal-btn.secondary:hover {
    background: #e9ecef;
    color: #2c2c2c;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 4000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #000000;
    border: 1px solid #e0e0e0;
}

.notification.show {
    transform: translateX(0);
}

/* Config Panel */
.config-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    border-left: 1px solid #e0e0e0;
}

.config-panel.open {
    right: 0;
}

.config-header {
    padding: 2rem;
    background: #000000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.config-content {
    padding: 2rem;
}

.config-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.config-section h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.config-btn {
    width: 100%;
    padding: 0.8rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 2px solid #000000;
}

.config-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 1rem 0;
    }
    
    .category-list {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .category-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .category-btn {
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .category-btn.active {
        border-bottom-color: #ff4757;
        transform: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .size-bubbles {
        gap: 0.5rem;
    }
    
    .size-bubble {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .quantity-input {
        width: 50px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .home-banner h1 {
        font-size: 2rem;
    }
    
    .home-banner p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .products-grid-section {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .home-banner h1 {
        font-size: 2rem;
    }
    
    .home-banner p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .products-grid-section {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}