/* ========== VELVIQ Products Page ========== */
/* Uses the same product card styling as home page for consistency */

.products-page {
    background: #000000;
    color: #ffffff;
    min-height: 80vh;
}

.products-hero {
    padding: 80px 0 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.products-title {
    font-size: 2.5rem;
    color: #c8a951;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-subtitle {
    color: #aaaaaa;
    font-size: 18px;
    margin-top: 10px;
    font-style: italic;
}

.products-list {
    padding: 60px 0;
    background: #000000;
}

.products-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Import the same product card styles as home page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

/* ======================================
   RESPONSIVE STYLES
   ====================================== */

/* Tablet breakpoint (1024px and below) */
@media (max-width: 1024px) {
    .products-list-container {
        padding: 0 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
}

/* Mobile breakpoint (768px and below) */
@media (max-width: 768px) {
    .products-hero {
        padding: 60px 0 20px 0;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 16px;
    }
    
    .products-list {
        padding: 40px 0;
    }
    
    .products-list-container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: var(--spacing-lg);
    }
}

/* Small mobile breakpoint (480px and below) */
@media (max-width: 480px) {
    .products-hero {
        padding: 40px 0 15px 0;
    }
    
    .products-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .products-subtitle {
        font-size: 14px;
    }
    
    .products-list {
        padding: 30px 0;
    }
    
    .products-list-container {
        padding: 0 16px;
    }
}
