/* ============================================================
   LUXEAURA STOREFRONT
   Boutique • Perfumes • Watches
   Premium Glass / Luxury UI
============================================================ */

:root {
    --bg: #f5f1ea;
    --bg-soft: #fbf8f3;
    --surface: #ffffff;

    --ink: #17131b;
    --muted: #746d78;

    --dark: #0d0b10;
    --dark-2: #17131c;

    --plum: #6f466d;
    --plum-dark: #4d304c;

    --rose: #b78085;

    --gold: #b99359;
    --gold-soft: #e2c99d;

    --cream: #f8efe2;

    --success: #2f8e6c;
    --danger: #b94f5d;
    --warning: #b97824;

    --line: rgba(32, 24, 38, .10);

    --glass: rgba(255, 255, 255, .62);
    --glass-strong: rgba(255, 255, 255, .82);
    --glass-dark: rgba(17, 14, 20, .84);

    --shadow:
        0 24px 70px rgba(43, 31, 49, .10);

    --shadow-lg:
        0 38px 100px rgba(27, 17, 31, .16);

    --shadow-hover:
        0 28px 70px rgba(40, 27, 45, .15);

    --radius: 28px;
    --radius-sm: 18px;

    --serif:
        "Cormorant Garamond",
        Georgia,
        serif;

    --sans:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.store-body {
    min-height: 100vh;
    margin: 0;

    color: var(--ink);

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(185, 147, 89, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 16%,
            rgba(111, 70, 109, .12),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            var(--bg-soft),
            var(--bg)
        );

    font-family: var(--sans);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}

body.store-body::selection {
    color: var(--ink);
    background: rgba(185, 147, 89, .28);
}

a {
    color: inherit;
    text-decoration: none;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1240px;
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(185, 147, 89, .28);
    outline-offset: 3px;
}


/* ============================================================
   BACKGROUND AURORA
============================================================ */

.page-aurora {
    position: fixed;
    z-index: 0;

    border-radius: 50%;

    filter: blur(45px);

    pointer-events: none;

    opacity: .5;
}

.aurora-a {
    width: 320px;
    height: 320px;

    left: -120px;
    top: 30vh;

    background:
        rgba(185, 147, 89, .13);
}

.aurora-b {
    width: 430px;
    height: 430px;

    right: -180px;
    top: 60vh;

    background:
        rgba(111, 70, 109, .12);
}


/* ============================================================
   GLASS
============================================================ */

.glass-panel {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.76),
            rgba(255,255,255,.45)
        );

    border:
        1px solid rgba(255, 255, 255, .72);

    box-shadow: var(--shadow);

    backdrop-filter:
        blur(20px)
        saturate(135%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(135%);
}

.glass-dark {
    color: #fff;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(185,147,89,.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(12, 10, 14, .96),
            rgba(35, 26, 38, .91)
        );

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow: var(--shadow-lg);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


/* ============================================================
   COMMON TYPOGRAPHY
============================================================ */

.eyebrow {
    display: inline-block;

    color: var(--plum);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .19em;

    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--gold-soft);
}

.section-space {
    padding: 88px 0;
}

.section-sm {
    padding: 24px 0;
}

.section-tinted {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.32),
            rgba(255,255,255,.08)
        );

    border-top:
        1px solid rgba(255,255,255,.55);

    border-bottom:
        1px solid rgba(255,255,255,.55);
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 28px;

    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 5px 0 0;

    font:
        600
        clamp(34px, 4vw, 56px) /
        .98
        var(--serif);

    letter-spacing: -.035em;
}

.section-heading h2 em {
    color: var(--plum);

    font-weight: 600;
}

.section-heading p {
    max-width: 560px;

    margin: 12px 0 0;

    color: var(--muted);

    line-height: 1.75;
}

.section-heading.mini {
    align-items: center;

    margin-bottom: 22px;
}

.section-heading.mini h2 {
    font-size: 30px;
}

.section-heading.mini a {
    color: var(--plum);

    font-size: 13px;
    font-weight: 700;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 700;
}

.text-link i {
    transition:
        transform .2s ease;
}

.text-link:hover i {
    transform:
        translateX(4px);
}


/* ============================================================
   BUTTONS
============================================================ */

.luxe-btn {
    display: inline-flex;

    align-items: center;

    justify-content: flex-start;

    gap: 9px;

    min-height: 48px;

    padding:
        12px
        19px;

    border:
        1px solid transparent;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.luxe-btn:hover {
    transform:
        translateY(-2px);
}

.luxe-btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #241b27,
            #734a70
        );

    box-shadow:
        0 14px 30px
        rgba(74, 44, 73, .22);
}

.luxe-btn-primary:hover {
    color: white;

    box-shadow:
        0 18px 38px
        rgba(74, 44, 73, .30);
}

.luxe-btn-primary:disabled {
    opacity: .48;

    transform: none;
}

.luxe-btn-light {
    color: #161118;

    background: #f7efe3;

    box-shadow:
        0 14px 32px
        rgba(0,0,0,.18);
}

.luxe-btn-light:hover {
    color: #161118;

    background: white;
}

.luxe-btn-glass {
    color: white;

    background:
        rgba(255,255,255,.10);

    border-color:
        rgba(255,255,255,.18);
}

.luxe-btn-glass:hover {
    color: white;

    background:
        rgba(255,255,255,.17);
}

.luxe-btn-outline {
    color: var(--ink);

    background:
        rgba(255,255,255,.50);

    border-color:
        var(--line);
}

.luxe-btn-outline:hover {
    color: var(--plum);

    background: white;

    border-color:
        rgba(111,70,109,.18);
}

.luxe-btn-ghost {
    color: white;

    background:
        rgba(255,255,255,.07);

    border-color:
        rgba(255,255,255,.13);
}

.luxe-btn-ghost:hover {
    color: var(--gold-soft);

    background:
        rgba(255,255,255,.12);
}


/* ============================================================
   ANNOUNCEMENT
============================================================ */

.announcement-bar {
    position: relative;
    z-index: 50;

    padding: 8px 0;

    color:
        rgba(255,255,255,.78);

    background: #0c0a0e;

    font-size: 10px;

    letter-spacing: .06em;
}

.announcement-bar i {
    color: var(--gold-soft);
}


/* ============================================================
   NAVIGATION
============================================================ */

.store-header {
    position: sticky;

    top: 0;

    z-index: 45;

    padding: 10px 0;

    transition:
        padding .25s ease;
}

.store-header.scrolled {
    padding: 6px 0;
}

.luxe-navbar {
    width:
        min(
            1240px,
            calc(100% - 30px)
        );

    margin: 0 auto;

    padding:
        9px
        12px;

    border:
        1px solid
        rgba(255,255,255,.72);

    border-radius: 22px;

    background:
        rgba(250,247,241,.78);

    box-shadow:
        0 14px 40px
        rgba(46,34,52,.08);

    backdrop-filter:
        blur(22px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(145%);
}

.luxe-brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--ink);
}

.brand-gem {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #1c1620,
            #70466c
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.18),

        0 10px 22px
        rgba(43,29,48,.18);

    font:
        700
        22px
        var(--serif);
}

.brand-copy {
    display: grid;

    line-height: 1.05;
}

