/* General Styles */
body {
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
}

/* Blurred Background */


/* Cart Layout */
.cart-container {
    padding: 40px;
    color: #333;
}

.cart-heading {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* ---------- CART PRODUCT LIST ---------- */

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
}

.product-item {
    margin-bottom: 2rem;
}

.product-card {
    display: flex;
    flex-wrap: wrap;
    /* background: rgba(255, 255, 255, 0.95); */
    background: #fffaf0;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 20px;
    align-items: center;
}

/* Product image */
.product-image img {
    width: 180px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Product details */
.product-details {
    flex: 1 1 300px;
    min-width: 200px;
}

/* Actions (e.g., quantity buttons, remove) */
.cart-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Buttons */
.action-btn,
.remove-btn {
    background-color: #f8f8f800;
    font-size: 1rem;
    border: 1px solid #cccccc00;;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover,
.remove-btn:hover {
    background-color: #eee;
}

/* Empty Cart Message */
.empty-cart {
    font-size: 1.3rem;
    color: #777;
    text-align: center;
    padding: 2rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .product-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Center buttons horizontally and reduce gaps */
    .cart-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        margin-top: 8px;
        justify-content: center; /* <-- This centers the buttons */
    }

    .action-btn,
    .remove-btn {
        padding: 5px 10px;
    }
    .product-details {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 12px;
    }

    .action-btn,
    .remove-btn {
        width: 100%;
        text-align: center;
    }
}


/* Cart Total */
.cart-total-wrapper {
    margin-top: 40px;
    text-align: right;
}

.cart-total {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.checkout-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
      display: block;           /* Make it block-level */
    width: fit-content;       /* Shrink to content width */
    margin: 20px auto;        /* Center horizontally */

}

/* Recommended Section */
.recommended-heading {
    margin-top: 50px;
    font-size: 1.8rem;
  
    text-align: center;
}

.recommended-products ul {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
    border-radius: 16px;
    background: #fffaf0;


}

.recommended-item {
    background: #ffffff00;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    height: 450px;
    text-align: center;
    /* background-color: #000; */
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.recommended-products{
    background-color: #f9f4f4;
    border-radius: 20px;
}
.recommended-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
    margin: 10px 0;
}

.recommended-item p {
    margin: 5px 0;
    font-size: 15px;
    font-weight: 600;
    color: #513d2e ;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recommended-products ul {
        flex-direction: column;
        align-items: center;
    }

    .recommended-item {
        width: 180px;
        height: auto;
    }

    .recommended-item img {
        height: 150px;
    }

    .recommended-item p {
        font-size: 14px;
    }
}


.blurred-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    z-index: -1;
}
* {
  font-weight: bold !important;

  text-decoration: none !important;
}
