﻿/* #region ===== Main ===== */

#loginModal, #loginModal1, #loginModal2, #loginModal3, #loginModal4, #loginModal5 {
    z-index: 1000002;
}

.product-info {
    background-color: var(--web-bg-main, #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 var(--web-border-medium, #ddd);
    }

    .summary-table th {
        background-color: #f7f7f7;
        color: var(--web-text-light, #555);
    }

    .summary-table tr:hover {
        background-color: #f1f1f1;
    }

    .summary-table .price {
        text-align: right;
    }

        .summary-table .price span {
            font-weight: bold;
        }

.product-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    text-align: center;
    box-shadow: 0 2px 2px var(--web-shadow-sm, 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 var(--web-shadow-sm, rgba(0, 0, 0, 0.1));
    }

    .thumbnail.selected {
        border: 2px solid var(--product-thumbnail-selected-border, #ff8f00);
        box-shadow: 0 0 2px var(--product-thumbnail-selected-shadow, rgba(255, 143, 0, 0.4));
    }

.click-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    cursor: pointer;
}

.left {
    left: 0px;
}

.right {
    right: 0px;
}

body.modal-open {
    overflow: hidden;
}

.fullscreen-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--product-gallery-bg, rgba(0, 0, 0, 1));
    z-index: 1000000;
    display: none;
    overflow: hidden;
}

.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: var(--web-text-inverse, #fff);
    font-size: 30px;
    cursor: pointer;
}

.gallery-prev-btn,
.gallery-next-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: var(--web-text-inverse, #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;
}