.brand-copy strong {
    font:
        700
        15px
        var(--serif);

    letter-spacing: .18em;
}

.brand-copy small {
    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: .10em;

    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;

    margin: 0 5px;

    padding:
        10px
        8px !important;

    color: #5e5862;

    font-size: 12px;
    font-weight: 650;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--ink);
}

.navbar-nav .nav-link.active::after {
    content: "";

    display: block;

    width: 18px;
    height: 2px;

    margin:
        4px
        auto
        0;

    border-radius: 2px;

    background: var(--gold);
}

.nav-icon-btn {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border: 0;

    border-radius: 13px;

    color: var(--ink);

    background: transparent;

    transition:
        background .2s ease,
        transform .2s ease;
}

.nav-icon-btn:hover {
    background:
        rgba(255,255,255,.78);

    transform:
        translateY(-1px);
}

.nav-count {
    position: absolute;

    top: 2px;
    right: 1px;

    min-width: 17px;
    height: 17px;

    display: grid;

    place-items: center;

    padding: 0 4px;

    color: white;

    background: var(--plum);

    border:
        2px solid #f8f4ee;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;
}

.nav-login {
    min-height: 40px;

    display: inline-flex;

    align-items: center;

    padding: 0 15px;

    border-radius: 13px;

    color: white;

    background: var(--dark);

    font-size: 11px;
    font-weight: 700;
}

.nav-login:hover {
    color: var(--gold-soft);
}

.account-chip {
    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 40px;

    padding:
        4px
        10px
        4px
        5px;

    border: 0;

    border-radius: 14px;

    color: var(--ink);

    background:
        rgba(255,255,255,.72);

    font-size: 11px;
    font-weight: 700;
}

.account-initial {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            var(--plum)
        );
}

.luxe-toggler {
    width: 40px;
    height: 40px;

    border: 0;

    box-shadow:
        none !important;

    font-size: 22px;
}

.luxe-dropdown {
    padding: 10px;

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius: 17px;

    background:
        rgba(253,250,246,.96);

    box-shadow: var(--shadow);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

.luxe-dropdown .dropdown-item {
    padding:
        9px
        12px;

    border-radius: 10px;

    font-size: 12px;
}

.luxe-dropdown .dropdown-item:hover {
    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}


/* ============================================================
   MOBILE MENU
============================================================ */

.luxe-offcanvas {
    width:
        min(
            380px,
            90vw
        ) !important;

    color: white;

    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(185,147,89,.14),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #0f0c12,
            #261d28
        );
}

.luxe-offcanvas .offcanvas-header {
    padding: 22px;
}

.luxe-offcanvas .brand-copy strong {
    color: white;
}

.luxe-offcanvas .brand-copy small {
    color:
        rgba(255,255,255,.55);
}

.luxe-offcanvas .offcanvas-body {
    padding:
        12px
        22px
        28px;
}

.mobile-nav-link {
    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px
        8px;

    color:
        rgba(255,255,255,.82);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    font-size: 14px;
}

.mobile-nav-link:hover {
    color: var(--gold-soft);
}

.mobile-nav-link.sub {
    padding-left: 42px;

    color:
        rgba(255,255,255,.58);

    font-size: 12px;
}


/* ============================================================
   SEARCH OVERLAY
============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 100;

    display: grid;

    place-items:
        start
        center;

    padding:
        12vh
        20px
        30px;

    opacity: 0;

    visibility: hidden;

    background:
        rgba(13,10,15,.86);

    backdrop-filter: blur(26px);

    -webkit-backdrop-filter:
        blur(26px);

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.search-overlay.show {
    opacity: 1;

    visibility: visible;
}

.search-close {
    position: absolute;

    top: 28px;
    right: 32px;

    width: 46px;
    height: 46px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50%;

    color: white;

    background:
        rgba(255,255,255,.08);
}

.search-close:hover {
    background:
        rgba(255,255,255,.15);
}

.search-shell {
    width:
        min(
            760px,
            100%
        );

    color: white;
}

.search-shell h2 {
    margin:
        8px
        0
        28px;

    font:
        600
        clamp(34px,5vw,60px) /
        1
        var(--serif);
}

.search-field-wrap {
    position: relative;
}

.search-field-wrap > i {
    position: absolute;

    left: 20px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.55);
}

.search-field-wrap input {
    width: 100%;
    height: 62px;

    padding:
        0
        22px
        0
        52px;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 18px;

    outline: 0;

    color: white;

    background:
        rgba(255,255,255,.08);
}

.search-field-wrap input::placeholder {
    color:
        rgba(255,255,255,.44);
}

.search-field-wrap input:focus {
    border-color:
        rgba(226,201,157,.50);

    background:
        rgba(255,255,255,.11);
}

.live-search-results {
    display: grid;

    gap: 8px;

    margin-top: 14px;
}

.search-result {
    display: grid;

    grid-template-columns:
        58px
        1fr
        auto;

    gap: 13px;

    align-items: center;

    padding: 10px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    color: white;

    background:
        rgba(255,255,255,.06);

    transition:
        transform .2s ease,
        background .2s ease;
}

.search-result:hover {
    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,.10);
}

.search-result-img {
    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);
}

.search-result-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.search-result small {
    display: block;

    color:
        rgba(255,255,255,.45);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.search-result strong {
    display: block;

    margin-top: 3px;

    font:
        600
        19px
        var(--serif);
}

.search-result-price {
    text-align: right;

    font-size: 12px;
}

.search-result-price del {
    display: block;

    color:
        rgba(255,255,255,.38);

    font-size: 10px;
}

.search-empty {
    padding: 16px;

    color:
        rgba(255,255,255,.55);

    text-align: center;
}


/* ============================================================
   FLASH MESSAGES
============================================================ */

.flash-wrap {
    position: relative;

    z-index: 35;

    margin-top: 4px;
}

.luxe-alert {
    border:
        1px solid
        rgba(255,255,255,.75);

    border-radius: 16px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(15px);

    font-size: 13px;
}


/* ============================================================
   HERO
============================================================ */

.hero-section {
    padding:
        10px
        0
        24px;
}

.hero-carousel,
.hero-default {
    min-height: 620px;

    overflow: hidden;

    border-radius: 34px;
}

.hero-banner {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: end;

    padding: 60px;

    background-image:
        var(--hero-image);

    background-size: cover;

    background-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,7,10,.90) 0%,
            rgba(12,9,13,.60) 42%,
            rgba(10,8,11,.12) 75%
        ),
        linear-gradient(
            0deg,
            rgba(9,7,10,.48),
            transparent 45%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;

    color: white;
}

.hero-content h1,
.hero-default h1 {
    margin:
        10px
        0
        18px;

    font:
        600
        clamp(50px, 6vw, 84px) /
        .88
        var(--serif);

    letter-spacing: -.04em;
}

.hero-content h1 em,
.hero-default h1 em {
    color: var(--gold-soft);

    font-weight: 600;
}

