/* ===== General Styles ===== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    color: #222;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main content grows to fill space */
.site-content {
    flex: 1;
}

/* ===== Hero Section ===== */
.hero-section, #shop-hero {
    background: linear-gradient(135deg, #102347, #2e3192, #4671d6);
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-section .hero-title,
#shop-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section .hero-subtitle,
#shop-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.hero-section .btn-primary,
#shop-hero .btn-primary {
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #2e3192;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover,
#shop-hero .btn-primary:hover {
    background-color: #fff;
    color: #2e3192;
    transform: translateY(-2px);
}

/* ===== Featured Products Section ===== */
.featured-section {
    padding: 4rem 1rem;
}

.featured-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2e3192;
    text-align: center;
    margin-bottom: 3rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
    overflow: hidden;
}

.product-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s ease-in-out;
}

/* Product Cards */
.product-card {
    flex: 0 0 calc(33.333% - 2rem);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0;
    box-shadow: none;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2e3192;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2e3192;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-secondary {
    padding: 0.75rem 1.75rem;
    background-color: #2e3192;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #fcfcfc;
    color: #2e3192;
    transform: translateY(-2px);
}

/* ===== Quality Section ===== */
.quality-section {
    background: #ffffff;
    padding: 4rem 2rem;
    border-top: 4px solid #2e3192;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 1000px;
}

.quality-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e3192;
    margin-bottom: 1.5rem;
}

.quality-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.quality-text strong {
    color: #2e3192;
    font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #2e3192;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .hero-title, #shop-hero .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle, #shop-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    .product-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .hero-title, #shop-hero .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle, #shop-hero .hero-subtitle {
        font-size: 1rem;
    }
}
