﻿.why-choose-us {
    padding: 4rem 0 0 0;
    background-color: transparent;
}

    .why-choose-us .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
}

    .header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 2.5rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

    .header .divider {
        width: 96px;
        height: 4px;
        margin: 0 auto 1.5rem;
        background: #f9e905;
        border-radius: 2px;
    }

    .header p {
        font-family: 'Montserrat', sans-serif;
        max-width: 64rem;
        margin: 0 auto;
        font-size: 1.25rem;
        color: #4b5563;
        line-height: 1.75rem;
    }

.products-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f9f9f9, rgba(212, 233, 220, 0.3));
}

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

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease-in-out !important;
    transform: translateY(0);
}

    .product-card:hover {
        box-shadow: 0 12px 24px rgba(22, 163, 74, 0.3);
        transform: translateY(-8px);
    }

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(100, 150, 100, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d6a4f;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #40916c;
}

.product-description {
    color: #666;
    line-height: 1.6;
}

.product-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
}

.product-button {
    width: 100%;
    background: linear-gradient(to right, #4CAF50, #2d6a4f);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .product-button:hover {
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        transform: scale(1.05);
    }

.banner-position {
    display: flex;
    justify-content: center;
}

.natural-products-banner {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.natural-text {
    font-weight: 500;
    color: #2d6a4f;
}

.dot {
    left: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #40916c;
    border-radius: 50%;
}

.animate {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}