.hero-content p,
.hero-default p {
    max-width: 570px;

    color:
        rgba(255,255,255,.70);

    font-size: 15px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.hero-control {
    width: 48px;
    height: 48px;

    top: auto;
    bottom: 30px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50%;

    background:
        rgba(20,16,22,.35);

    opacity: 1;
}

.carousel-control-prev.hero-control {
    left: auto;

    right: 88px;
}

.carousel-control-next.hero-control {
    right: 30px;
}

.hero-carousel .carousel-indicators {
    justify-content: start;

    margin: 0;

    left: 60px;
    bottom: 34px;
    right: auto;
}

.hero-carousel .carousel-indicators button {
    width: 24px;
    height: 3px;

    border: 0;

    border-radius: 10px;
}


/* ============================================================
   DEFAULT HERO
============================================================ */

.hero-default {
    position: relative;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    padding: 64px;
}

.hero-copy {
    position: relative;

    z-index: 3;
}

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 36px;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;
}

.hero-trust i {
    margin-right: 5px;

    color: var(--gold-soft);
}

.hero-art {
    position: relative;

    height: 470px;

    transition:
        transform .2s ease-out;
}

.hero-monogram {
    position: absolute;

    inset:
        50%
        auto
        auto
        50%;

    transform:
        translate(-50%,-50%);

    color:
        rgba(255,255,255,.06);

    font:
        700
        150px
        var(--serif);

    letter-spacing: -.08em;
}

.orbit {
    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;
}

.orbit-one {
    width: 360px;
    height: 360px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);
}

.orbit-two {
    width: 230px;
    height: 230px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-color:
        rgba(226,201,157,.18);
}

.floating-tile {
    position: absolute;

    width: 150px;

    min-height: 150px;

    display: grid;

    place-items: center;

    align-content: center;

    gap: 10px;

    padding: 18px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 30px;

    color: white;

    text-align: center;

    background:
        rgba(255,255,255,.07);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.20);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}

.floating-tile i {
    color: var(--gold-soft);

    font-size: 30px;
}

.floating-tile span {
    font:
        600
        20px /
        1
        var(--serif);
}

.tile-perfume {
    left: 5%;
    top: 8%;

    transform:
        rotate(-6deg);
}

.tile-watch {
    right: 3%;
    top: 20%;

    transform:
        rotate(6deg);
}

.tile-boutique {
    left: 31%;
    bottom: 3%;

    transform:
        rotate(2deg);
}


/* ============================================================
   TRUST STRIP
============================================================ */

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 2px;

    padding: 10px;

    border-radius: 22px;
}

.trust-grid > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        14px
        16px;

    border-right:
        1px solid var(--line);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid i {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    flex: 0 0 auto;

    border-radius: 12px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.trust-grid span {
    display: grid;
}

.trust-grid strong {
    font-size: 11px;
}

.trust-grid small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}


/* ============================================================
   CATEGORY CARDS
============================================================ */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;
}

.category-card {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    border-radius: 28px;

    background: #ddd6cd;

    box-shadow: var(--shadow);
}

.category-card img,
.category-placeholder {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        .55s
        cubic-bezier(.2,.7,.2,1);
}

.category-placeholder {
    display: grid;

    place-items: center;

    color:
        rgba(255,255,255,.72);

    background:
        radial-gradient(
            circle at 60% 30%,
            #8e677f,
            #2f2733 68%
        );
}

.category-placeholder i {
    font-size: 74px;
}

.category-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(11,9,12,.84),
            rgba(15,12,16,.04) 65%
        );
}

.category-copy {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 24px;

    color: white;
}

.category-copy small {
    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.category-copy h3 {
    margin:
        4px
        0
        10px;

    font:
        600
        36px
        var(--serif);
}

.category-copy span {
    font-size: 11px;

    font-weight: 700;
}

.category-copy span i {
    display: inline-block;

    transition:
        transform .2s ease;
}

.category-card:hover img,
.category-card:hover .category-placeholder {
    transform:
        scale(1.05);
}

.category-card:hover .category-copy span i {
    transform:
        translate(3px,-3px);
}


/* ============================================================
   PRODUCT CARDS
============================================================ */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}

.product-card {
    min-width: 0;
}

