
@font-face {
  font-family: "InterCustom";
  src: url("/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900; /* for variable font */
  font-style: normal;
}



body{
    background-color:black;
    font-family: "InterCustom", sans-serif;
}
h2,h1,h3,h4,h5,h6{
    font-family: "InterCustom", sans-serif;
}
h1{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}
h2{
    font-size: 2rem;
    font-weight: 700;
}
.rate-slider-container {
    padding: 20px 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}
.shop-details .product-info .product-meta > span{
    display:content!important;
}

.rate-slider {
    display: flex;
    animation: slide 15s infinite linear;
    width: 200%;
    height: 100%;
}

.rate-item {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}
.intro-item .icon span{
    background-color: #101a22;
}
.rate-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rate-card:hover {
    transform: translateY(-5px);
}

.rate-type {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.rate-value {
    font-size: 20px;
    font-weight: bold;
    color: #e44d26;
    margin-bottom: 3px;
}

.rate-change {
    font-size: 12px;
    margin-bottom: 3px;
}

.rate-change.positive {
    color: #28a745;
}

.rate-change.negative {
    color: #dc3545;
}

.rate-unit {
    font-size: 12px;
    color: #666;
}

/* Rate Display Animation */
.rate-display {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 1.5em;
    width: 100%;
}

.rate-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 0;
    animation: rate-slide 15s linear infinite;
}

/* Header v3 (index3.html) - prevent the moving rate text from overflowing into other feature boxes */
.site-header.header-v3 .header-bottom .block-feature .box {
    width: 100%;
    justify-content: flex-start; /* allow text container to take remaining space */
}

.site-header.header-v3 .header-bottom .block-feature .box .box-title-wrap {
    flex: 1 1 auto;
    min-width: 0; /* critical: allow the rate text container to shrink in a flex row */
}

.site-header.header-v3 .header-bottom .block-feature .box.top-slider .box-title-wrap {
    overflow: hidden; /* extra safety so animated text never paints over siblings */
}

.site-header.header-v3 .header-bottom .block-feature .box.top-slider .rate-display {
    display: block;
    width: 100%;
}

@keyframes rate-slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Live rate ticker: first row inside header (all breakpoints) */
.header-top-live-rate-bar {
    background: linear-gradient(90deg, #0a1218 0%, #13202c 45%, #0a1218 100%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.28);
    padding: 9px 0;
    width: 100%;
    overflow: hidden;
}

.header-top-live-rate-bar .rate-display {
    font-size: 0.84rem;
    font-weight: 600;
    color: #f8f4ec;
    letter-spacing: 0.03em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    min-height: 1.45em;
    width: 100%;
}

.header-top-live-rate-bar .rate-text {
    display: inline-flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: header-rate-marquee 22s linear infinite;
    will-change: transform;
}

.header-top-live-rate-bar .rate-line {
    flex-shrink: 0;
    padding-right: 3.5rem;
}

@keyframes header-rate-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .site-mobile-navigation .menu-item-has-children > a:after {
        color: #000 !important;
    }
    
    .site-mobile-navigation .menu-item-has-children.active > a:after {
        color: #000 !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .site-header.header-v3 .header-bottom .block-feature .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .site-header.header-v3 .header-bottom .block-feature .box .box-icon {
        margin-right: 0;
    }

    .rate-display {
        font-size: 0.9em;
        height: 1.8em;
    }
    
    .rate-text {
        white-space: nowrap;
        padding-left: 0;
        animation: rate-slide-mobile 12s linear infinite;
    }
    
    @keyframes rate-slide-mobile {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .rate-item {
        flex: 0 0 100%;
    }

    .rate-slider {
        width: 400%;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-25%);
        }
        50% {
            transform: translateX(-50%);
        }
        75% {
            transform: translateX(-75%);
        }
        100% {
            transform: translateX(0);
        }
    }
}
/* Continuous Marquee Effect for Rate Slider */
.mobile-rate-slider, .box.top-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mobile-rate-slider .rate-display, .box.top-slider .rate-display {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mobile-rate-slider .rate-text, .box.top-slider .rate-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: rate-slide-mobile 20s linear infinite;
    position: relative;
}

/* Seamless loop: duplicate line is cloned in markup where needed; no static CSS content */

@keyframes rate-slide-mobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Mobile Rate Slider Styles */
.mobile-rate-slider {
    background-color: #101a22;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    overflow: hidden;
}

.mobile-rate-slider .rate-display {
    font-size: 0.9em;
    font-weight: 600;
    color: #fffdfd;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 1.5em;
    width: 100%;
}

.mobile-rate-slider .rate-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: rate-slide-mobile 12s linear infinite;
}

/* Mobile Menu Styles */
.site-mobile-navigation {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 20px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
}

.site-mobile-navigation.active {
    left: 0;
    z-index: 9999999!important;
}

.site-mobile-navigation #mobile-main-menu {
    padding: 60px 0 20px;
}

.site-mobile-navigation .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-mobile-navigation .menu li {
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.site-mobile-navigation .menu li:last-child {
    border-bottom: none;
}

.site-mobile-navigation .menu li a {
    display: block;
    padding: 18px 30px;
    color: #101a22;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.5px;
}

.site-mobile-navigation .menu li a:hover {
    color: #101a22;
    padding-left: 40px;
    background: rgba(201, 169, 97, 0.05);
}
.block-sliders i.slick-arrow.fa-angle-right:hover,.block-sliders i.slick-arrow.fa-angle-left:hover {
    background-color: #101a22;
    border-color: white!important;
}
.site-mobile-navigation .menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #101a22, #080a0c);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.site-mobile-navigation .menu li a:hover:before {
    transform: scaleY(1);
}

