﻿

/* #region ===== Main ===== */

#loginModal, #loginModal1, #loginModal2, #loginModal3, #loginModal4, #loginModal5 {
    z-index: 1000002; /* Above gallery modal */
}

.product-info {
    background-color: #fff;
    padding: 0px;
}

.mturns {
    padding: 12px;
}

.info-section h3 {
    font-size: 16px;
    margin: 5px 0;
    margin-bottom: 10px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
}

    .summary-table th, .summary-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .summary-table th {
        background-color: #f7f7f7;
        color: #555;
    }

    .summary-table tr:hover {
        background-color: #f1f1f1;
    }

    .summary-table .price {
        text-align: right;
    }

        .summary-table .price span {
            font-weight: bold;
        }


/* Main container */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    text-align: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

#mainImage {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 2px;
    border: 1px solid #8080803b;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    min-width: fit-content;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

    .thumbnail:hover {
        transform: scale(1.1);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    }

    .thumbnail.selected {
        border: 2px solid #ff8f00; /* Orange border for selected thumbnail */
        box-shadow: 0 0 2px rgba(255, 143, 0, 0.4);
    }

/* Clickable areas for navigating the image (Left and Right) */
.click-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    cursor: pointer; /* Dimmed background for the clickable areas */
}

.left {
    left: 0px;
}

.right {
    right: 0px;
}

/* Prevent background scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Full-Screen Gallery Modal */
.fullscreen-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1); /* Fully opaque */
    z-index: 1000000; /* Higher than login modals (1050) and mobile-cart (1000) */
    display: none;
    overflow: hidden;
}

/* Modal children */
.gallery-container,
.gallery-slide,
.gallery-image,
.gallery-close-btn,
.gallery-prev-btn,
.gallery-next-btn {
    z-index: 1000001;
}

.gallery-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    touch-action: pinch-zoom;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    touch-action: pinch-zoom;
    transform-origin: center center;
    transition: transform 0.2s ease;
}

.gallery-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.gallery-prev-btn,
.gallery-next-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    opacity: 0.7;
}

    .gallery-prev-btn:hover,
    .gallery-next-btn:hover {
        opacity: 1;
    }

.gallery-prev-btn {
    left: 10px;
}

.gallery-next-btn {
    right: 10px;
}

/* Responsive adjustments */
@@media (max-width: 768px) {
    .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .gallery-prev-btn,
    .gallery-next-btn {
        font-size: 30px;
        padding: 15px;
    }

    .gallery-close-btn {
        font-size: 25px;
        top: 15px;
        right: 15px;
    }
}


/* Product Title Styling */
.product-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: #333;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

/* Optional: Additional Hover Effects */
.product-item:hover .product-image-wrapper img {
    transform: scale(1.15);
    transition: transform 0.3s ease;
    opacity:1 !important;
}


/* Product Item Card */
.product-item {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 15px
}

    /* Hover effect for product card border */
    .product-item.hover-border:hover {
        border: 1px solid #d1d1d1; /* Show light border when hovered */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow on hover */
    }

/* Image Zoom Effect (Second Image) */
.product-image-wrapper .zoom-image {
    opacity: 0;
    pointer-events: none; /* Disable interactions when zoom image is hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item:hover .zoom-image {
    opacity: 1; /* Show second image on hover */
    transform: scale(1.15); /* Zoom the second image */
}

/* Amount Section Styling */
.product-amount {
    font-size: 18px;
    font-weight: bold;
    color: #861b2d; /* Amount color */
}

/* Rating Star Styling */
.star-rating .flaticon-star-1 {
    color: #f1c40f; /* Golden color for filled stars */
    transition: color 0.3s ease;
}

.star-rating.empty .flaticon-star-1 {
    color: #b0b0b0; /* Gray color for empty stars */
}

/* Product Title Styling */
.product-title {
    font-size: 16px;
    color: #b0b0b0; /* Light gray color */
    font-weight: 600;
    line-height: 1.4;
}

    /* Ensure the product title doesn't overflow */
    .product-title.text-truncate {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


.wishlist-icon .fa-heart.filled {
    color: #861b2d; /* Red color for filled heart */
}

.wishlist-icon .fa-heart.empty {
    color: #0003; /* Transparent color for empty heart */
}

.product-price .regular-price {
    font-size: 34px;
}

.product-price .compared-price {
    font-size: 34px;
}

.desktop-cart {
    display: block;
}

.mobile-cart {
    display: none;
}

/* Mobile app-inspired styles */
.mobile-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    z-index: 1000; /* Ensures it stays above other content */
}

