﻿/* ============================================
   NEW INDEX CSS - FULLY CONVERTED TO USE THEME VARIABLES
   ALL STYLES PRESERVED - NOTHING REMOVED
   ============================================ */

.image-grid {
    max-width: max-content;
    margin: auto;
    margin-bottom: 10% !important;
}

.btn-book {
    font-size: 10px !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 4px 12px;
}

    .btn-book:hover {
        background: var(--primary) !important;
        color: var(--web-text-inverse, white) !important;
        box-shadow: var(--shadow-soft);
    }

.customization-modal {
    width: 35vw;
}

#rightDetailsPanel a[href^="tel"] {
    position: relative;
    z-index: 1500;
}

@media (max-width:1700px) and (min-width:1200px) {
    .col-xl-9 {
        width: 66.66%;
    }

    .col-xl-3 {
        width: 33%;
    }
}

.tab-btn:hover {
    color: var(--gradient-accent) !important;
    background: white;
}

/* ===== SINGLE IMAGE ZOOM ===== */
.single-image-hover-zoom {
    position: relative;
    cursor: crosshair;
}

.single-zoom-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-zoom-preview {
    position: fixed;
    right: 0 !important;
    margin-top: 20%;
    top: auto;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: 300%;
    border: 1px solid var(--index-zoom-preview-border, rgba(255, 255, 255, 0.1));
    border-radius: 8px;
    box-shadow: 0 20px 60px var(--index-zoom-preview-shadow, rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(10px);
    background-color: var(--index-zoom-preview-bg, rgba(255, 255, 255, 0.9));
    z-index: 1000;
    display: none;
    overflow: hidden;
    pointer-events: none;
}

.single-image-hover-zoom:hover .single-zoom-preview {
    display: block;
}

.single-zoom-source {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.single-zoom-lens {
    position: absolute;
    border: 2px solid var(--index-zoom-lens-border, rgba(255, 255, 255, 0.8));
    background: var(--index-zoom-lens-bg, rgba(255, 255, 255, 0.2));
    pointer-events: none;
    display: none;
    z-index: 100;
}

.single-image-hover-zoom:hover .single-zoom-lens {
    display: block;
}

/* ===== DOUBLE IMAGE ZOOM ===== */
.double-image-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.double-image-zoomed {
    cursor: move;
    transform: scale(2.5);
    transform-origin: center center;
    position: relative;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.zoom-magnifier {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--index-zoom-magnifier-border, rgba(255, 255, 255, 0.8));
    border-radius: 50%;
    background: var(--index-zoom-magnifier-bg, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 20px var(--index-zoom-magnifier-shadow, rgba(0, 0, 0, 0.3));
    z-index: 100;
}

    .zoom-magnifier img {
        position: absolute;
        width: 375px;
        height: 375px;
        object-fit: contain;
        transform-origin: 0 0;
    }

.pan-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--index-pan-indicator-bg, rgba(0, 0, 0, 0.7));
    color: var(--index-pan-indicator-color, white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 101;
    display: none;
    pointer-events: none;
}

.double-image-zoomed + .pan-indicator {
    display: block;
}

/* ===== COMMON STYLES ===== */


.cursor-zoom {
    cursor: zoom-in;
}

.cursor-zoom-out {
    cursor: zoom-out;
}

.shadow-soft {
    box-shadow: 0 4px 20px var(--index-shadow-soft, rgba(0, 0, 0, 0.08));
}

.rounded-3 {
    border-radius: 12px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .single-zoom-preview {
        display: none !important;
    }

    .single-image-hover-zoom:hover .single-zoom-lens {
        display: none;
    }

    .double-image-zoom-container {
        cursor: pointer;
    }
}

/* ===== IMAGE SCALING FIXES ===== */
.image-grid .col-12 img,
.image-grid .col-6 img {
    width: 100% !important;
    height: auto !important;
    max-height: 100vh !important;
    object-fit: contain !important;
}

.double-image-zoom-container.zoomed {
    overflow: visible;
}

.image-grid img {
    max-width: 100% !important;
    max-height: 100vh !important;
    width: auto !important;
/*    height: 100vh !important;*/
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.image-grid .col-12,
.image-grid .col-6 {
    display: flex !important;
    justify-content: center !important;
    max-height: 100vh !important;
    align-items: center !important;
    overflow: hidden !important;
}

.rightbg {
    background: white !important;
}

.marginend {
    margin-bottom: 100px !important;
}

/* ===== OPTION GROUP ===== */
.option-group {
    display: flex;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--cream);
}

.custom-option {
    padding: 3px 16px;
    font-size: 0.9rem;
    color: var(--dark);
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

    .custom-option:last-child {
        border-right: none;
    }

    .custom-option:hover {
        background: var(--index-option-hover-bg, rgba(0, 0, 0, 0.04));
    }

    .custom-option[data-enabled="False"] {
        opacity: var(--index-option-disabled-opacity, 0.5);
        cursor: default;
    }

/* ===== CUSTOMIZE BUTTON ===== */
.customize-btn {
    border-radius: 0px !important;
    background: var(--gradient-accent);
    color: white;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .customize-btn:hover {
        box-shadow: var(--shadow-deep);
        color: white;
    }

/* ===== TRUST SLIDER ===== */
.trust-slider-wrapper {
    background: var(--index-trust-wrapper-bg, rgba(255,255,255,0.15));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    max-width: 1400px;
    overflow: hidden;
}

.trust-item {
    position: relative;
    text-align: center;
    padding: 15px 5px;
    outline: none !important;
}

    .trust-item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 25px;
        bottom: 55px;
        width: 1px;
        background: var(--index-trust-item-border, rgba(93,17,67,0.2));
    }

.circle-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--index-circle-icon-bg, linear-gradient(135deg, #f8f3f6, #f0e6f0));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.9rem;
    color: var(--primary);
    box-shadow: var(--index-circle-icon-shadow, inset 0 4px 12px rgba(0,0,0,0.1));
}

.circle-img {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.9rem;
}

.trust-item .title {
    font-size: 0.70rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

.trust-slider .slick-dots li button:before {
    font-size: 11px;
    color: var(--index-trust-dot-color, #d4a8d4);
    opacity: 0.6;
}

.trust-slider .slick-dots li.slick-active button:before {
    color: var(--index-trust-dot-active, var(--primary));
    opacity: 1;
}

.trust-slider .slick-prev,
.trust-slider .slick-next {
    display: none !important;
}

/* Trust Slider Responsive Border Fix */
@media (max-width: 992px) {
  

    .trust-item:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
   
    .trust-item:nth-child(2n) {
        border-right: none;
    }
}

/* ===== PINCODE SECTION ===== */
.pincode-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--index-pincode-icon-color, var(--soft));
    pointer-events: none;
}

.pincode-input {
    padding-left: 42px !important;
}

.delivery-plan-section-premium {
    background: var(--card-glass);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
}

.premium-title {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .5px;
}

.pincode-input {
    padding-right: 45px !important;
    border: 1px solid var(--border);
    background: var(--cream);
    font-size: 12px !important;
    color: var(--dark);
    font-weight: 500;
    transition: .2s;
}

    .pincode-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(93, 17, 67, 0.15);
    }

.pincode-locate-btn {
    position: absolute;
    right: 9px;
    top: 48%;
    transform: translateY(-50%);
    border: none;
    color: var(--index-pincode-locate-btn-color, white);
    width: 63px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
    font-size: 12px !important;
}

    .pincode-locate-btn:hover {
        transform: translateY(-50%) scale(var(--index-pincode-locate-btn-hover-scale, 1.05));
        box-shadow: var(--shadow-soft);
    }

.premium-alert {
    background: var(--index-premium-alert-bg, var(--gradient-accent));
    border-left: 4px solid var(--index-premium-alert-border, var(--soft));
    border-radius: 8px;
    color: var(--index-premium-alert-color, white);
}

.premium-muted {
    color: var(--index-premium-muted-color, var(--gray));
}

.premium-primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    transition: .2s;
    border-radius: 20px;
}

    .premium-primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-deep);
    }

.premium-secondary-btn {
    background: var(--soft);
    color: white;
    border: none;
    font-size: 12px;
    transition: .2s;
    padding: 8px !important;
    border-radius: 20px;
}

    .premium-secondary-btn:hover {
        transform: translateY(-2px);
        color: white;
        box-shadow: var(--shadow-soft);
        background-color: var(--primary-dark);
    }

/* ===== GEMSTONE GRID ===== */
.gemstone-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}

.gemstone-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gemstone-name {
    font-size: 0.85rem;
    color: var(--gray);
}

.gemstone-weight {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.gemstone-actions {
    grid-column: span 3;
    text-align: end;
}

.see-more-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.65rem;
    cursor: pointer;
}

.description-items {
    display: none;
    grid-column: span 3;
}

/* ===== PROFESSIONAL TABS ===== */
.professional-tabs .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1rem 0;
    border: none;
    background: transparent;
    position: relative;
    transition: color 0.3s ease;
}

    .professional-tabs .nav-link:hover {
        color: var(--soft);
    }

    .professional-tabs .nav-link.active {
        color: var(--primary);
        font-weight: 700;
    }

.tab-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--index-tab-underline-bg, var(--gradient-accent));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.tab-section-title {
    font-size: 1rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 12px;
}

    .tab-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--index-tab-underline-bg, var(--gradient-accent));
        border-radius: 2px;
    }

.spec-table .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--index-spec-border-color, var(--border));
    font-size: 0.8rem;
}

.spec-label {
    color: var(--index-spec-label-color, var(--gray));
}