.product-media {
    position: relative;

    aspect-ratio: .82;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius: 24px;

    background:
        rgba(255,255,255,.58);

    box-shadow:
        0 18px 45px
        rgba(48,35,52,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.product-card:hover .product-media {
    transform:
        translateY(-4px);

    box-shadow: var(--shadow-hover);
}

.product-media > a {
    display: block;

    width: 100%;
    height: 100%;
}

.product-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        .5s
        cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-media img {
    transform:
        scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;

    min-height: 250px;

    display: grid;

    place-items: center;

    align-content: center;

    gap: 8px;

    color:
        rgba(255,255,255,.66);

    background:
        radial-gradient(
            circle at 35% 25%,
            #9a718d,
            #392e3c 65%,
            #19151c
        );
}

.product-placeholder i {
    font-size: 40px;
}

.product-placeholder span {
    font:
        600
        20px
        var(--serif);

    letter-spacing: .12em;
}

.product-badges {
    position: absolute;

    left: 14px;
    top: 14px;

    display: flex;

    gap: 6px;

    flex-wrap: wrap;

    pointer-events: none;
}

.sale-badge,
.stock-badge,
.sold-badge {
    display: inline-flex;

    align-items: center;

    min-height: 26px;

    padding:
        5px
        9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;
}

.sale-badge {
    color: #fff;

    background:
        rgba(105,56,83,.90);
}

.stock-badge {
    color: #5d431a;

    background:
        rgba(244,225,188,.94);
}

.sold-badge {
    color: #fff;

    background:
        rgba(26,22,27,.86);
}

.wishlist-form {
    position: absolute;

    right: 13px;
    top: 13px;
}

.product-heart {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.6);

    border-radius: 50%;

    color: var(--ink);

    background:
        rgba(255,255,255,.76);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.product-heart:hover {
    transform:
        scale(1.08);
}

.product-heart.active {
    color: white;

    background: var(--plum);
}

.quick-cart {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 12px;

    transform:
        translateY(74px);

    opacity: 0;

    transition:
        transform .26s ease,
        opacity .26s ease;
}

.quick-cart button {
    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 0;

    border-radius: 15px;

    color: white;

    background:
        rgba(18,14,20,.90);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    font-size: 11px;
    font-weight: 700;
}

.quick-cart button:hover {
    background:
        rgba(111,70,109,.96);
}

.quick-cart button:disabled {
    opacity: .7;
}

.product-card:hover .quick-cart {
    transform:
        translateY(0);

    opacity: 1;
}

.product-info {
    padding:
        14px
        5px
        0;
}

.product-info > small {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.product-info h3 {
    margin:
        4px
        0
        8px;

    font:
        600
        21px /
        1.05
        var(--serif);
}

.product-info h3 a:hover {
    color: var(--plum);
}

.price-row {
    display: flex;

    align-items: baseline;

    gap: 8px;
}

.price-row strong {
    font-size: 12px;
}

.price-row del {
    color: #a39aa5;

    font-size: 10px;
}


/* ============================================================
   EMPTY STATE
============================================================ */

.empty-luxe {
    max-width: 780px;

    margin:
        30px
        auto;

    padding:
        55px
        30px;

    border-radius: var(--radius);

    text-align: center;
}

.empty-luxe > i,
.empty-orbit {
    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0
        auto
        18px;

    border-radius: 50%;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);

    font-size: 26px;
}

.empty-luxe h2,
.empty-luxe h3 {
    margin:
        8px
        0;

    font:
        600
        34px
        var(--serif);
}

.empty-luxe p {
    max-width: 520px;

    margin:
        0
        auto
        20px;

    color: var(--muted);

    line-height: 1.7;
}


/* ============================================================
   EDITORIAL
============================================================ */

.editorial-banner {
    position: relative;

    min-height: 390px;

    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    align-items: center;

    overflow: hidden;

    padding:
        50px
        58px;

    border-radius: 34px;
}

.editorial-copy {
    position: relative;

    z-index: 2;

    max-width: 620px;
}

.editorial-copy h2 {
    margin:
        9px
        0
        15px;

    font:
        600
        clamp(38px,4.5vw,62px) /
        .95
        var(--serif);
}

.editorial-copy h2 em {
    color: var(--gold-soft);
}

.editorial-copy p {
    color:
        rgba(255,255,255,.63);

    line-height: 1.8;
}

.editorial-art {
    position: relative;

    height: 280px;
}

.gift-ring {
    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;
}

.ring-a {
    width: 260px;
    height: 260px;

    right: 4%;
    top: 6%;
}

.ring-b {
    width: 160px;
    height: 160px;

    right: 18%;
    top: 23%;

    border-color:
        rgba(226,201,157,.22);
}

.gift-box {
    position: absolute;

    width: 120px;
    height: 120px;

    display: grid;

    place-items: center;

    right: 24%;
    top: 29%;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 32px;

    color: var(--gold-soft);

    background:
        rgba(255,255,255,.06);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,.22);

    font-size: 42px;

    transform:
        rotate(8deg);

    backdrop-filter:
        blur(15px);
}


/* ============================================================
   NEW ARRIVALS
============================================================ */

.arrival-list {
    padding:
        8px
        22px;

    border-radius: 25px;
}

.arrival-item {
    display: grid;

    grid-template-columns:
        64px
        1fr
        auto
        24px;

    gap: 15px;

    align-items: center;

    padding:
        13px
        2px;

    border-bottom:
        1px solid var(--line);
}

.arrival-item:last-child {
    border-bottom: 0;
}

.arrival-image {
    width: 64px;
    height: 64px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 14px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.arrival-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.arrival-item small {
    color: var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.arrival-item h4 {
    margin:
        2px
        0
        0;

    font:
        600
        20px
        var(--serif);
}

.arrival-item > strong {
    font-size: 12px;
}

.arrival-item > i {
    color: var(--muted);
}


/* ============================================================
   NEWSLETTER
============================================================ */

.newsletter-card {
    padding:
        58px
        30px;

    border:
        1px solid var(--line);

    border-radius: 32px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(185,147,89,.16),
            transparent 45%
        ),
        rgba(255,255,255,.48);
}

.newsletter-card h2 {
    margin:
        8px
        0;

    font:
        600
        clamp(36px,4vw,54px)
        var(--serif);
}

.newsletter-card h2 em {
    color: var(--plum);
}

.newsletter-card p {
    color: var(--muted);
}

.newsletter-pills {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}

.newsletter-pills span {
    padding:
        7px
        12px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    color: var(--muted);

    background:
        rgba(255,255,255,.52);

    font-size: 10px;
}


/* ============================================================
   PAGE HERO
============================================================ */

.page-hero {
    padding:
        16px
        0
        24px;
}

.page-hero-card {
    position: relative;

    min-height: 300px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    overflow: hidden;

    padding:
        48px
        52px;

    border-radius: 32px;
}

.page-hero-card > div:first-child {
    position: relative;

    z-index: 2;

    max-width: 720px;
}

.page-hero-card h1 {
    margin:
        8px
        0
        12px;

    font:
        600
        clamp(44px,5vw,68px) /
        .95
        var(--serif);
}

.page-hero-card h1 em {
    color: var(--gold-soft);
}

.page-hero-card p {
    max-width: 600px;

    margin: 0;

    color:
        rgba(255,255,255,.62);

    line-height: 1.75;
}

.page-hero-mark {
    position: absolute;

    right: 40px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.06);

    font:
        700
        130px
        var(--serif);
}

.page-hero-mark i {
    color:
        rgba(255,255,255,.08);

    font-size: 100px;
}

.mini-hero {
    padding-bottom: 8px;
}

.mini-hero-inner {
    padding:
        34px
        0
        18px;

    text-align: center;
}

.mini-hero-inner h1 {
    margin:
        4px
        0;

    font:
        600
        clamp(40px,5vw,60px)
        var(--serif);
}

.mini-hero-inner p {
    margin: 0;

    color: var(--muted);
}


/* ============================================================
   SHOP
============================================================ */

.shop-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 13px;

    border-radius: 22px;
}

.shop-search {
    position: relative;

    flex: 1;

    display: flex;

    align-items: center;

    gap: 9px;
}

.shop-search > i {
    position: absolute;

    left: 15px;

    color: #918895;
}

.shop-search input {
    width: 100%;

    min-height: 46px;

    padding:
        0
        15px
        0
        42px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    outline: 0;

    background:
        rgba(255,255,255,.68);
}

.shop-search input:focus {
    border-color:
        rgba(111,70,109,.28);

    background: white;
}

.shop-sort-wrap {
    display: flex;

    align-items: center;

    gap: 12px;
}

.shop-sort-wrap > span {
    color: var(--muted);

    font-size: 10px;

    white-space: nowrap;
}

.luxe-select {
    min-width: 170px;

    border:
        1px solid var(--line);

    border-radius: 13px;

    background-color:
        rgba(255,255,255,.65);

    font-size: 11px;

    box-shadow:
        none !important;
}

.category-pills,
.order-filter-pills {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin:
        20px
        0
        28px;
}

.category-pills a,
.order-filter-pills a {
    padding:
        8px
        13px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    color: var(--muted);

    background:
        rgba(255,255,255,.45);

    font-size: 10px;

    font-weight: 700;
}

.category-pills a.active,
.category-pills a:hover,
.order-filter-pills a.active,
.order-filter-pills a:hover {
    color: white;

    background: var(--dark);

    border-color: var(--dark);
}

.category-pills .sale-pill {
    color: #7b4b52;
}

.search-summary {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 12px;
}

.search-summary a {
    margin-left: 8px;

    color: var(--plum);

    font-weight: 700;
}


/* ============================================================
   PRODUCT DETAIL
============================================================ */

.luxe-breadcrumb {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 7px;

    margin-bottom: 24px;

    color: var(--muted);

    font-size: 10px;
}

.luxe-breadcrumb a:hover {
    color: var(--plum);
}

.luxe-breadcrumb i {
    font-size: 7px;
}

.main-product-image {
    position: relative;

    aspect-ratio: .92;

    overflow: hidden;

    border-radius: 30px;
}

.main-product-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.detail-placeholder {
    min-height: 100%;
}

.detail-sale-badge {
    position: absolute;

    left: 18px;
    top: 18px;

    padding:
        7px
        11px;

    border-radius: 999px;

    color: white;

    background: var(--plum);

    font-size: 10px;

    font-weight: 800;
}

