body {
    /* font-family: 'Cormorant Garamond', serif; */
    font-family: "Monotype Baskerville", serif; 
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    text-align: left;
}

.blurred-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: -1;
    opacity: 0.15;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    /* gap: 30px; */
    /* padding: 40px; */
    max-width: 1200px;
    margin: 60px auto;
    /* background: white; */
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.left-section,
.right-section {
    flex: 1 1 400px;
}

.carousel-container {
    position: relative;
    text-align: center;
}

.image-wrapper {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa00;
    overflow: hidden;
    border-radius: 10px;
}

.main-product-image {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.zoom-container:hover .main-product-image {
    transform: scale(1.6);
    cursor: zoom-in;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgb(255 255 255 / 0%);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumbnail:hover {
    border: 2px solid #333;
}

.price {
    font-size: 24px;
    color: #b12704;
    font-weight: bold;
}

.short-description,
.long-description {
    color: #444;
    margin-top: 10px;
}

.availability {
    margin-top: 10px;
    font-weight: bold;
}

.text-success {
    color: green !important;
}

.text-danger {
    color: red;
}

.btn {
    margin-top: 20px;
    background-color: #b12704;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.recommended-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* center the cards horizontally */
    padding: 20px;
}

.recommended-card {
    background: #ffffff00;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    height: 450px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); */
    text-align: center;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color consistent */
    display: block;
}
.recommended-heading{
    text-align: center;
    font: 1em ;
}

.recommended-card img {
    width: 100%;
    height: 360px;  /* increased for a better fit inside 350px card */
    object-fit: cover;
    border-radius: 6px;
    margin: 10px;
}


.rec-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 4px;
    color: #513d2e ;
    text-decoration: none;
}

.rec-price {
    font-size: 15px;
    color: #513d2e ;
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        padding: 20px;
    }

    .image-wrapper {
        height: 60vh;
    }

    .recommended-products {
        padding: 10px;
        gap: 15px;
    }

    .recommended-card {
        width: 180px;
        height: 250px;
    }

    .recommended-card img {
        height: 150px;
    }
}
* {
    color:#252424  !important;
        font-weight: normal  !important;
        font-size: 20px;
  text-decoration: none !important;
}

/* Container for Currency Selector */
.currency-selector-container {
    text-align: left;
    margin: 20px auto;
    font-family: 'Open Sans', sans-serif;
}

/* Heading for Currency Selector */
.currency-selector-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}

/* Form Label for Currency */
.currency-selector-container label {
    font-size: 16px;
    margin-right: 10px;
    color: #555;
    font-weight: 500;
}

/* Select Dropdown Container */
.currency-selector-container select {
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    width: 200px;  /* Adjust width based on content */
}

/* Focus state for the select dropdown */
.currency-selector-container select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
}

/* Custom dropdown arrow */
.currency-selector-container select::-ms-expand {
    display: none;
}

.currency-selector-container select option {
    padding: 10px;
    font-size: 16px;
}

/* Hover effect on options */
.currency-selector-container select option:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Add transition effects to improve UX */
.currency-selector-container select:hover {
    cursor: pointer;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Styling for the 'selected' state of options */
.currency-selector-container select option:checked {
    background-color: #007bff;
    color: #fff;
}

/* Media Query for Mobile Optimization */
@media screen and (max-width: 600px) {
    .currency-selector-container select {
        width: 100%; /* Full width on smaller screens */
    }
}
