/* Product Pages Specific Styles */

/* Product Page Layout */
.product-page-header {
    text-align: start;
    align-items: start;
    margin-top: 130px;
    grid-column: 1/-1;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 40px;
}

.product-content-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-header-image {
    max-width: 60%;
    height: auto;
    object-fit: cover;
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.product-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.product-feature-description {
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
}

/* Product Specifications */
.product-specs {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.product-specs-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.product-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.product-spec-label {
    font-weight: 600;
    color: #374151;
}

.product-spec-value {
    color: #6b7280;
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.product-gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Product CTA Section */
.product-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
}

.product-cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-header-image {
        max-width: 80%;
    }
    
    .product-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-page-header {
        margin-top: 100px;
        text-align: center;
    }
    
    .product-content-center {
        justify-content: center;
    }
    
    .product-header-image {
        max-width: 100%;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .product-cta {
        padding: 2rem 1rem;
    }
    
    .product-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-page-header {
        margin-top: 80px;
    }
    
    .product-feature-card {
        padding: 1.5rem;
    }
    
    .product-specs {
        padding: 1.5rem;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        padding: 1.5rem 1rem;
    }
}

/* Animation Classes */
.product-fade-in {
    animation: productFadeIn 0.6s ease-in-out;
}

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

.product-slide-up {
    animation: productSlideUp 0.8s ease-out;
}

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