                 * {
        margin: 0;
        padding: 0;
    }
        /* Unique Wrapper: All styles are prefixed with this class to prevent affecting other elements on your site */
        .kitchen-shop-section {
            font-family: 'Lora', serif;
            color: #333;
            background-color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- SECTION 1: COOKBOOK PROMO --- */
        .kitchen-shop-section .cookbook-promo {
            background-color: #edf3f0; /* Light sage green */
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: -63px;
        }

        .kitchen-shop-section .promo-container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .kitchen-shop-section .promo-text {
            flex: 1.2;
        }

        .kitchen-shop-section .promo-text .label {
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 700;
            display: block;
            margin-bottom: 12px;
            color: #555;
        }

        .kitchen-shop-section .promo-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-style: italic;
            margin: 0 0 20px 0;
            color: #004a3d;
            line-height: 1.2;
        }

        .kitchen-shop-section .promo-text p {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .kitchen-shop-section .buy-links {
            margin-top: 25px;
        }

        .kitchen-shop-section .buy-links a {
            color: #000;
            font-weight: 700;
            text-decoration: underline;
            margin-right: 12px;
            font-size: 14px;
        }

        .kitchen-shop-section .testimonial {
            font-style: italic;
            margin-top: 30px;
            border-top: 1px solid #d3d3d3;
            padding-top: 20px;
            font-size: 15px;
            color: #444;
        }

        .kitchen-shop-section .promo-image {
            flex: 0.8;
            text-align: right;
        }

        .kitchen-shop-section .promo-image img {
            max-width: 320px;
            width: 100%;
            transform: rotate(6deg); /* Visual tilt effect */
            box-shadow: 20px 20px 40px rgba(0,0,0,0.15);
            border-radius: 2px;
        }

        /* --- SECTION 2: SHOP HEADER WITH BACKGROUND IMAGE --- */
        .kitchen-shop-section .shop-header-area {
            position: relative;
            padding: 120px 20px;
           
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 60px;
        }

        /* Dark overlay for better contrast (Optional) */
        .kitchen-shop-section .shop-header-area::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.05); 
            z-index: 1;
        }

        .kitchen-shop-section .shop-white-box {
            background: #fff;
            padding: 70px 50px;
            max-width: 750px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 2; /* Keeps box above background */
            box-shadow: 0 15px 45px rgba(0,0,0,0.1);
        }

        /* Black Badge on top of White Box */
        .kitchen-shop-section .shop-badge {
            background: #000;
            color: #fff;
            padding: 18px 12px;
            width: 90px;
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
        }

        /* Badge Bottom Triangle */
        .kitchen-shop-section .shop-badge::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            border-left: 45px solid transparent;
            border-right: 45px solid transparent;
            border-top: 10px solid #000;
        }

        .kitchen-shop-section .shop-white-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin: 0 0 25px 0;
            font-weight: 700;
        }

        .kitchen-shop-section .shop-white-box p {
            font-size: 17px;
            max-width: 580px;
            margin: 0 auto;
            color: #333;
        }

        .kitchen-shop-section .shop-white-box a {
            color: #4e7c6b;
            text-decoration: underline;
            font-weight: 700;
        }

        /* --- SECTION 3: PRODUCT GRID --- */
        .kitchen-shop-section .product-grid {
            max-width: 1200px;
            margin: 80px auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            padding: 0 20px;
        }

        .kitchen-shop-section .product-card {
            text-align: center;
        }

        .kitchen-shop-section .product-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            margin-bottom: 25px;
        }

        .kitchen-shop-section .product-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .kitchen-shop-section .product-card p {
            font-size: 14.5px;
            color: #555;
            padding: 0 10px;
            line-height: 1.5;
        }

        /* --- SECTION 4: FINAL BUTTON --- */
        .kitchen-shop-section .btn-container {
            text-align: center;
            margin-bottom: 100px;
        }

        .kitchen-shop-section .shop-btn {
            background-color: #4e7c6b;
            color: #fff;
            padding: 18px 45px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            transition: background 0.3s;
        }

        .kitchen-shop-section .shop-btn:hover {
            background-color: #3d6153;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .kitchen-shop-section .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .kitchen-shop-section .promo-container {
                flex-direction: column;
                text-align: center;
            }
            .kitchen-shop-section .promo-image {
                text-align: center;
                margin-top: 30px;
            }
            .kitchen-shop-section .shop-white-box h2 {
                font-size: 38px;
            }
        }

        @media (max-width: 600px) {
            .kitchen-shop-section .product-grid {
                grid-template-columns: 1fr;
            }
            .kitchen-shop-section .shop-white-box {
                padding: 50px 20px;
            }
        }