.btn-mobile {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-add-cart {
    background: #563329; /* Green for add to cart */
    color: white;
}

.btn-buy-now {
    background: #f7f7f7; /* Blue for buy now */
    color: #563329;
}

.btn-mobile:active {
    transform: scale(0.98); /* Slight press effect */
}

.btn--primary, .btn--primary.style2, .btn--secondary, .btn--secondary.style2 {
    padding: 10px;
}

    .btn--primary.style2 {
        background: #563329;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }

        .btn--primary.style2::before {
            background: #9a5555;
        }

.btn--primary {
    border: 1px solid #563329;
    background: #fff;
    color: #563329;
    font-size: 18px;
    font-weight: 600;
}

    .btn--primary:hover {
        color: #563329;
        border-color: #563329;
    }

    .btn--primary::before {
        background: #fff;
        color: #563329;
    }



#similar-products-container-@ViewContext.RouteData.Values["action"] {
    width: 100%;
    margin: 0 auto;
}

#similar-products-slider-@ViewContext.RouteData.Values["action"] {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.product-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.swiper-button-next, .swiper-button-prev {
    color: #f7f4f4;
}

#similar-next- @ViewContext.RouteData.Values["action"],
#similar-prev- @ViewContext.RouteData.Values["action"] {
    color: #f7f4f4;
    width: 20px; /* Increased from 10px for better visibility/clickability */
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#similar-next-@ViewContext.RouteData.Values["action"] {
    right: 10px;
}

#similar-prev-@ViewContext.RouteData.Values["action"] {
    left: 10px;
}

/*.modern-tabs-section {
        padding: 20px 0;
        background-color: #edecec
    }*/

.modern-tabs-nav {
    display: flex;
    justify-content: space-between;
}

