    /* 1. Hero Section */
    .hero {
        height: 75vh;
        background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
            url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600') center/cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 5%;
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        color: var(--navy);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 650px;
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: #444;
    }

    /* 2. Overlapping Concern Bar */
    .concern-bar {
        background: white;
        padding: 40px 8%;
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: -60px;
        position: relative;
        z-index: 10;
    }

    .concern-item {
        background: white;
        padding: 25px 15px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        text-align: center;
        width: 140px;
        transition: 0.3s;
        cursor: pointer;
        border: 1px solid #f0f0f0;
    }

    .concern-item:hover {
        transform: translateY(-10px);
        border-color: var(--leaf);
    }

    .concern-item i {
        font-size: 2.2rem;
        color: var(--leaf);
        margin-bottom: 12px;
        display: block;
    }

    .concern-item p {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
    }

    /* 3. The Shringi Difference (Mid-Filler) */
    .process-section {
        padding: 100px 8%;
        text-align: center;
        background: white;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .process-card {
        padding: 40px 30px;
        background: var(--bg-light);
        border-radius: 25px;
        transition: 0.3s;
        text-align: left;
    }

    .process-card i {
        font-size: 2.5rem;
        color: var(--leaf);
        margin-bottom: 20px;
    }

    .process-card h3 {
        font-family: 'Playfair Display', serif;
        color: var(--navy);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .process-card p {
        font-size: 0.95rem;
        color: #666;
    }

    /* 4. Comparison Table Section */
    .comparison-section {
        padding: 80px 8%;
        background: white;
        border-top: 1px solid #eee;
    }

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

    .comp-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    }

    .comp-table th {
        background: var(--navy);
        color: white;
        padding: 25px;
        font-size: 1.1rem;
    }

    .comp-table td {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .comp-table tr td:first-child {
        text-align: left;
        font-weight: 600;
        color: var(--navy);
        padding-left: 30px;
    }

    .check {
        color: var(--leaf);
        font-size: 1.2rem;
    }

    .cross {
        color: #e74c3c;
        font-size: 1.2rem;
    }

    /* 5. Best Sellers Section (Unique Background) */
    .best-sellers-bg {
        background-color: #f0f4f1;
        /* Pale Herbal Green */
        padding: 100px 8%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: var(--navy);
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .product-card {
        background: white;
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        position: relative;

    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }

    .product-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: var(--leaf);
        transform: scaleX(0);
        transition: 0.3s;
        border-radius: 20px 20px 0 0;
    }

    .product-card:hover::after {
        transform: scaleX(1);
    }

    .p-img {
        
        height: 220px;
        background: #fcfcfc;
        border-radius: 15px;
        align-items: center;
        justify-content: center;
        display: block;
        margin: auto;
        width: auto;
    }

    .p-img i {
        font-size: 4.5rem;
        color: #eee;
    }

    .p-title {
        font-weight: 600;
        color: var(--navy);
        font-size: 1.1rem;
        margin-bottom: 8px;
        min-height: 50px;
    }

    .p-price {
        color: var(--leaf);
        font-weight: bold;
        font-size: 1.4rem;
        display: block;
        margin-bottom: 20px;
    }

    .add-to-cart-btn {
        background: var(--navy);
        color: white;
        border: none;
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .add-to-cart-btn:hover {
        background: var(--leaf);
    }




    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .comp-table {
            font-size: 0.8rem;
        }
    }

