* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111;
}

a{
    text-decoration:none;
    color:inherit;
}

/* =====================================
   TOP BANNER
===================================== */

.top-banner {
    background: #083d40;
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 11px 20px;
    font-weight: 400;
}

.top-banner strong {
    font-weight: 700;
}

/* =====================================
   HEADER
===================================== */

.header-top {
    max-width: 1540px;
    margin: 0 auto;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 36px;
    background: #fff;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 26px;
    width: 32%;
}

.header-right {
    justify-content: flex-end;
}

.phone {
    font-size: 14px;
    color: #3d3d3d;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.location .small {
    font-size: 10px;
}

.logo {
    width: 36%;
    text-align: center;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-family: 'Inter', sans-serif;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border: 1px solid #123f42;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #123f42;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.brand-word {
    color: #152837;
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 500;
    letter-spacing: 4px;
}

.appointment-link {
    color: #24313c;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reg {
    font-size: 12px;
    vertical-align: super;
}

.header-right i {
    font-size: 18px;
    color: #222;
    cursor: pointer;
}

.currency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.currency img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* =====================================
   NAVIGATION
===================================== */

.main-nav {
    display: flex;
    justify-content: center;
    gap: 68px;

    padding: 20px 20px 24px;
    border-bottom: 1px solid #efefef;
    position: relative;
    z-index: 60;
}

.nav-item {
    position: static;
}

.main-nav a {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
}

.main-nav a:hover {
    color: #0a5452;
}

.main-nav a[aria-current="page"] {
    color: #0a5452;
    font-weight: 600;
}

.mobile-menu-toggle,
.mobile-menu-close,
.header-icon {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
}

.header-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #0f4748;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #d7d7d7;
    box-shadow: 0 18px 36px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 34px 42px 40px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 54px;
}

.mega-menu__feature {
    border-right: 1px solid #e4e4e4;
    padding-right: 38px;
}

.mega-menu__feature span,
.mega-menu__column h3 {
    display: block;
    color: #173b3d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mega-menu__feature p {
    color: #303945;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.mega-menu__feature a {
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 28px;
}

.mega-menu__column a {
    display: block;
    letter-spacing: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #26303b;
    margin-bottom: 11px;
}

.app-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #f5f5f3;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    color: #123f42;
    transition: opacity .35s ease, visibility .35s ease;
}

.app-loader span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-mark--loader {
    width: 74px;
    height: 74px;
    font-size: 30px;
    animation: logoPulse 1.2s ease-in-out infinite;
}

body.is-loaded .app-loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(15,71,72,.12);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 14px rgba(15,71,72,0);
    }
}

/* =====================================
   HERO
===================================== */

.hero-section {
    width: 100%;
    height: 600px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left image look */
.image-left img {
    filter: brightness(.7) saturate(1.3);
}

.water-overlay {
    position: absolute;
    inset: 0;

    background:
            radial-gradient(circle at 20% 40%, rgba(255,255,255,.15), transparent 20%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 18%),
            linear-gradient(
                    180deg,
                    rgba(0,70,70,.25),
                    rgba(0,0,0,.15)
            );

    mix-blend-mode: screen;
}

/* Right image look */
.image-right img {
    filter: brightness(.95) saturate(.7);
}

.hero-content {
    position: absolute;
    z-index: 5;
}

.hero-left-content {
    left: 85px;
    bottom: 55px;
}

.hero-right-content {
    left: 50%;
    transform: translateX(-50%);
    bottom: 55px;
    text-align: center;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 52px;
    min-width: 205px;

    padding: 0 30px;

    background: white;
    color: #111;

    text-decoration: none;
    font-size: 15px;

    transition: .3s ease;
}

.hero-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* =====================================
   JEWELRY DECORATIONS
===================================== */

.jewel {
    position: absolute;
    z-index: 3;
    background: linear-gradient(135deg,#f6f0d8,#b48d3a);
    box-shadow:
            0 12px 30px rgba(0,0,0,.18);
}

.jewel-1 {
    width: 220px;
    height: 14px;
    border-radius: 30px;
    top: 80px;
    left: 70px;
    transform: rotate(8deg);
}

.jewel-2 {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    left: 130px;
    top: 230px;
}

.jewel-3 {
    width: 100px;
    height: 42px;
    border-radius: 16px;
    top: 215px;
    left: 350px;
}

.jewel-4 {
    width: 120px;
    height: 16px;
    border-radius: 20px;
    top: 340px;
    left: 350px;
    background: linear-gradient(135deg,#5140d6,#8f85ff);
}

.jewel-5 {
    width: 165px;
    height: 135px;
    border-radius: 50px;
    background: linear-gradient(135deg,#d6d6d6,#fafafa,#9e9e9e);
    top: 55px;
    right: 70px;
}

.jewel-6 {
    width: 180px;
    height: 18px;
    border-radius: 30px;
    right: 40px;
    bottom: 180px;
}

/* =====================================
   CHAT
===================================== */

.chat-widget {
    position: fixed;
    right: 25px;
    bottom: 30px;

    display: flex;
    align-items: center;

    background: white;

    border-radius: 40px;

    box-shadow:
            0 10px 30px rgba(0,0,0,.18);

    z-index: 100;
    overflow: hidden;
}

.chat-close {
    width: 40px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b4b4b4;
}

.chat-text {
    padding: 10px 16px 10px 0;
}

.chat-text strong {
    display: block;
    color: #146b67;
    font-size: 16px;
}

.chat-text span {
    font-size: 14px;
    color: #666;
}

.chat-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    background: #232323;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 22px;

    margin-right: 6px;
}

/* ==========================================
   JEWELRY CATEGORY SECTION
========================================== */

.jewelry-category-section {
    background: #ffffff;
    padding: 66px 0 58px;
    overflow: hidden;
}

.category-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 300;
    color: #13243a;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
}

.section-heading p {
    font-size: 20px;
    font-weight: 300;
    color: #27323f;
    line-height: 1.5;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.category-card {
    display: flex;
    flex-direction: column;
}

.category-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.87;
    overflow: hidden;
    background: #d9e7dc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform .45s ease;
}

.category-card:hover img {
    transform: scale(1.03);
}

.card-image::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 30% 35%,
            rgba(255,255,255,.22),
            transparent 25%),

        radial-gradient(circle at 70% 20%,
            rgba(255,255,255,.18),
            transparent 22%),

        radial-gradient(circle at 60% 80%,
            rgba(255,255,255,.12),
            transparent 30%);

    pointer-events: none;
    z-index: 2;
}