.thumbnail-row {
    display: flex;

    gap: 10px;

    margin-top: 12px;

    overflow-x: auto;

    padding-bottom: 4px;
}

.thumb-btn {
    width: 76px;
    height: 76px;

    flex: 0 0 auto;

    overflow: hidden;

    padding: 3px;

    border:
        1px solid transparent;

    border-radius: 16px;

    background:
        rgba(255,255,255,.55);
}

.thumb-btn img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;
}

.thumb-btn.active {
    border-color: var(--plum);
}

.sticky-product-info {
    position: sticky;

    top: 108px;
}

.product-detail-copy h1 {
    margin:
        7px
        0
        11px;

    font:
        600
        clamp(42px,4.5vw,64px) /
        .94
        var(--serif);
}

.rating-line {
    display: flex;

    align-items: center;

    gap: 10px;
}

.stars {
    display: inline-flex;

    gap: 2px;

    color: var(--gold);

    font-size: 12px;
}

.stars.small {
    font-size: 10px;
}

.rating-line a {
    color: var(--muted);

    font-size: 10px;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.detail-price {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    gap: 10px;

    margin:
        18px
        0;
}

.detail-price strong {
    font-size: 23px;
}

.detail-price del {
    color: #9b939d;

    font-size: 13px;
}

.detail-price span {
    padding:
        5px
        8px;

    border-radius: 999px;

    color: #74494f;

    background:
        rgba(183,128,133,.13);

    font-size: 9px;

    font-weight: 800;
}

.product-lead {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.stock-line {
    display: flex;

    align-items: center;

    gap: 7px;

    margin:
        20px
        0;

    font-size: 11px;

    font-weight: 700;
}

.stock-line.in-stock {
    color: var(--success);
}

.stock-line.out-stock {
    color: var(--danger);
}

.detail-cart-form {
    display: flex;

    gap: 9px;

    margin:
        22px
        0
        10px;
}

.quantity-control {
    display: grid;

    grid-template-columns:
        38px
        42px
        38px;

    align-items: center;

    min-height: 48px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    background:
        rgba(255,255,255,.55);
}

.quantity-control button {
    border: 0;

    color: var(--ink);

    background: transparent;
}

.quantity-control input {
    width: 100%;

    border: 0;

    outline: 0;

    text-align: center;

    background: transparent;

    font-size: 11px;

    appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button {
    display: none;
}

.wishlist-wide.active {
    color: var(--plum);

    border-color:
        rgba(111,70,109,.25);
}

.product-assurances {
    display: grid;

    gap: 0;

    margin-top: 22px;

    border-top:
        1px solid var(--line);
}

.product-assurances > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        14px
        2px;

    border-bottom:
        1px solid var(--line);
}

.product-assurances i {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.product-assurances span {
    display: grid;
}

.product-assurances strong {
    font-size: 10px;
}

.product-assurances small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}

.product-description-card {
    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 60px;

    margin-top: 70px;

    padding: 42px;

    border-radius: 30px;
}

.product-description-card h2 {
    margin:
        7px
        0
        0;

    font:
        600
        38px /
        1
        var(--serif);
}

.product-description-text {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}


/* ============================================================
   REVIEWS
============================================================ */

.rating-summary {
    display: grid;

    justify-items: end;
}

.rating-summary strong {
    font:
        600
        42px
        var(--serif);
}

.rating-summary small {
    color: var(--muted);

    font-size: 9px;
}

.review-list {
    display: grid;

    gap: 12px;
}

.review-card {
    padding: 22px;

    border-radius: 22px;
}

.review-head {
    display: grid;

    grid-template-columns:
        42px
        1fr
        auto;

    gap: 10px;

    align-items: center;
}

.review-avatar {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            var(--plum)
        );
}

.review-head strong {
    display: block;

    font-size: 11px;
}

.review-head time {
    color: var(--muted);

    font-size: 9px;
}

.review-card h4 {
    margin:
        14px
        0
        5px;

    font:
        600
        22px
        var(--serif);
}

.review-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}

.review-form-card {
    position: sticky;

    top: 110px;

    padding: 26px;

    border-radius: 24px;
}

.review-form-card h3 {
    margin:
        5px
        0
        16px;

    font:
        600
        31px
        var(--serif);
}

.rating-input {
    display: flex;

    flex-direction: row-reverse;

    justify-content: flex-end;

    gap: 3px;
}

.rating-input input {
    position: absolute;

    opacity: 0;
}

.rating-input label {
    color: #cbc2c8;

    cursor: pointer;

    font-size: 20px;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--gold);
}


/* ============================================================
   CART
============================================================ */

.cart-list {
    padding:
        8px
        24px;

    border-radius: 26px;
}

.cart-item {
    display: grid;

    grid-template-columns:
        120px
        1fr
        auto;

    gap: 20px;

    align-items: center;

    padding:
        20px
        0;

    border-bottom:
        1px solid var(--line);
}

.cart-item-image {
    width: 120px;
    height: 140px;

    overflow: hidden;

    border-radius: 18px;

    background:
        rgba(255,255,255,.5);
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-item-image .product-placeholder {
    min-height: 100%;
}

.cart-item-copy small {
    color: var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .12em;
}

.cart-item-copy h3 {
    margin:
        4px
        0;

    font:
        600
        25px
        var(--serif);
}

.sku {
    display: block;

    color: #9a919b;

    font-size: 9px;
}

.cart-item-price {
    display: flex;

    gap: 8px;

    margin-top: 10px;
}

.cart-item-price strong {
    font-size: 12px;
}

.cart-item-price del {
    color: #aaa1aa;

    font-size: 10px;
}

.cart-item-actions {
    min-width: 120px;

    display: grid;

    justify-items: end;

    gap: 8px;
}

.cart-item-actions label {
    color: var(--muted);

    font-size: 9px;
}

.cart-qty {
    width: 72px;
    height: 38px;

    padding: 0 8px;

    border:
        1px solid var(--line);

    border-radius: 12px;

    outline: 0;

    text-align: center;

    background:
        rgba(255,255,255,.6);
}

.line-total {
    font-size: 12px;
}

.remove-link {
    border: 0;

    color: #9e626b;

    background: transparent;

    font-size: 9px;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.cart-list-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        18px
        0;
}


/* ============================================================
   SUMMARY / CHECKOUT
============================================================ */

.summary-card,
.checkout-summary {
    padding: 27px;

    border-radius: 26px;
}

.sticky-summary {
    position: sticky;

    top: 110px;
}

.summary-card h2,
.checkout-summary h2 {
    margin:
        6px
        0
        20px;

    font:
        600
        31px
        var(--serif);
}

.summary-lines {
    display: grid;

    gap: 12px;

    padding:
        18px
        0;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.summary-lines > div {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: var(--muted);

    font-size: 11px;
}

.summary-lines strong {
    color: var(--ink);
}

.summary-total {
    display: flex;

    justify-content: space-between;

    align-items: baseline;

    gap: 15px;

    padding:
        20px
        0;

    font-weight: 700;
}

.summary-total strong {
    font:
        700
        22px
        var(--serif);
}

.shipping-progress {
    margin:
        18px
        0
        2px;
}

.shipping-progress-copy {
    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 9px;
}

.shipping-progress .progress {
    height: 5px;

    margin-top: 8px;

    background:
        rgba(111,70,109,.08);
}

.shipping-progress .progress-bar {
    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--plum)
        );
}