.site-mobile-navigation .menu li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(201, 169, 97, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.site-mobile-navigation .menu li a:hover:after {
    transform: scaleX(1);
}

.site-mobile-navigation .menu-item-has-children > a:after {
    content: "›";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000;
    transition: transform 0.3s ease;
}

.site-mobile-navigation .menu-item-has-children.active > a:after {
    transform: translateY(-50%) rotate(90deg);
    color: #000;
}

.site-mobile-navigation .mm-menu ul > li.level-0 .mm-next:after,
.site-mobile-navigation .mm-menu ul > li .mm-next:after {
    color: #000 !important;
    border-color: #000 !important;
}

.site-mobile-navigation .mm-menu ul > li.level-0:hover .mm-next:after,
.site-mobile-navigation .mm-menu ul > li:hover .mm-next:after {
    color: #000 !important;
    border-color: #000 !important;
}

.site-mobile-navigation .mm-menu ul > li.level-0.mm-opened .mm-next:after,
.site-mobile-navigation .mm-menu ul > li.mm-opened .mm-next:after {
    color: #000 !important;
    border-color: #000 !important;
}

.site-mobile-navigation .mm-btn:after,
.site-mobile-navigation .mm-btn:before {
    border-color: #000 !important;
}

.site-mobile-navigation .mm-next:after {
    border-color: #000 !important;
    transform: rotate(-45deg);
}

.site-mobile-navigation .mm-next:before {
    border-color: #000 !important;
}

.site-mobile-navigation .mm-counter {
    color: #000 !important;
}

.site-mobile-navigation .mm-listview > li > a,
.site-mobile-navigation .mm-listview > li > span {
    color: #000 !important;
}

.site-mobile-navigation .mm-listview .mm-btn_next:after,
.site-mobile-navigation .mm-listview .mm-btn_next:before {
    border-color: #000 !important;
}

.site-mobile-navigation .mm-listview .mm-next {
    display: block !important;
}

.site-mobile-navigation .mm-listview .mm-next:after,
.site-mobile-navigation .mm-listview .mm-next:before {
    border-color: #000 !important;
    background: #000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.remove-megamenu {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9a961;
    color: #fff;
    border-radius: 50%;

    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.remove-megamenu:hover {
    background: #101a22;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Overlay */
.site-mobile-navigation.active:after {
    content: "";
    position: fixed;
    top: 0;
    left: 300px;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.title-slider {
    background: linear-gradient(
        120deg,
        #ffffff 20%,
        #101a22 40%,
        #0f2435 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}
.description-slider {
       background: linear-gradient(
        120deg,
        #5c7488 20%,
        #101a22 40%,
        #0f2435 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine1 8s linear infinite; 
}
@keyframes shine1 {
    to {
        background-position: 200% center;
    }
}
.button-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
  border: 1px solid white;
    transition: color 0.4s ease;
}

/* Sliding background */
.button-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #101a22;
    transition: left 0.4s ease;
    z-index: -1;
}

/* Hover effect */
.button-slider:hover::before {
    left: 0;
}

/* Text color change */
.button-slider:hover {
    color: #ffffff !important;
}
.button-white:hover {
    background: transparent !important;
    color: #ffffff !important;
     border: 1px solid white;
}
.block-product-cats i.slick-arrow.fa-angle-left:hover, .block-product-cats i.slick-arrow.fa-angle-right:hover {
    background-color: #101a22;
    border-color: white!important;



}



.main-title {
    background: linear-gradient(
        90deg,
        #101a22,
        #34495e,
        #101a22
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase!important;
}
.block-products.slider .content-product-list i.slick-arrow{
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 14px;

}

.btn-slide-dark {
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    padding: 12px 28px;

    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;

    transition: color 0.4s ease;
}
.products-list.grid .product-wapper .products-content h3.product-title a{
     display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-list.grid .product-wapper .products-content h3.product-title a:hover{
    color: #000;
}
/* Sliding white background */
.btn-slide-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: left 0.4s ease;
    z-index: -1;
}

/* Hover animation */
.btn-slide-dark:hover::before {
    left: 0;
}

/* Text + border change */
.btn-slide-dark:hover {
    color: #ffffff !important;
    border: 1px solid #ffffff;
 background-color: #ffffff;
}

/* ===== Trending Products: section + cards (more attractive) ===== */
.trending-products-section {

    position: relative;
}

.trending-products-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}
.trending-products-block .block-title h2 {
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.trending-products-slider .trending-product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.trending-products-slider .trending-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
    border-color: rgba(201, 169, 97, 0.25);
}
.trending-products-slider .trending-product-card .products-thumb {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #fcfcfc;
}
.trending-products-slider .trending-product-card .product-thumb-hover a {
    display: block;
    background: #fafafa;
}
.trending-products-slider .trending-product-card .products-content {
    padding: 16px 14px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.trending-products-slider .trending-product-card .product-title a {
    color: #1a1a1a;
    transition: color 0.2s ease;
}
.trending-products-slider .trending-product-card:hover .product-title a {
    color: #101a22;
}
.trending-products-slider .trending-product-card .price {
    color: #2d2d2d;
}
.trending-products-slider .item-product {
    padding: 0 8px;
}
.trending-products-slider .slick-slide {
    margin: 0 8px;
}
.trending-products-slider .items {
    border-radius: 10px;
    overflow: hidden;
}

/* ===== Trending Products: mobile only ===== */
/* Show Quick View and Compare (theme hides them by default on mobile) */
@media (max-width: 991px) {
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-quickview,
    .trending-products-slider .trending-product-card .products-thumb .product-button .btn-compare {
        display: inline-block !important;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-quickview a {
        display: inline-block;
    }
    /* Icons below the image in one line */
    .trending-products-slider .trending-product-card .products-thumb {
        display: flex;
        flex-direction: column;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-thumb-hover {
        flex: 0 0 auto;
        order: 1;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-lable {
        order: 0;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button {
        position: static !important;
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        padding: 8px 6px;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0;
        border-top: 1px solid rgba(0,0,0,0.08);
        background: #fafafa;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button > * {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin: 0 2px !important;
        flex-shrink: 0;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button > :nth-child(odd) {
        transform: none !important;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-btn,
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-quickview a {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        min-width: 28px;
    }
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-btn:before,
    .trending-products-slider .trending-product-card .products-thumb .product-button .product-quickview a i {
        font-size: 12px !important;
        line-height: 28px !important;
    }
}

/* Small gap between the 2 cards on mobile */
@media (max-width: 767px) {
    .trending-products-slider .item-product {
        padding: 0 2px;
    }
    .trending-products-slider .slick-slide {
        margin: 0 2px;
    }
    .trending-products-slider .slick-list {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }
    .trending-products-slider .slick-list .slick-slide {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
}

/* ===== Block Products Slider: mobile – show cart, wishlist, compare, quick view below image, inline ===== */
@media (max-width: 991px) {
    /* Re-show Quick View and Compare (responsive.css hides them on small screens) */
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview,
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .btn-compare {
        display: block !important;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview a {
        display: inline-block;
    }
    /* Thumb as column: image first, then buttons row below */
    .block-products.slider .products-list.grid .product-wapper .products-thumb {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        padding-top: 100%;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-thumb-hover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex: 0 0 auto;
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-thumb-hover img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-lable {
        order: 0;
    }
    /* Buttons row: always visible, below image, inline */
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button {
        position: static !important;
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        padding: 8px 6px;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: #fafafa;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button > * {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        -webkit-transform: none !important;
        margin: 0 2px !important;
        flex-shrink: 0;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button > :nth-child(odd) {
        transform: none !important;
        -webkit-transform: none !important;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-btn,
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        min-width: 32px;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-btn:before,
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a i {
        font-size: 14px !important;
        line-height: 32px !important;
        color:black!important;
    }
}

/* Ensure uniform card heights for related products slider */
.block-products.slider .products-list.grid {
    display: block;
}

.block-products.slider .products-list.grid .slick-list {
    display: block !important;
}

.block-products.slider .products-list.grid .slick-track {
    display: flex !important;
}
    .site-main .page-title .content-title-heading .text-title-heading{
        color: black !important;
    }

.block-products.slider .products-list.grid .slick-slide {
    display: block !important;
    float: none !important;
    height: auto;
    min-height: 400px;
    margin: 0 auto;
    width: 100%;
}

.block-products.slider .products-list.grid .slick-list {
    overflow: hidden;
    margin: 0 -5px;
}

.block-products.slider .products-list.grid .slick-track {
    display: flex !important;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
}

.block-products.slider .products-list.grid .slick-slide .item-product {
    height: 100%;
    min-height: 400px;
}

.block-products.slider .products-list.grid .slick-slide .item-product .items {
    height: 100%;
    min-height: 400px;
}

.block-products.slider .products-list.grid .slick-slide .item-product {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.block-products.slider .products-list.grid .slick-slide .item-product .items {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.block-products.slider .products-list.grid .slick-slide .item-product .items {
    height: 100%;
}

.block-products.slider .products-list.grid .product-wapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile: 2 cards per line */
@media (max-width: 767px) {
    .block-products.slider .products-list.grid .slick-slide {
    
        padding: 0 3px;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product {
        height: 100%;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product .items {
        height: 100%;
    }
}

/* Tablet: 3 cards per line */
@media (min-width: 768px) and (max-width: 991px) {
    .block-products.slider .products-list.grid .slick-slide {
  
        padding: 0 4px;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product {
        height: 100%;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product .items {
        height: 100%;
    }
}

/* Small Desktop: 3 cards per line */
@media (min-width: 992px) and (max-width: 1199px) {
    .block-products.slider .products-list.grid .slick-slide {

        padding: 0 5px;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product {
        height: 100%;
    }
    .block-products.slider .products-list.grid .slick-slide .item-product .items {
        height: 100%;
    }
}

/* Large Desktop: 4 cards per line */

@media (max-width: 767px) {
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-btn,
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        min-width: 28px;
    }
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-btn:before,
    .block-products.slider .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a i {
        font-size: 12px !important;
        line-height: 28px !important;
    }
    .block-products.slider .products-list.grid .product-wapper .products-content {
        padding: 10px 8px 12px;
    }
    .block-products.slider .products-list.grid .product-wapper .products-content .product-title {
        font-size: 13px;
        line-height: 1.3;
        min-height: 34px;
        margin-bottom: 6px;
    }
    .block-products.slider .products-list.grid .product-wapper .products-content .product-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #ffffff !important;
    }
    .block-products.slider .products-list.grid .product-wapper .products-content .price {
        display: block;
        line-height: 1.25;
        color: #fffefe !important;
    }
    .block-products.slider .slick-track {
        display: flex;
    }
    .block-products.slider .slick-slide {
        height: auto;
    }
    .block-products.slider .slick-slide > div,
    .block-products.slider .item-product,
    .block-products.slider .item-product .items,
    .block-products.slider .product-wapper {
        height: 100%;
    }
}

/* ===== Newsletter Popup: welcome + coupon (responsive) ===== */

.mobile-icons a i{
    font-size: 46px;
    
}
.custom-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.mobile-item {
    text-align: center;
    flex: 1;
}

.mobile-item a {
    text-decoration: none;
    color: #101a22;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-item i {
    font-size: 22px;
    margin-bottom: 3px;
    transition: 0.3s;
}

/* Fallback icons for bottom nav when Remix icons are unavailable */
.custom-mobile-nav .mobile-item i.ri-home-4-line::before,
.custom-mobile-nav .mobile-item i.ri-store-2-line::before,
.custom-mobile-nav .mobile-item i.ri-heart-3-line::before,
.custom-mobile-nav .mobile-item i.ri-user-3-line::before {
    font-family: FontAwesome !important;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}
.custom-mobile-nav .mobile-item i.ri-home-4-line::before { content: "\f015"; }
.custom-mobile-nav .mobile-item i.ri-store-2-line::before { content: "\f290"; }
.custom-mobile-nav .mobile-item i.ri-heart-3-line::before { content: "\f004"; }
.custom-mobile-nav .mobile-item i.ri-user-3-line::before { content: "\f007"; }

/* ACTIVE STATE */




/* Center Logo */
.mobile-center-logo {
    position: relative;
    top: -5px;


}

.mobile-center-logo img {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Keep toasts visible above fixed mobile navbar */
@media (max-width: 767px) {
    #pd-toast,
    #cart-toast,
    #co-toast,
    #addon-toast {
        bottom: 84px !important;
        z-index: 100001 !important;
    }

    /* Keep any popup/modal above fixed mobile navbar */
    .quickview-popup,
    .compare-popup,
    #loginModal.custom-modal,
    .custom-modal,
    .pd-fullscreen-modal,
    .search-overlay {
        z-index: 2147483646 !important;
    }

    /* Hide mobile bottom bar while overlays lock body scroll */
    body[style*="overflow: hidden"] .custom-mobile-nav {
        display: none !important;
    }

    /* Mobile mini-cart popup: keep fully visible and scrollable */
    .header-mobile .mini-cart .cart-popup,
    .header-mobile .dropdown-menu.cart-popup {
        position: fixed !important;
        top: 68px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 12px !important;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
        z-index: 2147483646 !important;
        border-radius: 10px;
    }

    .header-mobile .mini-cart .cart-popup .cart-list-wrap {
        max-height: calc(100vh - 260px);
        overflow-y: auto;
    }

    .header-mobile .mini-cart .remove-cart-shadow {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.35) !important;
        z-index: 2147483645 !important;
        display: none;
    }

    .header-mobile .mini-cart.show .remove-cart-shadow {
        display: block !important;
    }
}

/* ===== Cart page: mobile cards (make table responsive) ===== */
@media (max-width: 767px) {
    .shop-cart .table-responsive {
        overflow: visible;
    }
    /* responsive.css forces a fixed table width on small screens */
    .shop-cart .cart-items {
        width: 100% !important;
        max-width: 100% !important;
    }
    table.cart-items thead {
        display: none;
    }
    table.cart-items,
    table.cart-items tbody,
    table.cart-items tr,
    table.cart-items td {
        display: block;
        width: 100%;
    }
    table.cart-items tbody tr.cart-item {
        background: #000000;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 14px;
        padding: 12px;
        margin-bottom: 12px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }
    table.cart-items tbody tr.cart-item td {
        border: 0;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    table.cart-items tbody tr.cart-item td:before {
        content: attr(data-title);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        opacity: 0.7;
        flex: 0 0 auto;
        color:white!important;
    }
    table.cart-items tbody tr.cart-item td > *:last-child {
        text-align: right;
    }
    table.cart-items tbody tr.cart-item td.product-thumbnail {
        display: grid;
        grid-template-columns: 74px 1fr;
        align-items: center;
        justify-content: start;
    }
    table.cart-items tbody tr.cart-item td.product-thumbnail:before {
        display: none;
    }
    table.cart-items tbody tr.cart-item td.product-thumbnail img.product-image {
        width: 74px;
        height: 74px;
        object-fit: cover;
        border-radius: 12px;
    }
    table.cart-items tbody tr.cart-item td.product-thumbnail .product-name a {
        font-weight: 600;
        line-height: 1.2;
        display: inline-block;
    }
    /* Force Quantity controls to the far right */
    table.cart-items tbody tr.cart-item td.product-quantity {
        justify-content: flex-end;
    }
    table.cart-items tbody tr.cart-item td.product-quantity:before {
        margin-right: auto;
    }
    table.cart-items tbody tr.cart-item td.product-quantity .quantity {
        margin-left: auto !important;
    }
    table.cart-items tbody tr.cart-item td.product-quantity .quantity input.qty {
        width: 44px;
    }
    table.cart-items tbody tr.cart-item td.product-remove {
        justify-content: flex-end;
        padding-top: 6px;
    }
    table.cart-items tbody tr.cart-item td.product-remove:before {
        display: none;
    }
    table.cart-items tbody tr.cart-item td.product-remove a.remove {
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 12px;
        background:white;
        color: #000000;
        display: inline-block;
        font-size: 22px;
    }
    table.cart-items tbody tr td.actions {
        padding: 0;
    }
    table.cart-items tbody tr td.actions .bottom-cart {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        margin-top: 6px;
    }
    table.cart-items tbody tr td.actions .bottom-cart .button {
        width: 100%;
    }
    [class~=back-top][class~=button-show]{
        bottom: 150px;
        
    }
}

/* ===== Store page product grid: mobile – show compare + quick view + inline buttons below image ===== */
@media (max-width: 991px) {
    /* store.html uses <body class="shop"> (not .shop-page wrapper) */
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview,
    .shop .products-list.grid .product-wapper .products-thumb .product-button .btn-compare {
        display: block !important;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview a {
        display: inline-block;
    }
    .shop .products-list.grid .product-wapper .products-thumb {
        display: flex;
        flex-direction: column;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-thumb-hover {
        flex: 0 0 auto;
        order: 1;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-lable {
        order: 0;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button {
        position: static !important;
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        padding: 8px 6px;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        background: #fafafa;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button > * {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        -webkit-transform: none !important;
        margin: 0 2px !important;
        flex-shrink: 0;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button > :nth-child(odd) {
        transform: none !important;
        -webkit-transform: none !important;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-btn,
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        min-width: 32px;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-btn:before,
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a i {
        font-size: 14px !important;
        line-height: 32px !important;
    }
}
@media (max-width: 767px) {
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-btn,
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        min-width: 28px;
    }
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-btn:before,
    .shop .products-list.grid .product-wapper .products-thumb .product-button .product-quickview > a i {
        font-size: 12px !important;
        line-height: 28px !important;
    }
}

/* Product Tabs Styles */
.product-tabs {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
  
}

.product-tabs .nav-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
    white-space: nowrap;
 flex-wrap: wrap;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.product-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    padding: 10px 15px;
    margin-right: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: #333;
    border-bottom-color: #ddd;
}

.product-tabs .nav-tabs .nav-link.active {
    color: #333;
    border-bottom-color: #333;
    background-color: transparent;
}

.tab-content {
    padding-top: 20px;
}

/* Mobile responsive for tabs */
@media (max-width: 767px) {
    .product-tabs .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 12px;
        margin-right: 2px;
    }

    /* Fix tab alignment issues */
    .product-tabs {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 100%;
        position: relative;
    }

    .product-tabs .nav-tabs {
        display: flex;
        border-bottom: 1px solid #eee;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-tabs .nav-tabs .nav-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .product-tabs .nav-tabs .nav-link {
        border: none;
        border-bottom: 2px solid transparent;
        color: #666;
        padding: 10px 15px;
        margin-right: 5px;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 14px;
        transition: all 0.3s ease;
        white-space: nowrap;
        display: inline-block;
        text-align: center;
        min-width: 80px;
    }

    .product-tabs .nav-tabs .nav-link:hover {
        color: #333;
        border-bottom-color: #ddd;
    }

    .product-tabs .nav-tabs .nav-link.active {
        color: #333;
        border-bottom-color: #333;
        background-color: transparent;
    }

    .tab-content {
        padding-top: 20px;
        width: 100%;
        overflow: hidden;
    }

    .tab-pane {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: block;
        width: 100%;
    }

    .tab-pane.active {
        opacity: 1;
        visibility: visible;
    }

    .tab-pane.show {
        opacity: 1;
        visibility: visible;
    }
}
/* Filter Button Styles */
.filter-toggle-btn-container {
    margin: 20px 0;
    text-align: center;
}

.filter-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.filter-toggle-btn:active {
    transform: translateY(0);
}

.filter-count-badge {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
    animation: pulse 2s infinite;
}

/* Sidebar Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Sidebar Styles */
.filter-sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    height: 100vh;
    overflow-y: auto;
}

.filter-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    font-size: 18px;
    transition: all 0.3s ease;
}

.filter-close-btn:hover {
    background: #ff3838;
    transform: rotate(90deg);
}

/* For mobile and tablet */
@media (max-width: 992px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        z-index: 1000;
        transform: translateX(-100%);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    }
    
    .filter-sidebar.active {
        transform: translateX(0);
    }
    
    .filter-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .filter-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Desktop styles */
@media (min-width: 993px) {
    .filter-toggle-btn-container {
        display: none;
    }
    
    .filter-sidebar {
        position: sticky;
        top: 20px;
     
    }
}

/* Animation for badge */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* Enhance filter blocks */
.block-product-filter .block-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.filter-items li {
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.filter-items li:hover {
    transform: translateX(5px);
}

.filter-items li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.filter-items li a:hover {
    background: #f8f9fa;
}

/* Price filter enhancement */
.price-filter-wrap {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Color filter circles */
.color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Scrollbar styling */
.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}






.filter-sidebar-overlay {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background-color: rgba(0, 0, 0, 0.6);
				z-index: 99999;
				display: none;
				-webkit-backdrop-filter: blur(3px);
				backdrop-filter: blur(3px);
			}
			
			.filter-sidebar {
				position: fixed;
				top: 0;
				left: -420px;
				width: 400px;
				height: 100%;
				background: linear-gradient(to bottom, #ffffff, #f8f8f8);
				z-index: 100000;
				overflow-y: auto;
				transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
				padding: 25px;
				box-shadow: 5px 0 15px rgba(0, 0, 0, 0.15);
				font-family: 'Lato', sans-serif;
			}
			.clarity-filter{
                display:flex ;
                flex-wrap: wrap;
                gap: 10px;
            }
			.filter-sidebar.active {
				left: 0;
                z-index: 999999999;
			}
			
			.filter-sidebar-overlay.active {
				display: block;
			}
			
			.filter-sidebar-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
				margin-bottom: 25px;
				border-bottom: 2px solid #f0f0f0;
				padding-bottom: 15px;
				position: relative;
			}
			
			.filter-sidebar-header h3 {
				font-family: 'lato', serif;
				font-size: 22px;
				font-weight: 600;
				color: #333;
				margin: 0;
				position: relative;
				padding-left: 15px;
			}
			
		
			
			.close-filter-sidebar {
				background: none;
				border: none;
				font-size: 28px;
				cursor: pointer;
				color: #777;
				transition: all 0.2s ease;
				height: 30px;
				width: 30px;
				display: flex;
				align-items: center;
				justify-content: center;
				border-radius: 50%;
			}
			
			.close-filter-sidebar:hover {
				color: #333;
				background-color: rgba(0, 0, 0, 0.05);
			}
			
			.filter-sidebar-content .block {
				margin-bottom: 35px;
				border-radius: 8px;
				overflow: hidden;
				box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
				background-color: #fff;
			}
			
			.filter-sidebar-content .block-title {
				margin-bottom: 0;
				position: relative;
			}
			
			.filter-sidebar-content .block-title h2 {
				font-family: 'lato', serif;
				font-size: 18px;
				font-weight: 600;
				margin: 0;
				padding: 15px 20px;
				background-color: #f9f9f9;
				color: #333;
				border-bottom: 1px solid #f0f0f0;
				position: relative;
			}
			
			.filter-sidebar-content .block-content {
				padding: 15px 20px;
			}
			
			/* Category list styling */
			.product-cats-list ul {
				list-style: none;
				padding: 0;
				margin: 0;
			}
			
			.product-cats-list li {
				padding: 10px 0;
				border-bottom: 1px dashed #eee;
				display: flex;
				justify-content: space-between;
				align-items: center;
				transition: all 0.2s ease;
			}
			
			.product-cats-list li:last-child {
				border-bottom: none;
			}
			
			.product-cats-list li:hover {
				padding-left: 8px;
			}
			
			.product-cats-list a {
				color: white;
				text-decoration: none;
				font-weight: 500;
				font-size: 15px;
				transition: color 0.2s ease;
			}
			
			.product-cats-list a:hover {
				color: #c9a961;
			}
			
			.product-cats-list .count {
				background-color: #f0f0f0;
				color: #777;
				font-size: 12px;
				padding: 3px 8px;
				border-radius: 12px;
			}
			
			/* Color filter styling */
			.filter-items.color li {
				display: inline-block;
				margin-right: 10px;
				margin-bottom: 10px;
			}
			
			.filter-items.color a {
				display: flex;
				align-items: center;
				color: #555;
				text-decoration: none;
				font-size: 14px;
				transition: all 0.2s ease;
			}
			
			.filter-items.color a:hover {
				color: #c9a961;
				transform: translateY(-2px);
			}
			
			.color-wrap {
				display: flex;
				align-items: center;
			}
			
			.color {
				width: 16px;
				height: 16px;
				border-radius: 50%;
				margin-right: 6px;
				border: 1px solid rgba(0, 0, 0, 0.1);
			}
			
			/* Size filter styling */
			.filter-items.text li {
				display: inline-block;
				margin-right: 10px;
				margin-bottom: 10px;
			}
			
			.filter-items.text a {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 50px;
				height: 40px;
				border: 1px solid #eee;
				color: #555;
				text-decoration: none;
				font-size: 14px;
				transition: all 0.2s ease;
			}

			.filter-items.text a:hover {
				border-color: #c9a961;
				color: #c9a961;
				background-color: rgba(201, 169, 97, 0.1);
			}
			
			/* Brand filter styling */
			.filter-items.image li {
				display: inline-block;
				margin-right: 10px;
				margin-bottom: 10px;
				width: 60px;
				height: 40px;
				border: 1px solid #eee;
				padding: 5px;
				transition: all 0.2s ease;
			}
			
			.filter-items.image li:hover {
				border-color: #c9a961;
				transform: translateY(-3px);
				box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
			}
			
			.filter-items.image img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}
			
			/* Featured products styling */
			.products-list {
				list-style: none;
				padding: 0;
				margin: 0;
			}
			
			.product-item {
				display: flex;
				padding: 15px 0;
				border-bottom: 1px solid #eee;
				transition: all 0.2s ease;
			}
			
			.product-item:last-child {
				border-bottom: none;
			}
			
			.product-item:hover {
				background-color: rgba(201, 169, 97, 0.05);
				margin: 0 -20px;
				padding-left: 20px;
				padding-right: 20px;
			}
			
			.product-item .product-image {
				width: 70px;
				height: 70px;
				margin-right: 15px;
				flex-shrink: 0;
			}
			
			.product-item img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				border-radius: 4px;
			}
			
			.product-content {
				flex-grow: 1;
			}
			
			.product-item .product-title {
				font-size: 14px;
				margin: 0 0 5px;
				line-height: 1.4;
			}
			
			.product-item .product-title a {
				color: white;
				text-decoration: none;
				transition: color 0.2s ease;
			}
			
			.product-item .product-title a:hover {
				color: white;
			}
			.btn-main{
            
                color: white;
            }
            			.btn-main a{
                                background-color: white;
                            color:white
                        }
			.product-item .price {
				font-size: 15px;
				font-weight: 600;
				color: white;
			}
			    .block-intro.layout-3 .intro-title,.block-intro.layout-3 .intro-item{
                    color: white!important;
                }
			/* Responsive styles */
			@media (max-width: 767px) {
				.filter-sidebar {
					width: 280px;
					left: -300px;
					padding: 20px;
				}
				
				.filter-sidebar-header h3 {
					font-size: 20px;
				}
				
				.filter-sidebar-content .block-title h2 {
					font-size: 16px;
					padding: 12px 15px;
				}
				
				.filter-sidebar-content .block-content {
					padding: 12px 15px;
				}
			}
			
			@media (max-width: 480px) {
				.filter-sidebar {
					width: 85%;
					left: -100%;
					padding: 15px;
				}
				
				.filter-sidebar-header h3 {
					font-size: 18px;
				}
				
				.filter-sidebar-content .block {
					margin-bottom: 25px;
				}
			}
            .blog-img img{
                max-height: 500px!important;
                width: 100%;
                object-fit: cover;
                margin-top: 2rem;
                border-radius: 10px;
            }
            .btn-filter-sidebar{
                width: 150px;
                height: 40px;
                background-color: #ffffff;
                color: black;   
            }
            .products-topbar{
              
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }


            /* Compare popup mobile cards */
			.compare-cards-mobile {
				display: none;
			}

			@media (max-width: 767px) {
				.compare-popup-inner {
					padding: 12px;
					align-items: flex-end;
				}
				.compare-table {
					width: 100%;
				}
				.compare-table-inner {
					max-height: 80vh;
					overflow-y: auto;
					padding: 12px 8px 16px;
				}
				.compare-table-desktop {
					display: none;
				}
				.compare-cards-mobile {
					display: flex;
					flex-direction: column;
					gap: 12px;
					width: 100%;
				}
				.compare-card {
					background: black;
					border-radius: 12px;
					padding: 12px 12px 10px;
					box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
					width: 100%;
					box-sizing: border-box;
				}
				.compare-card-header {
					display: flex;
					justify-content: space-between;
					align-items: center;
					margin-bottom: 8px;
				}
				.compare-card-title {
					font-size: 14px;
					font-weight: 600;
					margin: 0;
				}
				.compare-card-remove {
					font-size: 11px;
					text-transform: uppercase;
					letter-spacing: 0.04em;
					color: #ef4444;
					cursor: pointer;
					border: none;
					background: transparent;
					padding: 2px 4px;
				}
				.compare-card-body {
					display: grid;
					grid-template-columns: 1fr;
					row-gap: 6px;
				}
				.compare-card-row {
					display: flex;
					justify-content: space-between;
					align-items: flex-start;
					column-gap: 8px;
					font-size: 12px;
				}
				.compare-card-row-label {
					font-weight: 600;
					color: white;
					min-width: 80px;
				}
				.compare-card-row-value {
					flex: 1;
					text-align: left;
				}
				.compare-card-row-image {
					justify-content: center;
					margin-bottom: 4px;
				}
				.compare-card-row-image .compare-card-row-label {
					display: none;
				}
				.compare-card-row-image .compare-card-row-value {
					text-align: center;
				}
				.compare-card-row-image img {
					max-width: 120px;
					height: auto;
					border-radius: 10px;
				}
                .shop-cart .cart-items tbody tr td.product-remove a:before{
                    display: none!important;
                }
				.compare-card-price {
					font-weight: 600;
					color: white;
				}
				.compare-card-actions .button,
				.compare-card-actions a {
					display: inline-block;
					padding: 6px 12px;
					border-radius: 999px;
					border: 1px solid white;
					font-size: 11px;
					text-transform: uppercase;
					letter-spacing: 0.04em;
				}
				.compare-card-row-longtext {
					align-items: flex-start;
				}
				.compare-card-row-longtext .compare-card-row-value {
					text-align: left;
				}
			}

            .banner-img{
                max-height: 500px;
            }

            .title-slider2 {
    background: linear-gradient(
        120deg,
        #c8c8c8 20%,
        #080823 40%,
        #000000 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}
.description-slider1 {
    color: #101a22!important;
 margin-top: 10px;
 margin-bottom: 10px;
}
.exp-btn:hover{
    background-color: #101a22!important;
}
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 85px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 9999999999;
    background-color: #000000;
}
[class~=back-top][class~=button-show]{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
 border-radius: 50px;
}
.floating-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Show after scroll */
.floating-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effect */
.floating-whatsapp:hover {
    transform: scale(1.08);
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 200px;
    }
}
.product-button .product-quickview a i{
    color:black;
}
.diamond-rain{
  position:relative;
  width:100%;
  height:100%;
}

.jewel{
  width:40px;
  position:absolute;
  animation: jewelFall 6s linear infinite;
  filter: drop-shadow(0 0 6px #fff);
}

.jewel:nth-child(1){ left:10%; animation-delay:0s; }
.jewel:nth-child(2){ left:50%; animation-delay:2s; }
.jewel:nth-child(3){ left:80%; animation-delay:4s; }

@keyframes jewelFall{
  0%{
    top:-50px;
    transform:rotate(0deg);
  }
  100%{
    top:110%;
    transform:rotate(360deg);
  }
}

/* ═══════════════════════════════════════════════════════
   LAY DIAMONDS — SHOWCASE SECTION (home hero cards)
   ═══════════════════════════════════════════════════════ */

.ld-showcase-section {
    background: #09090b;
    padding: 0;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
}

/* ── Side-by-side grid ── */
.ld-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 72vh;
}

/* ── Base card ── */
.ld-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    min-height: 520px;
}

/* ── Full-bleed background layer ── */
.ld-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── Image slider ── */
.ld-slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    animation: ldSlide 22s ease-in-out infinite;
    will-change: transform;
}

.ld-slide {
    flex: 0 0 25%;
    height: 100%;
    overflow: hidden;
}

.ld-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 7s ease;
}

.ld-card:hover .ld-slide img {
    transform: scale(1.06);
}

@keyframes ldSlide {
    0%,18%   { transform: translateX(0); }
    22%,43%  { transform: translateX(-25%); }
    47%,68%  { transform: translateX(-50%); }
    72%,93%  { transform: translateX(-75%); }
    97%,100% { transform: translateX(0); }
}

/* ── Video background ── */
.ld-video-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ld-video-mask iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 160%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

/* ── Gradient overlay (bottom-heavy, dark) ── */
.ld-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top,
            rgba(4,2,1,0.92) 0%,
            rgba(4,2,1,0.55) 45%,
            rgba(4,2,1,0.18) 75%,
            transparent 100%);
    transition: background 0.5s ease;
}

.ld-card:hover .ld-card-overlay {
    background:
        linear-gradient(to top,
            rgba(4,2,1,0.96) 0%,
            rgba(4,2,1,0.68) 50%,
            rgba(4,2,1,0.28) 80%,
            transparent 100%);
}

/* ── Card content body ── */
.ld-card-body {
    position: relative;
    z-index: 2;
    padding: clamp(1.4rem, 4vw, 2.8rem) clamp(1.4rem, 4vw, 2.8rem) clamp(2rem, 5vw, 3.2rem);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transform: translateY(8px);
    transition: transform 0.45s cubic-bezier(.22,.68,0,1.2);
}

.ld-card:hover .ld-card-body {
    transform: translateY(0);
}

/* ── Eyebrow label ── */
.ld-card-eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.65rem, 1.2vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d4b06a;
    margin-bottom: 0.2rem;
}

/* ── Main title ── */
.ld-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 600;
    line-height: 1.08;
    color: #faf5ec;
    letter-spacing: 0.02em;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

/* ── Description ── */
.ld-card-desc {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.82rem, 1.5vw, 0.97rem);
    font-weight: 400;
    color: rgba(250,245,236,0.82);
    line-height: 1.6;
    max-width: 420px;
    margin: 0.2rem 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s 0.05s ease, transform 0.4s 0.05s ease;
}

.ld-card:hover .ld-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── Feature pills ── */
.ld-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.4rem 0 0.6rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease;
}

.ld-card:hover .ld-card-features {
    opacity: 1;
    transform: translateY(0);
}

.ld-card-features span {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.65rem, 1.1vw, 0.74rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f0e2bc;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,176,106,0.35);
    border-radius: 40px;
    padding: 0.28rem 0.85rem;
    backdrop-filter: blur(4px);
}

/* ── CTA row ── */
.ld-cta-row {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.6rem;
}

.ld-cta-btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.72rem, 1.3vw, 0.84rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0d0a06;
    background: linear-gradient(135deg, #e8c96a 0%, #f5dea0 45%, #c9a14a 100%);
    border-radius: 50px;
    padding: clamp(0.6rem,1.2vw,0.78rem) clamp(1.2rem,2.5vw,1.8rem);
    box-shadow: 0 4px 18px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,176,106,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    white-space: nowrap;
}

.ld-cta-btn:hover,
.ld-card:hover .ld-cta-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 24px rgba(212,176,106,0.3);
    filter: brightness(1.07);
}

.ld-cta-btn--gold {
    background: linear-gradient(135deg, #fff9ee 0%, #f5dea0 50%, #d4aa50 100%);
}

.ld-cta-arrow {
    font-size: 1.3rem;
    color: #d4b06a;
    transition: transform 0.3s ease;
    line-height: 1;
}

.ld-card:hover .ld-cta-arrow {
    transform: translateX(5px);
}

/* ── Corner watermark ── */
.ld-card-watermark {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    z-index: 2;
    opacity: 0.22;
    pointer-events: none;
    transition: opacity 0.4s;
}

.ld-card-watermark img {
    width: clamp(56px, 8vw, 90px);
    height: auto;
    filter: invert(1) brightness(2);
}

.ld-card:hover .ld-card-watermark {
    opacity: 0.38;
}

/* ── Gold border accent between cards ── */
.ld-card--collection {
    border-right: 1px solid rgba(212,176,106,0.18);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ld-duo-grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .ld-card {
        min-height: 58vw;
    }

    .ld-card--collection {
        border-right: none;
        border-bottom: 1px solid rgba(212,176,106,0.18);
    }

    .ld-card-desc,
    .ld-card-features {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 540px) {
    .ld-card {
        min-height: 72vw;
    }

    .ld-card-body {
        padding: 1.2rem 1.2rem 1.8rem;
    }

    .ld-card-features span {
        font-size: 0.65rem;
        padding: 0.22rem 0.7rem;
    }
}

@media (max-width: 380px) {
    .ld-card {
        min-height: 82vw;
    }
}
       .julli-video-atelier {
            background-color: #0a0601;  /* deep black, warm undertone */
            background-image: radial-gradient(circle at 15% 25%, rgba(194, 150, 60, 0.03) 0%, transparent 35%),
                              radial-gradient(circle at 85% 70%, rgba(240, 200, 100, 0.02) 0%, transparent 45%);
            padding: 4rem 1.5rem;
            font-family: 'Cormorant Garamond', 'Times New Roman', serif;
            position: relative;
            isolation: isolate;
       
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .gold-motes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            background-image: radial-gradient(3px 3px at 18% 62%, #f3da9c 1px, transparent 1px),
                              radial-gradient(2px 2px at 81% 33%, #e5bf73 1px, transparent 1px),
                              radial-gradient(4px 4px at 44% 91%, #ffeba7 1px, transparent 1px),
                              radial-gradient(2px 2px at 7% 19%, #dbb45c 1px, transparent 1px),
                              radial-gradient(5px 5px at 93% 77%, #cba458 1px, transparent 1px);
            background-repeat: no-repeat;
            opacity: 0.3;
            animation: moteFloat 18s infinite alternate;
        }
        @keyframes moteFloat {
            0% { opacity: 0.15; transform: translate(0, 0); }
            100% { opacity: 0.4; transform: translate(-3%, -4%); }
        }

        /* headline with refined sparkle */
        .yt-gallery-headline {
            max-width: 100%;
            margin: 0 auto 3rem auto;
            font-size: 3.4rem;
            font-weight: 500;
            color: white;
            letter-spacing: 0.2em;
  font-family: "InterCustom", sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.8rem;
            position: relative;
            z-index: 20;
            text-align: center;
        }
        .yt-gallery-headline::before,
        .yt-gallery-headline::after {
            content: "◈";
            font-size: 2.8rem;
            color: #ffffff;
            animation: shineCross 3s infinite alternate;
        }
        .yt-gallery-headline::after {
            animation-delay: 1.2s;
        }
        @keyframes shineCross {
            0% { opacity: 0.5; transform: scale(0.9) rotate(-5deg); }
            100% { opacity: 1; transform: scale(1.2) rotate(5deg); text-shadow: 0 0 15px #f9e2b0; }
        }

        /* === VIDEO GRID: 3 cards laptop, 2 tablet, 2 mobile === */
        .yt-mesh-six {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 1.8rem;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 30;
        }
            .yt-mesh-six-1{
                   display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 1.8rem;
            max-width: 100%;
          
            position: relative;
            z-index: 30;
            }
        /* ===== CARD UNIQUE ===== */
        .yt-prive-card {
            background: #fdf9f0;  /* pearl white */
         
            overflow: hidden;
            box-shadow: 0 25px 45px -15px #010100, 0 0 0 1px rgba(200, 160, 70, 0.25) inset;
            transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            border: 1px solid rgba(190, 150, 60, 0.3);
            height: 100%;
            text-decoration: none;
            color: inherit;
            position: relative;
            will-change: transform;
        }

        .yt-prive-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 45px 65px -8px #0a0400, 0 0 0 2px rgba(255,215,0,0.6) inset;
        }

        /* golden border overlay */
        .yt-prive-card::after {
            content: '';
            position: absolute;
            inset: 0;
           
            padding: 2px;
            background: linear-gradient(145deg, #edd9a8, #d1e7fd, #faeac2);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.2;
            transition: 0.3s;
        }
        .yt-prive-card:hover::after {
            opacity: 1;
        }

        /* --- YouTube container: uses YouTube embed with unique play on hover --- */
        .yt-thumb-holder {
            width: 100%;
            aspect-ratio: 16 / 9;   /* widescreen for YouTube */
            background: #1e1811;
            position: relative;
            overflow: hidden;
           
        }

        .yt-thumb-holder iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
            pointer-events: none;      /* initially no interaction, we control via parent hover */
        }



        .yt-prive-card:hover .yt-thumb-holder::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* category tag (bottom left) */
        .cat-yt-tag {
            position: absolute;
            bottom: 12px;
            left: 16px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(5px);
            color: #f7e5bc;
            border: 1px solid #efefef;
            border-radius: 40px;
            padding: 0.2rem 1.2rem;
            font-size: 0.7rem;
            letter-spacing: 0.1rem;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            z-index: 26;
        }

        /* --- card meta info --- */
        .yt-card-meta {
            padding: 1.2rem 1.5rem 1.6rem 1.5rem;
            background: #fdfaf2;
        }

        .yt-cat-name {
            font-size: 1.9rem;
            font-weight: 600;
            color: #1f1912;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: 'Cormorant Garamond', serif;
        }
        .yt-cat-name i {
            color: #000000;
            font-style: normal;
            font-size: 2rem;
        }

        .yt-divider-micro {
            height: 2px;
            width: 50px;
            background: linear-gradient(90deg, #dbbc78, #f3e1b3);
            margin: 0.4rem 0 0.6rem 0;
        }

        .yt-description {
            font-family: 'Inter', sans-serif;
            color: #413a2e;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        .yt-footnote {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px dashed #070707;
            padding-top: 0.8rem;
            font-size: 0.8rem;
        }
        .yt-hint {
            background: #16110b;
            color: #ffffff;
            border-radius: 30px;
            padding: 0.2rem 1rem;
        }
        .yt-explore {
            color: #000000;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.2rem;
            font-size: 17px;
        }
        .yt-explore::after {
            content: "⤴";
            font-size: 1rem;
        }

        /* === RESPONSIVE BREAKPOINTS === */
        @media screen and (max-width: 900px) {
            .yt-mesh-six,.yt-mesh-six-1 {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            .yt-gallery-headline {
                font-size: 2.8rem;
                gap: 1rem;
            }
        }

        @media screen and (max-width: 560px) {
            .yt-mesh-six,.yt-mesh-six-1 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .yt-gallery-headline {
                font-size: 1rem;
                letter-spacing: 0.1rem;
            }
            .yt-gallery-headline::before,
            .yt-gallery-headline::after {
                font-size: 2rem;
            }
            .julli-video-atelier {
                padding: 2rem 0.8rem;
          
            }
            .yt-cat-name {
                font-size: 1.4rem;
            }
            .yt-card-meta {
                padding: 0.8rem 1rem 1rem 1rem;
            }
            .yt-card-meta{
                display: none;
            }
        }
   
     	/* Premium Black Modal Styles */
		.premium-modal {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.9); /* Darker backdrop */
			backdrop-filter: blur(8px);
			z-index: 999999999; /* Extremely high z-index to guarantee it sits above headers/navbars */
			display: none;
			justify-content: center;
			align-items: center;
			opacity: 0;
			transition: opacity 0.4s ease;
		}
		.premium-modal.show {
			display: flex;
			opacity: 1;
		}
		.premium-modal-content {
			background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
			color: #fff;
			border: 1px solid rgba(255,255,255,0.1);
			border-radius: 16px;
			width: 90%;
			max-width: 600px;
			max-height: 95vh;
			overflow-y: auto;
			padding: 30px 40px;
			position: relative;
			transform: scale(0.95) translateY(20px);
			transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
		}
		.premium-modal.show .premium-modal-content {
			transform: scale(1) translateY(0);
		}
		.premium-modal-close {
			position: absolute;
			top: 15px;
			right: 20px;
			font-size: 28px;
			color: #888;
			cursor: pointer;
			line-height: 1;
			transition: all 0.3s ease;
			padding: 5px;
		}
		.premium-modal-close:hover {
			color: #fff;
			transform: rotate(90deg);
		}
		.premium-modal-title {
			font-size: 26px;
			font-weight: 400;
			text-align: center;
			margin-bottom: 25px;
			letter-spacing: 1.5px;
			font-family: "Cormorant Garamond", serif;
			background: linear-gradient(to right, #fff, #999);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}
		.premium-form-group {
			margin-bottom: 15px;
			width: 100%;
		}
		.premium-form-row {
			display: flex;
			gap: 15px;
		}
		.premium-form-group label {
			display: block;
			font-size: 13px;
			margin-bottom: 6px;
			color: white;
			display: flex;
			font-weight: 300;
			letter-spacing: 0.5px;
			text-transform: uppercase;
		}
		.premium-form-group input[type="text"],
		.premium-form-group input[type="tel"],
		.premium-form-group input[type="email"],
		.premium-form-group textarea {
			width: 100%;
			background: rgba(25, 25, 25, 0.8);
			border: 1px solid #333;
			color: #fff;
			padding: 12px 14px;
			border-radius: 8px;
			font-size: 14px;
			transition: all 0.3s ease;
			font-family: inherit;
		}
		.premium-form-group textarea {
			min-height: 80px;
			resize: none;
		}
		.premium-form-group input:focus,
		.premium-form-group textarea:focus {
			outline: none;
			border-color: #666;
			background: rgba(40, 40, 40, 0.9);
			box-shadow: 0 0 15px rgba(255,255,255,0.05);
		}
		.premium-file-label {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			background: rgba(25, 25, 25, 0.8);
			border: 1px dashed #555;
			border-radius: 8px;
			padding: 15px 10px;
			cursor: pointer;
			transition: all 0.3s ease;
			color: #aaa;
			font-size: 12px;
			text-align: center;
			height: 100%;
		}
		.premium-file-label i {
			font-size: 20px;
			margin-bottom: 6px;
			color: #e0e0e0;
		}
		.premium-file-label:hover {
			border-color: #999;
			color: #fff;
			background: rgba(40, 40, 40, 0.9);
			transform: translateY(-2px);
		}
		.premium-file-label input {
			display: none;
		}
		.upload-row {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 12px;
			margin-bottom: 15px;
		}
		.premium-submit-btn {
			width: 100%;
			background: linear-gradient(135deg, #fff 0%, #d4d4d4 100%);
			color: #000;
			border: none;
			padding: 14px;
			font-size: 15px;
			font-weight: 600;
			border-radius: 8px;
			cursor: pointer;
			margin-top: 5px;
			transition: all 0.3s ease;
			letter-spacing: 1px;
			text-transform: uppercase;
		}
		.premium-submit-btn:hover {
			background: #fff;
			box-shadow: 0 5px 15px rgba(255,255,255,0.3);
			transform: translateY(-2px);
		}
		/* Scrollbar for modal */
		.premium-modal-content::-webkit-scrollbar {
			width: 6px;
		}
		.premium-modal-content::-webkit-scrollbar-track {
			background: rgba(0,0,0,0.2); 
			border-radius: 10px;
		}
		.premium-modal-content::-webkit-scrollbar-thumb {
			background: #444; 
			border-radius: 10px;
		}
		.premium-modal-content::-webkit-scrollbar-thumb:hover {
			background: #666; 
		}
		@media (max-width: 768px) {
			.premium-form-row {
				flex-direction: column;
				gap: 0;
			}
			.upload-row {
				grid-template-columns: 1fr;
				gap: 10px;
			}
			.premium-modal-content {
				padding: 25px 20px;
			}
		}

        	.cart-addons-section {
			background: #fafafa;
			border: 1px solid #ebebeb;
			border-radius: 8px;
			padding: 20px;
			margin-bottom: 25px;
			color: #333;
		}

		.addon-header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-bottom: 15px;
		}

		.addon-nav-arrows {
			display: flex;
			gap: 5px;
		}

		.addon-arrow {
			background: #fff;
			border: 1px solid #e0e0e0;
			color: #333;
			width: 28px;
			height: 28px;
			border-radius: 4px;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.2s;
			font-size: 16px;
		}

		.addon-arrow:hover {
			background: #111;
			color: #fff;
			border-color: #111;
		}

		.addon-arrow:disabled {
			opacity: 0.5;
			cursor: not-allowed;
		}

		.addon-title {
			font-family: 'Lato', sans-serif;
			font-size: 16px;
			font-weight: 700;
			text-transform: uppercase;
			color: #111;
			margin: 0;
			letter-spacing: 0.5px;
		}

		/* Slider Track */
		.addon-slider-wrap {
			overflow: hidden;
			margin-bottom: 15px;
			padding: 2px; /* Prevent shadow clipping */
		}

		.addon-slider-track {
			display: flex;
			gap: 10px;
			transition: transform 0.3s ease-out;
		}

		/* Addon Card */
		.addon-card {
			display: block;
			position: relative;
			cursor: pointer;
			margin: 0;
			flex: 0 0 calc(33.333% - 6.66px); /* 3 cards visible minus gap calculation */
			min-width: calc(33.333% - 6.66px);
		}

		.addon-card input[type="radio"] {
			display: none;
		}

		.addon-card-inner {
			background: #fff;
			border: 1px solid #e0e0e0;
			border-radius: 6px;
			padding: 10px 5px;
			text-align: center;
			transition: all 0.2s ease;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			height: 100%;
		}

		.addon-card:hover .addon-card-inner {
			border-color: #202020;
			box-shadow: 0 4px 10px rgba(0,0,0,0.05);
		}

		.addon-card input[type="radio"]:checked + .addon-card-inner {
			border-color: #000000;
			background: rgba(201, 169, 97, 0.05);
		}

		.addon-card-inner img {
			width: 45px;
			height: 45px;
			object-fit: contain;
			margin-bottom: 8px;
		}

		.addon-details {
			line-height: 1.2;
		}

		.addon-name {
			font-size: 12px;
			font-weight: 600;
			color: #333;
			display: block;
		}

		.addon-price {
			font-size: 11px;
			color: #888;
			font-weight: 500;
		}

		.addon-card input[type="radio"]:checked + .addon-card-inner .addon-price {
			color: #000000;
		}

		.addon-check {
			position: absolute;
			top: -5px;
			right: -5px;
			width: 18px;
			height: 18px;
			background: #060606;
			color: #fff;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			opacity: 0;
			transform: scale(0.5);
			transition: all 0.2s ease;
			box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		}

		.addon-check i {
			font-size: 12px;
			line-height: 1;
		}

		.addon-card input[type="radio"]:checked ~ .addon-check {
			opacity: 1;
			transform: scale(1);
		}

		/* Inputs */
		.addon-input-group {
			margin-bottom: 12px;
		}

		.addon-input-group.coupon-group {
			border-top: 1px dashed #ddd;
			padding-top: 15px;
			margin-bottom: 0;
		}

		.addon-input {
			width: 100%;
			background: #fff;
			border: 1px solid #e0e0e0;
			color: #333;
			padding: 10px 15px;
			border-radius: 4px;
			font-size: 13px;
			transition: border-color 0.2s;
		}

		.addon-input::placeholder {
			color: #999;
		}

		.addon-input:focus {
			border-color: #111;
			outline: none;
		}

		.coupon-flex {
			display: flex;
			gap: 8px;
		}

		.addon-apply-btn {
			background: #111;
			color: #fff;
			border: none;
			padding: 0 16px;
			border-radius: 4px;
			font-weight: 600;
			font-size: 13px;
			cursor: pointer;
			transition: background 0.2s;
			white-space: nowrap;
			text-transform: uppercase;
		}

		.addon-apply-btn:hover {
			background: #000000;
		}
/* Video Reels Slider */
.video-reviews-section {
    position: relative;
    padding-bottom: 20px;
}

.video-reels-slider .slick-slide {
    margin: 0 10px;
}

.reel-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
    transition: opacity 0.3s;
}

.play-btn {
    align-self: flex-end;
    font-size: 24px;
    color: white;
    background: rgba(0,0,0,0.4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.reel-info {
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s, opacity 0.3s;
}

.reel-info h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reel-info p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-wrapper.playing .reel-overlay {
    opacity: 0;
}

.reel-wrapper:hover .reel-overlay {
    opacity: 1;
}

.reel-wrapper.playing:hover .play-btn {
    opacity: 1;
}

@media (max-width: 991px) {
    .reel-wrapper {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .reel-wrapper {
        height: 320px;
    }
    .video-reels-slider .slick-slide {
        margin: 0 5px;
    }
    .reel-info h4 {
        font-size: 13px;
    }
    .reel-info p {
        font-size: 12px;
    }
}

   :root {
      --ldv-black:      #000000;
      --ldv-offblack:   #0c0c0c;
      --ldv-charcoal:   #1a1a1a;
      --ldv-muted:      #2e2e2e;
      --ldv-border:     #2f2f2f;
      --ldv-mid:        #ffffff;
      --ldv-silver:     #ffffff;
      --ldv-white:      #ffffff;
      --ldv-offwhite:   #f5f5f5;
      --ldv-serif:      'Cormorant Garamond', serif;
      --ldv-sans:       'Montserrat', sans-serif;
    }

    /* ── SECTION WRAPPER ── */
    .ldv-section {
      background: var(--ldv-black);
      color: var(--ldv-white);
      padding: 100px 24px;
      position: relative;
      overflow: hidden;
      font-family: var(--ldv-sans);
    }

    /* Noise texture overlay */
    .ldv-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
    }

    .ldv-container {
 
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* ── HEADER ── */
    .ldv-header {
      text-align: center;

    }

    .ldv-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--ldv-sans);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--ldv-silver);
  
    }
    .ldv-eyebrow span { display: block; width: 32px; height: 1px; background: var(--ldv-silver); }

    .ldv-headline {
      font-family: var(--ldv-serif);
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.5px;
      color: var(--ldv-white);
      margin-bottom: 18px;
    }
    .ldv-headline em {
      font-style: italic;
      font-weight: 300;
    }

    .ldv-subtitle {
      font-family: var(--ldv-sans);
      font-size: 11px;
      letter-spacing: 6px;
      color: var(--ldv-mid);
      text-transform: uppercase;
    }

    /* ── EQUATION BANNER ── */
    .ldv-equation {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 70px;
      flex-wrap: wrap;
    }
    .ldv-eq-item {
      font-family: var(--ldv-serif);
      font-size: clamp(16px, 2.5vw, 22px);
      font-weight: 400;
      letter-spacing: 3px;
      color: var(--ldv-silver);
    }
    .ldv-eq-highlight {
      color: var(--ldv-white);
      font-weight: 600;
      font-size: clamp(18px, 3vw, 26px);
    }
    .ldv-eq-op {
      font-size: clamp(20px, 3vw, 28px);
      color: var(--ldv-border);
    }
    .ldv-eq-line {
      width: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--ldv-border), transparent);
    }

    /* ── DUAL CARD GRID ── */
    .ldv-dual-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-bottom: 2px;
      background: var(--ldv-border);
    }

    @media (max-width: 768px) {
      .ldv-dual-grid { grid-template-columns: 1fr; }
    }

    /* ── CARD ── */
    .ldv-card {
      background: var(--ldv-offblack);
      padding: 50px 40px;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 480px) {
      .ldv-card { padding: 36px 24px; }
    }

    .ldv-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--ldv-white) 50%, transparent 100%);
      opacity: 0.08;
    }

    .ldv-card-icon {
      width: 52px; height: 52px;
      border: 1px solid var(--ldv-border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 28px;
      position: relative;
    }
    .ldv-card-icon svg { width: 24px; height: 24px; stroke: var(--ldv-white); fill: none; stroke-width: 1.5; }

    .ldv-card-title {
      font-family: var(--ldv-sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--ldv-silver);
      margin-bottom: 36px;
    }

    /* Steps */
    .ldv-step {
      margin-bottom: 36px;
    }
    .ldv-step:last-of-type { margin-bottom: 0; }

    .ldv-step-num {
      font-family: var(--ldv-sans);
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ldv-mid);
      margin-bottom: 8px;
    }

    .ldv-step-title {
      font-family: var(--ldv-serif);
      font-size: clamp(18px, 2.5vw, 22px);
      font-weight: 400;
      color: var(--ldv-white);
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--ldv-border);
    }

    .ldv-step-body {
      font-size: 12px;
      line-height: 1.85;
      color: var(--ldv-silver);
      margin-bottom: 14px;
    }

    /* Purity pills */
    .ldv-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }
    .ldv-pill {
      font-family: var(--ldv-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2px;
      border: 1px solid var(--ldv-border);
      color: var(--ldv-silver);
      padding: 5px 14px;
      transition: all 0.3s;
      cursor: default;
    }
    .ldv-pill:hover {
      border-color: var(--ldv-white);
      color: var(--ldv-white);
    }
    .ldv-pill-active {
      border-color: var(--ldv-white);
      color: var(--ldv-black);
      background: var(--ldv-white);
      font-weight: 700;
    }

    /* Callout badge */
    .ldv-callout {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--ldv-white);
      color: var(--ldv-black);
      padding: 10px 16px;
      font-family: var(--ldv-sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 20px;
    }
    .ldv-callout-dot {
      width: 6px; height: 6px;
      background: var(--ldv-black);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 4Cs grid */
    .ldv-4cs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--ldv-border);
      margin-bottom: 20px;
    }
    .ldv-c-item {
      background: var(--ldv-charcoal);
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      transition: background 0.3s;
    }
    .ldv-c-item:hover { background: var(--ldv-muted); }

    .ldv-c-number {
      font-family: var(--ldv-serif);
      font-size: 32px;
      font-weight: 300;
      color: var(--ldv-border);
      line-height: 1;
    }
    .ldv-c-label {
      font-family: var(--ldv-sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ldv-white);
    }
    .ldv-c-sub {
      font-size: 10px;
      color: var(--ldv-mid);
      letter-spacing: 1px;
    }

    /* ── BOTTOM FULL-WIDTH ── */
    .ldv-bottom-card {
      background: var(--ldv-offblack);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background-color: var(--ldv-border);
    }

    @media (max-width: 768px) {
      .ldv-bottom-card { grid-template-columns: 1fr; }
    }

    .ldv-bottom-left {
      background: var(--ldv-offblack);
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 480px) {
      .ldv-bottom-left { padding: 40px 24px; }
    }

    .ldv-diamond-label {
      font-family: var(--ldv-sans);
      font-size: 9px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--ldv-mid);
      margin-bottom: 16px;
    }

    .ldv-diamond-heading {
      font-family: var(--ldv-serif);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--ldv-white);
      margin-bottom: 22px;
    }
    .ldv-diamond-heading em { font-style: italic; }

    .ldv-diamond-body {
      font-size: 12px;
      line-height: 2;
      color: var(--ldv-silver);
      margin-bottom: 32px;
    }

    .ldv-exchange-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--ldv-white);
      padding: 14px 28px;
      font-family: var(--ldv-sans);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ldv-white);
      text-decoration: none;
      transition: all 0.35s;
      align-self: flex-start;
      background: transparent;
      cursor: pointer;
    }
    .ldv-exchange-btn:hover {
      background: var(--ldv-white);
      color: var(--ldv-black);
    }
    .ldv-exchange-btn svg {
      width: 14px; height: 14px;
      stroke: currentColor; fill: none; stroke-width: 2;
      transition: transform 0.3s;
    }
    .ldv-exchange-btn:hover svg { transform: translateX(4px); }

    /* Right visual panel */
    .ldv-bottom-right {
      background: var(--ldv-charcoal);
      padding: 60px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      position: relative;
      overflow: hidden;
    }
.view-order-btn{
    background-color: black;
}
    @media (max-width: 480px) {
      .ldv-bottom-right { padding: 40px 24px; }
    }

    /* large watermark diamond */
    .ldv-watermark {
      position: absolute;
      right: -40px; top: 50%;
      transform: translateY(-50%);
      font-family: var(--ldv-serif);
      font-size: 220px;
      color: rgba(255,255,255,0.025);
      line-height: 1;
      user-select: none;
      pointer-events: none;
    }

    .ldv-fact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      position: relative;
      z-index: 1;
    }
    .ldv-fact-line {
      width: 1px;
      background: var(--ldv-border);
      flex-shrink: 0;
      margin-top: 4px;
    }
    .ldv-fact-line-fill {
      width: 1px;
      height: 100%;
      background: var(--ldv-white);
      transform-origin: top;
      animation: ldv-grow 1.2s ease forwards;
      animation-delay: var(--delay, 0s);
      transform: scaleY(0);
    }

    @keyframes ldv-grow {
      to { transform: scaleY(1); }
    }

    .ldv-fact-content {}
    .ldv-fact-label {
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ldv-mid);
      margin-bottom: 4px;
    }
    .ldv-fact-value {
      font-family: var(--ldv-serif);
      font-size: 20px;
      font-weight: 300;
      color: var(--ldv-white);
    }
    .ldv-fact-desc {
      font-size: 11px;
      color: var(--ldv-silver);
      margin-top: 2px;
      line-height: 1.6;
    }

    /* ── DIVIDER ── */
    .ldv-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 60px 0 0;
    }
    .ldv-divider-line { flex: 1; height: 1px; background: var(--ldv-border); }
    .ldv-divider-text {
      font-size: 9px;
      letter-spacing: 4px;
      color: var(--ldv-mid);
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* ── ANIMATE ON SCROLL ── */
    .ldv-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .ldv-reveal.ldv-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===============================
   Jewellery Buttons Section
==================================*/

.mobile-jewellery-actions {
    position: fixed;
    bottom: 90px; /* Adjust if navbar height changes */
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 999;
   
}
/* Scroll Animation */
.mobile-jewellery-actions {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Hidden State */
.mobile-jewellery-actions.hide-on-scroll {
    transform: translateY(120%);
    opacity: 0;
}
/* Base Button Style */
.jewel-btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Ready Made Button */
.jewel-ready {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
}

.jewel-ready:hover {
   color: white;
}

/* Custom Jewellery Button */
.jewel-custom {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.jewel-custom:hover {
    background: #d4af37;
}

/* Make it mobile only */
@media (min-width: 768px) {
    .mobile-jewellery-actions {
        display: none;
    }
    
}
@media (max-width: 376px) {
    .jewel-btn {
    padding: 5px;
    font-size: 10px;
    }

}
@media (max-width: 768px) {
    .copyright{
  margin-bottom: 5rem!important;
}

}



/* Preloader Styles */
.page-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  /* ── Noise grain overlay ── */
  .page-preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Radial glow at center ── */
  .glow-bg {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
  }

  /* ── Corner ornaments ── */
  .corner {
    position: absolute;
    width: 60px; height: 60px;

    border-style: solid;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
  }
  .corner.tl { top: 32px; left: 32px; border-width: 1px 0 0 1px; }
  .corner.tr { top: 32px; right: 32px; border-width: 1px 1px 0 0; }
  .corner.bl { bottom: 32px; left: 32px; border-width: 0 0 1px 1px; }
  .corner.br { bottom: 32px; right: 32px; border-width: 0 1px 1px 0; }

  /* ── Diamond rain ── */
  .diamond-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }

  .diamond {
    position: absolute;
    top: -60px;
    font-size: 16px;
    animation: fall linear infinite;

    opacity: 0;
  }

  /* Stagger each diamond */
  .diamond:nth-child(1)  { left: 5%;  animation-duration: 9s;  animation-delay: 0s; }
  .diamond:nth-child(2)  { left: 13%; animation-duration: 13s; animation-delay: 1.2s; }
  .diamond:nth-child(3)  { left: 22%; animation-duration: 7s;  animation-delay: 2.4s; }
  .diamond:nth-child(4)  { left: 30%; animation-duration: 11s; animation-delay: 0.7s; }
  .diamond:nth-child(5)  { left: 40%; animation-duration: 8s;  animation-delay: 1.8s; }
  .diamond:nth-child(6)  { left: 52%; animation-duration: 10s; animation-delay: 0.3s; }
  .diamond:nth-child(7)  { left: 61%; animation-duration: 12s; animation-delay: 1.5s; }
  .diamond:nth-child(8)  { left: 71%; animation-duration: 8.5s; animation-delay: 0.9s; }
  .diamond:nth-child(9)  { left: 82%; animation-duration: 11s; animation-delay: 2s; }
  .diamond:nth-child(10) { left: 93%; animation-duration: 7.5s; animation-delay: 0.5s; }
  .diamond:nth-child(11) { left: 8%;  animation-duration: 14s; animation-delay: 3s; font-size: 10px; }
  .diamond:nth-child(12) { left: 47%; animation-duration: 9.5s; animation-delay: 2.8s; font-size: 11px; }
  .diamond:nth-child(13) { left: 76%; animation-duration: 6.5s; animation-delay: 1s;  font-size: 12px; }

  @keyframes fall {
    0%   { transform: translateY(-60px) rotate(0deg) scale(0.6); opacity: 0; }
    8%   { opacity: 0.9; }
    88%  { opacity: 0.6; }
    100% { transform: translateY(calc(100vh + 60px)) rotate(540deg) scale(0.4); opacity: 0; }
  }

  /* ── Thin horizontal rule lines ── */


  @keyframes expand-line {
    to { width: 340px; opacity: 1; }
  }

  /* ── Main content ── */
  .preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 48px 56px;
  }

  .greeting {
  font-family: "InterCustom", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 3px;
    align-self: flex-start;   /* moves it to left */
  text-align: left;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    margin-bottom: 20px;
  }

  .preloader-logo {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.5s forwards;
  }

  .preloader-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(201,168,76,0.3));
  }

  /* Fallback if no logo */
  .logo-fallback {
  font-family: "InterCustom", sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
  }

  .subtitle {
  font-family: "InterCustom", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 4px;

    color: white;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .loading-main-title  {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.1rem;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    margin-bottom: 32px;
  }

  .main-title span {
    color: var(--white);
  }

  /* ── Diamond progress bar ── */
  .progress-wrap {
    position: relative;
    width: 240px;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.4s forwards;
  }

  .progress-track {
    height: 1px;
    background: rgba(201,168,76,0.15);
    width: 100%;
  }

  .progress-fill {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light));
    width: 0%;
    animation: fill-bar 3s ease 1.6s forwards;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  }

  @keyframes fill-bar {
    to { width: 100%; }
  }

  .progress-diamond {
    position: absolute;
    right: -6px; top: -7px;
    font-size: 13px;
    filter: drop-shadow(0 0 8px var(--gold));
    animation: move-diamond 3s ease 1.6s forwards;
    left: -6px;
  }

  @keyframes move-diamond {
    to { left: calc(100% - 6px); }
  }

  .loading-text {
     font-family: "InterCustom", sans-serif;
    font-weight: 100;
    font-size: 0.58rem;
    letter-spacing: 4px;


    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
  }
.loading-img{
    width: 400px;
}
  /* ── Fade-out state ── */
  .page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
  }

  /* ── Keyframes ── */
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }


  /* Privacy Policy Custom Enhancements */
  .policy-section h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      color: #bfa37e;
      border-bottom: 1px solid #f1f1f1;
      padding-bottom: 10px;
  }

  .policy-section i {
      color: #bfa37e;
      /* Gold/Diamond theme color */
      font-size: 0.9em;
  }

  .list-styled {
      padding-left: 20px;
      list-style-type: square;
  }

  .list-styled li {
      margin-bottom: 8px;
  }

  .list-check {
      list-style: none;
      padding: 0;
  }

  .list-check li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }

  .list-check i {
      margin-right: 10px;
      font-size: 12px;
  }

  .policy-header .lead {
      font-size: 1.2rem;
      color: #666;
      font-style: italic;
  }
  .policy-footer{
    color: black;
  }

  .bg-light {
      background-color: #f9f9f9 !important;
  }

  .policy-card h3{
    color: white !important;
  }

  .terms-section h4{
    color: white !important;
  }

  .shipping-feature h5{
    color: #868686 !important;
  }
  .shipping-section h4{
    color: white !important;
  }

/* Product Card Image Styles - Same Height and Responsive */
.shop .products-list.grid .product-wapper .products-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.shop .products-list.grid .product-wapper .products-thumb .product-thumb-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop .products-list.grid .product-wapper .products-thumb .product-thumb-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 767px) {
  .shop .products-list.grid .product-wapper .products-thumb {
    padding-top: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .shop .products-list.grid .product-wapper .products-thumb {
    padding-top: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .shop .products-list.grid .product-wapper .products-thumb {
    padding-top: 100%;
  }
}

@media (min-width: 1200px) {
  .shop .products-list.grid .product-wapper .products-thumb {
    padding-top: 100%;
  }
  }