.category-card h3 {
    margin-top: 18px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #2c2c2c;
    letter-spacing: -0.2px;
}

.category-card__cta {
    width: fit-content;
    min-height: 40px;
    margin-top: 12px;
    padding: 0 18px;
    border: 1px solid #123f42;
    background: #fff;
    color: #123f42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.category-card__link:hover .category-card__cta,
.category-card__link:focus-visible .category-card__cta {
    background: #123f42;
    color: #fff;
    transform: translateY(-1px);
}

.category-card__link:focus-visible {
    outline: 2px solid #123f42;
    outline-offset: 4px;
}

.slider-arrow {
    position: absolute;
    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.95);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    cursor: pointer;

    box-shadow:
        0 4px 10px rgba(0,0,0,.12);

    transition: .25s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: #fff;
}

/* .slider-arrow i {
    font-size: 18px;
    color: #222;
} */

/* ==================================================
   AUTHENTICATION AND PROFILE
================================================== */

.auth-page,
.profile-page {
    background: #f7f6f2;
    color: #172334;
}

.auth-shell {
    max-width: 1260px;
    margin: 0 auto;
    padding: 74px 40px 92px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr);
    gap: 64px;
    align-items: center;
}

.auth-shell--signup {
    align-items: start;
}

.auth-copy p,
.auth-card > p,
.profile-hero p,
.profile-card p {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.auth-copy h1,
.profile-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: 0;
    max-width: 720px;
    margin-bottom: 24px;
}

.auth-copy span,
.profile-hero span {
    display: block;
    max-width: 620px;
    color: #3b4653;
    font-size: 18px;
    line-height: 1.7;
}

.auth-card,
.profile-card {
    background: #fff;
    border: 1px solid #dedbd4;
    box-shadow: 0 18px 44px rgba(20, 31, 44, .06);
}

.auth-card {
    padding: 34px;
}

.auth-card h2,
.profile-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 26px;
}

.auth-card label {
    display: block;
    color: #223041;
    font-size: 13px;
    margin-bottom: 18px;
}

.auth-card input,
.auth-card select {
    width: 100%;
    height: 50px;
    margin-top: 8px;
    border: 1px solid #cfcac1;
    background: #fff;
    padding: 0 14px;
    color: #172334;
    font: inherit;
}