.free-shipping-note {
    display: flex;

    align-items: center;

    gap: 7px;

    margin:
        16px
        0
        0;

    color: var(--success);

    font-size: 10px;
}

.secure-note {
    display: flex;

    align-items: flex-start;

    justify-content: center;

    gap: 6px;

    margin:
        14px
        0
        0;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}

.checkout-login-callout {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    margin-bottom: 14px;

    padding:
        15px
        18px;

    border-radius: 18px;
}

.checkout-login-callout > div {
    display: flex;

    align-items: center;

    gap: 12px;
}

.checkout-login-callout > div > i {
    color: var(--plum);

    font-size: 24px;
}

.checkout-login-callout span {
    display: grid;
}

.checkout-login-callout strong {
    font-size: 11px;
}

.checkout-login-callout small {
    color: var(--muted);

    font-size: 9px;
}

.checkout-login-callout > a {
    color: var(--plum);

    font-size: 10px;

    font-weight: 800;
}

.checkout-card,
.account-card,
.order-detail-card,
.contact-form-card,
.contact-info-card {
    margin-bottom: 15px;

    padding: 28px;

    border-radius: 26px;
}

.checkout-card-head {
    display: flex;

    gap: 14px;

    align-items: flex-start;

    margin-bottom: 22px;
}

.checkout-card-head > span {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);

    font:
        600
        16px
        var(--serif);
}

.checkout-card-head h2 {
    margin: 0;

    font:
        600
        29px
        var(--serif);
}

.checkout-card-head p {
    margin:
        3px
        0
        0;

    color: var(--muted);

    font-size: 10px;
}


/* ============================================================
   FORMS
============================================================ */

.form-label {
    color: #5d555f;

    font-size: 10px;

    font-weight: 700;
}

.form-label small {
    color: #9e969f;

    font-weight: 500;
}

.luxe-input {
    min-height: 47px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    background:
        rgba(255,255,255,.62);

    box-shadow:
        none !important;

    font-size: 12px;
}

.luxe-input:hover {
    border-color:
        rgba(111,70,109,.20);
}

textarea.luxe-input {
    padding-top: 12px;
}

.luxe-input:focus {
    border-color:
        rgba(111,70,109,.33);

    background: white;
}

.form-hint {
    color: #978f98;

    font-size: 9px;
}

.luxe-check {
    color: var(--muted);

    font-size: 10px;
}

.luxe-check .form-check-input:checked {
    background-color: var(--plum);

    border-color: var(--plum);
}


/* ============================================================
   PAYMENT
============================================================ */

.payment-options {
    display: grid;

    gap: 9px;
}

.payment-option {
    position: relative;

    display: grid;

    grid-template-columns:
        20px
        34px
        1fr;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    cursor: pointer;

    background:
        rgba(255,255,255,.45);

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.payment-option:hover {
    transform:
        translateY(-1px);

    background:
        rgba(255,255,255,.70);
}

.payment-option > input {
    position: absolute;

    opacity: 0;
}

.payment-radio {
    width: 17px;
    height: 17px;

    border:
        1px solid #b9afb9;

    border-radius: 50%;

    box-shadow:
        inset 0 0 0
        4px transparent;
}

.payment-option:has(input:checked) {
    border-color:
        rgba(111,70,109,.28);

    background:
        rgba(111,70,109,.06);
}

.payment-option:has(input:checked)
.payment-radio {
    border-color: var(--plum);

    background: var(--plum);

    box-shadow:
        inset 0 0 0
        4px #f7f2ed;
}

.payment-option > i {
    color: var(--plum);

    font-size: 21px;
}

.payment-option > span:last-child {
    display: grid;
}

.payment-option strong {
    font-size: 10px;
}

.payment-option small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}

.checkout-items {
    display: grid;

    gap: 10px;

    padding:
        4px
        0
        18px;

    border-bottom:
        1px solid var(--line);
}

.checkout-item {
    display: grid;

    grid-template-columns:
        52px
        1fr
        auto;

    gap: 10px;

    align-items: center;
}

.checkout-item-img {
    position: relative;

    width: 52px;
    height: 60px;

    display: grid;

    place-items: center;

    overflow: visible;

    border-radius: 12px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.checkout-item-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;
}

.checkout-item-img span {
    position: absolute;

    right: -6px;
    top: -6px;

    min-width: 18px;
    height: 18px;

    display: grid;

    place-items: center;

    padding: 0 4px;

    border-radius: 50%;

    color: white;

    background: var(--dark);

    font-size: 8px;
}

.checkout-item small {
    display: block;

    color: var(--muted);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .09em;
}

.checkout-item strong {
    display: block;

    margin-top: 2px;

    font:
        600
        15px
        var(--serif);
}

.checkout-item b {
    font-size: 10px;
}

.coupon-box {
    padding:
        17px
        0;

    border-bottom:
        1px solid var(--line);
}

.coupon-input {
    position: relative;
}

.coupon-input i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform:
        translateY(-50%);

    color: #958c96;
}

.coupon-input input {
    width: 100%;
    height: 44px;

    padding:
        0
        12px
        0
        38px;

    border:
        1px solid var(--line);

    border-radius: 13px;

    outline: 0;

    background:
        rgba(255,255,255,.58);

    font-size: 11px;

    text-transform: uppercase;
}

.coupon-box > small {
    display: block;

    margin-top: 6px;

    color: var(--muted);

    font-size: 8px;
}


/* ============================================================
   LOGIN / REGISTER
============================================================ */

.auth-section {
    min-height:
        calc(100vh - 150px);

    display: grid;

    align-items: center;
}

.auth-shell {
    display: grid;

    grid-template-columns:
        1fr
        .88fr;

    min-height: 650px;

    overflow: hidden;

    border-radius: 34px;
}

.auth-visual {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: end;

    padding: 52px;

    color: white;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(185,147,89,.28),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0d0a0f,
            #402d42 70%,
            #6f466d
        );
}

.auth-visual-content {
    position: relative;

    z-index: 3;

    max-width: 560px;
}

.auth-visual h1 {
    margin:
        8px
        0
        16px;

    font:
        600
        clamp(45px,5vw,66px) /
        .92
        var(--serif);
}

.auth-visual h1 em {
    color: var(--gold-soft);
}

.auth-visual p {
    color:
        rgba(255,255,255,.65);

    line-height: 1.8;
}

.auth-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 24px;
}

.auth-benefits span {
    padding:
        7px
        10px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 999px;

    color:
        rgba(255,255,255,.72);

    background:
        rgba(255,255,255,.06);

    font-size: 9px;
}

.auth-benefits i {
    margin-right: 4px;

    color: var(--gold-soft);
}

.auth-orb {
    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;
}

.orb-a {
    width: 360px;
    height: 360px;

    right: -130px;
    top: -110px;
}

.orb-b {
    width: 180px;
    height: 180px;

    right: 110px;
    top: 90px;

    border-color:
        rgba(226,201,157,.19);
}