.tabs-list {
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-item {
    margin: 0;
    flex: 1;
}

    .tab-item:first-child {
        text-align: left;
    }

    .tab-item:last-child {
        text-align: right;
    }

.tab-link {
    padding: 8px 12px;
    border: none;
    background: #edecec;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

    .tab-link.active {
        color: #000000;
        font-weight: 600;
    }

    .tab-link:hover:not(.active) {
        color: #666666;
    }

.modern-tabs-content {
    padding: 0;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
        background-color: #fff
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background: #edecec;
    padding: 20px;
}


.info-title {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 15px;
    border-bottom: 2px solid #563329;
    display: inline-block;
    padding-bottom: 5px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

    .info-table td {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #495057;
    }

        .info-table td:first-child {
            font-weight: 400;
            color: #212529;
            width: 50%;
        }

    .info-table tr.highlight td {
        font-weight: 400;
        color: #563329;
        /*background: #edecec;*/
    }

    .info-table .price {
        text-align: right; /* Aligns the price to the right */
        color: #333; /* Optional: make sure the price is visible */
    }





.modern-tabs-section {
    padding: 20px 0;
    background: #edecec;
}

.modern-tabs-nav {
    display: flex;
    justify-content: space-between;
}

.tabs-list {
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-item {
    margin: 0;
    flex: 1;
}

    .tab-item:first-child {
        text-align: left;
    }

    .tab-item:last-child {
        text-align: right;
    }

.tab-link {
    padding: 8px 12px;
    border: none;
    background: #edecec;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

    .tab-link.active {
        color: #000000;
        font-weight: 600;
    }

    .tab-link:hover:not(.active) {
        color: #666666;
    }

.modern-tabs-content {
    padding: 0;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
        background-color: #edecec
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /*gap: 20px;*/
}

.info-card {
    background: #edecec;
    /* border-radius: 12px;*/
    padding: 20px;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;*/
}

/*.info-card:hover {
            transform: translateY(-5px);
        }*/

.info-title {
    font-size: 1rem;
    color: #343a40;
    margin-bottom: 15px;
    border-bottom: 2px solid #563329;
    display: inline-block;
    padding-bottom: 5px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

    .info-table td {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #495057;
    }

        .info-table td:first-child {
            font-weight: 400;
            color: #212529;
            width: 50%;
        }

    .info-table tr.highlight td {
        font-weight: 400;
        color: #563329;
        background: #edecec;
    }

    .info-table .price {
        text-align: right; /* Aligns the price to the right */
        color: #333; /* Optional: make sure the price is visible */
    }



.cert-container {
    display: flex;
    align-items: center;
    background-color: #ffff;
    color: black;
    padding: 15px 5px;
    justify-content: center;
}

.cert-text {
    margin-right: 20px;
    text-align: center;
    font-weight: bold;
}

.cert-icons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.cert-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-item-1, .cert-item-2 {
    margin-right: 10px;
}




.info-container {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    width: 100%; /* Ensures the container takes full width of its parent */
    justify-content: space-between; /* Distributes space between items, pushing them to fill */
    box-sizing: border-box; /* Includes padding in width calculation */
}

.contact-section {
    margin-right: 20px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}


.contact-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-header {
    font-size: 16px;
}

/*.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;*/ /* Space between phone and WhatsApp */
    /*flex-wrap: wrap;*/ /* Allows wrapping on small screens */
/*}*/

.contact-phone, .contact-whatsapp {
    text-decoration: none;
    color: #333; /* Default color */
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    font-weight: bold;
}

    .contact-phone:hover, .contact-whatsapp:hover {
        color: #563329; /* Hover color */
    }

    .contact-whatsapp i {
        color: #25D366; /* WhatsApp green */
    }

    .contact-phone i {
        color: #007bff; /* Customer support blue */
    }

.separator {
    color: #edecec; /* Separator color */
    font-size: 1.2em;
}

.cert-section {
    display: flex;
    align-items: center;
}


.cert-title {
    margin: 0;
    color: black
}



.desktop-cart {
    padding: 2px; /* Optional: adds some padding around the section */
}

.button-row {
    display: flex;
    gap: 15px; /* Space between buttons */
    justify-content: center; /* Centers buttons horizontally */
}

.btn--primary {
    width: 100%;
    padding: 10px 20px; /* Consistent padding */
    margin-top: 0; /* Removes mt-3 since we're controlling layout with flex */
}


.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px 12px 0 0;
    /*    box-shadow: 0 4px 15px rgba(0,0,0,0.05);*/
}

    .reviews-header h3 {
        font-size: 1.5rem;
        color: #563329;
        margin: 0;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.rating-overview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e67e22;
}

/*.star-group {
    display: flex;
}*/

.star {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.2s ease;
}

    .star.active {
        color: #f1c40f;
        text-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
    }

.review-total {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.reviews-scroll {
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    scrollbar-width: thin;
    scrollbar-color: #bdc3c7 #f1f2f6;
}

    .reviews-scroll::-webkit-scrollbar {
        width: 8px;
    }

    .reviews-scroll::-webkit-scrollbar-thumb {
        background: #bdc3c7;
        border-radius: 4px;
    }

    .reviews-scroll::-webkit-scrollbar-track {
        background: #f1f2f6;
    }

.reviews-container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
}

    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: #dfe4ea;
    }

.review-stars {
    margin-bottom: 0.5rem;
}

.review-content {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.5;
    margin: 0.5rem 0;
    font-style: italic;
    max-height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    quotes: "“" "”";
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.reviewer-name {
    color: #2c3e50;
    font-weight: 500;
}

.verified-check {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: bold;
}

.review-time {
    color: #95a5a6;
    margin-left: auto;
}

/* Responsive */
@@media (max-width: 768px) {
    .reviews-wrapper {
        margin: 1rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .reviews-scroll {
        max-height: 300px;
    }
}

.click-zone {
    position: absolute;
    top: 48px;
    bottom: 0;
    width: 10%;
    cursor: pointer;
}

.btn-cart {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    /*                width: auto;*/
    height: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 18px 30px 18px;
    background: linear-gradient(90.18deg, #832729 .17%, #631517 99.86%);
    border: 0;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: normal;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    overflow: hidden;
}

    .btn-cart:hover {
        color: #fff !important;
    }

.btn-outline-cart {
    --bs-btn-color: #aa2600;
    --bs-btn-border-color: #aa2600;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #aa2600;
    --bs-btn-hover-border-color: #aa2600;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #aa2600;
    --bs-btn-active-border-color: #aa2600;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #aa2600;
    --bs-btn-disabled-bg: transparent;
    --bs-gradient: none;
    text-align: center;
    vertical-align: middle;
    height: 51px;
    line-height: 2;
}

.breadcrumb-nav {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: #666;
    margin-bottom: -20px;
}

    .breadcrumb-nav a {
        color: #666;
        text-decoration: none;
        cursor: pointer;
    }
        /*     .active {
        color: #c09853;
        text-decoration: none;
        cursor: pointer;
    }*/
        .breadcrumb-nav a:hover {
            text-decoration: underline;
        }

    .breadcrumb-nav span.separator {
        margin: 0 8px;
        color: #aaa;
    }

@@media (max-width: 576px) {
    .breadcrumb-nav {
        font-size: 13px;
    }

    .tab-link {
        padding: 10px 10px;
        font-size: 12px;
    }

    .info-table td {
        font-size: 12px;
    }

    .info-title {
        font-size: 16px;
        margin-bottom: 10px;
        border-bottom: 1px solid #563329;
        display: inline-block;
        padding-bottom: 2px;
    }

    .info-card {
        padding: 10px;
        border-radius: 12px;
    }

    .tabs-list {
        border-bottom: 1px solid #d4c8a8;
        margin-bottom: 15px;
    }

    .sticky-container {
        position: sticky;
        top: 100px; /* Adjust based on your header height */
        overflow: hidden;
    }
}

/* Make outer container sticky so it stays fixed in view */
.sticky-container {
    position: sticky;
    top: 100px; /* Adjust based on your header height */
    height: calc(100vh - 120px); /* Adjust for padding/margin if needed */
    overflow: hidden;
}

/* Make inner content scrollable */
.scrollable-content {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px; /* Optional: add spacing for scrollbar */
}

    /* Optional: style scrollbar if needed */
    .scrollable-content::-webkit-scrollbar {
        width: 6px;
    }

    .scrollable-content::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 3px;
    }

body.modal-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    /* Disable sticky on smaller devices */
    .sticky-container {
        position: static;
    }
}

.topprice {
    color: #1F3747;
    font-size: 14px;
    font-weight: 600 !important;
}

.pname {
    font-size: medium;
    font-weight: 800 !important;
    color: #5D1143;
}

.edd {
    font-size: small;
    font-weight: 400 !important;
}

.square {
    border-radius: 0;
}

.pincodebtn {
    height: 31px;
    width: 71px;
    border: none;
    color: white;
    background: #9e2761;
    margin-left: 7px;
    padding: 6px 13px;
    font-size: 12px;
    border-radius: 2px;
    cursor: pointer;
    margin-right: 12px;
    white-space: nowrap;
    box-sizing: border-box;
}

.pincodebtn:hover {
    height: 31px;
    width: 71px;
    border: none;
    color: white;
    background: #9e2761;
    
}
.pincodefield {
    border: 1px solid gainsboro;
    width: 100%;
    height: 30px;
    font-family: Arial, Helvetica, sans-serif !important;
    background: #80808017;
    color: gray;
    padding-left: 10px;
}

.offer-container {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    background: #f2f2f2b3;
}

.bg-code {
    background-color: #e7d2d887;
}

.accordion-button:not(.collapsed) {
    color: #212529 !important;
}

.gap-12 {
    gap: 12rem !important;
}

.tele {
    min-height: 45px;
    background: #f2f2f2;
    border-radius: 10px;
    border: 1px solid #dac0ddbf;
    color: #e5588e;
    font-weight: 700;
    font-size: 13.3333px;
    text-decoration: none;
    padding: 11px;
}

tele:hover {
    min-height: 45px;
    background: #f2f2f2;
    border-radius: 10px;
    border: 1px solid #dac0ddbf;
    color: #e5588e;
    font-weight: 700;
    font-size: 13.3333px;
    text-decoration: none;
    padding: 11px;
}

.videocall {
    display: flex;
    align-items: center;
    min-height: 45px;
    position: relative;
    justify-content: center;
    border: 1px solid #dac0ddbf;
    border-radius: 10px;
    background: #f2f2f2;
    color: #ed6b91;
    font-weight: 700;
    cursor: pointer;
}

    .videocall:hover {
        display: flex;
        align-items: center;
        min-height: 45px;
        position: relative;
        justify-content: center;
/*        width: 100%;*/
        border: 1px solid #dac0ddbf;
        border-radius: 10px;
        background: #f2f2f2;
        color: #ed6b91;
        font-weight: 700;
        cursor: pointer;
    }

.tabs {
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 5px;
    background: #f2f2f2;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.tab-button {
    min-height: 42px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 16px !important;
    font-size: 14px;
    color: black;
}

    .tab-button.active {
        background: linear-gradient(to left, #9f2862, #9f2862, #9f2862);
        color: white !important;
        padding: 8px !important;
    }

#tabProduct ul li {
    position: relative;
    padding-left: 1.8em;
    color: black !important;
    font-size: 13px;
}

    #tabProduct ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #800020;
        font-weight: bold;
        font-size: 1.2em;
        top: 0.1em;
    }


/* #endregion */



/* #region ===== Material and Shopping  ===== */


.product__accordion details[open] .icon-caret {
    transform: rotate(180deg);
}

.product__accordion summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

    .product__accordion summary::-webkit-details-marker {
        display: none;
    }

.accordion__content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.accordion__title {
    font-weight: 600 !important;
    font-size: small !important;
    letter-spacing: 0.5px;
}


/* #endregion */


/* #region ===== Find In Store ===== */
.fis-promotion-section .fis-promotion-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.fis-promotion-section .fis-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.fis-promotion-section .fis-promotion-outer {
    position: absolute;
    width: 44%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.fis-promotion-section .fis-h2 {
    font: 400 20px "Fraunces",serif;
    color: #9f2862;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

.fis-promotion-section .fis-p {
    font: 400 12px "IBM Plex Sans",sans-serif;
    color: #18022c;
    margin-bottom: 10px;
}

.fis-promotion-section .fis-promotion-cta {
    font: 400 13px "Fraunces", serif;
    color: #fff !important;
    background: linear-gradient(90.18deg, #832729 0.17%, #631517 99.86%) !important;
    height: 30px;
    padding: 15px 8px 15px 11px;
    border-radius: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    margin-top: 15px;
}

    .fis-promotion-section .fis-promotion-cta i {
        margin-left: 15px;
        padding: 10px 12px;
        width: 32px;
        height: 32px;
        background: #832729;
        border-radius: 50%;
    }

@media (max-width:767px) {
    .fis-promotion-section .fis-promotion-outer {
        display: block;
        padding: 20px;
    }

    .fis-promotion-section .fis-background {
        height: auto;
        margin-bottom: 24px;
    }

    .fis-promotion-section .fis-h2 {
        font: 400 16px "Fraunces",serif;
    }

    .fis-promotion-section .fis-p {
        font: 400 10px "IBM Plex Sans",sans-serif;
    }

    .fis-promotion-section .fis-promotion-cta {
        height: 40px;
    }
}

/* #endregion */


/* #region ===== Similar &Recent ===== */

.btn-swipe {
    background: white;
    color: gray;
}

.btn-swipe:hover {
    background: #800020;
    color: #fff;
}

.btn-swipe:focus {
    background: #800020;
    color: #fff;
}

    .btn-swipe:focus:not(:hover) {
        background: white;
        color: gray;
    }

.btnsimilar {
    background-color: white;
    color: #800020;
    font-size: small;
    padding: 30px;
    padding-right: 20px;
    padding-left: 20px;
}

.btnsimilarmob {
    background-color: white;
    color: #800020;
    font-size: small;
    padding-right: 18px;
    padding-left: 10px;
    border: 1px solid #80808080;
}

.btnsimilar:hover {
    background-color: white;
    border: none;
    color: #800020;
}

.swiper {
    overflow: hidden;
}

.swiper-slide {
    width: auto;
    max-width: 250px;
}

@media (max-width:768px) {
    .swiper-slide {
        width: auto;
        max-width: 130px;
        margin-bottom: 40px;
    }

    .similar-product-section {
        padding: 26px;
        margin-top: 9px;
    }
}

.product-card1 {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .product-card1:hover .hover-label {
        opacity: 1;
        transform: translateY(-12px);
    }

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .3s ease;
    }

.wishlist-icon {
    font-size: 1rem;
    z-index: 2;
}

.hover-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    color: #800020;
    padding: 9px 25px;
    font-size: 0.75rem;
    border: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: all .3s ease-in-out;
    z-index: 2;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.product-price {
    font-size: 0.9rem;
    color: #800020;
}

.swiper-button-prev-custom, .swiper-button-next-custom {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.image-hover-wrapper {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    height: auto;
}

    .image-hover-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform .8s ease-in-out;
    }

.product-main-img {
    position: relative;
    z-index: 1;
    transform: translateX(0%);
}

.product-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(100%);
    transition: transform .8s ease-in-out;
}

.image-hover-wrapper:hover .product-main-img {
    transform: translateX(-100%);
}

.image-hover-wrapper:hover .product-hover-img {
    transform: translateX(0%);
}

.swiper-pagination-bullet {
    background-color: #800020;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.similarproduct {
    font: 400 25px "Fraunces", serif;
    color: #631517;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

.reviewheader {
    font: 400 "Fraunces", serif;
    color: #631517;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}
.product-item:hover .normal-image{
    opacity:1 !important;
}
/* #endregion */
/* #region ===== Extra ===== */
/*.image-grid {*/
/*    max-width: 900px;*/
    /*margin: auto;
}*/

.image-tile {
    height: 100%;
    cursor: pointer;
}

    .image-tile img {
        transition: transform .3s;
    }

        .image-tile img:hover {
            transform: scale(1.05);
        }

.cursor-zoom {
    cursor: zoom-in;
}

.main-btnsimilar {
    background-color: white;
    color: #800020;
    font-size: small;
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fake-dropdown {
    width: max-content;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: .375rem .75rem;
    background-color: #fff;
    cursor: pointer;
    user-select: none;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

.certify-section {
    background-color: antiquewhite;
    margin-top: 31px;
    border-radius: 9px;
}

.p-9 {
    padding: 9px;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.zoom-animation {
    animation: zoomInOut 2s ease-in-out infinite;
}


/* #endregion */



/* #region ===== FAQ Section Styles ===== */

.reviewsubmit {
    outline: none;
    border: none;
    border-radius: 40px;
    background: #9e2761;
    font: 400 16px "Fraunces", serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 60px;
    width: 100%; /* full width inside modal */
    margin-top: auto;
    position: relative; /* prevent absolute float-out */
}

.reviewsubmit span {
    background: #832729;
    box-shadow: 16px 16px 15.9px 4px #490a0c91 inset;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

    .reviewsubmit span i {
        color: white;
        font-size: 10px;
    }

@media only screen and (max-width: 768px) {
    .reviewsubmit span {
        width: 28px;
        height: 28px;
    }

        .reviewsubmit span i {
            font-size: 8px;
        }
}


.giverate {
    outline: none;
    border: none;
    border-radius: 40px;
    width: fit-content;
    height: 60px;
    background: linear-gradient(to left, #9f2862, #9f2862, #9f2862);
    font: 400 16px "Fraunces", serif;
    font-size: 14px;
    font-weight: 400;
    font-family: "Fraunces", serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    /* position: relative; */
    right: 44%;
    transform: translateY(0%);
}

@media (max-width: 768px) {
    .giverate {
        outline: none;
        border: none;
        border-radius: 40px;
        /*                width: 375px;*/
        height: 60px;
        background: linear-gradient(to left, #9f2862, #9f2862, #9f2862);
        font: 400 16px "Fraunces", serif;
        font-size: 16px;
        font-weight: 400;
        font-family: "Fraunces", serif;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 24px;
        position: absolute;
        right: 70px;
        transform: translateY(0%);
        margin-bottom: 100px;
    }
}

.giverate span {
    background: #a52a5f;
    box-shadow: 16px 16px 15.9px 4px #a62b60 inset;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    color: white;
    font-size: 10px;
}

@media only screen and (max-width: 768px) {
    width: 8px;
    height: 8px;
    font-size: 8px;
}

}
}

.giverate:hover {
    color: white !important;
}

.btn-primary:hover {
    color: white;
}

.star-group .star {
    font-size: 1.25rem;
    color: #ccc;
    margin: 0 2px;
}

.star-group .active,
.gold-star {
    color: #d4af37; /* Gold */
}

.no-review-card {
    background: linear-gradient(180deg, #9f2862 0%, #ffd7bd 100%);
    border: 1px solid #ddd;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.review-card .star {
    font-size: 1rem;
    color: #ccc;
}

    .review-card .star.active {
        color: #d4af37;
    }
/* Base styles */
.customization-modal {
    position: fixed;
    top: 0;
    right: -100%; /* hidden by default */
    width: 50vw;
    /*            max-width: 450px;*/
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
}

    /* When open */
    .customization-modal.open {
        right: 0; /* Slide in */
    }

/* Modal content padding and layout */
.customization-modal-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}


@media (max-width: 768px) {
    .customization-modal {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: auto;
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

        .customization-modal.open {
            transform: translateY(0);
            right: 5px; /* stays right: 0 */
        }
}

.blur-background {
    filter: blur(4px);
    transition: filter 0.3s ease;
}

.no-pointer-events {
    pointer-events: none;
}

.customizelabel {
    color: #800020;
}

.customizebtn {
    width: 100px;
    height: 40px;
    border: 1px solid #80808070;
}

.bgfill {
    background-color: #800020;
    color: white;
    border: none;
}

.color-circle-wrapper {
    width: 80px;
}

.color-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: border 0.2s ease;
}

    .color-circle[data-selected="true"] {
        border-color: white;
        box-shadow: 0 0 0 2px rgba(134, 27, 45, 0.3);
    }


.location-modal {
    position: fixed;
    top: 0;
    right: -100%; /* hidden by default */
    width: 50vw;
    max-width: 450px;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
}

    .location-modal.open {
        right: 0; /* Slide in */
    }

@media (max-width: 768px) {
    .location-modal {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100vw;
        height: auto;
        max-height: 90vh;
        /*        border-radius: 16px 16px 0 0;*/
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

        .location-modal.open {
            transform: translateY(0);
            right: 7px; /* stays right: 0 */
        }
}

.contact-content {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.guideline-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 103vw;
    height: 103vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .guideline-modal.open {
        opacity: 1;
        pointer-events: auto;
    }

.guideline-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-width: 700px;
    width: 90%;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.guideline-modal.open .guideline-modal-content {
    transform: scale(1);
}

/* Optional: blur everything else */
.blur-background {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.guide-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
}

.guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.guide-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.guide-imagesquare {
    width: 50%;
    height: 100%;
    object-fit: contain;
    border-radius: 5%;
    transition: transform 0.3s ease;
}

.guide-image:hover {
    transform: scale(1.05);
}

.guide-label {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
}

.guide-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .guide-detail-modal.open {
        opacity: 1;
        pointer-events: auto;
    }

.guide-detail-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1080;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem; /* ✅ Add some space on all sides */
    box-sizing: border-box; /* ✅ Ensure padding doesn't overflow */
    overflow-y: auto; /* ✅ Allow scroll if modal is taller than screen */
}


    .review-modal.open {
        opacity: 1;
        pointer-events: auto;
    }

.review-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    max-height: 90vh; /* ✅ Slightly less than full height */
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.rating-stars {
    direction: rtl; /* Reverses order so highest star is first */
    display: inline-flex;
}

    .rating-stars input[type="radio"] {
        display: none;
    }

    .rating-stars label {
        font-size: 2rem;
        color: #ccc;
        cursor: pointer;
        transition: color 0.2s ease;
    }

        /* Hover effect */
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: gold;
        }

    /* Selected stars */
    .rating-stars input[type="radio"]:checked ~ label {
        color: gold;
    }
/* Slide up effect only on mobile */
@media (max-width: 768px) {
    .review-modal {
        align-items: flex-end; /* position at bottom */
        top:-8vh !important;
    }

    .review-modal-content {
        border-radius: 16px 16px 0 0;
        width: 100%;
        max-width: none;
        transform: translateY(100%);
    }

    .review-modal.open .review-modal-content {
        transform: translateY(0);
    }

    .rating-stars label {
        font-size: 1.3rem !important;
        color: #ccc;
        cursor: pointer;
        transition: color 0.2s ease;
    }
}
.guideline-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .guideline-modal.open {
        opacity: 1;
        pointer-events: auto;
    }

    /* Content container inside modal */
    .guideline-modal .guideline-modal-content {
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        max-width: 500px;
        width: 90%;
        transform: scale(1);
        transition: transform 0.3s ease;
    }

/* Slide-up effect on mobile */
@media (max-width: 768px) {
    .guideline-modal {
        align-items: flex-end; /* push content to bottom */
    }

        .guideline-modal .guideline-modal-content {
            border-radius: 16px 16px 0 0;
            width: 100%;
            max-width: none;
            transform: translateY(100%);
        }

        .guideline-modal.open .guideline-modal-content {
            transform: translateY(0);
        }
}

.customization-modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.customization-body {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 0.5rem; /* optional, avoids clipping scroll bar */
}

/* #endregion */

/*..........................................*/
.fullscreen-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1; /* lower than close button */
}

.gallery-container {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.gallery-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.gallery-close-btn, .gallery-prev-btn, .gallery-next-btn {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.gallery-close-btn {
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    z-index: 99999;
}

.gallery-close-btn {
    top: 20px;
    right: 30px;
}

.gallery-prev-btn {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.gallery-next-btn {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.tele {
    min-height: 45px;
    background: #f2f2f2;
    border-radius: 10px;
    width: auto !important;
    border: 1px solid #dac0ddbf;
    color: #e5588e;
    font-weight: 700;
    font-size: 13.3333px;
    text-decoration: none;
    padding: 11px;
}

tele:hover {
    min-height: 45px;
    background: #f2f2f2;
    border-radius: 10px;
    border: 1px solid #dac0ddbf;
    color: #e5588e;
    font-weight: 700;
    font-size: 13.3333px;
    text-decoration: none;
    padding: 11px;
}

.videocall {
    display: flex;
    align-items: center;
    min-height: 45px;
    width: auto !important;
    position: relative;
    justify-content: center;
    border: 1px solid #dac0ddbf;
    border-radius: 10px;
    background: #f2f2f2;
    color: #ed6b91;
    font-weight: 700;
    cursor: pointer;
}

    .videocall:hover {
        display: flex;
        align-items: center;
        min-height: 45px;
        position: relative;
        justify-content: center;
        border: 1px solid #dac0ddbf;
        border-radius: 10px;
        background: #f2f2f2;
        color: #ed6b91;
        font-weight: 700;
        cursor: pointer;
    }

@media (max-width: 992px) {
    .h-100 {
        height: auto !important;
    }

    .vh-100 {
        height: auto !important;
    }
}


/*...............................*/


.d-md-flex {
    display: flex !important;
}

/* For mobile devices, show carousel and hide grid */
.d-md-none {
    display: none !important;
}

@media (max-width: 768px) {
    /* Show the carousel on mobile */
    .d-md-none {
        display: block !important;
    }
    /* Hide grid layout on mobile */
    .d-md-flex {
        display: none !important;
    }
}


/*..................................*/


.info-section {
    border-top: 1px solid #e9e6e6;
    /* margin-top: 2px; */
    display: flex;
    align-items: center;
    /* gap: 10px; */
    flex-wrap: wrap;
}

.info-section .info-box {
    text-align: center;
    flex: 1 1 100px; /* flexible width */
    max-width: 120px; /* optional limit */
}

    .info-section .info-box img {
        width: 100%;
        height: auto;
        display: block;
    }

.info-section .divider {
    width: 2px;
    height: 60px;
    background-color: #ae6b97;
}

@media (max-width: 768px) {
    .info-section {
        border-top: none !important;
        /* margin-top: 2px; */
        display: flex;
        /* gap: 10px; */
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: space-between;
        justify-content: space-around;
    }

    .form-control {
        font-size: 0.7rem;
    }

    .edd {
        font-size: 12px;
        font-weight: 400 !important;
    }

    .gap-12 {
        gap: 8rem !important;
    }
}

/*.......................................*/

.similarproduct {
    font: 400 25px "Fraunces", serif;
    color: #631517;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

.reviewheader {
    font: 400 "Fraunces", serif;
    color: #631517;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}

/*...........................................*/

.bgfill {
    background-color: #800020 !important;
    color: white !important;
}

.border-none {
    border: none !important;
}

.customizebtn {
    transition: all 0.2s ease;
}

.color-circle {
    transition: border 0.2s ease;
}

.color-circle-wrapper {
    cursor: pointer;
}

/*.................................*/

.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 12.4rem;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 12.4rem;
}

.gmap_iframe {
    height: 12.4rem !important;
}

/* New wrapper for border & shadow */
.map-wrapper {
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/*.......................................*/


.image-hover-wrapper {
    position: relative;
}

.product-hover-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-wrapper:hover .product-hover-img {
    opacity: 1;
}

.image-hover-wrapper:hover .product-main-img {
    opacity: 0;
}

.custom-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    display: none;
    overflow-y: auto;
}

    /* Modal Content Container */
    .custom-fullscreen-modal .modal-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: #fff;
        border-radius: 10px 10px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp 0.4s ease-out;
    }

/* Slide-up animation for small screens */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Only apply slide-up in mobile view */
@media (min-width: 768px) {
    .custom-fullscreen-modal .modal-overlay {
        bottom: auto;
        top: 0;
        border-radius: 0;
        animation: none;
        /*                height: 100vh;*/
    }
}


.modal-body-wrapper {
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 90vh;
}

.modal-content-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    height: 100%;
}

.modal-left {
    width: 70%;
    border-right: 1px solid #eee;
    overflow-y: auto;
}

.modal-right {
    width: 30%;
    background-color: #f9f9f9;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal-content-body {
        flex-direction: column;
    }

    .modal-left,
    .modal-right {
        width: 100%;
        border-right: none;
        border-top: 1px solid #eee;
    }
}

.btn-similar-cart {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    /* width: auto; */
    height: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 10px 50px 10px;
    background: linear-gradient(90.18deg, #832729 .17%, #631517 99.86%);
    border: 0;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: normal;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    overflow: hidden;
}

.product-similar-image {
    position: relative;
    aspect-ratio: 1 / 0;
    overflow: hidden;
}

    .product-similar-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.review-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.review-body {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
}
/*....................*/


.otp-input {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.25rem;
    border: 1px solid #ccc;
    transition: border 0.3s ease;
}

.otp-input:focus {
    border-color: #1c0823;
    outline: none;
    box-shadow: 0 0 5px rgba(169, 116, 95, 0.3);
}

.btn-login-primary {
    background-color: #1c0823;
    color: white;
    border-radius: 50px;
    border: none;
}

    .btn-login-primary:hover {
        background-color: #8e5f4d;
    }

    /*.............................*/


/* General Styles */
.fixed-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 15px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.fixed-add-to-cart__inner {
    display: flex;
    justify-content: flex-end; /* Keep buttons to the right in desktop view */
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.fixed-add-to-cart button {
    padding: 8px 40px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    white-space: nowrap;
    min-width: 150px; /* Ensures the buttons have a minimum width */
}

/* Add to Cart Button */
.fixed-add-to-cart .button--secondary {
    background-color: #ffffff;
    color: #982464;
    border: 1px solid #982464;
}

/* Buy Now Button */
.fixed-add-to-cart .shopify-payment-button {
    background-color: #982464;
    color: #fff;
    padding: 12px 40px;
    border: 1px solid #982464;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .fixed-add-to-cart__inner {
        max-width: 100%;
        padding: 10px; /* Reduce padding for medium screens */
    }

    .fixed-add-to-cart button {
        padding: 8px 30px; /* Adjust button padding */
        font-size: 14px;
        min-width: 120px; /* Slightly smaller minimum width */
    }
}

@media (max-width: 992px) {
    /* On medium screens (tablet and mobile devices), make sure buttons align side by side */
    .fixed-add-to-cart__inner {
        justify-content: center; /* Center the buttons */
        gap: 15px; /* Add space between the buttons */
    }

    .fixed-add-to-cart button {
        width: auto; /* Allow the buttons to maintain their normal size */
        margin-bottom: 10px; /* Space between buttons */
    }
    /* Buy Now Button can have slightly larger padding on mobile for better touch */
    .fixed-add-to-cart .shopify-payment-button {
        padding: 12px 20px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .fixed-add-to-cart__inner {
        padding: 0px 5px; /* Further reduced padding on small screens */
    }

    .fixed-add-to-cart button {
        padding: 10px 47px;
        font-size: 14px;
        min-width: 101px;
        margin-bottom: 0px !important;
    }

    .fixed-add-to-cart .shopify-payment-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .review-modal {
        align-items: flex-end; /* position at bottom */
        top: -8vh !important;
    }

}