.auth-card input:focus,
.auth-card select:focus {
    outline: 1px solid #123f42;
    border-color: #123f42;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-card button,
.profile-actions a {
    width: 100%;
    min-height: 52px;
    border: 1px solid #123f42;
    background: #123f42;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}

.auth-card button:hover,
.profile-actions a:hover {
    background: #fff;
    color: #123f42;
}

.auth-switch {
    display: block;
    margin-top: 18px;
    color: #3b4653;
    font-size: 14px;
    line-height: 1.5;
}

.auth-switch a {
    color: #123f42;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.auth-alert {
    padding: 14px 16px;
    margin-bottom: 18px;
    background: #fff2ef;
    border: 1px solid #e6b8ad;
    color: #743024;
    font-size: 14px;
    line-height: 1.45;
}

.auth-alert--success {
    grid-column: 1 / -1;
    background: #edf7f3;
    border-color: #b9d8cb;
    color: #17493f;
}

.profile-hero {
    padding: 74px 40px 58px;
    text-align: center;
    background: #f5f5f3;
}

.profile-hero h1 {
    margin-left: auto;
    margin-right: auto;
}

.profile-hero span {
    margin: 0 auto;
}

.profile-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 40px 90px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.profile-card {
    padding: 30px;
}

.profile-card--lead {
    grid-row: span 2;
}

.profile-card dl {
    display: grid;
    gap: 18px;
}

.profile-card dt {
    color: #6a717a;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.profile-card dd {
    color: #172334;
    font-size: 17px;
}

.profile-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.profile-list li {
    color: #33404c;
    font-size: 15px;
    line-height: 1.55;
    display: flex;
    gap: 12px;
}

.profile-list i {
    color: #0f4748;
    margin-top: 4px;
}

.profile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* ==================================================
   SEARCH
================================================== */

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(15, 24, 35, .34);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.search-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.search-panel__inner {
    background: #fff;
    border-bottom: 1px solid #dedbd4;
    padding: 34px 40px 38px;
    transform: translateY(-16px);
    transition: transform .22s ease;
    box-shadow: 0 22px 50px rgba(18, 31, 44, .16);
}

.search-panel.is-open .search-panel__inner {
    transform: translateY(0);
}

.search-panel__header {
    max-width: 1180px;
    margin: 0 auto 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.search-panel__header p,
.search-results-hero p,
.checkout-panel__content > p,
.checkout-summary__header p {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.search-panel__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.05;
}

.search-panel__header button {
    width: 42px;
    height: 42px;
    border: 1px solid #d8d3ca;
    background: #fff;
    color: #172334;
    cursor: pointer;
}

.search-form {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 58px;
    border: 1px solid #cfcac1;
    background: #fff;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
}

.search-form i {
    color: #5d6670;
    text-align: center;
}

.search-form input {
    width: 100%;
    border: 0;
    outline: 0;
    font: inherit;
    color: #172334;
}

.search-form button {
    align-self: stretch;
    border: 0;
    border-left: 1px solid #cfcac1;
    background: #123f42;
    color: #fff;
    padding: 0 26px;
    cursor: pointer;
}

.search-panel__quick {
    max-width: 1180px;
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #52606c;
    font-size: 13px;
}

.search-panel__quick a {
    border: 1px solid #dedbd4;
    padding: 8px 12px;
    color: #172334;
    background: #f7f6f2;
}

.search-results-hero {
    background: #f5f5f3;
    padding: 66px 40px 46px;
    text-align: center;
}

.search-results-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 26px;
}

.search-form--page {
    max-width: 820px;
}

.search-results {
    padding: 38px 40px 80px;
}

.search-results__meta {
    max-width: 1480px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #33404c;
}

.search-results__meta a {
    color: #123f42;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.search-empty {
    max-width: 760px;
    margin: 34px auto;
    padding: 42px;
    text-align: center;
    background: #f7f6f2;
    border: 1px solid #dedbd4;
}

.search-empty h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 12px;
}

/* ==================================================
   CHECKOUT REMODEL
================================================== */

.checkout-page {
    background: #f7f6f2;
}

.checkout-hero {
    padding: 64px 40px 42px;
}

.checkout-layout {
    max-width: 1320px;
    padding: 42px 40px 92px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 24px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 18px;
}

.checkout-panel,
.checkout-summary {
    border: 1px solid #dedbd4;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 31, 44, .05);
}

.checkout-panel--step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
}

.checkout-step-label {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #123f42;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.checkout-panel__content h2,
.checkout-summary__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 22px;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.checkout-form-grid label {
    display: block;
    color: #223041;
    font-size: 13px;
}

.checkout-form-grid input {
    width: 100%;
    height: 50px;
    margin-top: 8px;
    border: 1px solid #cfcac1;
    padding: 0 14px;
    font: inherit;
}

.checkout-service-options,
.crypto-options {
    display: grid;
    gap: 12px;
}

.checkout-service-options label,
.crypto-options label {
    border: 1px solid #dedbd4;
    background: #fbfaf7;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #33404c;
}

.checkout-service-options strong {
    display: block;
    color: #172334;
    margin-bottom: 5px;
}

.crypto-options {
    grid-template-columns: repeat(2, 1fr);
}

.crypto-options label {
    align-items: center;
    justify-content: space-between;
}

.wallet-box {
    margin-top: 18px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.wallet-box span {
    grid-column: 1 / -1;
}

.wallet-box code {
    min-width: 0;
    overflow-wrap: anywhere;
}

.checkout-summary {
    position: sticky;
    top: 112px;
    padding: 26px;
}

.checkout-summary__header {
    margin-bottom: 18px;
}

.checkout-assurance {
    border-top: 1px solid #e7e2da;
    border-bottom: 1px solid #e7e2da;
    padding: 16px 0;
    margin: 18px 0;
    display: grid;
    gap: 10px;
    color: #33404c;
    font-size: 13px;
}

.checkout-assurance i {
    color: #0f4748;
    margin-right: 8px;
}

.is-scroll-carousel {
    overflow: hidden;
}

.is-scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.is-scroll-track::-webkit-scrollbar {
    display: none;
}

.is-scroll-track > * {
    flex: 0 0 min(290px, 78vw);
    scroll-snap-align: start;
}

/* ==================================================
   CATEGORY LANDING PAGES
================================================== */

.category-landing {
    background: #fff;
    color: #172334;
}

.category-landing__hero {
    display: grid;
    grid-template-columns: 32% 68%;
    min-height: 620px;
    background: #f5f5f3;
}

.category-landing__copy {
    padding: 74px 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-kicker {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-bottom: 24px;
}

.category-landing__copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    line-height: .98;
    margin-bottom: 28px;
}

.category-landing__copy p:last-child {
    max-width: 520px;
    color: #313b48;
    font-size: 18px;
    line-height: 1.7;
}

.category-landing__panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 10px 10px 0;
}

.category-landing__panel {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #ddd;
}

.category-landing__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.category-landing__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.45) 100%);
}

