
        .popular-section-wrapper {
            max-width: 1100px;
            margin: 60px auto;
            padding: 20px;
            font-family: 'Lora', serif;
            color: #333;
            background-color: #fff;
            display: block;
        }

        .popular-section-wrapper .popular-container {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        /* --- Left Column (Featured Recipe) --- */
        .popular-section-wrapper .featured-recipe {
            flex: 1.2;
            text-align: center;
        }

        .popular-section-wrapper .featured-image-container {
            position: relative;
            display: inline-block;
            width: 100%;
            overflow: hidden; /* Extra image height ko chupane ke liye */
        }

        .popular-section-wrapper .featured-recipe img {
            width: 100%;
            /* Image ki height yahan control ki gayi hai */
            height: 520px; 
            object-fit: cover; /* Is se image stretch nahi hogi balkay crop hogi */
            display: block;
        }

        /* Kate's Pick Badge */
        .popular-section-wrapper .kate-badge {
            position: absolute;
            top: 0;
            right: 15%;
            background-color: #000;
            color: #fff;
            padding: 15px 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            line-height: 1.2;
            width: 70px;
            z-index: 5;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
        }

        .popular-section-wrapper .featured-recipe h2 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            margin: 20px 0 10px;
            color: #333;
        }

        .popular-section-wrapper .featured-recipe p {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            max-width: 90%;
            margin: 0 auto;
        }

        /* --- Right Column (Most Popular List) --- */
        .popular-section-wrapper .popular-list-side {
            flex: 1;
        }

        .popular-section-wrapper .popular-list-side h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin: 0 0 30px;
            text-align: center;
            color: #333;
        }

        .popular-section-wrapper .popular-item {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding: 15px 0;
            text-decoration: none;
            color: inherit;
        }

        .popular-section-wrapper .popular-number {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #51806a; 
            margin-right: 25px;
            font-weight: bold;
            min-width: 30px;
        }

        .popular-section-wrapper .recipe-info h3 {
            font-size: 19px;
            margin: 0 0 5px;
            font-weight: 500;
            font-family: 'Lora', serif;
        }

        /* Ratings Styling */
        .popular-section-wrapper .rating-row {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .popular-section-wrapper .stars {
            color: #51806a;
            margin-right: 8px;
            font-size: 14px;
        }

        /* --- Footer Button with Lines --- */
        .popular-section-wrapper .more-fav-container {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }

        .popular-section-wrapper .btn-line {
            flex: 1;
            height: 1px;
            background-color: #333;
        }

        .popular-section-wrapper .more-fav-btn {
            background-color: #51806a;
            color: white !important;
            padding: 12px 25px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 15px;
            display: inline-block;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .popular-section-wrapper .popular-container { flex-direction: column; }
            .popular-section-wrapper .popular-list-side { width: 100%; }
            .popular-section-wrapper .featured-recipe img { height: 400px; } /* Mobile par height mazeed kam */
        }