.auth-monogram {
    position: absolute;

    right: 25px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255,255,255,.045);

    font:
        700
        120px
        var(--serif);
}

.auth-form-side {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;

    background:
        rgba(255,255,255,.56);
}

.auth-form-head h2 {
    margin:
        5px
        0;

    font:
        600
        43px
        var(--serif);
}

.auth-form-head p {
    color: var(--muted);

    font-size: 11px;
}

.auth-form {
    margin-top: 22px;
}

.icon-input {
    position: relative;
}

.icon-input > i {
    position: absolute;

    z-index: 2;

    left: 14px;
    top: 50%;

    transform:
        translateY(-50%);

    color: #968d97;
}

.icon-input .luxe-input {
    padding-left: 40px;
}

.password-field .luxe-input {
    padding-right: 44px;
}

.password-eye {
    position: absolute;

    right: 7px;
    top: 7px;

    width: 34px;
    height: 34px;

    border: 0;

    border-radius: 10px;

    color: #918792;

    background: transparent;
}

.password-eye:hover {
    color: var(--plum);

    background:
        rgba(111,70,109,.07);
}

.auth-switch {
    margin-top: 24px;

    color: var(--muted);

    font-size: 10px;

    text-align: center;
}

.auth-switch a {
    color: var(--plum);

    font-weight: 800;
}


/* ============================================================
   ACCOUNT
============================================================ */

.account-welcome {
    min-height: 260px;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 46px;

    overflow: hidden;

    border-radius: 32px;
}

.account-avatar-large {
    width: 100px;
    height: 100px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 30px;

    color: var(--gold-soft);

    background:
        rgba(255,255,255,.07);

    font:
        600
        45px
        var(--serif);
}

.account-welcome h1 {
    margin:
        6px
        0;

    font:
        600
        52px
        var(--serif);
}

.account-welcome p {
    margin: 0;

    color:
        rgba(255,255,255,.60);
}

.account-stats {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 13px;
}

.account-stat {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 19px;

    border-radius: 20px;

    transition:
        transform .2s ease;
}

.account-stat:hover {
    transform:
        translateY(-3px);
}

.account-stat > i {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.account-stat span {
    display: grid;
}

.account-stat strong {
    font:
        600
        22px
        var(--serif);
}

.account-stat small {
    color: var(--muted);

    font-size: 9px;
}

.account-order-list {
    display: grid;
}

.account-order {
    display: grid;

    grid-template-columns:
        1fr
        auto
        auto;

    gap: 10px;

    align-items: center;

    padding:
        12px
        0;

    border-bottom:
        1px solid var(--line);
}

.account-order:last-child {
    border-bottom: 0;
}

.account-order > div strong {
    display: block;

    font-size: 10px;
}

.account-order > div small {
    color: var(--muted);

    font-size: 8px;
}

.account-order > b {
    font-size: 10px;
}

.saved-address {
    display: flex;

    gap: 12px;

    padding:
        13px
        0;

    border-bottom:
        1px solid var(--line);
}

.saved-address:last-child {
    border-bottom: 0;
}

.saved-address > i {
    width: 34px;
    height: 34px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.saved-address strong {
    font-size: 10px;
}

.saved-address p {
    margin:
        3px
        0
        0;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.6;
}


/* ============================================================
   ORDERS
============================================================ */

.order-status {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        6px
        9px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;

    text-transform: capitalize;
}

.order-status.pending,
.order-status.confirmed {
    color: #90601d;

    background:
        rgba(185,120,36,.10);
}

.order-status.processing,
.order-status.shipped {
    color: #47679e;

    background:
        rgba(72,105,164,.10);
}

.order-status.delivered {
    color: #2e8064;

    background:
        rgba(47,142,108,.10);
}

.order-status.cancelled {
    color: #a54c59;

    background:
        rgba(185,79,93,.10);
}

.small-empty {
    padding:
        20px
        4px;

    color: var(--muted);

    text-align: center;
}

.small-empty i {
    color: #aaa0aa;

    font-size: 26px;
}

.small-empty p {
    margin:
        5px
        0;

    font-size: 10px;
}

.small-empty a {
    color: var(--plum);

    font-size: 9px;

    font-weight: 800;
}

.order-card-list {
    display: grid;

    gap: 12px;
}

.order-card {
    padding: 22px;

    border-radius: 23px;
}

.order-card-top {
    display: grid;

    grid-template-columns:
        1.1fr
        .9fr
        .9fr
        auto;

    gap: 20px;

    align-items: center;

    padding-bottom: 17px;

    border-bottom:
        1px solid var(--line);
}

.order-card-top > div {
    display: grid;
}

.order-card-top small {
    color: var(--muted);

    font-size: 8px;

    letter-spacing: .11em;
}

.order-card-top strong {
    margin-top: 3px;

    font-size: 11px;
}

.order-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 17px;
}

.order-payment {
    display: flex;

    align-items: center;

    gap: 10px;
}

.order-payment > i {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.order-payment span {
    display: grid;

    font-size: 10px;

    font-weight: 700;
}

.order-payment small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 500;
}

.order-timeline {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    padding: 22px;

    border-radius: 24px;
}

.timeline-step {
    position: relative;

    display: grid;

    justify-items: center;

    gap: 7px;

    color: #a9a0a9;

    font-size: 9px;
}

.timeline-step::after {
    content: "";

    position: absolute;

    z-index: 0;

    top: 18px;
    left: 50%;

    width: 100%;
    height: 2px;

    background: #e1d9df;
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-step span {
    position: relative;

    z-index: 2;

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e9e2e6;
}

.timeline-step.done {
    color: var(--plum);
}

.timeline-step.done span {
    color: white;

    background: var(--plum);
}

.timeline-step.done::after {
    background:
        rgba(111,70,109,.45);
}

.cancelled-banner {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border-radius: 20px;

    color: var(--danger);
}

.cancelled-banner > i {
    font-size: 28px;
}

.cancelled-banner p {
    margin:
        2px
        0
        0;

    color: var(--muted);

    font-size: 10px;
}

.order-item-list {
    display: grid;
}

.order-item-row {
    display: grid;

    grid-template-columns:
        45px
        1fr
        auto;

    align-items: center;

    gap: 12px;

    padding:
        12px
        0;

    border-bottom:
        1px solid var(--line);
}

.order-item-row:last-child {
    border-bottom: 0;
}

.order-item-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.order-item-row strong {
    display: block;

    font:
        600
        17px
        var(--serif);
}

.order-item-row small {
    color: var(--muted);

    font-size: 8px;
}

.order-item-row > span {
    font-size: 10px;

    font-weight: 800;
}

.detail-two-col {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 30px;
}

.detail-two-col small {
    display: block;

    color: var(--muted);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.detail-two-col strong {
    display: block;

    margin-top: 5px;

    font-size: 11px;
}

.detail-two-col p {
    margin:
        4px
        0
        0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.6;
}

.order-note {
    display: flex;

    gap: 11px;

    margin-top: 20px;

    padding: 13px;

    border-radius: 14px;

    background:
        rgba(111,70,109,.06);

    font-size: 10px;
}

.order-note > i {
    color: var(--plum);
}

.order-note span {
    display: grid;
}

.order-note small {
    color: var(--muted);

    font-size: 8px;
}

.payment-summary {
    display: flex;

    align-items: center;

    gap: 12px;

    margin:
        5px
        0
        20px;

    padding: 13px;

    border-radius: 15px;

    background:
        rgba(111,70,109,.06);
}

.payment-summary > i {
    color: var(--plum);

    font-size: 20px;
}

.payment-summary span {
    display: grid;
}

.payment-summary strong {
    font-size: 10px;
}

.payment-summary small {
    color: var(--muted);

    font-size: 8px;

    text-transform: capitalize;
}


/* ============================================================
   ABOUT
============================================================ */

.about-hero-card {
    position: relative;

    min-height: 560px;

    display: grid;

    grid-template-columns:
        1fr
        .7fr;

    align-items: center;

    padding: 62px;

    overflow: hidden;

    border-radius: 34px;
}

.about-hero-copy {
    position: relative;

    z-index: 2;
}

.about-hero-copy h1 {
    margin:
        8px
        0
        18px;

    font:
        600
        clamp(52px,6vw,82px) /
        .9
        var(--serif);
}

.about-hero-copy h1 em {
    color: var(--gold-soft);
}

.about-hero-copy p {
    max-width: 620px;

    color:
        rgba(255,255,255,.62);

    line-height: 1.85;
}

.about-symbol {
    position: relative;

    height: 350px;

    display: grid;

    place-items: center;

    align-content: center;
}

.symbol-ring {
    position: absolute;

    width: 310px;
    height: 310px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;
}

.about-symbol > span {
    color: var(--gold-soft);

    font:
        600
        110px
        var(--serif);
}

.about-symbol > small {
    color:
        rgba(255,255,255,.38);

    font-size: 8px;

    letter-spacing: .18em;
}

.story-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 70px;

    align-items: start;
}

.story-copy h2 {
    margin:
        7px
        0
        20px;

    font:
        600
        clamp(40px,4.5vw,60px) /
        .95
        var(--serif);
}

.story-copy h2 em {
    color: var(--plum);
}

.story-copy p {
    color: var(--muted);

    line-height: 1.9;
}

.story-values {
    padding:
        12px
        28px;

    border-radius: 28px;
}

.story-values > div {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    gap:
        3px
        14px;

    padding:
        22px
        0;

    border-bottom:
        1px solid var(--line);
}

.story-values > div:last-child {
    border-bottom: 0;
}

.story-values > div > span {
    grid-row: span 2;

    color: var(--plum);

    font:
        600
        23px
        var(--serif);
}

.story-values h3 {
    margin: 0;

    font:
        600
        24px
        var(--serif);
}

.story-values p {
    margin:
        3px
        0
        0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}

.philosophy-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.philosophy-card {
    position: relative;

    min-height: 320px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 26px;

    background:
        rgba(255,255,255,.46);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.philosophy-card:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

    background:
        rgba(255,255,255,.74);
}

.philosophy-card > i {
    position: absolute;

    right: 25px;
    top: 25px;

    color:
        rgba(111,70,109,.16);

    font-size: 56px;
}

.philosophy-card > span {
    color: var(--plum);

    font:
        600
        20px
        var(--serif);
}

.philosophy-card h3 {
    margin:
        70px
        0
        8px;

    font:
        600
        35px
        var(--serif);
}

.philosophy-card p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.75;
}

.philosophy-card b {
    display: inline-block;

    margin-top: 22px;

    font-size: 10px;
}

.promise-card {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 50px;

    padding: 44px;

    border-radius: 30px;
}

.promise-card h2 {
    margin:
        7px
        0;

    font:
        600
        42px
        var(--serif);
}

.promise-card p {
    color: var(--muted);

    line-height: 1.8;
}

.promise-points {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;

    align-content: center;
}

.promise-points span {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px;

    border:
        1px solid var(--line);

    border-radius: 14px;

    color: #5f5761;

    background:
        rgba(255,255,255,.45);

    font-size: 10px;
}

.promise-points i {
    color: var(--success);
}


/* ============================================================
   CONTACT
============================================================ */

.contact-info-card,
.contact-form-card {
    padding: 32px;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin:
        6px
        0
        10px;

    font:
        600
        39px
        var(--serif);
}

.contact-info-card > p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}