.category-landing__panel:hover img {
    transform: scale(1.03);
}

.category-landing__panel div {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 34px;
    z-index: 2;
    color: #fff;
}

.category-landing__panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 18px;
}

.category-landing__panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 48px;
    background: #fff;
    color: #111;
    font-size: 14px;
}

.category-shop {
    padding: 72px 40px 68px;
}

.category-shop__header {
    max-width: 940px;
    margin-bottom: 34px;
}

.category-shop__header h2,
.category-guides h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 18px;
}

.category-shop__header p {
    color: #33404c;
    font-size: 18px;
    line-height: 1.5;
}

.category-shop__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.category-shop__card {
    display: block;
}

.category-shop__card img {
    width: 100%;
    aspect-ratio: .86;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.category-shop__card span {
    display: block;
    color: #232323;
    font-size: 17px;
    margin-top: 15px;
}

.category-guides {
    background: #f5f5f3;
    padding: 62px 40px 74px;
}

.category-guides__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.category-guide {
    min-height: 92px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid #e0e0dd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1b2536;
}

.category-guide span {
    font-size: 18px;
}

/* ==================================================
   PRODUCT CARDS, CART, CHECKOUT, SIMPLE PAGES
================================================== */

.product-grid {
    align-items: stretch;
}

.product-card {
    background: #fff;
    border: 1px solid #e7e4df;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-card__media {
    display: block;
    background: #ece9e3;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    aspect-ratio: .86;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.03);
}

.product-card__body {
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__type {
    color: #0f4748;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-card h3 {
    color: #1d2837;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 10px;
}

.product-card p {
    color: #4a5360;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.product-card__purchase {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.add-to-cart-btn {
    height: 42px;
    padding: 0 16px;
    border: 1px solid #153f42;
    background: #153f42;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: background .2s ease, color .2s ease;
}

.add-to-cart-btn:hover {
    background: #fff;
    color: #153f42;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    width: min(440px, 92vw);
    background: #fff;
    box-shadow: -20px 0 36px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .25s ease;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

body.cart-is-open .cart-backdrop {
    opacity: 1;
    visibility: visible;
}

.cart-drawer__header,
.cart-drawer__footer {
    padding: 24px;
    border-bottom: 1px solid #e6e3de;
}

.cart-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cart-drawer__eyebrow {
    color: #0f4748;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cart-drawer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    margin-top: 6px;
}

.cart-drawer__close {
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 18px 24px;
}

.cart-line {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #ece8e2;
}

.cart-line--compact {
    grid-template-columns: 84px 1fr;
}

.cart-line img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #ece9e3;
}

.cart-line h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
}

.cart-line span {
    display: block;
    color: #33404c;
    margin-bottom: 12px;
}

.cart-line__controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-line__controls button {
    min-width: 32px;
    min-height: 32px;
    border: 1px solid #d9d4cd;
    background: #fff;
    cursor: pointer;
}

.cart-line__controls button:last-child {
    border: 0;
    text-decoration: underline;
    color: #5b4d44;
}

.cart-empty {
    padding: 44px 0;
    text-align: center;
    color: #33404c;
}

.cart-drawer__footer {
    border-top: 1px solid #e6e3de;
    border-bottom: 0;
}

.cart-drawer__total,
.checkout-summary__total,
.checkout-summary__crypto,
.cart-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.cart-drawer__checkout,
.cart-summary a,
.checkout-summary button {
    width: 100%;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #123f42;
    background: #123f42;
    color: #fff;
    cursor: pointer;
    margin-bottom: 12px;
}

.cart-drawer__view {
    display: block;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cart-page__header,
.checkout-hero,
.simple-hero {
    background: #f5f5f3;
    padding: 78px 40px 62px;
    text-align: center;
}

.cart-page__header p,
.checkout-hero p,
.simple-hero p,
.account-panel p {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cart-page__header h1,
.checkout-hero h1,
.simple-hero h1,
.account-panel h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 18px;
}

.cart-page__header span,
.checkout-hero span,
.simple-hero span {
    color: #34404c;
    font-size: 17px;
    line-height: 1.6;
}

.cart-page__layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 42px;
    padding: 54px 40px 78px;
    max-width: 1320px;
    margin: 0 auto;
}

.cart-summary,
.checkout-summary,
.checkout-panel {
    border: 1px solid #e1ddd6;
    padding: 28px;
    align-self: start;
    background: #fff;
}

.cart-summary h2,
.checkout-summary h2,
.checkout-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 24px;
}

.cart-summary p,
.checkout-summary p {
    color: #4c5662;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.crypto-options {
    display: grid;
    gap: 12px;
}

.crypto-options label {
    min-height: 58px;
    border: 1px solid #ddd8d1;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.crypto-options input {
    margin-right: 10px;
}

.wallet-box {
    margin-top: 28px;
    padding: 18px;
    background: #f5f5f3;
    display: grid;
    gap: 10px;
}

.wallet-box code {
    word-break: break-all;
}

