/* Products Page Specific Styles */

.product-showcase {
    padding: 80px 0;
}

.product-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.product-intro h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.product-intro p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.product-image-container {
    margin: 4rem 0;
    text-align: center;
}

.product-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: #f1f9ff;
    color: #1e3a8a;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Product Features */
.product-features {
    margin: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #64748b;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

/* Capacity Options */
.capacity-options {
    margin: 6rem 0;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capacity-card {
    background: #f1f9ff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e2e8f0;
}

.capacity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.capacity-card.featured {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: #1e40af;
    transform: scale(1.05);
}

.capacity-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.capacity-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(34, 211, 238, 0.4);
}

.capacity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.capacity-card.featured .capacity-icon {
    background: #f1f9ff;
    color: #3b82f6;
}

.capacity-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.capacity-card.featured h3 {
    color: white;
}

.capacity-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.capacity-card.featured .capacity-range {
    color: #22d3ee;
}

.capacity-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.capacity-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #64748b;
}

.capacity-card.featured .capacity-features li {
    color: white;
}

.capacity-features i {
    color: #22d3ee;
    font-size: 1.1rem;
}

.capacity-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.capacity-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.capacity-card.featured .capacity-btn {
    background: #f1f9ff;
    color: #1e3a8a;
}

.capacity-card.featured .capacity-btn:hover {
    background: #22d3ee;
    color: white;
}

/* Mobile Responsive for Products Page */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-stat-item {
        flex-direction: column;
        text-align: center;
    }

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

    .product-intro h2 {
        font-size: 2rem;
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .capacity-card.featured {
        transform: scale(1);
    }

    .capacity-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .header-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .product-intro h2 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .capacity-card {
        padding: 2rem 1.5rem;
    }

    .capacity-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .capacity-card h3 {
        font-size: 1.5rem;
    }

    .capacity-range {
        font-size: 1.2rem;
    }
}