/* Wishlist specific styles */
        .wishlist-container {
            width: 100%;
            margin: 1.5rem 0;
            background-color: var(--body-color);
            overflow: hidden;
        }

        .wishlist-header {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
            background-color: #f5f5f5;
            padding: 1rem;
            text-align: center;
            font-weight: var(--weight-600);
            
        }

        .wishlist-header h3 {
            color: #d74a39;
            font-size: var(--normal-font-size);
            text-transform: uppercase;
            margin: 0;
        }

        .wishlist-item {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
            padding: 1.5rem 1rem;
            align-items: center;
            
            text-align: center;
        }

        .wishlist-item:last-child{
            border-bottom: 1px solid var(--border-color-alt);
        }

        .wishlist-item-image {
            width: 100px;
            height: 130px;
            object-fit: cover;
            margin: 0 auto;
        }

        .wishlist-item-title {
            font-weight: var(--weight-500);
            font-size: var(--large-font-size);
            color: var(--title-color);
        }

        .wishlist-item-price {
            font-size: var(--normal-font-size);
            font-weight: var(--weight-600);
        }

        .select-options-btn {
            background-color: #d74a39;
            color: white;
            padding: 0.75rem 1rem;
            border: none;
            cursor: pointer;
            font-weight: var(--weight-500);
            transition: background-color 0.3s ease;
            max-width: 150px;
            margin: 0 auto;
        }

        .select-options-btn:hover {
            background-color: #c03c2e;
        }

        .remove-btn {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: center;
            font-size: var(--h2-font-size);
        }

        .remove-btn ion-icon {
            color: var(--error-color);
        }

        .empty-wishlist {
            text-align: center;
            padding: 3rem;
        }

        .empty-wishlist h2 {
            margin-bottom: 1rem;
            color: var(--title-color);
        }

        .empty-wishlist p {
            color: var(--text-color);
            margin-bottom: 2rem;
        }
        
        .continue-shopping-btn {
            display: inline-block;
            background-color: #d74a39;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 0.25rem;
            font-weight: var(--weight-600);
            transition: background-color 0.3s ease;
        }
        
        .continue-shopping-btn:hover {
            background-color: #c03c2e;
        }

        /* Red header bar styling */
        .header-bar {
            background-color: #d74a39;
            height: 5px;
            width: 100%;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 768px) {
            .wishlist-header,
            .wishlist-item {
                grid-template-columns: 1fr 2fr 1fr 1fr;
            }
            
            .wishlist-header h3:nth-child(3),
            .wishlist-item-price {
                display: none;
            }

            .wishlist__actions{
                margin: 5px 0;
                display: flex;
                align-items: center;
                gap: 4.7rem;
                justify-content: space-between;
                justify-content: flex-start;
        
               }

              .cart-item__price {
                font-size: var(--h4-font-size);
                font-weight: 600;
                color: var(--first-color);
                padding: 0.325rem 0;
              }

              .container{
                padding-left: 1.5rem;
                padding-right: 1.5rem;
              }
        }

        @media screen and (max-width: 576px) {
            .wishlist-header,
            .wishlist-item {
                grid-template-columns: 1fr 2fr 1fr;
            }
            
            .wishlist-header h3:nth-child(4),
            .select-options-btn {
                display: none;
            }
        }