.wallet-box button {
    justify-self: start;
    border: 1px solid #123f42;
    background: #fff;
    padding: 10px 18px;
    cursor: pointer;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 54px 40px 78px;
}

/* ==================================================
   CATALOG
================================================== */

.catalog-page {
    background: #fff;
    color: #172334;
}

.catalog-hero {
    padding: 74px 40px 58px;
    background: #f5f5f3;
    text-align: center;
}

.catalog-hero p,
.catalog-section__header p {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.catalog-hero h1 {
    max-width: 920px;
    margin: 0 auto 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    font-weight: 300;
    line-height: 1;
}

.catalog-hero span {
    color: #3b4653;
    font-size: 17px;
}

.catalog-toolbar {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 14px 40px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid #e7e4df;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.catalog-toolbar a {
    min-height: 38px;
    border: 1px solid #d8d3ca;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #223041;
    font-size: 13px;
    background: #fff;
}

.catalog-toolbar a:hover {
    border-color: #123f42;
    color: #123f42;
}

.catalog-section {
    max-width: 1540px;
    margin: 0 auto;
    padding: 64px 40px 28px;
}

.catalog-section--compact {
    padding-top: 52px;
    padding-bottom: 12px;
}

.catalog-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.catalog-section__header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
}

.catalog-section__header > span,
.catalog-section__header > a {
    color: #123f42;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.catalog-card .product-card__body {
    padding: 20px;
}

.catalog-card .product-card__media img {
    aspect-ratio: 1;
}

.catalog-card__meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 4px;
    margin-bottom: 14px;
}

.catalog-card__meta strong {
    color: #172334;
    font-size: 17px;
}

.catalog-card__meta a {
    color: #123f42;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.catalog-card .add-to-cart-btn {
    width: 100%;
    min-height: 44px;
}

.catalog-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.catalog-strip__item {
    min-width: 0;
    border: 1px solid #e7e4df;
    background: #fff;
    padding: 12px;
    display: grid;
    gap: 9px;
}

.catalog-strip__item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #ece9e3;
}

.catalog-strip__item span {
    color: #172334;
    font-size: 14px;
    line-height: 1.3;
}

.catalog-strip__item strong {
    color: #123f42;
    font-size: 14px;
}

.simple-card {
    border: 1px solid #e3ded7;
    background: #fff;
}

.simple-card img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
    display: block;
}

.simple-card div {
    padding: 24px;
}

/* ==================================================
   ADMIN
================================================== */

.admin-page {
    min-height: 100vh;
    background: #f7f6f2;
    color: #172334;
}

.admin-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 46px 40px 88px;
}

.admin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-header p,
.admin-panel__title span {
    color: #6d746f;
    font-size: 12px;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.admin-header h1,
.admin-panel__title h2,
.admin-auth-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
}

