/* Products Page Styles */

/* Hero Section */
.products-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Cold Season (Dark Mode) - Default */
body.cold-season .products-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

/* Hot Season (Light Mode) */
body.hot-season .products-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: var(--text-dark);
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/><circle cx="50" cy="50" r="30" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.products-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Brands Showcase */
.brands-showcase {
    padding: 60px 0;
}

body.cold-season .brands-showcase {
    background: var(--bg-dark);
}

body.hot-season .brands-showcase {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

body.cold-season .section-title {
    color: var(--white);
}

body.hot-season .section-title {
    color: var(--text-dark);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-card {
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.cold-season .brand-card {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow);
}

body.hot-season .brand-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

body.cold-season .brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 213, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

body.hot-season .brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-card:hover::before {
    left: 100%;
}

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

.brand-card img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

/* Products Section */
.products-section {
    padding: 50px 0 80px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filter-mobile {
    display: none !important;
}

@media (min-width: 769px) {
    .category-filter-mobile {
        display: none !important;
    }
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

body.cold-season .category-tab {
    background: var(--card-bg-dark);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

body.hot-season .category-tab {
    background: var(--white);
    border-color: var(--border-light);
    color: var(--text-medium);
}

.category-tab i {
    font-size: 1.1rem;
}

body.cold-season .category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

body.hot-season .category-tab:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
}

body.cold-season .category-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

body.hot-season .category-tab.active {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    border-color: #f59e0b;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Filters Bar */
.filters-bar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 12px;
    flex-wrap: wrap;
}

body.cold-season .filters-bar {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow);
}

body.hot-season .filters-bar {
    background: var(--white);
    box-shadow: var(--shadow);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

body.cold-season .filter-group label {
    color: rgba(255, 255, 255, 0.8);
}

body.hot-season .filter-group label {
    color: var(--text-medium);
}

.filter-select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.cold-season .filter-select {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

body.hot-season .filter-select {
    background: var(--white);
    border-color: var(--border-light);
    color: var(--text-dark);
}

body.cold-season .filter-select:hover {
    border-color: var(--primary-color);
}

body.hot-season .filter-select:hover {
    border-color: #f59e0b;
}

body.cold-season .filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

body.hot-season .filter-select:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

body.cold-season .product-card {
    background: var(--card-bg-dark);
    box-shadow: var(--shadow);
}

body.hot-season .product-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.product-image {
    position: relative;
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.cold-season .product-image {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

body.hot-season .product-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

body.cold-season .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(96, 213, 255, 0.05) 0%, transparent 60%);
}

body.hot-season .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

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

.brand-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    z-index: 2;
    min-width: 70px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.cold-season .brand-badge {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.hot-season .brand-badge {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-badge img {
    width: 60px;
    height: auto;
    max-height: 40px;
    display: block;
    object-fit: contain;
}

.promo-badge {
    position: absolute;
    top: 3.5rem;
    left: 2rem;
    z-index: 2;
}

.promo-badge img {
    max-width: 50px;
    height: auto;
    display: block;
}

/* Lennox Featured Partner Highlight */
.product-card[data-brand="lennox"] {
    position: relative;
}

body.cold-season .product-card[data-brand="lennox"] {
    border: 2px solid rgba(79, 70, 229, 0.3);
}

body.hot-season .product-card[data-brand="lennox"] {
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.product-card[data-brand="lennox"]::after {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
}

body.cold-season .product-card[data-brand="lennox"]::after {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    color: var(--primary-color);
    border: 1px solid rgba(79, 70, 229, 0.3);
}

body.hot-season .product-card[data-brand="lennox"]::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #ea580c;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.cold-season .product-info h3 {
    color: var(--white);
}

body.hot-season .product-info h3 {
    color: var(--text-dark);
}

.product-model {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

body.cold-season .product-model {
    color: rgba(255, 255, 255, 0.6);
}

body.hot-season .product-model {
    color: var(--text-light);
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

body.cold-season .spec-badge {
    background: rgba(79, 70, 229, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(79, 70, 229, 0.3);
}

body.hot-season .spec-badge {
    background: var(--bg-light);
    color: var(--text-medium);
    border-color: var(--border-light);
}

body.cold-season .spec-badge.efficiency {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.5);
}

body.hot-season .spec-badge.efficiency {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-color: #6ee7b7;
}

.spec-badge i {
    font-size: 0.85rem;
}

.product-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

body.cold-season .product-description {
    color: rgba(255, 255, 255, 0.7);
}

body.hot-season .product-description {
    color: var(--text-light);
}

.btn-details {
    padding: 0.875rem 1.5rem;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

body.cold-season .btn-details {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

body.hot-season .btn-details {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

body.cold-season .btn-details:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

body.hot-season .btn-details:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-details i {
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(4px);
}

/* Coming Soon Card */
.product-card.coming-soon {
    border: 2px dashed var(--border-dark);
    min-height: 350px;
}

body.cold-season .product-card.coming-soon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(79, 70, 229, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

body.hot-season .product-card.coming-soon {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-color: var(--border-dark);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 3rem;
}

body.cold-season .coming-soon-content {
    color: rgba(255, 255, 255, 0.6);
}

body.hot-season .coming-soon-content {
    color: var(--text-light);
}

.coming-soon-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.coming-soon-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.coming-soon-content p {
    font-size: 1rem;
    opacity: 0.7;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

body.cold-season .no-results {
    color: rgba(255, 255, 255, 0.6);
}

body.hot-season .no-results {
    color: var(--text-light);
}

.no-results i {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

body.cold-season .no-results h3 {
    color: rgba(255, 255, 255, 0.8);
}

body.hot-season .no-results h3 {
    color: var(--text-medium);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    position: relative;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.cold-season .modal-content {
    background: var(--card-bg-dark);
}

body.hot-season .modal-content {
    background: var(--white);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

body.cold-season .modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

body.hot-season .modal-close {
    background: var(--white);
    color: var(--text-dark);
}

body.cold-season .modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

body.hot-season .modal-close:hover {
    background: #f59e0b;
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.modal-image {
    flex: 0 0 300px;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.cold-season .modal-image {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
}

body.hot-season .modal-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.modal-info {
    flex: 1;
    min-width: 250px;
}

.modal-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

body.cold-season .modal-info h2 {
    color: var(--white);
}

body.hot-season .modal-info h2 {
    color: var(--text-dark);
}

.modal-model {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

body.cold-season .modal-model {
    color: rgba(255, 255, 255, 0.6);
}

body.hot-season .modal-model {
    color: var(--text-light);
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    padding: 1rem;
    border-radius: 8px;
}

body.cold-season .spec-item {
    background: rgba(79, 70, 229, 0.1);
    border-left: 3px solid var(--primary-color);
}

body.hot-season .spec-item {
    background: var(--bg-light);
    border-left: 3px solid #f59e0b;
}

.spec-label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

body.cold-season .spec-label {
    color: rgba(255, 255, 255, 0.6);
}

body.hot-season .spec-label {
    color: var(--text-light);
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
}

body.cold-season .spec-value {
    color: var(--white);
}

body.hot-season .spec-value {
    color: var(--text-dark);
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.cold-season .modal-section h3 {
    color: var(--white);
}

body.hot-season .modal-section h3 {
    color: var(--text-dark);
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

body.cold-season .modal-section li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

body.hot-season .modal-section li {
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.modal-section li:last-child {
    border-bottom: none;
}

body.cold-season .modal-section li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

body.hot-season .modal-section li i {
    color: #f59e0b;
    margin-top: 0.25rem;
}

.modal-cta {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

body.cold-season .modal-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

body.hot-season .modal-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.modal-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.modal-cta .btn {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

body.cold-season .modal-cta .btn {
    color: var(--primary-color);
}

body.hot-season .modal-cta .btn {
    color: #ea580c;
}

.modal-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

body.cold-season .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

body.hot-season .cta-section {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2rem;
    }

    .products-hero p {
        font-size: 1rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .brand-card {
        padding: 1rem;
    }

    .brand-card img {
        max-width: 80px;
    }

    .category-tabs-desktop {
        display: none !important;
    }

    .category-filter-mobile {
        display: flex !important;
    }

    .filters-bar {
        flex-direction: column;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
        min-width: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-header {
        flex-direction: column;
    }

    .modal-image {
        flex: 1;
    }

    .modal-specs-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 60px 0 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }
}

/* Animation for product cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