.spec-value {
    font-weight: 600;
    color: var(--index-spec-value-color, var(--primary));
}

.gem-type {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--index-gem-type-color, var(--soft));
    text-transform: uppercase;
}

.gem-detail {
    font-size: 1.1rem;
    margin: 6px 0;
}

.gem-weight {
    font-size: 0.95rem;
}

.price-card {
    background: var(--card-glass);
    border-color: var(--border) !important;
}

.price-list .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.8rem;
    border-bottom: 1px dashed var(--index-price-list-border, #eee);
}

    .price-list .price-row:last-child {
        border-bottom: none;
    }

.price-list .total-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--index-total-row-border, var(--soft));
    font-size: 0.8rem;
}

.text-gold {
    color: var(--soft) !important;
}

@media (max-width: 768px) {
    .professional-tabs {
        gap: 2rem;
    }

        .professional-tabs .nav-link {
            font-size: 0.6rem;
        }

    .tab-underline {
        height: 2.5px;
    }
}

/* ===== GEMSTONE GRID STYLES ===== */
.gemstone-grid {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.gemstone-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    font-size: 0.8rem;
}

    .gemstone-row:last-child {
        border-bottom: none;
    }

    .gemstone-row:hover {
        background: var(--index-gemstone-row-hover-bg, rgba(209,144,185,0.05));
    }