.admin-header button,
.admin-form button,
.admin-actions a,
.admin-row-actions a,
.admin-row-actions button {
    border: 1px solid #123f42;
    background: #123f42;
    color: #fff;
    min-height: 42px;
    padding: 0 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-alert,
.admin-auth-panel,
.admin-panel {
    border: 1px solid #dedbd4;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 31, 44, .05);
}

.admin-alert {
    padding: 14px 18px;
    margin-bottom: 16px;
}

.admin-alert--success {
    border-color: #b9cec2;
    background: #f1f8f3;
}

.admin-alert--error {
    border-color: #e0b6ad;
    background: #fff3f0;
}

.admin-auth-panel,
.admin-panel {
    padding: 26px;
}

.admin-auth-panel {
    max-width: 520px;
}

.admin-auth-panel p,
.admin-order-list p {
    color: #4c5662;
    line-height: 1.6;
    margin: 12px 0 22px;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.admin-panel__title {
    margin-bottom: 20px;
}

.admin-form,
.admin-form label {
    display: grid;
    gap: 8px;
}

.admin-form {
    gap: 14px;
}

.admin-form label {
    color: #33404c;
    font-size: 13px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    border: 1px solid #cfcac1;
    background: #fff;
    color: #172334;
    font: inherit;
    padding: 12px 13px;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-check {
    display: flex !important;
    align-items: center;
    grid-template-columns: auto 1fr;
}

.admin-check input {
    width: auto;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-actions a,
.admin-row-actions a {
    background: #fff;
    color: #123f42;
}

.admin-order-list {
    display: grid;
    gap: 12px;
}

.admin-order-list article {
    border-bottom: 1px solid #e5e0d8;
    padding-bottom: 12px;
    display: grid;
    gap: 5px;
}

.admin-order-list span,
.admin-order-list small {
    color: #5d6670;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #e5e0d8;
    padding: 14px 10px;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #6d746f;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-product-cell img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    background: #f2efe9;
}

.admin-product-cell span {
    display: grid;
    gap: 4px;
}

.admin-product-cell small {
    color: #6d746f;
}

.admin-row-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.admin-row-actions button {
    background: #fff;
    color: #8a2f21;
    border-color: #d8b6ae;
}

.simple-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 12px;
}

.simple-card p {
    color: #3a4652;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.simple-card a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.account-page {
    min-height: 620px;
    background: #f5f5f3;
    display: grid;
    place-items: center;
    padding: 62px 24px;
}

.account-panel {
    width: min(520px, 100%);
    background: #fff;
    border: 1px solid #e0dbd4;
    padding: 38px;
}

.account-panel form {
    display: grid;
    gap: 18px;
    margin: 28px 0 18px;
}

.account-panel label {
    display: grid;
    gap: 8px;
    color: #2e3945;
    font-size: 14px;
}

.account-panel input {
    height: 48px;
    border: 1px solid #d8d2ca;
    padding: 0 14px;
}

.account-panel button {
    height: 52px;
    border: 1px solid #123f42;
    background: #123f42;
    color: #fff;
}

/* ==================================================
   PRODUCT DETAIL
================================================== */

.product-detail-page {
    background: #fff;
    color: #172334;
}

.product-detail {
    max-width: 1480px;
    margin: 0 auto;
    padding: 44px 40px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 440px;
    gap: 54px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-gallery__main {
    width: 100%;
    aspect-ratio: .92;
    object-fit: cover;
    background: #f3f0eb;
    display: block;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f3f0eb;
}

.product-info {
    position: sticky;
    top: 116px;
    padding-top: 18px;
}

.product-info__type {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.product-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 300;
    line-height: 1;
    color: #172334;
    margin-bottom: 18px;
}

.product-info__price {
    color: #111;
    font-size: 22px;
    margin-bottom: 24px;
}

.product-info > p {
    color: #3c4652;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-detail__summary {
    border-top: 1px solid #e4e0d8;
    border-bottom: 1px solid #e4e0d8;
    margin: 0 0 28px;
    padding: 18px 0;
    display: grid;
    gap: 10px;
}

.product-detail__summary span {
    color: #33404c;
    font-size: 14px;
    line-height: 1.55;
}

.product-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.product-options label {
    display: grid;
    gap: 8px;
    color: #293645;
    font-size: 13px;
}

.product-options select {
    height: 46px;
    border: 1px solid #d8d2ca;
    background: #fff;
    padding: 0 12px;
}

.product-detail__add {
    width: 100%;
    height: 58px;
    border: 1px solid #123f42;
    background: #123f42;
    color: #fff;
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    margin-bottom: 24px;
}

.product-service-list {
    display: grid;
    gap: 14px;
    border-top: 1px solid #e5e0d9;
    padding-top: 22px;
}

.product-service-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #34404c;
    font-size: 14px;
}

.product-service-list i {
    width: 20px;
    color: #0f4748;
}

.product-story {
    background: #f5f5f3;
    padding: 64px 40px;
    display: grid;
    grid-template-columns: minmax(280px, 520px) minmax(0, 760px);
    gap: 70px;
    justify-content: center;
    align-items: center;
}

.product-story p:first-child {
    color: #0f4748;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.product-story h2,
.related-products h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.05;
}

.product-story > p {
    color: #384451;
    font-size: 17px;
    line-height: 1.75;
}

.related-products {
    padding: 68px 40px 82px;
}

.related-products h2 {
    margin-bottom: 30px;
}

/* ==========================================
   SHOP DIAMONDS BY SHAPE
========================================== */

.diamond-shapes-section {
    background: #f6f6f4;
    padding: 92px 0 88px;
    overflow: hidden;
}

.diamond-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 42px;

    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
   LEFT SIDE
========================================== */

.diamond-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diamond-left h2 {
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
    color: #1f2430;
    letter-spacing: -0.7px;

    margin-bottom: 40px;
}

.featured-ring {
    width: 100%;
    display: flex;
    justify-content: center;
}

.featured-ring img {
    width: 430px;
    max-width: 100%;
    object-fit: contain;

    filter:
        drop-shadow(0 14px 18px rgba(0,0,0,.12));
}

/* ==========================================
   RIGHT GRID
========================================== */

.diamond-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 42px;
    row-gap: 34px;
}

.shape-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: inherit;

    transition: transform .25s ease;
}

.shape-card:hover {
    transform: translateY(-4px);
}

.shape-image {
    width: 112px;
    height: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}

.shape-image img {
    width: 90px;
    height: 90px;
    object-fit: contain;

    filter:
        drop-shadow(0 3px 8px rgba(0,0,0,.10));
}

.shape-card span {
    font-size: 18px;
    font-weight: 400;
    color: #2f3339;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -.2px;
}

/* ==========================================
   PROMOTIONAL BANNER
========================================== */

.promo-banner {
    background: #ffffff;
    padding: 24px 0 34px;
    width: 90%;
    margin: 0 auto;
}

.promo-inner {
    position: relative;

    max-width: 1800px;
    height: 170px;

    margin: 0 auto;
    padding: 0 48px;

    background: #103f42;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* ==========================================
   NECKLACE IMAGE
========================================== */

.promo-image {
    position: absolute;

    left: 420px;
    top: -30px;

    width: 170px;
    height: 220px;

    z-index: 2;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter:
        drop-shadow(0 12px 10px rgba(0,0,0,.35));
}

/* ==========================================
   CONTENT
========================================== */

.promo-content {
    margin-left: 690px;
    color: #fff;
}

.promo-content h3 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -.2px;
}

.promo-line {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.promo-line strong {
    font-weight: 500;
}

.promo-code {
    font-size: 14px;
    text-transform: uppercase;
}

.promo-code strong {
    font-weight: 700;
}

/* ==========================================
   TERMS LINK
========================================== */

.promo-terms {
    position: absolute;
    right: 14px;
    bottom: 14px;

    font-size: 11px;
    color: #ffffff;

    text-decoration: underline;
    opacity: .95;
}

.promo-terms:hover {
    opacity: 1;
}

/* ==================================================
   OBSESSION-WORTHY ENGAGEMENT RINGS SECTION
================================================== */

.ring-categories-section {
    background: #ffffff;
    padding: 72px 0 64px;
}

.ring-container {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0 40px;
}

.ring-heading {
    margin-bottom: 34px;
}

.ring-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    font-weight: 300;
    line-height: 1;
    color: #13243a;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.ring-heading p {
    font-size: 20px;
    color: #2b3440;
    font-weight: 300;
    line-height: 1.5;
}

.ring-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.ring-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ring-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.86;
    overflow: hidden;
    background: #d8c3af;
}