.contact-methods {
    display: grid;

    gap: 8px;

    margin-top: 25px;
}

.contact-methods > div {
    display: flex;

    gap: 12px;

    align-items: center;

    padding: 12px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background:
        rgba(255,255,255,.38);
}

.contact-methods > div > i {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: var(--plum);

    background:
        rgba(111,70,109,.08);
}

.contact-methods span {
    display: grid;
}

.contact-methods small {
    color: var(--muted);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.contact-methods strong {
    margin-top: 2px;

    font-size: 10px;
}

.honeypot {
    position: absolute !important;

    left: -10000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* ============================================================
   FOOTER
============================================================ */

.store-footer {
    position: relative;

    z-index: 2;

    padding:
        20px
        0
        28px;
}

.footer-card {
    padding:
        48px
        46px
        22px;

    border-radius: 34px;
}

.footer-brand {
    color: white;
}

.footer-brand .brand-copy strong {
    color: white;
}

.footer-brand .brand-copy small {
    color:
        rgba(255,255,255,.45);
}

.footer-copy {
    max-width: 400px;

    margin:
        20px
        0
        0;

    color:
        rgba(255,255,255,.52);

    font-size: 11px;

    line-height: 1.8;
}

.footer-card h6 {
    color: var(--gold-soft);

    font-size: 9px;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.footer-card .col-6 > a,
.footer-card .col-lg-2 > a {
    display: block;

    margin-top: 10px;

    color:
        rgba(255,255,255,.60);

    font-size: 10px;
}

.footer-card .col-6 > a:hover,
.footer-card .col-lg-2 > a:hover {
    color: white;
}

.social-row {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.social-row a {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 12px;

    color:
        rgba(255,255,255,.68);

    background:
        rgba(255,255,255,.05);

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.social-row a:hover {
    color: var(--gold-soft);

    background:
        rgba(255,255,255,.10);

    transform:
        translateY(-3px);
}

.footer-contact {
    display: grid;

    gap: 8px;
}

.footer-contact span {
    display: flex;

    gap: 8px;

    align-items: center;

    color:
        rgba(255,255,255,.60);

    font-size: 10px;
}

.footer-contact i {
    color: var(--gold-soft);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 38px;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.35);

    font-size: 8px;

    letter-spacing: .04em;
}


/* ============================================================
   BACK TO TOP
============================================================ */

.back-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 35;

    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius: 50%;

    color: white;

    background:
        rgba(27,20,29,.84);

    box-shadow:
        0 12px 25px
        rgba(0,0,0,.16);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease,
        background .2s ease;
}

.back-top.show {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.back-top:hover {
    background: var(--plum);
}


/* ============================================================
   TOAST
============================================================ */

.luxe-toast {
    border:
        1px solid
        rgba(255,255,255,.75);

    border-radius: 16px;

    background:
        rgba(252,248,244,.94);

    box-shadow: var(--shadow);

    backdrop-filter:
        blur(18px);

    font-size: 11px;
}

.toast-icon {
    color: var(--success);
}