/* Chirp Series Page Styles */

body {
    background-color: #f8f8f8;
}

/* Products Section */
.chirp-products-section {
    padding: 80px 20px;
    min-height: calc(100vh - 100px);
}

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

.products-container h1 {
    font-family: Helvetica Neue, sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #f8f8f8;
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
    border: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card.featured {
    border: none;
}

.featured-badge,
.limited-badge {
    display: none;
}

.product-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.zoomable-image {
    cursor: zoom-in;
}

.product-info {
    text-align: center;
}

.product-info h2 {
    font-family: Helvetica Neue, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.product-features span {
    font-size: 14px;
    color: #333;
    text-align: left;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-family: Helvetica Neue, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.btn-add-cart {
    width: 100%;
    padding: 16px;
    background-color: #000;
    color: #FFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-cart:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    cursor: zoom-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFF;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #FFD700;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        gap: 30px;
    }
    
    .product-info h2 {
        font-size: 22px;
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .chirp-products-section {
        padding: 60px 20px;
    }
    
    .products-container h1 {
        font-size: 36px;
    }
    
    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info h2 {
        font-size: 20px;
        min-height: auto;
    }
    
    .price {
        font-size: 28px;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .products-container h1 {
        font-size: 28px;
    }
    
    .product-image {
        height: 200px;
    }
}