.ring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition:
        transform .45s ease,
        filter .45s ease;
}

.ring-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.04) 0%,
            rgba(0,0,0,.03) 100%
        );

    pointer-events: none;
}

.ring-card:hover .ring-image img {
    transform: scale(1.03);
    filter: brightness(1.02);
}

.ring-card h3 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    color: #232323;
    letter-spacing: -.2px;
}

/* ===================================================
   CHARMED HERO BANNER
=================================================== */

.charmed-section {
    position: relative;
    width: 100%;
    height: 585px;
    overflow: hidden;
    background: #0b3738;
}

.charmed-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.charmed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    filter:
        brightness(.72)
        saturate(1.1)
        contrast(1.05);
}

.charmed-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,28,.45) 0%,
            rgba(4,25,28,.12) 35%,
            rgba(4,25,28,.08) 100%
        );
}

.charmed-content {
    position: relative;
    z-index: 5;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 96px;
}

.charmed-logo {
    color: #fff;
}

.charmed-title {
    display: flex;
    gap: 34px;

    font-size: 74px;
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1;

    margin-bottom: 46px;
}

.charmed-title span {
    display: inline-block;
}

.by-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-left: 380px;
    margin-bottom: 38px;
}

.brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #fff;
}

.registered {
    font-size: 16px;
    vertical-align: super;
}

.charmed-btn {
    width: 228px;
    height: 76px;

    margin-top: 76px;
    margin-left: 286px;

    background: #ffffff;
    color: #161616;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 22px;
    font-weight: 400;

    transition:
        background .25s ease,
        transform .25s ease;
}

.charmed-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.trend-report-section {
    background: #ffffff;
    padding: 64px 0 10px;
}

.trend-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.trend-header {
    padding: 0 35px;
    margin-bottom: 28px;
}

.trend-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    font-weight: 300;
    line-height: 1;
    color: #17253a;
    letter-spacing: -.9px;
    margin-bottom: 18px;
}

.trend-header p {
    max-width: 980px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 300;
    color: #2e3642;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.trend-card {
    position: relative;
    overflow: hidden;
    height: 780px;
    cursor: pointer;
    background: #ddd;
}

.trend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition:
        transform .6s ease,
        filter .6s ease;
}

.trend-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 42%,
            rgba(0,0,0,.18) 62%,
            rgba(0,0,0,.42) 100%
        );

    z-index: 1;
}

.trend-card:hover img {
    transform: scale(1.04);
}

.trend-content {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.trend-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 18px;
}

.trend-content p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 30px;
}

.trend-btn {
    width: 160px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.9);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(1px);
    transition: all .25s ease;
}

.trend-btn:hover {
    background: #fff;
    color: #111;
}

/* ===================================================
   WE'RE HERE FOR YOU SECTION
=================================================== */

.showroom-section {
    background: #f5f5f3; /* exact light gray tone */
    padding: 90px 0 92px;
    overflow: hidden;
}

.showroom-container {
    max-width: 1920px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 49.2% 50.8%;
    align-items: center;
}

.showroom-image {
    position: relative;
}

.showroom-image img {
    width: 100%;
    display: block;
    aspect-ratio: 1.34;
    object-fit: cover;
}

.showroom-content {
    padding-left: 84px;
    padding-right: 70px;
    max-width: 760px;
}

.showroom-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.8px;
    color: #1b2536;

    max-width: 860px;
    margin-bottom: 34px;
}

.showroom-content p {
    font-size: 17px;
    line-height: 1.65;
    color: #343b45;
    font-weight: 300;
    max-width: 760px;
    margin-bottom: 48px;
}

.showroom-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.showroom-btn {
    min-width: 265px;
    height: 60px;
    border: 1px solid #4d4d4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    background: transparent;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.showroom-btn:hover {
    background: #1b2536;
    color: #fff;
    transform: translateY(-2px);
}

.covered-section {
    background: #0f4748;
    padding: 58px 0 92px;
    border-bottom: 2px solid rgba(255,255,255,.95);
}

.covered-container {
    max-width: 1880px;
    margin: 0 auto;
    padding: 0 40px;
}

.covered-section h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 72px;
    letter-spacing: -.6px;
}