.gemstone-label {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.gemstone-icon {
    font-size: 1.1em;
    opacity: 0.8;
}

.gemstone-purity {
    color: var(--index-gemstone-purity-color, var(--gray));
}

.gemstone-weight {
    color: var(--index-gemstone-weight-color, var(--primary));
}

.gemstone-row:first-child .gemstone-weight {
    color: var(--index-gemstone-gold-weight-color, var(--soft));
    font-weight: 700;
}

.text-gold {
    color: var(--soft) !important;
}

@media (max-width: 768px) {
    .gemstone-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .gemstone-purity,
    .gemstone-weight {
        text-align: center !important;
    }
}

/* ===== SCROLLBARS ===== */
.similar-scrollbar {
    height: 7px !important;
    background: var(--index-similar-scrollbar-bg, #eee);
    margin-top: 10px;
    border-radius: 10px;
}

    .similar-scrollbar .swiper-scrollbar-drag {
        background: var(--index-similar-scrollbar-drag, var(--primary));
        border-radius: 10px;
    }

.recent-scrollbar {
    height: 7px !important;
    background: var(--index-recent-scrollbar-bg, #eee);
    margin-top: 10px;
    border-radius: 10px;
}

    .recent-scrollbar .swiper-scrollbar-drag {
        background: var(--index-recent-scrollbar-drag, var(--primary));
        border-radius: 10px;
    }

.mb-5rem {
    margin-bottom: 5rem !important;
}

/* ===== SLICK ARROWS ===== */
.slick-arrow-custom {
    display: none;
}

    .slick-arrow-custom:hover {
        background: var(--index-slick-arrow-hover-bg, var(--gradient-primary));
        transform: translateY(-50%) scale(1.1);
    }

.slick-prev-custom,
.slick-next-custom,
.slick-dots,
.slick-prev,
.slick-next {
    display: none !important;
}

@media (max-width: 768px) {
    .slick-arrow-custom,
    .slick-prev-custom,
    .slick-next-custom {
        display: none;
    }
}

/* ===== MOBILE IMAGE STYLES ===== */
.mobile-product-image {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.mobile-carousel {
    overflow: hidden !important;
}

.mobile-rating-overlay {
    backdrop-filter: var(--index-mobile-rating-overlay, blur(10px)) !important;
    opacity: 0.95 !important;
}

.mobile-carousel-control {
    filter: var(--index-mobile-carousel-control-filter, invert(1));
    width: 40px !important;
    opacity: 0.7 !important;
}

.carousel-item {
    position: relative !important;
}

.mobile-trust-wrapper {
    background: var(--index-mobile-trust-wrapper-bg, rgba(255,255,255,0.15));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
}

.trust-slider-mobile {
    display: block !important;
}

    .trust-slider-mobile .slick-track {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

.trust-item-mobile {
    position: relative;
    text-align: center;
    padding: 15px 8px;
    min-width: 85px !important;
    flex: 0 0 auto !important;
    height: auto !important;
}

.circle-icon-mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--index-mobile-circle-icon-bg, linear-gradient(135deg, #f8f3f6, #f0e6f0));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: var(--index-mobile-circle-icon-shadow, inset 0 4px 12px rgba(0,0,0,0.1));
}

.title-mobile {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 767.98px) {
    .slick-slide {
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        flex-direction: column;
    }

    .trust-item-mobile {
        min-width: 85px !important;
        padding: 12px 5px !important;
    }

    .circle-icon-mobile {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .title-mobile {
        font-size: 0.65rem !important;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0px !important;
    }
}

/* ===== MOBILE PINCODE ===== */
.pincode-icon-mobile {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--index-mobile-pincode-icon-color, var(--soft));
    pointer-events: none;
    z-index: 1;
}

.pincode-input-mobile {
    padding-left: 40px !important;
    font-size: 0.95rem;
}

    .pincode-input-mobile:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(93, 17, 67, 0.1);
    }

.premium-alert-mobile {
    background: var(--index-mobile-premium-alert-bg, var(--gradient-accent)) !important;
    border-left: 3px solid var(--soft);
    border-radius: 8px;
    color: white;
    padding: 12px;
    font-size: 0.9rem;
}

.premium-muted {
    color: var(--gray) !important;
    font-size: 0.85rem;
}

.premium-primary-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    transition: .2s !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

    .premium-primary-btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-soft);
    }

.mobile-delivery-section {
    border-left: 3px solid var(--index-mobile-delivery-section-border, var(--primary));
    border-radius: 12px;
}

.mobile-delivery-title {
    font-size: 1rem !important;
    color: var(--primary-dark);
}

/* ===== MOBILE SWIPER NAVIGATION ===== */
.swiper-button-next-mobile,
.swiper-button-prev-mobile {
    color: var(--index-mobile-swiper-button-color, var(--primary)) !important;
    background: var(--index-mobile-swiper-button-bg, rgba(255,255,255,0.9)) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.swiper-button-next-mobile {
    right: 0 !important;
}

.swiper-button-prev-mobile {
    left: 0 !important;
}

/* ===== MOBILE PRODUCT ITEM ===== */
.product-item-mobile {
    background: var(--index-mobile-product-item-bg, white);
    border-radius: 0px;
    padding: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-item-mobile:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px var(--index-mobile-product-item-hover-shadow, rgba(0, 0, 0, 0.1));
    }

.product-image-wrapper-mobile {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.btn-cart-icon-mobile:hover,
.btn-video-icon-mobile:hover {
    background: var(--index-mobile-btn-icon-hover-bg, var(--primary));
    transform: scale(1.1);
}

    .btn-cart-icon-mobile:hover img,
    .btn-video-icon-mobile:hover img {
        filter: brightness(0) invert(1);
    }

.rating-badge-mobile {
    background: var(--index-mobile-rating-badge-bg, rgba(255, 255, 255, 0.95));
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-title-mobile {
    color: var(--index-mobile-product-title-color, var(--dark));
    font-size: 0.95rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.price-mobile {
    color: var(--index-mobile-price-color, var(--primary));
    font-size: 0.95rem;
}

/* ===== MOBILE PAGINATION ===== */
.recent-pagination-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--index-mobile-recent-pagination-bullet, #ddd);
    opacity: 1;
}

.recent-pagination-mobile .swiper-pagination-bullet-active {
    background: var(--index-mobile-recent-pagination-active, var(--primary));
    width: 24px;
    border-radius: 4px;
}

/* ===== FIXED BOTTOM BAR ===== */
.premium-fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--index-fixed-bar-bg, var(--card-glass));
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--index-fixed-bar-border, var(--border));
    box-shadow: var(--index-fixed-bar-shadow, var(--shadow-deep));
    padding: 12px 0;
}

.add-to-cart-fixed:hover {
    color: white !important;
    background: black !important;
    border: 1px solid var(--index-add-to-cart-hover-border, var(--primary)) !important;
    box-shadow: var(--index-add-to-cart-hover-shadow, var(--shadow-deep)) !important;
}

.whatsapp-video-btn {
    background: var(--index-whatsapp-video-btn-bg, var(--gradient-accent)) !important;
    border: none !important;
    min-width: 56px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 491px) {
    body {
        padding-top: 96px !important;
    }

    .image-scroll-section {
        height: max-content;
    }

    .pname {
        color: var(--index-pname-color, var(--primary-dark));
    }
}

.topprice:hover {
    color: var(--index-topprice-hover-color, var(--primary-dark)) !important;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--index-loading-spinner-border, #f3f3f3);
    border-top: 3px solid var(--index-loading-spinner-top, var(--web-primary));
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== DIAMOND GUIDE ===== */
.diamond-underline {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--index-diamond-underline, #d4af37);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--index-diamond-text, #2c3e50);
}

.milestone-marker {
    width: 12px;
    height: 12px;
    background: var(--index-diamond-marker, #b48b5a);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.milestone:hover .milestone-marker {
    transform: scale(1.5);
    background: var(--index-diamond-marker-hover, #9c27b0);
}

.quality-level.best {
    background: var(--index-quality-best-bg, #e8f5e9);
    color: var(--index-quality-best-color, #2e7d32);
}

.quality-level.good {
    background: var(--index-quality-good-bg, #fff3e0);
    color: var(--index-quality-good-color, #ef6c00);
}

.quality-level.fair {
    background: var(--index-quality-fair-bg, #fce4ec);
    color: var(--index-quality-fair-color, #c2185b);
}

/* ===== SIZE GUIDE ===== */
.size-guide {
    color: var(--index-size-guide-color, var(--web-primary));
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
}

    .size-guide:hover {
        border-bottom-color: var(--index-size-guide-hover-border, var(--web-primary-soft));
    }

.size-circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--index-size-circle-border, rgb(200, 197, 200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var( --web-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--index-size-circle-bg, rgb(246, 239, 246));
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

    .size-circle.selected {
        background: var(--index-size-circle-selected-gradient, linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%));
        color: white;
        border-color: var(--web-primary);
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(144, 33, 103, 0.3);
    }

.diameter-label {
    font-size: 11px;
    color: var(--index-diameter-color, #6F6F70);
    font-weight: 500;
    text-align: center;
}

/* ===== CALIBRATION ===== */
.card-overlay-container {
    position: relative;
    height: 220px;
    background: var(--index-calibration-bg, linear-gradient(135deg, #f8f7f9 0%, #f0eef2 100%));
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--index-calibration-border, #EEE2DA);
}

.card-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 130px;
    background: var(--index-placeholder-bg, linear-gradient(135deg, #f0eef2 0%, #e8e6ec 100%));
    border-radius: 10px;
    border: 3px dashed var(--index-placeholder-border, var(--web-primary-soft));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--web-primary);
    transition: all 0.3s ease;
}

.card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 130px;
    background: var(--index-card-bg, linear-gradient(135deg, var( --web-secondary) 0%, #2a4a5e 100%));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(31, 55, 71, 0.2);
    display: none;
    border: 2px solid #88A1AE;
}

.card-chip {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 45px;
    height: 35px;
    background: var(--index-card-chip, linear-gradient(135deg, var(--web-primary-soft) 0%, #96709D 100%));
    border-radius: 5px;
}

.measurement-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--index-measurement-line, var(--web-primary));
    border-radius: 10px;
    box-sizing: border-box;
    opacity: 0.9;
}

.handle {
    width: 40px;
    height: 40px;
    background: var(--index-handle-bg, linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%));
    border-radius: 50%;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(144, 33, 103, 0.3);
    user-select: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.measurement-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--index-measurement-label-bg, linear-gradient(135deg, var( --web-secondary) 0%, #2a4a5e 100%));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(31, 55, 71, 0.2);
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

    .measurement-label.calibrated {
        background: var(--index-measurement-calibrated, linear-gradient(135deg, #2e7d32 0%, #4caf50 100%));
    }

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--index-modal-overlay, rgba(12, 12, 12, 0.7));
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal {
    background: var(--index-modal-bg, white);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: max-content;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(31, 55, 71, 0.2);
    border: 1px solid var(--index-modal-border, #EEE2DA);
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--index-modal-border, #EEE2DA);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--index-modal-header-bg, linear-gradient(135deg, #fafafa 0%, white 100%));
    border-radius: 16px 16px 0 0;
}

.modal-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--index-modal-title-color, var( --web-secondary));
}

.close-btn {
    background: var(--index-modal-close-bg, #EEE2DA);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6F6F70;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .close-btn:hover {
        background: var(--index-modal-close-hover, var(--web-primary-soft));
        color: white;
        transform: rotate(90deg);
    }

/* ===== STEP ICON ===== */
.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    background: var(--index-step-icon-gradient, linear-gradient(135deg, var(--web-primary-soft) 0%, #96709D 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--index-step-title-color, var( --web-secondary));
    letter-spacing: -0.5px;
}

.step-description {
    color: var(--index-step-description-color, #6F6F70);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 15px;
}

/* ===== RADIO GROUP ===== */
.radio-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid var(--index-radio-border, #EEE2DA);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

    .radio-item:hover {
        border-color: var(--web-primary-soft);
        background: var(--index-radio-hover-bg, linear-gradient(135deg, #fef8fc 0%, #fcf9fd 100%));
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(209, 144, 185, 0.1);
    }

    .radio-item.selected {
        border-color: var(--index-radio-selected-border, var(--web-primary));
        background: linear-gradient(135deg, #fef8fc 0%, #fcf9fd 100%);
        box-shadow: 0 8px 25px rgba(144, 33, 103, 0.1);
    }

.radio-input {
    margin-right: 16px;
    width: 20px;
    height: 20px;
    accent-color: var(--index-radio-selected-border, var(--web-primary));
}

.radio-label {
    font-weight: 600;
    color: var( --web-secondary);
    font-size: 15px;
}

/* ===== TRUST CARD GRADIENTS ===== */
.card-1 {
    background: var(--index-card-1, linear-gradient(135deg, #f2e0eb, #e8d0e0));
}

.card-2 {
    background: var(--index-card-2, linear-gradient(135deg, #e8d9e9, #d9c8e0));
}

.card-3 {
    background: var(--index-card-3, linear-gradient(135deg, #fdf8f2, #f5ede6));
}

.card-4 {
    background: var(--index-card-4, linear-gradient(135deg, #d0e6e8, #c8e0e6));
}

.card-5 {
    background: var(--index-card-5, linear-gradient(135deg, #e8d4ed, #d9c8e5));
}

.card-6 {
    background: var(--index-card-6, linear-gradient(135deg, #f0f0f0, #e0e4e8));
}

.card-7 {
    background: var(--index-card-7, linear-gradient(135deg, #d6e4ed, #c8d8e8));
}

.card-8 {
    background: var(--index-card-8, linear-gradient(135deg, #f0e0e8, #e8d5e2));
}

/* ===== TRUST SLIDER CONTAINER ===== */
.trust-slider-container {
    width: 100%;
    overflow: hidden;
    background: white;
    margin: 0;
    position: relative;
}

.trust-slider-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
    animation-play-state: running;
}

    .trust-slider-track:hover {
        animation-play-state: paused;
    }

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trust Card Base Styles */
.trust-card {
    min-width: 280px;
    max-width: 280px;
    height: 170px;
    border-radius: 24px;
    padding: 32px 28px;
    color: var(--index-trust-card-color, #333);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--index-trust-card-border, rgba(255, 255, 255, 0.3));
    margin: 0 12px;
    box-sizing: border-box;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
}

    .trust-card i {
        font-size: 40px;
        margin-bottom: 12px;
        opacity: 0.9;
    }

    .trust-card img {
        margin-bottom: 12px;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .trust-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: var(--index-trust-card-h3-color, #2d1a3a);
    }

    .trust-card p {
        font-size: 14px;
        margin: 0;
        line-height: 1.5;
        opacity: 0.85;
    }

    /* Trust Card Hover Effect */
    .trust-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .trust-card:hover::after {
        opacity: 1;
    }

/* Desktop Specific Trust Cards */
@media (min-width: 992px) {
    .trust-card {
        min-width: 415px;
        max-width: 415px;
        height: 170px;
        margin: 0 5px;
        padding: 32px 28px;
    }

        .trust-card i {
            font-size: 56px;
            margin-bottom: 16px;
        }

        .trust-card h3 {
            font-size: 20px;
        }

        .trust-card p {
            font-size: 15px;
        }

    @keyframes scrollLoop {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/* Tablet Trust Cards */
@media (min-width: 768px) and (max-width: 991px) {
    .trust-card {
        min-width: 320px;
        max-width: 320px;
        margin: 0 5px;
    }
}

/* Mobile Trust Cards */
@media (max-width: 767px) {
    .trust-slider-track {
        display: none;
    }

    .trust-mobile-slider {
        display: block;
    }

    .trust-card {
        min-width: 280px;
        max-width: 280px;
        margin: 0 5px;
    }

    .slick-dots {
        bottom: -30px !important;
    }

        .slick-dots li button:before {
            font-size: 10px;
        }
}

.trust-mobile-slider {
    display: none;
}

.trust-slidermain {
    display: flex;
    gap: 24px !important;
}

.trust-card {
    min-width: 415px;
    max-width: 415px;
    height: 160px;
    border-radius: 20px;
    padding: 24px 20px;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.4s ease;
}

    .trust-card:hover {
        transform: translateY(-10px);
    }

    .trust-card i {
        font-size: 52px;
        margin-bottom: 12px;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    }

    .trust-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .trust-card p {
        font-size: 14px;
        margin: 0;
        opacity: 0.95;
    }

.trust-slidermain .slick-slide {
    margin: 0 12px;
}

.trust-slider-container:hover .trust-slider {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .trust-slidermain {
        animation: none;
    }

    .trust-slider-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .trust-slider-container::-webkit-scrollbar {
            display: none;
        }

    .trust-card {
        min-width: 260px;
    }
}

/* ===== SCROLLBAR HOVER STYLES ===== */
.image-grid-section::-webkit-scrollbar,
#carouselMobile::-webkit-scrollbar {
    display: none;
}

.image-grid-section:hover::-webkit-scrollbar,
#carouselMobile:hover::-webkit-scrollbar {
    display: block;
    width: 6px;
}

.image-grid-section:hover::-webkit-scrollbar-thumb,
#carouselMobile:hover::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.col-lg-3.overflow-auto {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: hidden;
}

    .col-lg-3.overflow-auto:hover {
        overflow-y: auto;
    }

        .col-lg-3.overflow-auto:hover::-webkit-scrollbar {
            width: 6px;
        }

        .col-lg-3.overflow-auto:hover::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

/* ===== BLUR BACKGROUND ===== */
.blur-background {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

    .blur-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--index-blur-overlay, rgba(0, 0, 0, 0.4));
        pointer-events: none;
    }

/* ===== TAB BUTTON ACTIVE ===== */
.tab-button.active {
    background: var(--index-tab-button-active-bg, linear-gradient(to left, #9f2862, #9f2862, #9f2862));
    color: var(--index-tab-button-active-color, white) !important;
    padding: 8px !important;
}

/* ===== FULL HEIGHT PAGE ===== */
html, body, .page-content {
    height: 100%;
    overflow: hidden;
}

.product-detail-modern .stickyrow {
    height: 100vh;
    margin: 0px;
    overflow: visible;
}

.image-scroll-section {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.details-scroll-container {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

    .image-scroll-section::-webkit-scrollbar,
    .details-scroll-container::-webkit-scrollbar {
        display: none !important;
    }

.image-grid img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer-margin {
    margin-top: 10rem !important;
}

.tab-button {
    min-height: 25px;
    padding-top: 7px;
    padding-bottom: 0px;
    border-radius: 16px !important;
    font-size: 14px;
    color: var(--index-tab-button-color, var( --web-secondary));
}

.tabs-slider .tab-btn {
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: max-content;
    margin: 0 4px;
    transition: all 0.3s ease;
}

    .tabs-slider .tab-btn.active {
        background: var(--gradient-accent) !important;
        color: white !important;
        border: none !important;
    }

.tabs-slider .slick-arrow,
.tabs-slider .slick-dots {
    display: none !important;
}

.section {
    min-height: max-content;
    background: var(--index-section-bg, #f9f9f9);
    border-radius: 12px;
}

/* ===== OVERLAY ICONS ===== */
.product-card .overlay-icons {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.overlay-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.product-card:hover .overlay-icons {
    opacity: 1;
    transform: none;
}

.product-item:hover .normal-image {
    opacity: 1 !important;
    z-index: -1;
}

/* ===== FAB BUTTON ===== */
.fab-btn {
    position: fixed;
    right: 2% !important;
}

/* ===== CUSTOMIZATION MODAL LOADING ===== */
.customization-modal.loading .customization-body {
    position: relative;
    min-height: 200px;
    opacity: 0.7;
    pointer-events: none;
}

    .customization-modal.loading .customization-body::after {
        content: 'Updating product...';
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 14px;
        color: var(--primary);
        font-weight: 600;
        z-index: 10;
    }

    .customization-modal.loading .customization-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--index-loading-overlay-bg, rgba(255, 255, 255, 0.8));
        z-index: 5;
        border-radius: 8px;
    }

.apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#customizationModal {
    right: -100%;
    transition: none;
}

    #customizationModal.open {
        right: 0;
    }

/* ===== TRUST MODAL ===== */
.trustModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.trustModalBox {
    width: 380px;
    background: #ffffff;
    padding: 30px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.25);
    animation: modalFade 0.25s ease-out;
}

.trustModalClose {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 26px;
    cursor: pointer;
    color: #777;
    transition: 0.2s;
}

    .trustModalClose:hover {
        color: var(--primary, #b88a54);
    }

.trustModalIconWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    background: rgba(184, 138, 84, 0.15);
    margin: 0 auto 18px auto;
}

#trustModalIcon {
    font-size: 52px;
    color: var(--primary, #b88a54);
}

.trustModalTitle {
    font-family: var(--theme-font-primary);;
    color: var(--primary, #b88a54);
    font-size: 16px;
    margin-bottom: 12px;
}

.trustModalDesc {
    color: #444;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 5px;
    text-align: justify;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== THEME SOFT BG ===== */
.theme-soft-bg {
    background-color: var(--cream) !important;
    padding: 6px 20px 7px 20px;
}

/* ===== PRODUCT THUMB ===== */
.product-thumb {
    box-shadow: var(--shadow-soft);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 576px) {
    .product-info-text {
        font-size: 14px;
    }

    .product-title {
        font-size: 14px !important;
    }

    .product-price {
        font-size: 15px !important;
    }

    .btn {
        font-size: 13px;
    }

    .whatsapp-video-btn span {
        display: none;
    }

    .whatsapp-video-btn i {
        margin-right: 0 !important;
    }
}

/* ===== BOTTOM SHEET MODAL ===== */
.bottom-sheet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.bottom-sheet-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--index-bottom-sheet-backdrop, rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(3px);
}

.bottom-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: var(--index-bottom-sheet-content-bg, white);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px var(--index-bottom-sheet-shadow, rgba(0, 0, 0, 0.2));
    animation: slideUp 0.4s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--index-bottom-sheet-header-border, rgba(0, 0, 0, 0.1));
    background: white;
    flex-shrink: 0;
}

.bottom-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    width: 100%;
}

    .bottom-sheet-body::-webkit-scrollbar {
        display: none;
    }

.bottom-sheet-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .bottom-sheet-body .sliderParent {
        padding: 20px 0;
        height: 100%;
    }

    .bottom-sheet-body .globalSlider {
        padding: 0 10px;
    }

    .bottom-sheet-body .similar-slide-item {
        padding: 0 10px;
        height: 100%;
    }

    .bottom-sheet-body .product-item {
        background: white;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        height: 100%;
        border: 1px solid var(--index-bottom-sheet-product-item-border, rgba(0, 0, 0, 0.05));
    }

        .bottom-sheet-body .product-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

    .bottom-sheet-body .slick-prev,
    .bottom-sheet-body .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: var(--index-bottom-sheet-slick-arrow-bg, white);
        border-radius: 50%;
        box-shadow: 0 2px 8px var(--index-bottom-sheet-slick-arrow-shadow, rgba(0, 0, 0, 0.2));
        border: 1px solid var(--index-bottom-sheet-slick-arrow-border, rgba(0, 0, 0, 0.1));
        z-index: 11;
        pointer-events: all;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0;
        color: transparent;
    }

    .bottom-sheet-body .slick-prev {
        left: 0;
    }

    .bottom-sheet-body .slick-next {
        right: 0;
    }

        .bottom-sheet-body .slick-prev i,
        .bottom-sheet-body .slick-next i {
            font-size: 18px;
            color: var(--primary);
        }

        .bottom-sheet-body .slick-prev:hover,
        .bottom-sheet-body .slick-next:hover {
            background: var(--primary);
        }

            .bottom-sheet-body .slick-prev:hover i,
            .bottom-sheet-body .slick-next:hover i {
                color: white;
            }

/* Bottom Sheet Responsive */
@media (max-width: 768px) {
    .bottom-sheet-content {
        height: 50%;
    }

    .bottom-sheet-body .slick-prev {
        left: 5px;
    }

    .bottom-sheet-body .slick-next {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .bottom-sheet-content {
        height: 55%;
    }

    .bottom-sheet-body .sliderParent {
        padding: 15px 0;
    }

    .bottom-sheet-body .globalSlider {
        padding: 0 5px;
    }

    .bottom-sheet-body .similar-slide-item {
        padding: 0 5px;
    }

    .product-title {
        font-size: 0.85rem !important;
    }

    .price {
        font-size: 0.85rem !important;
    }
}

.bottom-sheet-handle {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    cursor: grab;
}

.handle-bar {
    width: 40px;
    height: 4px;
    background: var(--index-bottom-sheet-handle-bar-bg, #ddd);
    border-radius: 2px;
}

.bottom-sheet-header .btn-close {
    padding: 8px;
    margin: -8px;
    opacity: 0.7;
    font-size: 0.9rem;
}

    .bottom-sheet-header .btn-close:hover {
        opacity: 1;
    }

.product-title {
    max-width: max-content !important;
}

/* ===== CONTENT TWO COLS ===== */
.content-two-cols {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 30px;
    align-items: start;
}

.left-col {
    text-align: center;
}

.ring-guide-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .content-two-cols {
        grid-template-columns: 1fr;
    }

    .left-col {
        margin-bottom: 20px;
    }
}

/* ===== FAKE DROPDOWN ===== */
.fake-dropdown {
    background: var(--index-fake-dropdown-bg, #f8f9fa);
    cursor: pointer;
    padding: 10px 12px;
    border: 1px solid var(--index-fake-dropdown-border, #ddd);
    border-radius: 8px;
    font-size: 14px;
}

/* ===== NAV LINK ACTIVE ===== */
.nav-link.toptab.active {
    background-color: var(--index-nav-active-bg, var(--web-primary-soft)) !important;
    color: var(--index-nav-active-color, var(--web-primary)) !important;
}

/* ===== MOBILE RECENTLY VIEWED ===== */
.recent-product-section-mobile {
    backdrop-filter: blur(10px);
    border-radius: 0px;
}

.similarproduct-mobile {
    color: var(--primary, var(--web-primary));
    font-family: var(--theme-font-primary);;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===== MILESTONE TRACK ===== */
.milestone-track {
    position: relative;
    height: 160px;
    margin: 1rem 0 4rem;
    width: 100%;
}

.milestone-line {
    position: absolute;
    top: 90px;
    left: 2%;
    right: 2%;
    width: 96%;
    height: 2px;
    background: linear-gradient(to right, #e0e0e0, #e0e0e0);
    z-index: 1;
}

.milestones-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 2%;
    height: 100%;
}

.milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.milestone-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.milestone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.milestone-label {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

/* ===== RESPONSIVE MILESTONE ===== */
@media (max-width: 768px) {
    .milestone-track {
        height: 140px;
        margin-bottom: 3rem;
    }

    .milestones-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        height: auto;
    }

    .milestone {
        width: 70px;
        margin-bottom: 2rem;
    }

    .milestone-line {
        top: 80px;
    }
}
/* ===== CUSTOMIZATION SECTION - MODAL STYLES ===== */

.customization-modal-content {
    background: white;
    border: 1px solid var(--border);
    max-height: 100vh;
    box-shadow: 0 20px 40px rgba(93, 17, 67, 0.12);
    backdrop-filter: blur(16px);
    font-family: var(--theme-font-primary);
    overflow: hidden;
}

/* Header */
.customization-modal .modal-header {
    background: linear-gradient(135deg, #FDFBFA 0%, #EEE2DA 100%);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.8rem;
}

.customization-modal h4 {
    color: var(--primary-dark);
    font-family: var(--theme-font-primary);;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.customization-modal .modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Metal Card - Premium & Light */
.metal-card {
    cursor: pointer;
    background: #FFFFFF;
    border: 1.5px solid #e2d8df;
    border-radius: 18px;
    padding: 0.7rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 144, 185, 0.08);
}

    .metal-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(209,144,185,0.05) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .metal-card:hover {
        box-shadow: 0 12px 28px rgba(93, 17, 67, 0.14);
        border-color: var(--primary-light);
    }

        .metal-card:hover::before {
            opacity: 1;
        }

    .metal-card.active-metal {
        background: linear-gradient(135deg, var(--web-primary) 0%, var(--web-primary) 100%);
        color: white !important;
        border-color: var(--primary);
        box-shadow: none;
    }

        .metal-card.active-metal small,
        .metal-card.active-metal .fw-bold {
            color: rgba(255,255,255,0.9) !important;
        }

    .metal-card .fw-bold {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

    .metal-card small {
        font-size: 0.85rem;
        color: var(--text-muted);
        opacity: 0.9;
    }

.availability {
    font-size: 0.48rem;
    background: rgba(209, 144, 185, 0.15);
    color: var(--primary-dark);
    border-radius: 20px;
    margin-top: 8px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.active-metal .availability {
    color: white;
}

/* Size & Clarity Buttons */
.option-btn {
    background: white;
    border: 1.5px solid #e8e0e5;
    color: var(--text-dark);
    border-radius: 18px;
    padding: 0.65rem 1.4rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 70px;
}

    .option-btn:hover {
        border-color: var(--primary-light);
        background: #fdf8fb;
        color: var(--text-dark);
        transform: translateY(-2px);
    }

    .option-btn.active {
        background: linear-gradient(135deg, var(--primary) 0%, #6a1a50 100%);
        color: white;
        border: none;
        box-shadow: 0 6px 16px rgba(144, 33, 103, 0.3);
        font-weight: 600;
    }

/* Section Titles */
.customization-body h6 {
    color: var(--primary-dark);
    font-family: var(--theme-font-primary);;
    font-size: 0.8rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .customization-body h6 i {
        color: var(--primary-light);
        font-size: 1.4rem;
    }

/* Footer Button */
.apply-btn {
    background: linear-gradient(135deg, var(--web-primary) 0%, var(--web-primary) 70%);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(93, 17, 67, 0.25);
    transition: all 0.4s ease;
}

    .apply-btn:hover {
        background: linear-gradient(135deg, #501F5D 0%, #3a0f38 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(80, 31, 93, 0.35);
    }

/* Scrollable Body */
.customization-body {
    padding: 1.5rem 1.8rem;
    max-height: calc(95vh - 200px);
    overflow-y: auto;
}

/* Responsive Grid */
.metal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(83px, 1fr));
    gap: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* New Top Price Bar */
.price-header {
    background: white;
    color: var(--primary);
    padding: 1.5rem 1.8rem;
    text-align: left;
    position: relative;
}

.current-price {
    font-family: var(--theme-font-primary);;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
}

.price-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 500;
}

.modal-header-subtitle {
    background: #FDFBFA;
    padding: 1rem 1.8rem 1.4rem;
    border-bottom: 1px solid var(--border);
}

    .modal-header-subtitle p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.98rem;
        text-align: center;
    }

/* Mobile Bottom Sheet Behavior */
@media (max-width: 768px) {
    .customization-modal {
        display: none;
    }

        .customization-modal.open {
            position: sticky;
            width: 100vw;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            z-index: 1055;
        }

    .customization-body {
        padding: 0px !important;
    }

    .customization-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        animation: mobileSlideUp 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes mobileSlideUp {
        from {
            transform: translateY(100%);
            opacity: 1;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Loading overlay for customization modal */
.customization-loading {
    position: relative;
    min-height: 200px;
}

    .customization-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        border-radius: 8px;
    }

.bgfill {
    background: var(--gradient-primary) !important;
    color: white;
}

.size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .size-header h6 {
        margin: 0;
    }

.size-guide {
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

/* Customize Button */
.customize-btn {
    border-radius: 0px !important;
    background: var(--gradient-accent);
    color: white;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .customize-btn:hover {
        box-shadow: var(--shadow-deep);
        color: white;
    }

    .customize-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .customize-btn:hover::after {
        width: 300px;
        height: 300px;
    }

/* Modal Loader */
.modal-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-loader.d-none {
        display: none;
    }

.dot-loader span {
    width: 20px;
    height: 20px;
    margin: 0 6px;
    background: var(--web-primary);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

    .dot-loader span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .dot-loader span:nth-child(2) {
        animation-delay: -0.16s;
    }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
/* Fixed Bottom Bar (Shared for Mobile) */
.premium-fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-deep);
    padding: 12px 0;
}

    .premium-fixed-bottom-bar .container-fluid {
        padding: 0 12px !important;
    }

    .premium-fixed-bottom-bar .d-flex {
        gap: 12px !important;
    }

    .premium-fixed-bottom-bar img {
        border-radius: 8px !important;
    }

    .premium-fixed-bottom-bar .product-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
    }

    .premium-fixed-bottom-bar .fw-semibold {
        font-size: 1.2rem !important;
    }

    .premium-fixed-bottom-bar .btn {
        padding: 9px 24px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
    }

        .premium-fixed-bottom-bar .btn i {
            font-size: 1.1rem !important;
        }

.mobile-bottom-bar-left {
    gap: 12px !important;
}

.mobile-bottom-title {
    max-width: 150px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.mobile-bottom-bar-right {
    gap: 8px !important;
}

.mobile-bottom-cart {
    min-width: 110px !important;
    font-size: 0.85rem !important;
}

@media (max-width:768px) {
    .premium-fixed-bottom-bar .btn {
        padding: 9px 24px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
        max-width: fit-content !important;
    }

    .swiper-slide {
        width: auto;
        max-width: max-content !important;
        margin-bottom: 40px;
    }
}
/* ===== REMOVED CUSTOMIZATION MODAL STYLES ===== */

.customization-modal-content {
    background: white;
    border: 1px solid var(--border);
    max-height: 100vh;
    box-shadow: 0 20px 40px rgba(93, 17, 67, 0.12);
    backdrop-filter: blur(16px);
    font-family: var(--theme-font-primary);
    overflow: hidden;
}

.customization-modal .modal-header {
    background: linear-gradient(135deg, #FDFBFA 0%, #EEE2DA 100%);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.8rem;
}

.customization-modal h4 {
    color: var(--primary-dark);
    font-family: var(--theme-font-primary);;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.customization-modal .modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 4px;
}

.metal-card {
    cursor: pointer;
    background: #FFFFFF;
    border: 1.5px solid #e2d8df;
    border-radius: 18px;
    padding: 0.7rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 144, 185, 0.08);
}

    .metal-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(209,144,185,0.05) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .metal-card:hover {
        box-shadow: 0 12px 28px rgba(93, 17, 67, 0.14);
        border-color: var(--primary-light);
    }

        .metal-card:hover::before {
            opacity: 1;
        }

    .metal-card.active-metal {
        background: black;
        color: white !important;
        border-color: var(--primary);
        border-radius:0px;
        box-shadow: none;
    }

        .metal-card.active-metal small,
        .metal-card.active-metal .fw-bold {
            color: rgba(255,255,255,0.9) !important;
        }

    .metal-card .fw-bold {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

    .metal-card small {
        font-size: 0.85rem;
        color: var(--text-muted);
        opacity: 0.9;
    }

.availability {
    font-size: 0.48rem;
    background: rgba(209, 144, 185, 0.15);
    color: var(--primary-dark);
    border-radius: 20px;
    margin-top: 8px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.active-metal .availability {
    color: white;
}

.option-btn {
    background: white;
    border: 1.5px solid #e8e0e5;
    color: var(--text-dark);
    border-radius: 18px;
    padding: 0.65rem 1.4rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 70px;
}

    .option-btn:hover {
        border-color: var(--primary-light);
        background: #fdf8fb;
        color: var(--text-dark);
        transform: translateY(-2px);
    }

    .option-btn.active {
        background: linear-gradient(135deg, var(--primary) 0%, #6a1a50 100%);
        color: white;
        border: none;
        box-shadow: 0 6px 16px rgba(144, 33, 103, 0.3);
        font-weight: 600;
    }

.customization-body h6 {
    color: var(--primary-dark);
    font-family: var(--theme-font-primary);;
    font-size: 0.8rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .customization-body h6 i {
        color: var(--primary-light);
        font-size: 1.4rem;
    }

.apply-btn {
    background: linear-gradient(135deg, var(--web-primary) 0%, var(--web-primary) 70%);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(93, 17, 67, 0.25);
    transition: all 0.4s ease;
}

    .apply-btn:hover {
        background: linear-gradient(135deg, #501F5D 0%, #3a0f38 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(80, 31, 93, 0.35);
    }

.customization-body {
    padding: 1.5rem 1.8rem;
    max-height: calc(95vh - 200px);
    overflow-y: auto;
}

.metal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(83px, 1fr));
    gap: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.price-header {
    background: white;
    color: var(--primary);
    padding: 1.5rem 1.8rem;
    text-align: left;
    position: relative;
}

.current-price {
    font-family: var(--theme-font-primary);;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
}

.price-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 500;
}

.modal-header-subtitle {
    background: #FDFBFA;
    padding: 1rem 1.8rem 1.4rem;
    border-bottom: 1px solid var(--border);
}

    .modal-header-subtitle p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.98rem;
        text-align: center;
    }

@media (max-width: 768px) {
    .customization-modal {
        display: none;
    }

        .customization-modal.open {
            position: sticky;
            width: 100vw;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            z-index: 1055;
        }

    .customization-body {
        padding: 0px !important;
    }

    .customization-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        animation: mobileSlideUp 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes mobileSlideUp {
        from {
            transform: translateY(100%);
            opacity: 1;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

.customization-loading {
    position: relative;
    min-height: 200px;
}

    .customization-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        border-radius: 8px;
    }

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--web-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bgfill {
    background: var(--gradient-primary) !important;
    color: white;
}

.size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .size-header h6 {
        margin: 0;
    }

.size-guide {
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.customize-btn {
    border-radius: 0px !important;
    background: var(--gradient-accent);
    color: white;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .customize-btn:hover {
        box-shadow: var(--shadow-deep);
        color: white;
    }

    .customize-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .customize-btn:hover::after {
        width: 300px;
        height: 300px;
    }

.modal-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-loader.d-none {
        display: none;
    }

.dot-loader span {
    width: 20px;
    height: 20px;
    margin: 0 6px;
    background: var(--web-primary);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

    .dot-loader span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .dot-loader span:nth-child(2) {
        animation-delay: -0.16s;
    }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* ===== REMOVED DIAMOND GUIDE MODAL STYLES ===== */

.diamond-guide-modal {
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 100px rgba(93, 17, 67, 0.2);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7a1a5a 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--theme-font-primary);;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
    }

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

#diamondGuideModal .modal-content {
    text-align: left;
    height: 95vh;
    padding: 2px !important;
}

#diamondGuideModal .modal-body {
    height: 95vh !important;
    max-height: 95vh !important;
    margin-bottom: 40px !important;
}

#diamondGuideModal .modal {
    max-width: 900px !important;
    width: 900px !important;
    height: 100vh !important;
}

.guide-section {
    margin-bottom: 3rem;
    position: relative;
}

.diamond-underline {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
    font-size: 15px;
}

strong {
    color: #2c3e50;
}

.tip-box {
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
}

    .tip-box strong {
        color: #9c27b0;
    }

.milestone-graph-section {
    margin: 1rem 0;
    position: relative;
}

.graph-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
    position: relative;
}

.milestone-track {
    position: relative;
    height: 160px;
    margin: 1rem 0 4rem;
    width: 100%;
}

.milestone-line {
    position: absolute;
    top: 90px;
    left: 2%;
    right: 2%;
    width: 96%;
    height: 2px;
    background: linear-gradient(to right, #e0e0e0, #e0e0e0);
    z-index: 1;
}

.milestones-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0 2%;
    height: 100%;
}

.milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.milestone-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.milestone:hover .milestone-image {
    transform: translateY(-5px);
}

.milestone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.milestone-connector {
    width: 2px;
    height: 20px;
    background: #b48b5a;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.milestone-marker {
    width: 12px;
    height: 12px;
    background: #b48b5a;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.milestone:hover .milestone-marker {
    transform: scale(1.5);
    background: #9c27b0;
}

.milestone-label {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.milestone:hover .milestone-label {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.quality-level {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .quality-level.best {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .quality-level.good {
        background: #fff3e0;
        color: #ef6c00;
    }

    .quality-level.fair {
        background: #fce4ec;
        color: #c2185b;
    }

.milestone-tooltip {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #e0e0e0;
    text-align: left;
    pointer-events: none;
}

    .milestone-tooltip::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 16px;
        height: 16px;
        background: white;
        border-left: 1px solid #e0e0e0;
        border-top: 1px solid #e0e0e0;
    }

.milestone:hover .milestone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.tooltip-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
    display: block;
}

.tooltip-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.quality-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 2%;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.scale-start {
    text-align: left;
}

.scale-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scale-end {
    text-align: right;
}

.clarity-milestone .milestone-image {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

    .clarity-milestone .milestone-image i {
        font-size: 28px;
        color: var(--web-primary);
    }

li strong {
    color: #2c3e50;
}

@media (max-width: 992px) {
    .diamond-guide-modal {
        max-width: 95%;
        margin: 1rem auto;
    }

    .milestone-track {
        height: 150px;
    }

    .milestone-image {
        width: 60px;
        height: 60px;
    }

    .milestone-tooltip {
        width: 220px;
        top: 160px;
    }
}

@media (max-width: 768px) {
    .modal-body {
        padding: 1.5rem;
    }

    .milestone-track {
        height: 140px;
        margin-bottom: 3rem;
    }

    .milestones-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        height: auto;
    }

    .milestone {
        width: 70px;
        margin-bottom: 2rem;
    }

    .milestone-line {
        top: 80px;
    }

    .milestone-tooltip {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        width: 90%;
        max-width: 300px;
        z-index: 10000;
    }

        .milestone-tooltip::before {
            top: -8px;
            left: 50%;
        }

    .milestone:hover .milestone-tooltip {
        transform: translateX(-50%) translateY(0);
    }

    .quality-scale {
        display: none;
    }
}

@media (max-width: 576px) {
    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .milestone {
        width: 60px;
    }

    .milestone-image {
        width: 50px;
        height: 50px;
    }

    .milestone-label {
        font-size: 13px;
    }

    .milestone-tooltip {
        width: 95%;
        padding: 1rem;
    }
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 10px;
}

    .modal-body::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

.fixed-tooltip {
    display: none;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-dark);
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 680px;
    width: auto;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .fixed-tooltip .tooltip-title {
        font-weight: bold;
        font-size: 15px;
        margin-bottom: 6px;
        display: block;
        color: #ffd700;
        text-align: center;
    }

    .fixed-tooltip .tooltip-description {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
        text-align: center;
    }

.modal-content {
    position: relative;
}

.milestone-graph-section {
    position: relative;
    min-height: 150px;
    margin-bottom: 30px;
}

.milestone-tooltip {
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.modal {
    background: white;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10000;
}

.milestone {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .fixed-tooltip {
        max-width: 90%;
        font-size: 14px;
        padding: 10px 14px;
        top: 5px;
    }

        .fixed-tooltip .tooltip-title {
            font-size: 14px;
        }

        .fixed-tooltip .tooltip-description {
            font-size: 12px;
        }
}

/* ===== REMOVED TRUST MODAL STYLES ===== */

.trustModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.trustModalBox {
    width: 380px;
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 0px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.25);
    animation: modalFade 0.25s ease-out;
}

.trustModalClose {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 26px;
    cursor: pointer;
    color: #777;
    transition: 0.2s;
}

    .trustModalClose:hover {
        color: var(--primary, #b88a54);
    }

.trustModalIconWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    background: rgba(184, 138, 84, 0.15);
    margin: 0 auto 18px auto;
}

#trustModalIcon {
    font-size: 52px;
    color: var(--primary, #b88a54);
}

.trustModalTitle {
    font-family: var(--theme-font-primary);;
    color: var(--primary, #b88a54);
    font-size: 16px;
    margin-bottom: 12px;
}

.trustModalDesc {
    color: #444;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 5px;
    text-align: justify;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== REMOVED RING SIZE MODAL STYLES ===== */

.content-two-cols {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 30px;
    align-items: start;
}

.left-col {
    text-align: center;
}

.ring-guide-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .content-two-cols {
        grid-template-columns: 1fr;
    }

    .left-col {
        margin-bottom: 20px;
    }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #EEE2DA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #8DA5B5;
    margin-bottom: 10px;
    border: 3px solid white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(136, 165, 174, 0.1);
}

    .step-indicator.active {
        background: linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(144, 33, 103, 0.3);
    }

    .step-indicator.completed {
        background: linear-gradient(135deg, var( --web-secondary) 0%, #2a4a5e 100%);
        color: white;
    }

.step-label {
    font-size: 12px;
    color: #8DA5B5;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .step-label.active {
        color: var( --web-secondary);
    }

.progress-line {
    position: absolute;
    top: 18px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #EEE2DA;
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--web-primary) 0%, var( --web-secondary) 100%);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
    border-radius: 2px;
}

.radio-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 37px;
    margin: 24px 22px;
}

.radio-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #EEE2DA;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

    .radio-item:hover {
        border-color: var(--web-primary-soft);
        background: linear-gradient(135deg, #fef8fc 0%, #fcf9fd 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(209, 144, 185, 0.1);
    }

    .radio-item.selected {
        border-color: var(--web-primary);
        background: linear-gradient(135deg, #fef8fc 0%, #fcf9fd 100%);
        box-shadow: 0 8px 25px rgba(144, 33, 103, 0.1);
    }

.radio-input {
    margin-right: 16px;
    width: 20px;
    height: 20px;
    accent-color: var(--web-primary);
}

.radio-label {
    font-weight: 600;
    color: var( --web-secondary);
    font-size: 15px;
}

.calibration-container {
    position: relative;
    margin: 24px 0;
}

.calibration-text {
    text-align: center;
    color: #6F6F70;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 500;
}

.card-overlay-container {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f8f7f9 0%, #f0eef2 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #EEE2DA;
}

.card-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 130px;
    background: linear-gradient(135deg, #f0eef2 0%, #e8e6ec 100%);
    border-radius: 10px;
    border: 3px dashed var(--web-primary-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--web-primary);
    transition: all 0.3s ease;
}

    .card-placeholder:hover {
        border-style: solid;
        background: linear-gradient(135deg, #f8f7f9 0%, #f0eef2 100%);
        transform: translate(-50%, -50%) scale(1.02);
    }

.card-placeholder-icon {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.card-placeholder-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--web-primary);
}

.card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 130px;
    background: linear-gradient(135deg, var( --web-secondary) 0%, #2a4a5e 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(31, 55, 71, 0.2);
    display: none;
    border: 2px solid #88A1AE;
}

.card-chip {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, var(--web-primary-soft) 0%, #96709D 100%);
    border-radius: 5px;
}

.card-lines {
    position: absolute;
    top: 65px;
    left: 25px;
    right: 25px;
    height: 4px;
    background: rgba(209, 144, 185, 0.5);
    border-radius: 2px;
}

    .card-lines::before,
    .card-lines::after {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 60%;
        height: 4px;
        background: rgba(209, 144, 185, 0.3);
        border-radius: 2px;
    }

    .card-lines::after {
        top: 20px;
        width: 40%;
    }

.card-number {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 500;
}

.measurement-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 150px;
    pointer-events: none;
    z-index: 2;
}

.measurement-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--web-primary);
    border-radius: 10px;
    box-sizing: border-box;
    opacity: 0.9;
}

.measurement-handles {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: auto;
}

.handle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%);
    border-radius: 50%;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(144, 33, 103, 0.3);
    user-select: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

    .handle:hover {
        box-shadow: 0 8px 25px rgba(144, 33, 103, 0.4);
    }

    .handle:active {
        transform: scale(0.95);
    }

.handle-left {
    transform: translateX(-20px);
}

.handle-right {
    transform: translateX(20px);
}

.measurement-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var( --web-secondary) 0%, #2a4a5e 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(31, 55, 71, 0.2);
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

    .measurement-label::after {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var( --web-secondary);
    }

    .measurement-label.calibrated {
        background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    }

        .measurement-label.calibrated::after {
            border-bottom-color: #2e7d32;
        }

.calibration-instructions {
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
    font-size: 12px;
    color: #6F6F70;
    line-height: 1.6;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

    .instruction-step:last-child {
        margin-bottom: 0;
    }

.step-number {
    background: linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(144, 33, 103, 0.2);
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.size-circle {
    width: 56px;
    height: 56px;
    border: 1px solid rgb(200, 197, 200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var( --web-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgb(246, 239, 246);
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

    .size-circle::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(246, 239, 246);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .size-circle:hover::before {
        opacity: 1;
    }

    .size-circle.selected {
        background: linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%);
        color: white;
        border-color: var(--web-primary);
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(144, 33, 103, 0.3);
    }

        .size-circle.selected::before {
            display: none;
        }

    .size-circle.suggested {
        border: 1px solid rgb(200, 197, 200);
        border-width: 3px;
        animation: sizepulse 2s infinite;
    }

@keyframes sizepulse {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 55, 71, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(31, 55, 71, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 55, 71, 0);
    }
}

.size-image {
    width: 100%;
    max-width: 420px;
    margin: 24px auto;
    display: block;
    border-radius: 10px;
    border: 2px solid #EEE2DA;
    box-shadow: 0 8px 25px rgba(31, 55, 71, 0.1);
}

.size-selected {
    text-align: center;
    color: #6F6F70;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
}

    .size-selected span {
        font-weight: 700;
        color: var(--web-primary);
        font-size: 18px;
    }

.size-suggestion {
    text-align: center;
    color: var( --web-secondary);
    margin: 16px 0;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f0eef2 0%, #e8e6ec 100%);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--web-primary);
}

.guide-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--web-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid var(--web-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

    .guide-link:hover {
        background: linear-gradient(135deg, var(--web-primary) 0%, #501F5D 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(144, 33, 103, 0.3);
    }

/* ===== REMOVED SIMILAR PRODUCTS MODAL ===== */

.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: #fff;
        border-radius: 10px 10px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp 0.4s ease-out;
    }

@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: #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;
    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: #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;
    }

/* ===== REMOVED BOTTOM SHEET MODAL STYLES ===== */

.bottom-sheet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.bottom-sheet-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.bottom-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    flex-shrink: 0;
}

.bottom-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    width: 100%;
}

    .bottom-sheet-body::-webkit-scrollbar {
        display: none;
    }

.bottom-sheet-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .bottom-sheet-body .sliderParent {
        padding: 20px 0;
        height: 100%;
    }

    .bottom-sheet-body .globalSlider {
        padding: 0 10px;
    }

    .bottom-sheet-body .similar-slide-item {
        padding: 0 10px;
        height: 100%;
    }

    .bottom-sheet-body .product-item {
        background: white;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

        .bottom-sheet-body .product-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

    .bottom-sheet-body .slick-prev,
    .bottom-sheet-body .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 11;
        pointer-events: all;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0;
        color: transparent;
    }

    .bottom-sheet-body .slick-prev {
        left: 0;
    }

    .bottom-sheet-body .slick-next {
        right: 0;
    }

        .bottom-sheet-body .slick-prev i,
        .bottom-sheet-body .slick-next i {
            font-size: 18px;
            color: var(--primary);
        }

        .bottom-sheet-body .slick-prev:hover,
        .bottom-sheet-body .slick-next:hover {
            background: var(--primary);
        }

            .bottom-sheet-body .slick-prev:hover i,
            .bottom-sheet-body .slick-next:hover i {
                color: white;
            }

    .bottom-sheet-body .globalSlider .slick-slide {
        padding: 0 10px;
        height: auto;
    }

    .bottom-sheet-body .globalSlider .slick-list {
        margin: 0 -10px;
        height: 100%;
    }

    .bottom-sheet-body .globalSlider .slick-track {
        display: flex;
        height: 100%;
    }

    .bottom-sheet-body .globalSlider .slick-slide > div {
        height: 100%;
    }

@media (max-width: 768px) {
    .bottom-sheet-content {
        height: 50%;
    }

    .bottom-sheet-body .slick-prev {
        left: 5px;
    }

    .bottom-sheet-body .slick-next {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .bottom-sheet-content {
        height: 55%;
    }

    .bottom-sheet-body .sliderParent {
        padding: 15px 0;
    }

    .bottom-sheet-body .globalSlider {
        padding: 0 5px;
    }

    .bottom-sheet-body .similar-slide-item {
        padding: 0 5px;
    }

    .product-title {
        font-size: 0.85rem !important;
    }

    .price {
        font-size: 0.85rem !important;
    }
}

.bottom-sheet-handle {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    cursor: grab;
}

.handle-bar {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.bottom-sheet-header .btn-close {
    padding: 8px;
    margin: -8px;
    opacity: 0.7;
    font-size: 0.9rem;
}

    .bottom-sheet-header .btn-close:hover {
        opacity: 1;
    }

.product-title {
    max-width: max-content !important;
}
/* ===== MOBILE SECTION STYLES - COMPLETE ===== */

/* Mobile Layout Base */
.mobile-stacked-layout-section {
    padding: 0 !important;
}

.mobile-section-fluid {
    max-width: 100% !important;
}

/* Mobile General Sections */
.mobile-general-section,
.mobile-product-details-section,
.mobile-similar-section,
.mobile-recent-section,
.mobile-reviews-section {
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Mobile Custom Sections */
.mobile-custom-section,
.mobile-delivery-section,
.mobile-video-section,
.mobile-spec-table,
.mobile-gem-grid,
.mobile-price-card {
    width: 100% !important;
    margin: 12px 0 16px 0 !important;
    box-sizing: border-box !important;
}

/* Mobile Typography */
.mobile-price-title,
.mobile-details-title,
.mobile-gem-title {
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
}

.mobile-product-name,
.mobile-sku {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.mobile-actions {
    padding: 0 !important;
}

.mobile-wishlist,
.mobile-share {
    font-size: 1.2rem !important;
}

/* Mobile Custom Title */
.mobile-custom-title,
.mobile-delivery-title,
.mobile-video-title {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
}

.mobile-video-desc {
    font-size: 0.8rem !important;
    margin-bottom: 16px !important;
}

.mobile-video-btn {
    font-size: 0.9rem !important;
}

/* Mobile Spec Table */
.mobile-spec-subtitle {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
}

.mobile-spec-row {
    font-size: 0.8rem !important;
    padding: 12px 0 !important;
}

/* Mobile Gem Row */
.mobile-gem-row {
    display: flex;
    margin-bottom: 12px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.gemstone-purity-mobile {
    font-size: 0.8rem !important;
}

.mobile-gem-label {
    font-size: 0.8rem !important;
    margin: 0 !important;
}

.mobile-gem-weight {
    font-size: 0.8rem !important;
}

/* Mobile Total Row */
.mobile-total-row {
    padding: 16px 0 !important;
    text-align: center !important;
}

.mobile-total-label {
    font-size: 0.9rem !important;
}

.mobile-total-value {
    font-size: 1.3rem !important;
}

.price-row-mobile {
    font-size: 0.9rem !important;
    padding: 12px 0 !important;
}

.text-web-mobile,
.text-web2-mobile {
    font-size: 0.85rem !important;
}

/* Mobile Image Styles */
.mobile-product-image {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.mobile-carousel {
    overflow: hidden !important;
}

.mobile-rating-overlay {
    backdrop-filter: blur(10px) !important;
    opacity: 0.95 !important;
}

.mobile-carousel-control {
    filter: invert(1);
    width: 40px !important;
    opacity: 0.7 !important;
}

.carousel-item {
    position: relative !important;
}

/* Mobile Trust Wrapper */
.mobile-trust-wrapper {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
}

.trust-slider-mobile {
    display: block !important;
}

    .trust-slider-mobile .slick-track {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

.trust-item-mobile {
    position: relative;
    text-align: center;
    padding: 15px 8px;
    min-width: 85px !important;
    flex: 0 0 auto !important;
    height: auto !important;
}

.circle-icon-mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f3f6, #f0e6f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.1);
}

.title-mobile {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
}

/* Mobile Pincode */
.pincode-icon-mobile {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--soft);
    pointer-events: none;
    z-index: 1;
}

.pincode-input-mobile {
    padding-left: 40px !important;
    font-size: 0.95rem;
}

    .pincode-input-mobile:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(93, 17, 67, 0.1);
    }

.premium-alert-mobile {
    background: var(--gradient-accent) !important;
    border-left: 3px solid var(--soft);
    border-radius: 8px;
    color: white;
    padding: 12px;
    font-size: 0.9rem;
}

.premium-muted {
    color: var(--gray) !important;
    font-size: 0.85rem;
}

.premium-primary-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    transition: .2s !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

    .premium-primary-btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-soft);
    }

.mobile-delivery-section {
    border-left: 3px solid var(--primary);
    border-radius: 12px;
}

.mobile-delivery-title {
    font-size: 1rem !important;
    color: var(--primary-dark);
}

/* Mobile Similar Section */
.mobile-similar-section {
    padding: 0;
}

.mobile-similar-header {
    padding: 0 12px;
}

.mobile-similar-title {
    font-size: 1.1rem !important;
}

.similar-swiper-mobile {
    padding: 0 12px !important;
    width: 100% !important;
}

.mobile-product-item {
    height: auto !important;
}

.mobile-product-image-wrapper {
    border-radius: 0px !important;
    overflow: hidden !important;
}

.mobile-normal-image,
.mobile-hover-image {
    border-radius: 0px !important;
}

.mobile-cart-icon,
.mobile-video-icon {
    border-radius: 50%;
    padding: 2px;
}

.mobile-rating-badge {
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-product-content {
    padding: 8px 4px !important;
}

.mobile-product-title {
    margin: 0 !important;
    line-height: 1.3 !important;
    font-size: 0.85rem !important;
}

.mobile-price-text {
    font-size: 0.8rem !important;
    margin: 0 !important;
}

.mobile-heart-icon {
    font-size: 1.1rem !important;
}

/* Mobile Swiper Navigation */
.swiper-button-next-mobile,
.swiper-button-prev-mobile {
    color: var(--primary) !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.swiper-button-next-mobile {
    right: 0 !important;
}

.swiper-button-prev-mobile {
    left: 0 !important;
}

/* Mobile Recently Viewed */
.recent-product-section-mobile {
    backdrop-filter: blur(10px);
    border-radius: 0px;
}

.similarproduct-mobile {
    color: var(--primary, var(--web-primary));
    font-family: var(--theme-font-primary);;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-item-mobile {
    background: white;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-item-mobile:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

.product-image-wrapper-mobile {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.btn-cart-icon-mobile,
.btn-video-icon-mobile {
    padding: 6px;
    transition: all 0.3s ease;
}

    .btn-cart-icon-mobile:hover,
    .btn-video-icon-mobile:hover {
        background: var(--primary, var(--web-primary));
        transform: scale(1.1);
    }

        .btn-cart-icon-mobile:hover img,
        .btn-video-icon-mobile:hover img {
            filter: brightness(0) invert(1);
        }

.rating-badge-mobile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-title-mobile {
    color: var(--dark, #333);
    font-size: 0.95rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.price-mobile {
    color: var(--primary, var(--web-primary));
    font-size: 0.95rem;
}

.btn-wishlist-mobile {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .btn-wishlist-mobile:hover {
        transform: scale(1.2);
    }

/* Mobile Swiper Navigation for Recent */
.recent-prev-mobile,
.recent-next-mobile {
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    top: 40%;
    transform: translateY(-50%);
}

    .recent-prev-mobile:after,
    .recent-next-mobile:after {
        display: none;
    }

    .recent-prev-mobile i,
    .recent-next-mobile i {
        font-size: 1.5rem;
        color: var(--primary, var(--web-primary));
    }

/* Mobile Pagination */
.recent-pagination-mobile {
    position: relative;
    bottom: 0;
    margin-top: 16px;
}

    .recent-pagination-mobile .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ddd;
        opacity: 1;
    }

    .recent-pagination-mobile .swiper-pagination-bullet-active {
        background: var(--primary, var(--web-primary));
        width: 24px;
        border-radius: 4px;
    }

/* Mobile Reviews */
.mobile-reviews-section {
    padding: 0;
}

.mobile-reviews-header {
    padding: 0 12px;
}

.mobile-reviews-title {
    font-size: 1.1rem !important;
}

.mobile-review-card {
    border-radius: 12px !important;
    box-shadow: var(--shadow-soft) !important;
}

.mobile-review-header {
    gap: 8px !important;
}

.mobile-review-author {
    font-size: 0.9rem !important;
}

.mobile-review-stars {
    font-size: 0.9rem !important;
    flex-shrink: 0;
}

.mobile-review-text {
    margin: 0 !important;
    font-size: 0.8rem !important;
}

.mobile-view-more-btn {
    border-radius: 20px !important;
    padding: 6px 16px !important;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 767.98px) {
    .stickyrow {
        height: auto !important;
        position: relative !important;
    }

    .col-lg-9, .col-lg-3 {
        width: 100% !important;
        position: relative !important;
    }

    .details-scroll-container {
        height: auto !important;
        overflow: visible !important;
    }

    .tabs-slider-desktop {
        display: none !important;
    }

    .section {
        display: block !important;
    }

    .mobile-product-image {
        height: 50vh !important;
        object-fit: cover !important;
    }

    .mobile-carousel-control {
        width: 40px !important;
        opacity: 0.7 !important;
    }

        .mobile-carousel-control::before {
            background: var(--primary) !important;
        }

    * {
        box-sizing: border-box !important;
    }

}

@media (max-width: 576px) {

    .similarproduct-mobile {
        font-size: 1.1rem;
    }

    .product-item-mobile {
        padding:0px;
    }

    .recent-prev-mobile,
    .recent-next-mobile {
        display: none !important;
    }
}

/* Mobile Bottom Bar */
.premium-fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-deep);
    padding: 12px 0;
}

    .premium-fixed-bottom-bar .container-fluid {
        padding: 0 12px !important;
    }

    .premium-fixed-bottom-bar .d-flex {
        gap: 12px !important;
    }

    .premium-fixed-bottom-bar img {
        border-radius: 8px !important;
    }

    .premium-fixed-bottom-bar .product-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
    }

    .premium-fixed-bottom-bar .fw-semibold {
        font-size: 1.2rem !important;
    }

    .premium-fixed-bottom-bar .btn {
        padding: 9px 24px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
    }

        .premium-fixed-bottom-bar .btn i {
            font-size: 1.1rem !important;
        }

.mobile-bottom-bar-left {
    gap: 12px !important;
}

.mobile-bottom-title {
    max-width: 150px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.mobile-bottom-bar-right {
    gap: 8px !important;
}

.mobile-bottom-cart {
    min-width: 110px !important;
    font-size: 0.85rem !important;
}

@media (max-width:768px) {
    .premium-fixed-bottom-bar .btn {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        border-radius: 20px !important;
        max-width: fit-content !important;
    }

    .swiper-slide {
        width: auto;
        max-width: max-content !important;
        margin-bottom: 40px;
    }
}

/* Mobile Carousel Indicators */
.carousel-indicators-below {
    position: static;
    margin-top: 12px;
}

    .carousel-indicators-below [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary);
        opacity: 0.4;
    }

    .carousel-indicators-below .active {
        opacity: 1;
    }

/* Mobile Custom Option */
.custom-option-mobile {
    background: #fff;
    border: 0.3px solid #f8f8f8;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .custom-option-mobile:hover {
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

/* Mobile Row Gutter */
@media (max-width: 768px) {
    .customize-btn {
        font-size: 14px !important;
        padding: 8px 16px !important;
        white-space: nowrap;
        min-height: 60px;
        height: 100%;
    }

    .font-12 {
        font-size: 11px !important;
    }

    .text-web {
        font-size: 13px !important;
    }

    .row.g-2 {
        --bs-gutter-x: 0.5rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

        .row.g-2 > .col,
        .row.g-2 > .col-auto {
            padding-left: 0.25rem;
            padding-right: 0.25rem;
        }
}

/* Mobile Description Items */
@media (max-width: 767px) {
    .description-itemsMbl.collapsed {
        display: none;
    }
}

/* Mobile Trust Slider Slick Dots */
@media (max-width: 767.98px) {
    .slick-slide {
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        flex-direction: column;
    }

    .trust-item-mobile {
        min-width: 85px !important;
        padding: 12px 5px !important;
    }

    .circle-icon-mobile {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .title-mobile {
        font-size: 0.65rem !important;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0px !important;
    }
}

/* Mobile Phone Icon */
.mobile-phone-icon {
    transition: all 0.3s ease;
}

    .mobile-phone-icon:hover {
        transform: scale(1.1);
        background-color: var(--primary-dark) !important;
    }

/* Mobile Find in Store Button */
.find-in-store-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .find-in-store-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

/* Mobile No Stock Message */
.mobile-no-stock {
    margin: 8px 0;
}

/* Mobile SKU */
.mobile-sku {
    word-break: break-word;
}
.customization-modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}
.customization-body {
    flex-grow: 1;
}