
        /* Wishlist Section */
        .wishlist-section {
            max-width: 900px;
            margin: 30px auto;
            padding: 5.4rem 15px 6rem 15px;
        }
 
        /* Header Section */
        .wishlist-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }
 
        /* Back Button */
        .back-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: transparent;
            border: 1px solid #dcdcdc;
            color: #333;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }
 
        .back-btn:hover {
            background-color: #f5f5f5;
            color: #000;
            border-color: #bbb;
        }
 
        /* Wishlist Heading */
        .wishlist-heading {
            font-size: 22px;
            font-weight: 700;
            color: #222;
            margin: 0;
        }
 
        /* Wishlist Card */
        .wishlist-card {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease;
        }
 
        .wishlist-card:hover {
            transform: translateY(-3px);
        }
 
        .wishlist-img {
            width: 150px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
 
        .wishlist-content {
            flex: 1;
            padding-left: 15px;
        }
 
        .wishlist-title {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 5px;
        }
 
        .wishlist-subtitle {
            font-size: 13px;
            color: #555;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-weight: 500;
        }
 
        .wishlist-rating {
            font-size: 14px;
            color: #f39c12;
            font-weight: 600;
        }
 
        .wishlist-price {
            font-size: 16px;
            font-weight: bold;
            color: #222;
        }
 
        .wishlist-details {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
 
        .wishlist-duration {
            font-size: 13px;
            color: #666;
        }
 
        /* Responsive Fix */
        @media (max-width: 768px) {
            .wishlist-card {
                flex-direction: column;
                align-items: flex-start;
            }
         
 
            .wishlist-img {
                width: 100%;
                height: 180px;
            }
 
            .wishlist-content {
                padding-left: 0;
                margin-top: 10px;
            }
 
            .wishlist-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }
