   :root {
    --rose-600: #b45b6b;
    --rose-400: #ffb6b9;
    --cream: #fff8f8;
    --leaf: #6AB187;
    --shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
    }
    /* 🌸 Product Details Page Styling */
    .product-card {
    display: flex;
    flex-wrap: wrap;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 750px;
    background: #fff;
    }
    .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .product-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: 15px 0 0 15px;
    }
    .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    }
    .product-title {
    font-size: 1.8rem;
    font-weight: 700;
    }
    .product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ecc71;
    }
    .btn-cart {
    background: #8e3c4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    }
    .btn-cart:hover {
    background: #6f2d3f;
    }

    /* Fixed Back Button */
    .back-btn-container {
    position: fixed;
    top: 90px; /* adjust if you have navbar */
    left: 20px;
    z-index: 999;
    }
    /* 🌟 Quantity Button Group */
    .quantity-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 130px;
    }
    .quantity-wrapper button {
    background-color: #fff;
    color: #8e3c4f;
    border: none;
    padding: 8px 14px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    }
    .quantity-wrapper button:hover {
    background-color: #f3f3f3;
    transform: scale(1.1);
    }
    .quantity-wrapper input {
    width: 60px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
    }

    /* 🌟 Review Modal Styling */
    .modal {
    transition: opacity 0.2s ease-in-out !important;
    }
    .modal-dialog {
    transform: none !important;
    transition: none !important;
    }
    .modal-open {
    overflow-y: scroll !important;
    padding-right: 0 !important; /* Prevents layout shift */
    }

    /* Responsive */
    @media (max-width: 768px) {
    .product-card {
    flex-direction: column;
    width: 100%;
    }
    .product-img {
    border-radius: 15px 15px 0 0;
    height: 300px;
    }
    .product-info {
    text-align: center;
    padding: 20px;
    }
    .quantity-container {
    justify-content: center !important;
    }
    }
       /* .......model..  */
        .modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn-cart, .btn-buy { border-radius:8px; padding:8px 12px; font-size:14px; cursor:pointer; border:none; }
        .btn-cart { background:linear-gradient(90deg,var(--rose-600),#8f3d4c); color:#fff; }
.modal-header {
    border-bottom: none;
    background-color:var(--rose-600); /* Primary color for header */
    color: #fff; /* White text for better contrast */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.review-circle{
    background-color: var(--rose-400);
}

.modal-body {
    background-color: #fff; /* White background for modal body */
}


/* Share Modal Specific Styles */
.share-modal .modal-header {
    background-color:  var(--rose-600); /* Blue header for share modal */
}
