    .spotlight-ribbon {
        position: absolute;
        margin-top: -10px;
        margin-left: -15px;
        background: #dfa136;
        color: white;
        padding: 5px 12px;
        font-size: 10px;
        font-weight: bold;
        z-index: 10;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .featured-tag {
        position: relative;
        top: -55px;
        right: -14px;
        transform: rotate(-90deg);
        transform-origin: top right;
        background: none;
        color: #dfa136;
        font-weight: bold;
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 5px;
        margin-right: 15px;
    }
    /* Wishlist Container */
    .wishlist-container {
        /*width: 70%;*/
        min-width: 300px;
        padding: 20px;
        border-radius: 10px;
    }
    /* Wishlist Items */
    .wishlist-items {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .wishlist-item {
        width: 200px;
        border: 1px solid #ccc;
        padding: 15px;
        background-color: #fafafa;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    .wishlist-item img {
        width: 170px;
        height: 180px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .product-name {
        color: #003366; /* Change this to your desired color */
        font-weight: bold;
        margin-top: -15px;
        text-align: center;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .product-name a {
        display: -webkit-box; /* Enables flexbox for truncating text */
        -webkit-line-clamp: 2; /* Limits text to 2 lines */
        -webkit-box-orient: vertical; /* Sets the box orientation to vertical */
        overflow: hidden; /* Hides overflow content */
        text-overflow: ellipsis; /* Adds ellipsis to indicate hidden text */
        white-space: normal; /* Allows line wrapping */
        line-height: 1.5; /* Adjusts line height */
        height: calc(1.5em * 2); /* Ensures consistent height for 2 lines */
        font-size: 14px; /* Adjust font size as needed */
        /*color: #003366;*/
        text-decoration: none; /* Remove underline from links */
    }
    .product-price {
        /*color: #800000;*/
        font-size: 16px;
        margin-top: 5px;
    }
    .wishlist-item .price {
        font-size: 16px;
        color: #555;
        margin-bottom: 15px;
    }
    .wishlist-item .remove-btn {
        background: red;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }
    .wishlist-item a {
        text-decoration: none;
        color: #000;
    }
    /* Shopping Cart */
    .totalshopping{
        background: #970303;
        color: white;
        padding: 25px;
        margin: auto;
        border-radius: 10px;
        width: 300px;
    }
    .product-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .item-label {
        font-weight: bold;
    }
    .item-number {
        font-size: 14px;
    }
    .total {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
    }
    .total-label {
        font-weight: bold;
    }
    .total-value {
        font-size: 16px;
    }
    .get-back-btn {
        display: block;
        width: 100%;
        padding: 10px;
        background-color: #dfa136;
        color: white;
        border: none;
        cursor: pointer;
        margin-top: 20px;
        font-size: 16px;
        text-align: center;
        border-radius: 5px;
    }
    /*.get-back-btn:hover {*/
        /*background-color: #4a4e53;*/
    /*}*/
    /* Responsive Styles */
    /*@media screen and (max-width: 768px) {*/
    /*    .mywishlistcontainer {*/
    /*        flex-direction: column;*/
    /*        align-items: center;*/
    /*    }*/
    /*    .wishlist-container {*/
    /*        width: 100%;*/
    /*    }*/
    /*    .wishlist-items {*/
    /*        flex-direction: column;*/
    /*        align-items: center;*/
    /*    }*/
    /*    .wishlist-item {*/
    /*        width: 80%;*/
    /*        margin-bottom: 15px;*/
    /*    }*/
    /*    .shopping-container {*/
    /*        position: fixed;*/
    /*        bottom: 10px;*/
    /*        left: 10px;*/
    /*        width: 90%;*/
    /*    }*/
    /*}*/
    /*@media screen and (max-width: 480px) {*/
    /*    .wishlist-item {*/
    /*        width: 100%;*/
    /*    }*/
    /*    .get-back-btn {*/
    /*        font-size: 14px;*/
    /*        padding: 8px;*/
    /*    }*/
    /*}*/