@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 {
    font-family: var(--theme-font-primary);
    font-weight: 600;
    color: var(--web-text-dark, #333);
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

.product-item:hover .product-image-wrapper img {
    transform: scale(1.15);
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.product-item {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 15px;
}

    .product-item.hover-border:hover {
        border: 1px solid #d1d1d1;
        box-shadow: 0 4px 12px var(--web-shadow-md, rgba(0, 0, 0, 0.1));
    }

.product-image-wrapper .zoom-image {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item:hover .zoom-image {
    opacity: 1;
    transform: scale(1.15);
}

.product-amount {
    font-size: 18px;
    font-weight: bold;
    color: #861b2d;
}

.star-rating .flaticon-star-1 {
    color: #f1c40f;
    transition: color 0.3s ease;
}

.star-rating.empty .flaticon-star-1 {
    color: #b0b0b0;
}

.product-title {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 600;
    line-height: 1.4;
}

    .product-title.text-truncate {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.wishlist-icon .fa-heart.filled {
    color: #861b2d;
}

.wishlist-icon .fa-heart.empty {
    color: #0003;
}

.product-price .regular-price {
    font-size: 34px;
}

.product-price .compared-price {
    font-size: 34px;
}

.desktop-cart {
    display: block;
}

.mobile-cart {
    display: none;
}

.mobile-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    z-index: 1000;
}

.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;
    color: var(--web-text-inverse, white);
}

.btn-buy-now {
    background: #f7f7f7;
    color: #563329;
}

.btn-mobile:active {
    transform: scale(0.98);
}

.btn--primary, .btn--primary.style2, .btn--secondary, .btn--secondary.style2 {
    padding: 10px;
}

    .btn--primary.style2 {
        background: #563329;
        color: var(--web-text-inverse, #ffffff);
        font-size: 18px;
        font-weight: 600;
    }

        .btn--primary.style2::before {
            background: var(--product-btn-primary-style2-before-bg, #9a5555);
        }

.btn--primary {
    border: 1px solid #563329;
    background: var(--web-bg-main, #fff);
    color: #563329;
    font-size: 18px;
    font-weight: 600;
}

    .btn--primary:hover {
        color: #563329;
        border-color: #563329;
    }

    .btn--primary::before {
        background: var(--web-bg-main, #fff);
        color: #563329;
    }

.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;
}

.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: var(--product-tab-bg, #edecec);
    color: var(--product-tab-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: var(--product-tab-active-color, #000000);
        font-weight: 600;
    }

    .tab-link:hover:not(.active) {
        color: var(--product-tab-hover-color, #666666);
    }

.modern-tabs-content {
    padding: 0;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
        background-color: var(--web-bg-main, #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: var(--product-info-card-bg, #edecec);
    padding: 20px;
}

.info-title {
    font-size: 1.25rem;
    color: var(--product-info-title-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 var(--web-border-light, #eee);
        color: var(--product-info-table-text, #495057);
    }

        .info-table td:first-child {
            font-weight: 400;
            color: var(--product-info-table-label, #212529);
            width: 50%;
        }

    .info-table tr.highlight td {
        font-weight: 400;
        color: #563329;
    }

    .info-table .price {
        text-align: right;
        color: #333;
    }

.modern-tabs-section {
    padding: 20px 0;
    background: var(--product-tab-bg, #edecec);
}

.cert-container {
    display: flex;
    align-items: center;
    background-color: var(--product-cert-bg, #ffff);
    color: var(--web-text-dark, 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: var(--web-bg-main, white);
    padding: 10px;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

.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-phone, .contact-whatsapp {
    text-decoration: none;
    color: #333;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

    .contact-phone:hover, .contact-whatsapp:hover {
        color: #563329;
    }

    .contact-whatsapp i {
        color: #25D366;
    }

    .contact-phone i {
        color: var(--product-contact-phone-icon, #007bff);
    }

.separator {
    color: var(--product-contact-separator, #edecec);
    font-size: 1.2em;
}

.cert-section {
    display: flex;
    align-items: center;
}

.cert-title {
    margin: 0;
    color: var(--web-text-dark, black);
}

.desktop-cart {
    padding: 2px;
}

.button-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn--primary {
    width: 100%;
    padding: 10px 20px;
    margin-top: 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--product-review-header-bg, #fff);
    border-radius: 12px 12px 0 0;
}

    .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: var(--product-review-rating-value, #e67e22);
}

.star {
    font-size: 1.2rem;
    color: var(--product-review-star-inactive, #ddd);
    transition: all 0.2s ease;
}

    .star.active {
        color: var(--product-review-star-active, #f1c40f);
        text-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
    }

.review-total {
    font-size: 0.9rem;
    color: var(--product-review-total-color, #7f8c8d);
}

.reviews-scroll {
    max-height: 400px;
    overflow-y: auto;
    background: var(--product-review-scroll-bg, #fff);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px var(--web-shadow-md, 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: var(--web-bg-main, #fff);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--product-review-card-border, #f0f2f5);
}

    .review-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px var(--web-shadow-md, rgba(0,0,0,0.1));
        border-color: var(--product-review-card-hover-border, #dfe4ea);
    }

.review-stars {
    margin-bottom: 0.5rem;
}

.review-content {
    font-size: 0.95rem;
    color: var(--product-review-content-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: var(--product-reviewer-name, #2c3e50);
    font-weight: 500;
}

.verified-check {
    color: var(--product-review-verified, #2ecc71);
    font-size: 0.9rem;
    font-weight: bold;
}

.review-time {
    color: var(--product-review-time, #95a5a6);
    margin-left: auto;
}

@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;
    height: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 18px 30px 18px;
    background: var(--product-btn-cart-bg, linear-gradient(90.18deg, #832729 .17%, #631517 99.86%));
    border: 0;
    color: var(--web-text-inverse, #fff);
    font-family: var(--theme-font-primary);
    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: var(--web-text-inverse, #fff) !important;
    }

.btn-outline-cart {
    --bs-btn-color: var(--product-btn-outline-cart-color, #aa2600);
    --bs-btn-border-color: var(--product-btn-outline-cart-border, #aa2600);
    --bs-btn-hover-color: var(--web-text-inverse, #fff);
    --bs-btn-hover-bg: var(--product-btn-outline-cart-hover-bg, #aa2600);
    --bs-btn-hover-border-color: var(--product-btn-outline-cart-border, #aa2600);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--web-text-inverse, #fff);
    --bs-btn-active-bg: var(--product-btn-outline-cart-hover-bg, #aa2600);
    --bs-btn-active-border-color: var(--product-btn-outline-cart-border, #aa2600);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--product-btn-outline-cart-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: var(--theme-font-primary);
    font-size: 14px;
    color: var(--web-text-muted, #666);
    margin-bottom: -20px;
}

    .breadcrumb-nav a {
        color: var(--web-text-muted, #666);
        text-decoration: none;
        cursor: pointer;
    }

        .breadcrumb-nav a:hover {
            text-decoration: underline;
        }

    .breadcrumb-nav span.separator {
        margin: 0 8px;
        color: var(--product-breadcrumb-separator, #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;
        overflow: hidden;
    }
}

.sticky-container {
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    overflow: hidden;
}

.scrollable-content {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

    .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) {
    .sticky-container {
        position: static;
    }
}

.topprice {
    color: var(--web-secondary, var( --web-secondary));
    font-size: 14px;
    font-weight: 600 !important;
}

.pname {
    font-size: medium;
    font-weight: 800 !important;
    color: var(--web-primary, var(--web-primary));
}

.edd {
    font-size: small;
    font-weight: 400 !important;
}

.square {
    border-radius: 0;
}

.pincodebtn {
    height: 31px;
    width: 71px;
    border: none;
    color: var(--web-text-inverse, 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: var(--web-text-inverse, white);
        background: #9e2761;
    }

.pincodefield {
    border: 1px solid var(--product-pincode-field-border, gainsboro);
    width: 100%;
    height: 30px;
    font-family: Arial, Helvetica, sans-serif !important;
    background: var(--product-pincode-field-bg, #80808017);
    color: var(--web-text-muted, gray);
    padding-left: 10px;
}

.offer-container {
    border: 1px solid var(--product-offer-border, #eee);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    background: var(--product-cert-item-bg, #f2f2f2b3);
}

.bg-code {
    background-color: var(--product-cert-code-bg, #e7d2d887);
}

.accordion-button:not(.collapsed) {
    color: var(--product-accordion-color, #212529) !important;
}

.gap-12 {
    gap: 12rem !important;
}

.tele {
    min-height: 45px;
    background: var(--product-tele-bg, #f2f2f2);
    border-radius: 10px;
    border: 1px solid var(--product-tele-border, #dac0ddbf);
    color: var(--product-tele-color, #e5588e);
    font-weight: 700;
    font-size: 13.3333px;
    text-decoration: none;
    padding: 11px;
}

tele:hover {
    min-height: 45px;
    background: var(--product-tele-bg, #f2f2f2);
    border-radius: 10px;
    border: 1px solid var(--product-tele-border, #dac0ddbf);
    color: var(--product-tele-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 var(--product-tele-border, #dac0ddbf);
    border-radius: 10px;
    background: var(--product-tele-bg, #f2f2f2);
    color: var(--product-videocall-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 var(--product-tele-border, #dac0ddbf);
        border-radius: 10px;
        background: var(--product-tele-bg, #f2f2f2);
        color: var(--product-videocall-color, #ed6b91);
        font-weight: 700;
        cursor: pointer;
    }

.tabs {
    border: 1px solid var(--web-border-medium, #ccc);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 5px;
    background: var(--product-tele-bg, #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: var(--web-text-dark, black);
}

    .tab-button.active {
        background: var(--product-tab-button-active-bg, linear-gradient(to left, #9f2862, #9f2862, #9f2862));
        color: var(--web-text-inverse, white) !important;
        padding: 8px !important;
    }

#tabProduct ul li {
    position: relative;
    padding-left: 1.8em;
    color: var(--web-text-dark, black) !important;
    font-size: 13px;
}

    #tabProduct ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--product-tab-list-bullet-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;
}

.accordion__title {
    font-weight: 600 !important;
    font-size: small !important;
    letter-spacing: 0.5px;
}

/* #endregion */

/* #region ===== Similar & Recent ===== */

.btn-swipe {
    background: var(--web-bg-main, white);
    color: var(--web-text-muted, gray);
}

    .btn-swipe:hover {
        background: #800020;
        color: var(--web-text-inverse, #fff);
    }

    .btn-swipe:focus {
        background: #800020;
        color: var(--web-text-inverse, #fff);
    }

        .btn-swipe:focus:not(:hover) {
            background: var(--web-bg-main, white);
            color: var(--web-text-muted, gray);
        }

.btnsimilar {
    background-color: var(--web-bg-main, white);
    color: #800020;
    font-size: small;
    padding: 30px;
    padding-right: 20px;
    padding-left: 20px;
}

.btnsimilarmob {
    background-color: var(--web-bg-main, white);
    color: #800020;
    font-size: small;
    padding-right: 18px;
    padding-left: 10px;
    border: 1px solid #80808080;
}

.btnsimilar:hover {
    background-color: var(--web-bg-main, 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: var(--product-similar-card-bg, #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: var(--web-bg-main, 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: var(--product-similar-name-color, #333);
    margin-bottom: 4px;
}

.product-price {
    font-size: 0.9rem;
    color: var(--product-similar-price-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: var(--product-swiper-pagination, #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-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: var(--web-bg-main, white);
    color: #800020;
    font-size: small;
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 99;
    box-shadow: 0 2px 10px var(--web-shadow-md, rgba(0,0,0,0.1));
}

.fake-dropdown {
    width: max-content;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: .375rem .75rem;
    background-color: var(--web-bg-main, #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: var(--web-text-inverse, white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 60px;
    width: 100%;
    margin-top: auto;
    position: relative;
}

    .reviewsubmit span {
        background: var(--product-faq-submit-span-bg, #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: var(--web-text-inverse, 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: var(--product-faq-giverate-bg, linear-gradient(to left, #9f2862, #9f2862, #9f2862));
    font: 400 16px "Fraunces", serif;
    font-size: 14px;
    font-weight: 400;
    font-family: "Fraunces", serif;
    color: var(--web-text-inverse, white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    right: 44%;
    transform: translateY(0%);
}

@media (max-width: 768px) {
    .giverate {
        outline: none;
        border: none;
        border-radius: 40px;
        height: 60px;
        background: var(--product-faq-giverate-bg, linear-gradient(to left, #9f2862, #9f2862, #9f2862));
        font: 400 16px "Fraunces", serif;
        font-size: 16px;
        font-weight: 400;
        font-family: "Fraunces", serif;
        color: var(--web-text-inverse, 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: var(--web-text-inverse, white);
    font-size: 10px;
}

@media only screen and (max-width: 768px) {
    .giverate span {
        width: 8px;
        height: 8px;
        font-size: 8px;
    }
}

.giverate:hover {
    color: var(--web-text-inverse, white) !important;
}

.btn-primary:hover {
    color: var(--web-text-inverse, white);
}

.star-group .star {
    font-size: 1.25rem;
    color: var(--web-border-medium, #ccc);
    margin: 0 2px;
}

.star-group .active,
.gold-star {
    color: var(--web-accent, #d4af37);
}

.no-review-card {
    background: linear-gradient(180deg, #9f2862 0%, #ffd7bd 100%);
    border: 1px solid var(--web-border-medium, #ddd);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.review-card .star {
    font-size: 1rem;
    color: var(--web-border-medium, #ccc);
}

    .review-card .star.active {
        color: var(--web-accent, #d4af37);
    }

/* Customization Modal */
.customization-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    background-color: var(--web-bg-main, #fff);
    z-index: 1050;
    overflow-y: auto;
    box-shadow: -2px 0 10px var(--web-shadow-md, rgba(0, 0, 0, 0.2));
    transition: right 0.4s ease;
}

    .customization-modal.open {
        right: 0;
    }

.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;
        }
}

.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 var(--product-customize-btn-border, #80808070);
}

.bgfill {
    background-color: #800020 !important;
    color: var(--web-text-inverse, 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;
}

/* Map */
.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;
}

.map-wrapper {
    border: 1px solid var(--product-map-border, #ccc);
    box-shadow: 0 4px 12px var(--web-shadow-md, rgba(0, 0, 0, 0.1));
    border-radius: 8px;
}

/* Image Hover */
.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;
}

    .custom-fullscreen-modal .modal-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--web-bg-main, #fff);
        border-radius: 10px 10px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp 0.4s ease-out;
    }

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .custom-fullscreen-modal .modal-overlay {
        bottom: auto;
        top: 0;
        border-radius: 0;
        animation: none;
    }
}

.modal-body-wrapper {
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: 2rem auto;
    background: var(--web-bg-main, #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 var(--web-border-light, #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 var(--web-border-light, #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;
    height: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 10px 50px 10px;
    background: var(--product-btn-cart-bg, linear-gradient(90.18deg, #832729 .17%, #631517 99.86%));
    border: 0;
    color: var(--web-text-inverse, #fff);
    font-family: var(--theme-font-primary);
    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: var(--web-bg-main, #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 var(--web-shadow-md, rgba(0,0,0,0.2));
}

.review-body {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
}

/* OTP */
.otp-input {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.25rem;
    border: 1px solid var(--web-border-medium, #ccc);
    transition: border 0.3s ease;
}

    .otp-input:focus {
        border-color: #1c0823;
        outline: none;
        box-shadow: 0 0 5px var(--product-otp-focus-shadow, rgba(169, 116, 95, 0.3));
    }

.btn-login-primary {
    background-color: #1c0823;
    color: var(--web-text-inverse, white);
    border-radius: 50px;
    border: none;
}

    .btn-login-primary:hover {
        background-color: #8e5f4d;
    }

/* Fixed Add to Cart */
.fixed-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--product-fixed-cart-bg, #fff);
    border-top: 1px solid var(--product-fixed-cart-border, #ddd);
    padding: 10px 15px;
    box-shadow: 0 -2px 6px var(--web-shadow-sm, rgba(0, 0, 0, 0.1));
}

.fixed-add-to-cart__inner {
    display: flex;
    justify-content: flex-end;
    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;
}

.fixed-add-to-cart .button--secondary {
    background-color: var(--product-fixed-cart-btn-secondary-bg, #ffffff);
    color: #982464;
    border: 1px solid #982464;
}

.fixed-add-to-cart .shopify-payment-button {
    background-color: #982464;
    color: var(--web-text-inverse, #fff);
    padding: 12px 40px;
    border: 1px solid #982464;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .fixed-add-to-cart__inner {
        max-width: 100%;
        padding: 10px;
    }

    .fixed-add-to-cart button {
        padding: 8px 30px;
        font-size: 14px;
        min-width: 120px;
    }
}

@media (max-width: 992px) {
    .fixed-add-to-cart__inner {
        justify-content: center;
        gap: 15px;
    }

    .fixed-add-to-cart button {
        width: auto;
        margin-bottom: 10px;
    }

    .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;
    }

    .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;
        top: -8vh !important;
    }
}

/* Info Section */
.info-section {
    border-top: 1px solid #e9e6e6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .info-section .info-box {
        text-align: center;
        flex: 1 1 100px;
        max-width: 120px;
    }

        .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;
        display: flex;
        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;
    }
}

/* D-Flex */
.d-md-flex {
    display: flex !important;
}

.d-md-none {
    display: none !important;
}

@media (max-width: 768px) {
    .d-md-none {
        display: block !important;
    }

    .d-md-flex {
        display: none !important;
    }
}

/* Color Circle */
.color-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: border 0.2s ease;
}

    .color-circle[data-selected="true"] {
        border-color: var(--web-text-inverse, white);
        box-shadow: 0 0 0 2px rgba(134, 27, 45, 0.3);
    }

.color-circle-wrapper {
    width: 80px;
}

/* Guide Modal */
.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;
}

/* #endregion */
