/* ====== IMPORTED CSS ====== */
@import url(../css/micro-animation.css);
@import url(../css/buttons.css);
@import url(../css/product.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* assets/css/style.css */
:root {
    /* Color Variables */
    --primary-color: #003049;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --background-color: #ffffff;
    --bs-text-color: #003049;
    --bs-text-light: #ffffff;
    --bs-text-extra-light: #ffffffc7;

    /* Typography Variables */
    /* --font-family-base: 'Lato', sans-serif; */
    /* --font-family-heading: 'Stardom', cursive; */
    /* --font-family-heading: "Playfair Display", serif; */
    --font-family-base: "Poppins", sans-serif;
    --font-family-heading: "Inter", sans-serif;
    --font-family-script: 'Ms Madi', cursive;
    --font-size-base: 0.95rem;
    --font-size-large: 1.25rem;
    --font-size-medium: 1.125rem;
    --font-size-small: 0.875rem;
    --line-height-base: 1.5;
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    /* Spacing Variables */
    --spacing-unit: 1rem;
    --spacing-small: 0.5rem;
    --spacing-large: 2rem;

    /* Border Variables */
    --border-radius: 0.25rem;
    --border-width: 1px;
    --border-color: #dee2e6;

    /* Width Variables */
    --width-18: 18rem;

    /* Shadow Variables */
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

    /* Transition Variables */
    --base-transition: all 0.3s ease-in-out;
    --base-transition-fast: all 0.1s ease-in-out;
}

@font-face {
    font-family: 'Stardom';
    src: url('../fonts/Stardom-Regular.woff2') format('woff2'),
        url('../fonts/Stardom-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ====== Reset & Common Fixes ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

ul,
ol {
    list-style: none;
}

iframe {
    border: 0;
}

a {
    text-decoration: none;
    color: #0085CA;
}

.w-18 {
    width: var(--width-18);
}

.no-focus {
    outline: none;
    box-shadow: none;
}

.no-shadow {
    box-shadow: none !important;
}

.no-resize {
    resize: none !important;
}

.text-display-none {
    font-size: 0;
    text-indent: -999px;
}

.no-shrink {
    flex-shrink: 0;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-theme-primary {
    background-color: var(--primary-color) !important;
}

body:has(.dropdown-menu.show) .tooltip,
body:has(.modal.show .login-modal__dialog) .tooltip {
    display: none !important;
}

.btn.show {
    border: 1px solid transparent;
}

.dropdown-menu.dropdown-menu-center {
    left: 50%;
    transform: translateX(-50%);
}

.login-dropdown-menu {
    width: 18rem;
    border: none;
    box-shadow: 0 17px 30px #00000036;
}

.login-dropdown-menu span,
.login-dropdown-menu p {
    font-size: 0.9rem;
    line-height: normal;
    padding-left: 1rem;
    padding-right: 1rem;
}

.login-dropdown-menu .button-container {
    padding: 1rem 1rem 0.5rem;
    border-top: 1px solid #e8e8e8;
}

.top-3 {
    top: 1rem !important;
}

.end-3 {
    right: 1rem !important;
}

.bottom-3 {
    bottom: 1rem !important;
}

.start-3 {
    left: 1rem !important;
}

.lh-normal {
    line-height: normal !important;
}

.inverted {
    filter: invert(1) brightness(2);
}

.ps-0-75 {
    padding-left: 0.75rem;
}

/* ====== Global Styles ====== */
body {
    font-family: var(--font-family-base);
    background-color: var(--bs-bg-color);
    color: var(--bs-text-color);
    line-height: 1.6;
}

a {
    color: #0085CA;
    transition: var(--bs-transition);
}

a:hover {
    color: darken(var(--bs-primary), 10%);
}

::selection {
    background-color: var(--primary-color);
    /*background: transparent !important;*/
    color: #ffffff;
}

img::selection {
    background: transparent;
    color: inherit;
}


/* ====== Typography ====== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base);
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--bs-text-color);
}

h1.heading--main,
h2.heading--main,
h3.heading--main,
h4.heading--main,
h5.heading--main,
h6.heading--main {
    font-family: var(--font-family-heading);
    letter-spacing: 0.05rem;
    font-weight: 600;
}

h1.heading--main {
    font-size: 1.75rem;
}

p,
blockquote {
    margin-bottom: 15px;
    color: var(--bs-text-color);
    line-height: 1.5rem;
}

blockquote {
    border-left: 4px solid var(--bs-primary);
    padding-left: 15px;
    font-style: italic;
}

code,
kbd {
    background: var(--bs-light);
    padding: 3px 5px;
    border-radius: 3px;
}

.list-disc {
    list-style-type: disc;
}

/* ====== Layout & Containers ====== */
.row {
    --bs-gutter-x: 1.5rem;
}

.d-grid {
    display: grid;
    gap: 20px;
}

/* ====== Tables & Data Display ====== */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    border: 1px solid var(--bs-secondary);
}

tr:nth-child(even) {
    background: var(--bs-light);
}

/* ====== Utility Classes ====== */
.shadow-lg {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.rounded-xl {
    border-radius: 12px !important;
}

.gap-3 {
    gap: 1rem;
}

/* ====== Ellipsis Classes ====== */
.text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis--1 {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.text-ellipsis--2 {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.text-ellipsis--3 {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.text-ellipsis--4 {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.text-ellipsis--5 {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

/* ====== Custom Scroll ====== */

/* Firefox */
.scroll-box {
    scrollbar-width: thin;
    scrollbar-color: #c3c3c3 transparent;
}

/* WebKit (Chrome, Edge, Safari) */
.scroll-boxy::-webkit-scrollbar {
    width: 6px;
}

.scroll-box::-webkit-scrollbar-track {
    background: #eaeaea;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
    background-color: #9a9a9a;
}

/* ====== Nav Tabs Display ====== */
.nav-tabs-wrapper {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 1rem;
}

.nav-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.nav-tabs {
    border-bottom: 1px solid #E8E8E8;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:hover {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 1rem 0.5rem 1rem !important;
}

.nav-tabs .nav-link {
    color: var(--primary-color);
    opacity: 0.55;
    font-weight: 600;
}

.nav-tabs .nav-link:hover {
    opacity: 1;
}

.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    opacity: 1;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 0;
}

.nav-item:has(.highlighted) {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 100vw;
    padding: 0.5rem 1rem !important;
}

.nav-item:has(.highlighted) a {
    padding-top: 0 !important;
    color: #ffffff;
}

/* ====== Light Mode (Preferred) ====== */
@media (prefers-color-scheme: light) {
    :root {
        --bs-bg-color: #fff;
        --bs-text-color: #003049;
    }

    body {
        background-color: var(--bs-bg-color);
        color: var(--bs-text-color);
    }

    .navbar,
    .card {
        background-color: #f8f9fa;
        color: #212529;
    }
}

/* ====== Badge ====== */
.badge-custom {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border-radius: 100vw;
}

.badge-custom.badge-success {
    background: #DAFFC9;
    color: #226503;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-custom.badge-lg {
    font-size: 1rem;
    font-weight: bold;
    padding-right: 1rem;
}

.badge-custom .icon {
    display: inline-block;
}

/* ====== Form ====== */
label {
    white-space: nowrap;
}

label.label {
    font-size: var(--font-size-small);
}

.form-check {
    padding-left: 1.5em;
}

.subcat {
    width: 100% !important;
    padding: 0;
    margin: 4px 0 0 0;
    border: none;
    outline: none;
    border-top: 1px solid #e7e7e7;
}


.form-check .form-check-input {
    margin-top: .25em;
    width: 1.2em;
    height: 1.2em;
    border-color: #aab6c6;
    margin-left: -1.75em;
}

.form-check-input[type=checkbox] {
    border-radius: 50%;
}

.form-check-input.default[type=checkbox] {
    border-radius: 0.25rem;
}

.form-check-input[type=radio] {
    border-color: #aab6c6;
    margin-top: 0;
    width: 1.2em;
    height: 1.2em;
}

.form-check-input:checked {
    background-color: #005E8F;
    border-color: #005E8F;
}

/* Base: Smooth transition */
.form-check-input {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* When checked: Scale and glow */
.form-check-input:checked {
    animation: checkbox-bounce 0.3s ease;
}

.form-select.form-light_bg,
.form-control.form-light_bg {
    border: 1px solid #d1d1d1;
    background-color: #F8F8F8;
}

.form-label {
    color: #003049;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

@keyframes checkbox-bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ====== Filter Capsule Slider ====== */
.capsule-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.capsule-slider:has(.is-not-scrollable) {
    padding: 0 0;
}

.capsule-slider__track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
    scrollbar-width: none;
}

.capsule-slider__track::-webkit-scrollbar {
    display: none;
}

.capsule-slider__item {
    flex: 0 0 auto;
    cursor: pointer;
}

.capsule-slider__item input {
    display: none;
}

.capsule-slider__label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999rem;
    background-color: #f0f0f0;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.capsule-slider__item input:checked+.capsule-slider__label,
.capsule-slider__item.active .capsule-slider__label {
    background-color: #0a2d3e;
    color: #fff;
}

.capsule-slider__arrow {
    background: #fff;
    border: none;
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.capsule-slider__arrow--left {
    background: url(../images/icons/icon-arrow-left.svg) no-repeat center;
    background-size: 1.5rem;
    position: absolute;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0;
    text-indent: -999px;
    flex-shrink: 0;
}

.capsule-slider__arrow--right {
    background: url(../images/icons/icon-arrow-right.svg) no-repeat center;
    background-size: 1.5rem;
    right: 0;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0;
    text-indent: -999px;
    flex-shrink: 0;
}

.capsule-slider__arrow.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.capsule-slidercapsule-slider.is-not-scrollable {
    padding: 0;
}

/* ====== Header ====== */
/* Slide from left on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse.slide-from-left {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 20rem;
        background: #fff;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        overflow-y: auto;
    }

    .navbar-collapse.slide-from-left .nav-item {
        margin-bottom: 0.5rem;
        background: #ececec;
        padding: 0 0.8rem;
        border-radius: 0.3rem;
    }

    .navbar-collapse.slide-from-left .nav-item .nav-link {
        padding: 0.5rem 0 !important;
        justify-content: space-between;
    }

    .navbar-collapse.slide-from-left .nav-item:has(.highlighted) {
        background: var(--primary-color);
    }

    .navbar-collapse.slide-from-left .nav-item:has(.highlighted) .nav-link {
        padding: 0 !important;
    }

    .navbar-collapse.slide-from-left.show {
        transform: translateX(0);
        margin: 0 !important;
    }

    .navbar-toggler {
        z-index: 1060;
        /* stays above the slide */
    }

    body.offcanvas-open {
        overflow: hidden;
    }
}

.header-actionbar {
    background: #003049;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    text-align: center;
    max-height: 40px;
    overflow: hidden;
    position: relative;
}

.header-actionbar .item.slick-slide {
    text-align: center;
    color: #ffffff;
    font-size: 0.875rem;
    /*text-transform: uppercase;*/
    font-family: var(--font-family-base);
    font-weight: 300;
    height: 1.3rem !important;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 1.5rem #0000000c;
    padding: 1rem 0;
}

.navbar-brand {
    width: 13rem;
    height: 1.25rem;
    background: url(../images/generic/jewelbox-logo.png) no-repeat center;
    background-size: contain;
    display: block;
    margin: 0;
}

.mega-menu {
    box-shadow: 0 32px 1.5rem #00000012;
    border: none;
    top: calc(100% - 2px) !important;
}

.navbar-collapse .navbar-nav {
    column-gap: 1.5rem;
}

.nav-link {
    padding: 0.5rem 0 0 !important;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    border: none;
    background: url(../images/icons/icon-dd-arrow.svg) no-repeat center;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link.active.dropdown-toggle::after,
.navbar-nav .nav-link.show.dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu.fade-in-up {
    animation-duration: 0.3s;
}

.btn-content {
    position: relative;
    width: max-content;
    height: max-content;
}

.btn-content span.status-count {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    background-color: #C00000;
    color: #fff;
    border-radius: 1rem;
    padding: 0.25rem 0.3rem;
    font-size: var(--font-size-small);
    line-height: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid #ffffff;
}

/* Searchbox */
.search {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search__toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.search__box {
    position: absolute;
    top: calc(100% - 1rem);
    left: 50%;
    width: 100%;
    display: none;
    transform: translate(-50%, 10px) !important;
    z-index: 100;
    background: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 10px 1rem #0000000c;
}

.search__box--active {
    opacity: 1;
    display: block;
    transform: translateY(0);
}

.search__input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 3rem;
    border-radius: 30px;
    outline: none;
    background: url(../images/icons/icon-search.svg) no-repeat 1rem center #eaeaea;
}

.search__box.fade-in-up {
    animation-duration: 0.2s;
}

@media (max-width: 768px) {
    .search__box {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-width: 100%;
    }

    .search__toggle {
        display: none;
    }
}

/* Mobile view - always show search */
@media (max-width: 768px) {
    .search-icon-btn {
        display: none;
    }

    .search-box {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-width: 100%;
    }
}

/* ====== Top Search Bar ====== */
.search-bar {
    width: inherit;
}

/* ====== Breadcrumb ====== */
.breadcrumb-nav {
    padding: 1rem 0;
    font-size: 0.95rem;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb-nav__list {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 !important;
}

.breadcrumb-nav__item {
    flex-shrink: 0;
}

.breadcrumb-nav__link {
    text-decoration: none;
    color: var(--bs-text-color);
    transition: color 0.2s;
}

.breadcrumb-nav__link:hover {
    color: var(--bs-text-color);
}

.breadcrumb-nav__item.active {
    color: var(--bs-text-color);
    font-weight: 600;
    pointer-events: none;
}

.breadcrumb-nav::-webkit-scrollbar {
    display: none;
}

.breadcrumb-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ====== Container ====== */
/* .container {
    max-width: 1200px;
} */

.container-fluid--no-padding {
    padding: 0;
}

/* ====== Section ====== */
section.section {
    padding: 1rem 0 2rem;
}

.section__header {
    margin-bottom: 3rem;
}

.section-header-container {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

.section-header-container .paragraph {
    width: 80%;
    margin: 0 auto;
}

.icon {
    display: block;
    width: 2.5rem;
    font-size: 0;
    text-indent: -999px;
}

.section__header .icon {
    margin: 0 auto 0.5rem;
}

.icon-16 {
    width: 1rem;
    height: 1rem;
}

.icon-18 {
    width: 1.125rem;
    height: 1.125rem;
}

.icon-20 {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-24 {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-28 {
    width: 1.75rem;
    height: 1.75rem;
}

.icon-32 {
    width: 2rem;
    height: 2rem;
}

.icon-40 {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-48 {
    width: 3rem;
    height: 3rem;
}

.icon-56 {
    width: 3.5rem;
    height: 3.5rem;
}

.icon-64 {
    width: 4rem;
    height: 4rem;
}

.icon-live-call {
    background: url(../images/icons/icon-live-call.svg) no-repeat center;
    background-size: contain;
}

.icon-cart {
    background: url(../images/icons/icon-cart-dark.svg) no-repeat center;
    background-size: contain;
}

.icon-stock {
    background: url(../images/icons/icon-stock.svg) no-repeat center;
    background-size: contain;
}

.icon-certificate {
    background: url(../images/icons/icon-certificate.svg) no-repeat center;
    background-size: contain;
}

.icon-check-circle-green {
    background: url(../images/icons/icon-check-circle-green.svg) no-repeat center;
    background-size: contain;
}

.icon-help {
    background: url(../images/icons/icon-help.svg) no-repeat center;
    background-size: contain;
}

.icon-order-placed {
    background: url(../images/icons/icon-order-placed.svg) no-repeat center;
    background-size: contain;
}

.icon-order-accepted {
    background: url(../images/icons/icon-order-accepted.svg) no-repeat center;
    background-size: contain;
}

.icon-order-in-progress {
    background: url(../images/icons/icon-order-inprogress.svg) no-repeat center;
    background-size: contain;
}

.icon-order-on-the-way {
    background: url(../images/icons/icon-order-on-the-way.svg) no-repeat center;
    background-size: contain;
}

.icon-order-delivered {
    background: url(../images/icons/icon-order-delivered.svg) no-repeat center;
    background-size: contain;
}

.icon-paypal {
    background: url(../images/icons/icon-paypal.svg) no-repeat center;
    background-size: contain;
}

.icon-visa {
    background: url(../images/icons/icon-visa.svg) no-repeat center;
    background-size: contain;
}

.icon-gpay {
    background: url(../images/icons/icon-gpay.svg) no-repeat center;
    background-size: contain;
}

.icon-credit-card {
    background: url(../images/icons/icon-credit-card.svg) no-repeat center;
    background-size: contain;
}

.icon-order-confirmation {
    background: url(../images/icons/icon-circle-check-for-order-confirmation.svg) no-repeat center;
    background-size: contain;
}

.icon-heading-artwork {
    background: url(../images/icons/icon-heading-artwork.svg) no-repeat center;
    background-size: contain;
    display: none;
}

.icon-user-light {
    background: url(../images/icons/icon-user-light.svg) no-repeat center;
    background-size: contain;
}

.icon-voucher {
    background: url(../images/icons/icon-voucher.svg) no-repeat center;
    background-size: contain;
}

.icon-loyalty {
    background: url(../images/icons/icon-loyalty.svg) no-repeat center;
    background-size: contain;
}

.icon-store {
    background: url(../images/icons/icon-store.svg) no-repeat center;
    background-size: contain;
}

.icon-location-not-available {
    background: url(../images/icons/icon-location-not-available.svg) no-repeat center;
    background-size: contain;
}

.icon-your-details {
    background: url(../images/icons/icon-your-details.svg) no-repeat center;
    background-size: contain;
}

/* ====== Our Promises Section ====== */
.promises-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
}

.promises-list__item {
    width: 13.5rem;
    position: relative;
}

.promises-list__item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 100%;
    background: url(../images/generic/dashed-devider.svg) no-repeat center;
    z-index: -1;
}

.promises-list__item:last-child:after {
    display: none;
}

.promises-list__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.promises-list__caption {
    font-size: var(--font-size-base);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5rem;
    padding: 0 1rem;
}

.promises-list.promises-list-sidebar {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.promises-list.promises-list-sidebar .promises-list__item {
    width: 100%;
}

.promises-list.promises-list-sidebar .promises-list__item::after {
    display: none;
}

.promises-list.promises-list-sidebar .promises-list__icon {
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
}

.promises-list.promises-list-sidebar .promises-list__icon img {
    width: 2.5rem;
    height: 2.5rem;
}

.promises-list.promises-list-sidebar .promises-list__caption {
    font-size: var(--font-size-small);
    width: max-content;
    padding: 0;
    text-align: left;
}

/* ====== Store Near You ====== */
.store {
    padding: 4rem 1rem;
    background: url(../images/generic/store-bg.png) center center / cover no-repeat;
    color: #ffffff;
    position: relative;
    min-height: 32rem;
}

.store__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.store__intro {
    max-width: 500px;
    margin-bottom: 2rem;
}

.store__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--bs-text-light);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-normal);
}

.store__title--script {
    font-family: 'Ms Madi', cursive;
    font-size: 2.5rem;
    font-weight: 400;
}

.store__description {
    font-size: 1rem;
    color: #d0d0d0;
}

.store__locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.store__city {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    border-radius: 2rem !important;
    transition: 0.3s;
}

.store__city.active,
.store__city:hover {
    background: #005E8F !important;
    color: #ffffff;
}

.store__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 26rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.store__card {
    background-color: rgba(0, 30, 50, 0.9);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #0e3c5a;
}

.store__card:last-child {
    margin-bottom: 0;
}

.store__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bs-text-light);
}

.store__card-address,
.store__card-info {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.store__card-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.store__icon {
    display: inline-block;
}

.store__btn-holder {
    opacity: 0.8;
}

.section--curated-jewellery .slick-track {
    display: flex !important;
}

/* Scrollbar Customization (optional) */
.store__cards::-webkit-scrollbar {
    width: 6px;
}

.store__cards::-webkit-scrollbar-thumb {
    background: #0a91cf;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .store__intro {
        max-width: 100%;
        text-align: center;
    }

    .store__title {
        font-size: 2rem;
    }

    .store__locations {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .store__cards {
        max-height: unset;
        height: unset;
    }
}

/* ====== Footer ====== */
.footer {
    background-color: #001926;
    color: #fff;
    padding: 4rem 1rem 2rem;
    font-family: 'Roboto', sans-serif;
}

.footer__top {
    margin-bottom: 3rem;
}

.footer__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer__heading {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--bs-light);
}

.footer-address-block * {
    font-size: 0.85rem;
    line-height: 140%;
    color: #cccccc !important;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer__link {
    display: inline-block;
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-family-base);
}

.footer__link:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #1a3d53;
    padding-top: 0;
    gap: 10rem;
    margin-bottom: 2rem;
}

.footer__support,
.footer__newsletter {
    flex: 1 1 300px;
    margin-bottom: 2rem;
}

.footer__subheading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bs-light);
}

.footer__text {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1rem;
    font-family: var(--font-family-base);
}

.footer__phone {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bs-light);
}

.footer__email {
    color: var(--bs-light);
}

.footer__email a {
    text-decoration: underline;
}

.footer__form {
    display: flex;
    align-items: center;
    background-color: #1a3d53;
    border-radius: 2rem;
    overflow: hidden;
    padding-left: 1rem;
}

.footer__input {
    flex: 1;
    border: none;
    background: url(../images/icons/mail.svg) no-repeat 0.75rem 50% #01263a;
    background-size: 1.5rem;
    color: #fff;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-size: 1rem;
    outline: none;
}

.footer__input::placeholder {
    color: #cccccc73;
}

.footer__submit {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0 1rem;
    cursor: pointer;
}

.footer__submit:hover {
    color: #ccc;
}

.footer__copyright {
    font-size: 0.875rem;
    color: #aaa;
}

.footer__copyright p {
    margin: 0;
    color: #ffffff60;
}

.footer-logo img {
    mix-blend-mode: lighten;
    object-fit: contain;
    width: 9rem;
    margin-bottom: 1.7rem !important;
}

/* Responsive */
@media (max-width: 576px) {
    .footer__newsletter .input-group>p {
        display: flex;
        align-items: center;
        width: calc(100% - 0rem);
    }

    .footer__newsletter .input-group .wpcf7-form-control {
        width: 100%;
    }

    .footer__input {
        width: 100%;
    }

}

@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__support,
    .footer__newsletter {
        flex: 1 1 100%;
    }

    .footer__columns {
        flex-direction: column;
    }
}

/* Login Modal */
.login-modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.login-modal__dialog {
    max-width: 900px;
    width: 100%;
}

.login-modal__content {
    border: none;
    overflow: hidden;
    border-radius: 0;
    height: 35rem;
    box-shadow: 0 50px 60px #00000075;
}

.login-modal__slideshow {
    flex: 1;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.login-modal__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.login-modal__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 3s infinite;
}

.login-modal__slide:nth-child(1) {
    animation-delay: 0s;
}

.login-modal__slide:nth-child(2) {
    animation-delay: 3s;
}

.login-modal__slide:nth-child(3) {
    animation-delay: 6s;
}

.login-modal__slide:nth-child(4) {
    animation-delay: 9s;
}

.login-modal__slide:nth-child(5) {
    animation-delay: 12s;
}

@keyframes fadeSlide {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.login-modal__overlay {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 3rem;
    background: linear-gradient(360deg, black -6%, transparent 50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.login-modal__welcome {
    font-family: var(--font-family-script);
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    line-height: 2.5rem;
    margin-left: -1rem;
    margin-bottom: 0;
}

.login-modal__welcome strong {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    margin-left: 1rem;
    font-weight: 400;
}

.login-modal__description {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #eee;
}

.login-modal__form-wrapper {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-modal__otp input {
    height: 3rem;
    font-size: 1.25rem;
}

.login-modal__footer {
    font-size: 0.9rem;
}

.login-modal__link {
    color: #003049;
    text-decoration: underline;
}

.login__slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.login__slide--active {
    opacity: 1;
    z-index: 1;
}

/* Slick Slider */
.slick-prev,
.slick-next {
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50%;
    background: #ffffff70 !important;
    backdrop-filter: blur(60px);
    z-index: 1;
    box-shadow: 0 4px 6px #0000003b;
}

.slick-prev {
    left: 2rem !important;
}

.slick-next {
    right: 2rem !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 0;
    content: '' !important;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.slick-prev:before {
    background: url(../images/icons/icon-arrow-left.svg) no-repeat center;
    background-size: 1.5rem;
}

.slick-next:before {
    background: url(../images/icons/icon-arrow-right.svg) no-repeat center;
    background-size: 1.5rem;
}

.slick-initialized .slick-slide {
    height: auto !important;
}

/* Responsive */
@media (max-width: 576px) {
    .navbar .button-container {
        gap: 0.5rem;
    }

    .navbar .button-container .btn-icon-24 {
        width: 1.25rem;
        height: 1.25rem;
        background-size: 1.25rem !important;
    }

    p {
        line-height: 140% !important;
        font-size: .875rem !important;
    }

    .login-modal__content {
        width: 100% !important;
    }

    .login-modal__slideshow {
        height: 200px;
        min-height: auto;
    }

    .promises-list__item::after {
        right: -0.5rem;
    }

    .promises-list__caption {
        font-size: 0.8rem;
        line-height: 140%;
        padding: 0 0.5rem;
    }

    .store__card-title,
    .footer__subheading {
        font-size: 1rem;
    }

    .store__card-address,
    .store__card-info {
        font-size: 0.875rem;
        line-height: 140%;
    }

    .store__card .btn-sm {
        padding: 0.25rem 1rem;
        font-size: var(--font-size-small);
    }

    .footer__text,
    .footer__link {
        font-size: 0.875rem;
        line-height: 140%;
    }

    .footer__support,
    .footer__newsletter {
        margin-bottom: 0;
    }

    .footer__submit {
        width: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .login-modal__content {
        flex-direction: column;
        height: auto;
        border-radius: 1rem;
        width: calc(100% - 2rem);
        margin: 0 auto;
    }

    .login-modal__overlay {
        justify-content: end;
        text-align: center;
        background: linear-gradient(360deg, #00000094 24%, transparent);
        padding-top: 7rem;
    }

    .login-modal__welcome strong {
        font-size: 1rem;
        margin: unset;
    }

    .login-modal__welcome strong {
        font-size: 2rem;
        margin: unset;
    }

    .login-modal__description {
        margin-bottom: 0;
    }
}

/* ====== Page Loader ====== */
.loader {
    position: fixed;
    inset: 0;
    background-color: #003049;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader img {
    width: 9rem;
    filter: invert(1) brightness(2);
}

.diamondCon {
    width: 12.5rem;
    /* 200px */
    height: 7.5rem;
    /* 200px */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}

.diamond {
    display: block;
    width: 12.5rem;
    height: 7.5rem;
    position: relative;
    margin: 0;
    padding: 0;
}

.diamond li {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0;
    z-index: 100;
    transition: 0.4s ease;
}

.diamond li:nth-child(1) {
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: #003049 transparent transparent transparent;
    left: 0;
    right: 0;
    margin: auto;
    animation: traingle1 0.2s 1.2s ease, opacity 2s 2.4s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(2) {
    border-width: 0 1.25rem 1.25rem 1.25rem;
    border-color: transparent transparent #014061 transparent;
    left: 3.6875rem;
    /* 59px */
    animation: traingle2 0.2s 1s ease, opacity 2s 2.4s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(3) {
    border-width: 0 1.25rem 1.25rem 1.25rem;
    border-color: transparent transparent #02486e transparent;
    right: 3.6875rem;
    animation: traingle3 0.2s 0.8s ease, opacity 2s 2.4s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(4) {
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: #086ca2 transparent transparent transparent;
    right: 3.6875rem;
    animation: traingle4 0.2s 0.6s ease, opacity 2s 2.6s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(5) {
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: #3087b6 transparent transparent transparent;
    left: 3.6875rem;
    animation: traingle5 0.2s 0.4s ease, opacity 2s 2.6s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(6) {
    border-width: 0 1.25rem 1.25rem 1.25rem;
    border-color: transparent transparent #024d75 transparent;
    left: 0;
    right: 0;
    margin: auto;
    animation: traingle6 0.2s 0.2s ease, opacity 2s 2.6s ease infinite;
    animation-fill-mode: forwards;
}

.diamond li:nth-child(7) {
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: #006094 transparent transparent transparent;
    left: 0;
    right: 0;
    margin: auto;
    animation: traingle7 0.2s 0s ease, opacity 2s 2.8s ease infinite;
    animation-fill-mode: forwards;
}

.textCon {
    width: 9rem;
    height: auto;
    position: absolute;
    left: 50%;
    top: 6rem !important;
    text-align: center;
    line-height: 3.125rem;
    font-size: 1.875rem;
    font-family: 'Dancing Script', cursive;
    color: #fff;
    opacity: 0;
    animation: text 0.5s 1.3s ease;
    animation-fill-mode: forwards;
    transform: translateX(-50%);
}

/* Keyframes */
@keyframes traingle1 {
    0% {
        top: -3.125rem;
        /* -50px */
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes traingle2 {
    0% {
        top: -3.125rem;
        opacity: 0;
    }

    100% {
        top: 0.0625rem;
        /* 1px */
        opacity: 1;
    }
}

@keyframes traingle3 {
    0% {
        top: -3.125rem;
        opacity: 0;
    }

    100% {
        top: 0.0625rem;
        opacity: 1;
    }
}

@keyframes traingle4 {
    0% {
        right: 3.6875rem;
        top: -2.0625rem;
        /* -33px */
        opacity: 0;
    }

    100% {
        right: 3.6875rem;
        top: 1.375rem;
        /* 22px */
        opacity: 1;
    }
}

@keyframes traingle5 {
    0% {
        left: 3.6875rem;
        top: -2.0625rem;
        opacity: 0;
    }

    100% {
        left: 3.6875rem;
        top: 1.375rem;
        opacity: 1;
    }
}

@keyframes traingle6 {
    0% {
        top: -2.0625rem;
        opacity: 0;
    }

    100% {
        top: 1.4375rem;
        /* 23px */
        opacity: 1;
    }
}

@keyframes traingle7 {
    0% {
        top: -0.625rem;
        /* -10px */
        opacity: 0;
    }

    100% {
        top: 2.75rem;
        /* 44px */
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes text {
    0% {
        top: 0;
        opacity: 0;
    }

    100% {
        top: 4.375rem;
        /* 70px */
        opacity: 1;
    }
}

.loader--fadeout {
    opacity: 0;
    visibility: hidden;
}

/* ====== Miscellaneous ====== */
@supports (display: grid) {
    .category {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .category.category--alt {
        display: grid;
        grid-template-columns: 50% repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        gap: 1.5rem;
    }
}

@supports not (display: grid) {
    .category {
        display: block;
        /* Fallback for non-supporting browsers */
    }
}


/*///////////Soumya-css-add/////*/


/*//menu dropdown//*/

ul.list-column2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

ul.list-column3 {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
}




/*//Filter By Price//*/

#mainSidebar .price-filter {
    width: 100%;
    padding: 1rem 0;
    max-width: 90%;
    margin: 0 auto;
}

.price-filter .ui-widget.ui-widget-content {
    border: none !important;
    height: 2px !important;
    background: var(--primary-color) !important;
    color: var(--primary-color);
}

.price-filter .ui-state-default,
.price-filter .ui-widget-content .ui-state-default,
.price-filter .ui-widget-header .ui-state-default,
.price-filter .ui-button,
html .price-filter .ui-button.ui-state-disabled:hover,
html .price-filter .ui-button.ui-state-disabled:active {
    border: 2px solid var(--primary-color) !important;
    background: #f6f6f6;
    font-weight: normal;
    color: var(--primary-color) !important;
    border-radius: 52% !important;
    top: -8px !important;
    width: 16px;
    height: 16px;
    transition: all 0.5s;
}

.price-filter .price-filter__input-wrapper,
.price-filter .price-filter__input-wrapper input {
    color: var(--primary-color);
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    box-shadow: none;
}

.price-filter .price-filter__input-wrapper::before {
    content: "₹";
    position: static;
    top: 50%;
    left: 0.75rem;
    transform: none;
    font-size: 1.1rem;
    color: var(--primary-color);
    box-shadow: none;
}


/*///Certificate///*/

.product-details__certificate {
    background-color: #eaf3ff;
    width: 100%;
    margin-bottom: 15px;
}

.product-details__certificate .certificate-logo-block {
    width: 100%;
    padding: 15px 0 0 0;
    margin: 10px 0 0 0;
    border: none;
    border-top: 1px solid #CBD5E1;
    outline: none;
    text-decoration: none;
    clear: block;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.product-details__certificate .certificate-logo-block a {
    text-decoration: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.product-details__certificate .certificate-logo-block .logo-item {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    max-width: 70%;
    max-height: 60px;
    object-fit: contain;
}

.product-details__certificate .certificate-logo-block .logo-item img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    border: none;
    outline: none;
    text-decoration: none;
}

/*////homeslider///*/

.promotional-banner__content .hero__title {
    font-size: clamp(2rem, 3vw + 1rem, 2rem) !important;
    line-height: 90%;
    margin-bottom: 0.5rem;
}



.product-detail__pincode .label {
    width: 100%;
    padding: 0 0 5px 0;
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.product-detail__pincode .massage {
    text-align: left;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    color: #003366;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    width: max-content;
    text-align: center;
}

/*///cart__summary ///*/

.cart__summary .d-flex span {
    font-size: var(--font-size-base);
}

.woocommerce-checkout-payment {
    background: transparent !important;
}

.woocommerce-checkout-payment .payment__section {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


#mainHeader .navbar-nav .nav-item:has(.highlighted) {
    color: #fff !important;
    border-radius: 100vw;
    padding: 0.5rem 1rem !important;
    background: -webkit-linear-gradient(#04a9ff, #003049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    /* border: 2px solid #ccc !important; */
    text-decoration: underline !important;
}

/*///search-list///*/

.search-bar {
    position: relative;
}

.search-bar .ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    cursor: default;
    background-color: #eaeaea;
    border-radius: 16px;
    overflow: auto;
    max-height: 350px;
}

.search-bar .ui-autocomplete li {
    width: 100%;
    padding: 8px 10px;
    max-width: 100%;
    border-bottom: 1px solid #ccc;
    font-size: var(--font-size-small);
    line-height: 1.3rem;
    color: var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 400 !important;
}

.search-bar .ui-autocomplete li:hover {
    text-decoration: none;
    background-color: var(--primary-color) !important;
    ;
    color: #ffffff !important;
}

/*///*/

.login-modal__form .iti {
    position: relative;
    display: inline-block;
    width: 100%;
}

.login-modal__form .iti__country-list {
    max-width: 300px;
}


/*///forgot-password///*/

.forgot-password {
    width: 100%;
    padding: 10px 0 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--bs-nav-link-color);
    transition: all 0.3s ease;
}

.forgot-password a {
    text-decoration: none;
    color: var(--bs-nav-link-color);
    transition: all 0.3s ease;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.forgot-password a:hover {
    text-decoration: none;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.iti {
    width: 100% !important;
}

.iti .iti__country {
    font-size: var(--font-size-small) !important;
}

.product-gallery__image-wrapper {
    min-height: 300px;
}

@media (min-width: 1024px) {

    .product-gallery__image-wrapper {
        min-width: 100%;
        min-height: 500px;
        background-color: #ececec;
    }

}


/*///pincode-check///*/
.pincode-check-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
}

.pincode-check-box #pincode {
    min-height: 40px;
    border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
    width: 100% !important;
}

.pincode-check-box .pincode-check-btn {
    display: inline-block;
    padding: 0;
    background-color: #082535;
    height: 40px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
    position: relative;
    margin-left: -4px;
    background-image: url(https://jewelboxnew.s3.ap-south-1.amazonaws.com/wp-content/uploads/2025/12/pincode-search.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 48px;
    height: 100%;
}

/* #breeze-button-container-dynamic {
    display: none !important;
} */

.product-detail__actions a {
    white-space: nowrap;
}

.product-detail__actions a button {
    padding: 0;
    margin: 0;
    width: 100%;
    border: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

#mainHeader .login-user,
#mainHeader .btn-account.login-user {
    background: url(https://jewelboxnew.s3.ap-south-1.amazonaws.com/wp-content/uploads/2025/12/login-user.png) no-repeat center;
    padding: 0 !important;
    background-size: contain !important;
}



.breadcrumb-nav .woocommerce-breadcrumb {
    color: var(--bs-text-color);
    font-weight: 600;
}

.breadcrumb-nav .woocommerce-breadcrumb a {
    text-decoration: none;
    color: var(--bs-text-color);
    transition: color 0.2s;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.5s;
}


.login-modal__form .btn-outline-primary {
    padding: 0.75rem 1.2rem;
    white-space: nowrap;
}

.product-detail__ring-size .form-select {
    max-width: 110px;
}


.login-modal__content .btn.active {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}


.filter__list li input:checked{
  color: var(--primary-color) ;
}
.filter__list li input:checked ~ label {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}
.filter__list li input:checked {
    background-color: transparent;
    background-position: 50% bottom;
}



.filter__list li.active input{
  background-color: transparent;
  background-position: 50% bottom;
}

.filter__list li.active label{
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

.filter__list li input:checked {
    background-color: transparent;
    background-position: 50% bottom;
}

.filter__list li input:checked ~ label {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}





/*////responsive/////*/

@media (max-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 90% !important;
    }


}


@media (max-width: 1024px) {
    .navbar-collapse.slide-from-left.show .dropdown-menu .col-md-6 {
        width: 100% !important;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 92% !important;
    }

    .woocommerce-MyAccount-content .row{
        flex-wrap: wrap;
    }
    .woocommerce-MyAccount-content .row .dashbord-nav-wrap{
        width: 100%;
        clear: both;
    }
    .woocommerce-MyAccount-content .row .col-content{
        width: 100%;
        clear: both;
    }

    .woocommerce-MyAccount-content .dashboard__content .row .col-md-6{
        width: 100% !important;
        max-width: 100% !important;
    }


}

@media (max-width: 992px) {

    ul.list-column2 {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    ul.list-column3 {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .container,
    .container-md,
    .container-sm {
        max-width: 96%;
    }

    .overlay__content {
        flex-wrap: wrap;
    }

    .overlay h2 {
        font-size: clamp(0.8rem, 2vw + 0.8rem, 1.25rem) !important;
    }


    /*//mobile-cart////*/

    .cart-details .cart__item {
        width: 100%;
        background-color: #F8F8F8;
        margin: 15px 0;
        padding: 10px !important;
        border-radius: 10px;
        position: relative !important;
        padding-left: 150px !important;
        max-width: 100%;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        display: flex !important;
        justify-content: flex-start !important;
        align-content: flex-start !important;
        min-height: 150px;
    }

    .cart-details .btn-remove {
        width: 24px;
        height: 24px;
        background-color: #d3d3d3;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        cursor: pointer;
        transition: all 0.3s;
        border-radius: 50%;
        background-size: 100% !important;
    }

    .cart-details .cart__image {
        flex-wrap: nowrap;
        width: 100% !important;
        max-width: 100% !important;
        gap: 15px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .cart-details .cart__image .no-shrink {
        max-width: 120px;
        object-fit: contain;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .cart-details .cart__image img {
        width: 120px;
        aspect-ratio: 1 / 1;
        border-radius: 0.25rem;
        background-color: var(--primary-color);
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-content: center;
        text-align: center;
        color: #ffffff;
        object-fit: contain;
    }

    .cart-details .cart__image>div {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .cart-details .cart__image h6 {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin: 0;
    }

    .cart-details .cart__image .variation {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-content: flex-start;
        gap: 5px;
        flex-wrap: wrap;
    }

    .variation-Metal {
        padding: 0;
        margin: 0;
        display: inline-block;
        border: none;
        outline: none;
    }

    .cart-details .cart__image p {
        font-size: 0.7rem !important;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin: 0;
    }

    .cart-details .cart__image dd,
    .cart-details .cart__image dt,
    .cart-details .cart__image dl {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .cart-details .cart__image dd {
        padding-right: 5px;
        border-right: 1px solid #ccc !important;
    }

    .cart-details .cart__image dd:last-child {
        padding-right: 0;
        border-right: none !important;
    }

    .cart-details .cart__item .cart__quantity {
        width: max-content;
        border: 1px solid #00304920;
        display: flex;
        align-items: center;
        margin-top: 1rem;
        border-radius: 100vw;
        padding: 0 !important;
        margin: 5px 0 0 0 !important;
    }

    .cart-details .cart__item .cart__quantity .cart__btn {
        border: none;
        padding: 0.10rem 0.75rem;
        border-radius: 0.375rem;
        font-size: 1rem;
        cursor: pointer;
    }

    .cart-details .cart__item .cart__price,
    .cart-details .cart__item .cart__subtotal {
        width: 50%;
        padding: 3px 0 !important;
        border-radius: 0;
        background: transparent;
        margin: 0 !important;
        display: flex;
        justify-content: flex-start;
        align-content: flex-start;
        gap: 5px;
    }

    .cart-details .cart__item .cart__price small,
    .cart-details .cart__item .cart__subtotal small {
        width: auto;
        font-size: 0.7rem !important;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin: 0;
        min-width: 30px;
    }

    .cart-details .cart__item .cart__subtotal small {
        min-width: 50px;
    }

    .cart-details .cart__item .cart__price span,
    .cart-details .cart__item .cart__subtotal span {
        width: 100%;
        font-size: 0.7rem !important;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0;
        margin: 0;
    }

    .cart-details .cart__item .cart__quantity .cart__count {
        padding: 0;
    }

    #mainHeader {
        padding-bottom: 40px !important;
        background-color: #ffffff;
    }

    /*#searchToggle {
        display: none !important;
    }*/
    #searchBox {
        display: inline-block !important;
        position: absolute;
        top: 56px;
        left: 0;
        border-radius: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        background-color: #ffffff;
        padding-bottom: 8px;

    }

    #searchBox .search__input {
        font-size: 0.875rem;
        height: 40px;
    }


    #mainHeader .navbar-collapse .navbar-nav {
        margin-bottom: 70px !important;
    }


    /*///.container-capsule-slider///*/

    .section--product-listing .container-capsule-slider {
        position: sticky !important;
        width: 100% !important;
        max-width: 100% !important;
        top: 97px;
    }



    .section--product-listing .product-grid {
        margin-top: 20px;
    }

    .nav-pills-bar {
        min-width: 160px !important;
    }

    .nav-pills-bar .nav-link {
        border-radius: 0;
        padding: 0.5rem 0.8rem !important;
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .woocommerce-MyAccount-content .dashboard-card__header .button-container{
        flex-wrap: wrap !important;
    }





}

@media (max-width: 767px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100% !important;
    }

    .promotional-banner__content {
        bottom: 0;
        max-width: 100%;
    }

    #loginModalForm .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    #loginModalForm .btn {
        margin-top: 0.5rem !important;
    }

    /*.offering-container.slick-slider .slick-track{
        width: 100% !important;
        max-width: 100% !important;
    }*/

    .product-details .product-details__right {
        display: inline-block !important;
    }

    .product-details .product-details__right .promises-list-sidebar {
        display: none !important;
    }

    .product-details .product-details__right>.product-details__heading {
        display: none;
    }

    .product-detail__actions {
        position: fixed;
        bottom: 0;
        left: 0;
        min-width: 100%;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #ddd;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1;
        padding: 10px;
        max-width: calc(100% - 20px);
        display: flex !important;
        justify-content: space-between;
        flex-wrap: nowrap !important;
    }

    .product-detail__actions .btn {
        width: 50% !important;
        max-width: 50%;
        padding: 15px 10px;
    }

    /*/////*/

    .cart-details .cart__image .no-shrink {
        max-width: 100px;
    }

    .cart-details .cart__image img {
        width: 100px;
    }

    .cart-details .cart__item {
        padding-left: 120px !important;
        min-height: 100px;
    }

    #searchBox {
        top: 52px;
    }

    #mainHeader {
        padding-bottom: 40px !important;
    }

    #mainHeader .navbar {
        box-shadow: none !important;
    }

    #mainHeader .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #mainHeader .container .navbar-brand {
        width: 12rem !important;
    }

    .modal-content .login-modal__slideshow {
        display: none !important;
    }

    .category-slider__item .category-slider__label {
        font-size: .65rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #mainHeader .navbar-collapse .navbar-nav {
        margin-bottom: 90px !important;
    }

    .deal_of_the_day_mob {
        bottom: inherit !important;
        top: 0;
    }

    /*///section-banner///*/
    .section--banner .container {
        padding: 0 !important;
        margin: 0 0 5px 0 !important;
        width: 100%;
        max-width: 100% !important;
    }

    .section--banner .container img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .category-slider__item {
        padding: 3px;
    }

    .category-slider .category-slider__item a {
        width: 72px;
        height: 72px;
        display: flex;
        justify-content: center;
        align-content: center;
        overflow: hidden;
        border-radius: 8px;
    }

    .category-slider .category-slider__item a .category-slider__image {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin-bottom: 0;
    }

    .category-slider .category-slider__item.slider_zoom a img {
        transform: scale(1.3);
    }

    .section--deal {
        background-size: contain !important;
        background-position: top center !important;
    }

    /*////scoll///*/

    .list_box_display .list-sticky-header {
        position: fixed !important;
        z-index: 999;
        opacity: 1;
        top: 90px;
        left: 0;
        background-color: #ffffff;
        padding: 8px 15px !important;
        width: 100%;
        max-width: 100% !important;
    }

    .list_box_display .list-sticky-header.section--banner {
        top: 140px;
        padding: 0 !important;
    }

    .list_box_display .section--product-listing .container-capsule-slider {
        position: fixed !important;
        width: 100% !important;
        max-width: 100% !important;
        top: 220px !important;
    }

    .custom_log_email,
    .custom_log_mob {
        margin-bottom: 20px;
    }

    #offcanvasSortBy {
        min-height: 300px;
    }

    #offcanvasSortBy .offcanvas-body.small {
        min-height: 170px;
    }




}




@media (max-width: 576px) {
    .w-sm-100 {
        width: 100%;
    }

    .navbar-brand {
        width: 6rem !important;
    }

    .navbar .button-container {
        gap: 0.2rem;
    }

    #mainHeader .gap-4 {
        gap: 0.5rem !important;
    }

    .promotional-banner__content .hero__actions {
        justify-content: center;
        text-align: center;
    }

    .loyalty-page-mainblock .faq-tab-header ul .nav-link {
        min-width: 100px;
        padding: 5px 10px !important;
    }

    .assist-options__content .assist-options__title-sm {
        font-size: 0.75rem !important;
    }

    #mainHeader .navbar-toggler {
        padding: 0 !important;
        margin-left: 10px;
    }

    .product-detail__actions {
        gap: 5px !important;
    }

    .product-detail #pincode {
        max-width: calc(100% - 30px) !important;
        padding: 10px 15px;
        width: calc(100% - 30px) !important;
    }

    .assist-options__wrapper {
        gap: 0.2rem;
        flex-wrap: nowrap;
    }

    .cart-details .cart__image .no-shrink {
        max-width: 80px;
    }

    .cart-details .cart__image img {
        width: 80px;
    }

    .cart-details .cart__item {
        padding-left: 100px !important;
        min-height: 100px;
    }

    #modPincodeNotFound .modal-body {
        padding: 0 15px 30px 15px;
    }



    #modPincodeNotFound .modal-title {
        text-align: left;
        font-size: 1.05rem;
    }

    #modPincodeNotFound .modal-dialog {
        width: 90% !important;
        max-width: 100%;
        left: 3%;
        top: 10%;
    }

    .product-details .section--our-promise {
        order: 2;
    }

    .product-details .product-details__right {
        order: 1;
    }

    #mainHeader .container .navbar-brand {
        width: 11rem !important;
    }

    #mainHeader .container {
        max-width: 95% !important;
    }

    #mainHeader .navbar .button-container .btn-icon-24 {
        width: 1.3rem;
        height: 1.3rem;
        background-size: 1.3rem !important;
    }

    .section--product-listing .container-capsule-slider {
        padding: 5px 0 10px 0 !important;
        top: 0;
    }

    /*.section--product-listing .product-grid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }*/

    .carousel-inner .hero__content {
        display: block !important;
    }

    .carousel-inner .carousel-caption.carousel-caption-sub-page h3.hero__title {
        font-size: 1.2rem;
    }

    .nav-pills-bar .nav-link {
        border-radius: 0;
        padding: 0.5rem 0.5rem !important;
        color: var(--primary-color);
        font-size: 0.8rem;
    }

    .nav-pills-bar {
        min-width: 150px !important;

    }

    .filter__list label {
        font-size: 0.8rem;
    }

    .form-check {
        padding-left: 0.8em;
    }

    .form-check .form-check-input {
        margin-left: -1.2em;
    }



}

@media (max-width: 450px) {

    #mainHeader .container .navbar-brand {
        width: 8rem !important;
    }

    #mainHeader .navbar .button-container .btn-icon-24 {
        width: 1.1rem;
        height: 1.1rem;
        background-size: 1.1rem !important;
    }

    #mainHeader .container .navbar-toggler {
        width: 1.1rem;
    }

    #mainHeader .navbar .button-container {
        gap: 0.1rem;
    }

    #mainHeader .navbar-toggler {
        padding: 0 !important;
    }

    .product-details__certificate .certificate-logo-block .logo-item img {
        max-height: 40px;
    }

    .cart-details .cart__image .no-shrink {
        max-width: 70px;
    }

    .cart-details .cart__image img {
        width: 70px;
    }

    .cart-details .cart__item {
        padding-left: 90px !important;
        min-height: 90px;
    }

    .cart-details .cart__item .cart__price,
    .cart-details .cart__item .cart__subtotal {
        flex-wrap: wrap;
    }

    #searchBox {
        top: 48px;
    }


}


@media (max-width: 360px) {

    #mainHeader .container .navbar-brand {
        width: 6.5rem !important;
    }

    #searchBox {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}