.covered-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.covered-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.covered-icon {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 34px;
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.10),
            rgba(255,255,255,.02) 60%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.03)
        );
    border: 2px solid rgba(255,255,255,.18);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.16),
        0 8px 14px rgba(0,0,0,.28),
        0 3px 0 rgba(0,0,0,.18);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.covered-item:hover .covered-icon {
    transform: translateY(-4px);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.2),
        0 14px 24px rgba(0,0,0,.32);
}

.covered-icon i {
    font-size: 30px;
    color: rgba(255,255,255,.92);

    text-shadow:
        0 0 10px rgba(255,255,255,.15);
}


.covered-item h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -.1px;
    max-width: 260px;
}

/* ==================================================
   OUR MISSION SECTION
================================================== */

.mission-section {
    background: #f5f5f3;
    padding: 92px 0 96px;
    overflow: hidden;
}

.mission-container {
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 68px;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 70px;
    align-items: start;
}

.mission-main-image {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.mission-main-image img {
    width: 100%;
    aspect-ratio: 1.08;
    display: block;
    object-fit: cover;

    transition: transform .6s ease;
}

.mission-main-image:hover img {
    transform: scale(1.03);
}

.mission-caption {
    position: absolute;
    left: 48px;
    bottom: 48px;

    color: #fff;
    font-size: 17px;
    font-weight: 500;

    letter-spacing: -.2px;
    line-height: 1.3;

    z-index: 2;
}

.mission-main-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,.18) 75%,
            rgba(0,0,0,.52) 100%
        );

    z-index: 1;
}

.mission-header {
    text-align: center;
    padding: 6px 20px 0;
}

.mission-label {
    display: block;
    font-size: 14px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #293140;
    margin-bottom: 28px;
}

.mission-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
    color: #1a2436;
    max-width: 900px;
    margin: 0 auto 40px;
    letter-spacing: -.6px;
}

.mission-link {
    display: inline-block;
    color: #1a2436;
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 56px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mission-card {
    display: flex;
    flex-direction: column;
}

.mission-card-image {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.mission-card-image img {
    width: 100%;
    aspect-ratio: 1/1.2;
    display: block;
    object-fit: cover;

    transition: transform .5s ease;
}

.mission-card:hover img {
    transform: scale(1.04);
}

.mission-card h3 {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    letter-spacing: -.2px;
    line-height: 1.35;
}

.mission-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,.18);
    z-index: 10;
}

.mission-arrow i {
    font-size: 16px;
    color: #222;
}

.inspired-section {
    background: #f5f5f3;
    padding: 28px 0 18px;
    overflow: hidden;
}

.inspired-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 0 38px;
    margin-bottom: 46px;
}

.inspired-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    font-weight: 300;
    line-height: 1;
    color: #17253a;
    letter-spacing: -.8px;
}

.instagram-link {
    margin-top: 14px;

    color: #1f2b3b;
    font-size: 18px;
    font-weight: 400;

    text-decoration: underline;
    text-underline-offset: 4px;

    transition: opacity .25s ease;
}

.instagram-link:hover {
    opacity: .75;
}

.inspired-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.inspired-card {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.inspired-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition:
        transform .55s ease,
        filter .55s ease;
}

.inspired-card:hover img {
    transform: scale(1.04);
}

.play-btn {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: rgba(53, 48, 40, .85);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    cursor: pointer;

    transition: all .25s ease;
}

.play-btn:hover {
    transform: scale(1.08);
    background: rgba(53,48,40,.95);
}

.play-btn i {
    font-size: 15px;
    margin-left: 2px;
}

.slider-arrow {
    position: absolute;
    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.92);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 4px 18px rgba(0,0,0,.14);

    cursor: pointer;

    z-index: 5;
}

.slider-arrow i {
    font-size: 18px;
    color: #1f1f1f;
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background: #f5f5f3;
    color: #1e2837;
    overflow: hidden;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
}

.footer-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 62px 40px 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 150px;
}

.footer-column h3 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;
    color: #18263b;
    margin-bottom: 26px;
}

.footer-spacer {
    height: 52px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: #27303d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.35;
    transition: opacity .2s ease;
}

.footer-column a:hover {
    opacity: .65;
}

.signup-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.signup-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signup-item i {
    width: 18px;
    font-size: 17px;
    color: #2b3440;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.footer-socials a {
    font-size: 27px;
    color: #1d2837;
}

.footer-socials a:hover {
    opacity: .7;
}

.footer-bottom {
    max-width: 1480px;
    margin: 0 auto;

    padding: 0 40px 44px;

    text-align: center;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: #313a47;
    margin-bottom: 14px;
}

.footer-legal a {
    color: #313a47;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-currency {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.footer-currency a {
    color: #313a47;
    text-decoration: none;
}

.footer-currency a:hover {
    text-decoration: underline;
}

/* ==================================================
   ABOUT PAGE
================================================== */

/* .about-page {
    background: #fff;
} */

/* .about-hero {
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 80px 24px;
    background:
        linear-gradient(rgba(8, 61, 64, .58), rgba(8, 61, 64, .35)),
        url("../images/brilliantstones/reference-08.jpg") center/cover;
    color: #fff;
    text-align: center;
}

.about-hero__content {
    max-width: 760px;
} */

/* .about-hero h1 {
    margin: 14px 0 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
}

.about-hero p:last-child {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
} */
