﻿
.product-showcase {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.product-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .product-intro h2 {
        font-size: 2.5rem;
        color: #222;
        margin-bottom: 0.5rem;
    }

.intro-description {
    color: #555;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.product-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .product-image:hover {
        transform: scale(1.02);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

.feature-img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.02);
}

.feature-card h3 {
    color: #faba00;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-card:hover {
    transform: translateY(-6px);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

