/* ====== 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: var(--bs-primary);
    color: #fff;
}

/* ====== 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;
}

/* ====== 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;
}

/* ====== 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.75em;
}

.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.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;
    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%;
    }
}

/* ====== 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;
}

/* ====== 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) {
    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 */
    }
}