* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #fafbfc;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    color: #2c3e50;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
}

/* Cart Button */
.cart-button {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #3b82f6;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:hover {
    border-color: #3b82f6;
    background: #f0f4ff;
    transform: scale(1.05);
}

.cart-button svg {
    width: 24px;
    height: 24px;
}

#cartCount {
    pointer-events: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease;
    color: #64748b;
    font-weight: 300;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero CTA button */
.cta-button {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #1e40af 100%);
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 45px rgba(14, 165, 233, 0.45);
    filter: brightness(1.02);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.35);
    outline-offset: 3px;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    margin-top: 60px;
}

.carousel-container {
    width: 100%;
    max-width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 60px 40px 40px;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-weight: 300;
}

.carousel-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Carousel Navigation Buttons */
.carousel-btn-prev,
.carousel-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 18px 24px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.4s;
    user-select: none;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: #000;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Ads Section -->
.ads-section {
    padding: 30px 0;
    background: #f9f9f9;
    text-align: center;
}

.sidebar-ads {
    float: right;
    margin: 20px 0 20px 20px;
    text-align: center;
}

/* Featured Product */
.featured-product {
    padding: 80px 0;
    background: white;
}

.featured-product h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.featured-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.5s;
}

.featured-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
}

.featured-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.4rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 1rem;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.9;
    font-weight: 300;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.features li {
    padding: 0.8rem 0;
    color: #2c3e50;
    font-weight: 500;
}

.features li:before {
    content: "✓ ";
    color: #3b82f6;
    font-weight: 700;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fafbfc;
}

.products h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    padding: 0;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    border-color: #e0e7ff;
}

.product-image {
    width: 100%;
    height: 280px;

    /* Product Badges */
    .best-seller-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: white;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }

    .in-stock-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    /* Product Rating */
    .product-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0.8rem 1.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .product-rating .stars {
        color: #fbbf24;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .product-rating .rating-count {
        color: #9ca3af;
        font-size: 0.85rem;
    }

    /* Shipping Banner */
    .shipping-banner {
        background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
        color: white;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    }

    .shipping-banner p {
        margin: 0;
    }
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.product-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #1e3a8a;
    font-weight: 700;
}

.product-price {
    font-size: 1.8rem;
    color: #3b82f6;
    font-weight: 700;
    margin: 0.5rem 1.5rem;
}

.product-card .add-to-cart-btn {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2;
    color: #64748b;
}

.about-content p {
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.about-feature {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.4s;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.about-feature h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-weight: 700;
}

.about-feature p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.about-content h3 {
    font-size: 2.2rem;
    color: #1e3a8a;
    margin: 50px 0 30px;
    font-weight: 700;
}

.why-choose {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.why-choose li {
    background: #f8fafc;
    padding: 18px;
    margin: 12px 0;
    border-left: 4px solid #3b82f6;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 8px;
    transition: all 0.3s;
}

.why-choose li:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.why-choose strong {
    color: #1e3a8a;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.testimonial-card .stars {
    font-size: 1.3rem;
    color: #fbbf24;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.faq-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.4s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.faq-item h4 {
    font-size: 1.15rem;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: white;
    padding: 50px 0 25px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
    text-align: left;
}

.footer-section h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-weight: 300;
}

.footer-section a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 8px 0;
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .featured-item {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a {
        display: inline;
    }

    .sidebar-ads {
        float: none;
        margin: 20px 0;
    }

    .carousel-wrapper {
        height: 250px;
    }

    .carousel-caption {
        padding: 20px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-btn-prev,
    .carousel-btn-next {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
}

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

    .hero-content p {
        font-size: 1rem;
    }

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

    .featured-product h2,
    .products h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}
