:root {
    color-scheme: light;
    --champagne: #c48b38;
    --graphite: #151515;
    --platinum: #f6f6f4;
    --ease-luxury: cubic-bezier(.2, .8, .2, 1);
    --shadow-soft: 0 18px 46px rgba(15, 15, 15, .06);
    --shadow-cinematic: 0 34px 110px rgba(15, 15, 15, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--champagne) var(--platinum);
    scrollbar-width: thin;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 246, 244, .92) 48%, rgba(244, 234, 216, .50)),
        var(--platinum);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .58), rgba(234, 214, 174, .18), rgba(212, 212, 216, .22)),
        linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(246, 246, 244, .82));
    background-size: 180% 180%, 100% 100%;
    animation: luxury-gradient-drift 18s ease-in-out infinite alternate;
}

body::after {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(180deg, rgba(15, 15, 15, .045), rgba(15, 15, 15, 0) 18%, rgba(15, 15, 15, 0) 78%, rgba(15, 15, 15, .035)),
        linear-gradient(90deg, rgba(15, 15, 15, .025), rgba(15, 15, 15, 0) 14%, rgba(15, 15, 15, 0) 86%, rgba(15, 15, 15, .025));
}

header {
    transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 18px 46px rgba(15, 15, 15, .04);
}

.tracking-tight {
    letter-spacing: 0 !important;
}

::selection {
    background: #ead6ae;
    color: #111;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 246, 244, .94)),
        var(--platinum);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--platinum);
    border-radius: 999px;
    background:
        linear-gradient(180deg, #ead6ae 0%, var(--champagne) 48%, #795023 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .36);
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, #f4ead8 0%, #d3a45a 45%, #9e6b2b 100%);
}

::-webkit-scrollbar-corner {
    background: var(--platinum);
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 90;
    height: 3px;
    pointer-events: none;
    background: rgba(255, 255, 255, .34);
}

.scroll-progress > span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #151515 0%, #c48b38 52%, #ead6ae 100%);
    box-shadow: 0 0 18px rgba(196, 139, 56, .34);
    transition: transform .12s linear;
}

.scroll-to-top {
    --scroll-progress-angle: 0deg;
    position: fixed;
    right: clamp(1rem, 2vw, 1.75rem);
    bottom: clamp(1rem, 2vw, 1.75rem);
    z-index: 60;
    display: grid;
    width: 3.15rem;
    height: 3.15rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 999px;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .62) 58%, rgba(234, 214, 174, .38)),
        rgba(255, 255, 255, .76);
    color: #111;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 18px 48px rgba(15, 15, 15, .14), inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: translateY(14px) scale(.94);
    transition: opacity .32s ease, visibility .32s ease, transform .32s var(--ease-luxury), box-shadow .32s ease, background .32s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.scroll-to-top::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 2px;
    content: "";
    border-radius: inherit;
    background: conic-gradient(from -90deg, #c48b38 var(--scroll-progress-angle), rgba(255, 255, 255, .46) 0);
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.scroll-to-top::before {
    position: absolute;
    inset: 7px;
    z-index: -1;
    content: "";
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(234, 214, 174, .32), rgba(255, 255, 255, 0));
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(244, 234, 216, .54)),
        rgba(255, 255, 255, .88);
    box-shadow: 0 22px 58px rgba(15, 15, 15, .18), 0 0 0 6px rgba(234, 214, 174, .16);
    transform: translateY(-3px) scale(1.02);
}

.scroll-to-top:active {
    transform: translateY(0) scale(.98);
}

.scroll-to-top:focus-visible {
    outline: 2px solid rgba(196, 139, 56, .72);
    outline-offset: 4px;
}

.admin-scroll-to-top {
    right: clamp(1rem, 2.2vw, 2rem);
    bottom: clamp(1rem, 2.2vw, 2rem);
    width: auto;
    min-width: 3.25rem;
    height: 3.25rem;
    grid-auto-flow: column;
    gap: .55rem;
    padding: 0 1.05rem;
    border-color: rgba(234, 214, 174, .38);
    background:
        linear-gradient(145deg, rgba(24, 24, 27, .92), rgba(5, 5, 5, .88)),
        #111;
    color: #f4ead8;
    box-shadow: 0 22px 60px rgba(15, 15, 15, .28), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.admin-scroll-to-top::after {
    background: conic-gradient(from -90deg, #dfbd80 var(--scroll-progress-angle), rgba(234, 214, 174, .2) 0);
}

.admin-scroll-to-top span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.admin-scroll-to-top::before {
    background: linear-gradient(145deg, rgba(196, 139, 56, .28), rgba(255, 255, 255, 0));
}

.admin-scroll-to-top:hover {
    background:
        linear-gradient(145deg, rgba(44, 44, 48, .96), rgba(8, 8, 8, .92)),
        #111;
    box-shadow: 0 26px 70px rgba(15, 15, 15, .34), 0 0 0 6px rgba(234, 214, 174, .12);
}

.fa-solid,
.fa-regular,
.fa-brands {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-link {
    position: relative;
    transition: color .25s ease, transform .25s ease;
}

.nav-link::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    background: var(--champagne);
    transition: transform .25s ease;
}

.nav-link:hover {
    color: #000;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    padding: .85rem 1.2rem;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-soft);
    transition: transform .34s var(--ease-luxury), box-shadow .34s ease, border-color .34s ease, background .34s ease, color .34s ease;
}

.btn::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 42%, transparent 66%);
    transform: translateX(-120%);
    transition: transform .72s var(--ease-luxury);
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn:active {
    transform: translateY(0) scale(.99);
}

.btn:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: .58;
    transform: none;
}

.btn:disabled::after {
    display: none;
}

.btn-dark {
    background: #111;
    color: #fff;
    box-shadow: 0 14px 35px rgba(17, 17, 17, .18);
}

.btn-dark:hover {
    background: #000;
    box-shadow: 0 18px 44px rgba(17, 17, 17, .26);
}

.btn-light {
    border: 1px solid rgba(212, 212, 216, .85);
    background: rgba(255, 255, 255, .82);
    color: #18181b;
}

.btn-muted {
    border: 1px solid #e4e4e7;
    background: #f8f8f7;
    color: #18181b;
}

.btn-gold {
    background: linear-gradient(135deg, #ead6ae, #c48b38);
    color: #111;
    box-shadow: 0 16px 42px rgba(196, 139, 56, .25);
}

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 32%),
        linear-gradient(160deg, #070707 0%, #151515 44%, #202020 100%);
    box-shadow: 0 -34px 90px rgba(15, 15, 15, .08);
}

.site-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(234, 214, 174, .86), transparent);
    animation: footer-line-drift 7s ease-in-out infinite alternate;
}

.site-footer::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(234, 214, 174, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0) 38%, rgba(234, 214, 174, .04));
    background-size: 72px 100%, 100% 100%;
    opacity: .72;
}

.footer-brand-panel,
.footer-link-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035) 58%, rgba(234, 214, 174, .08)),
        rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 24px 70px rgba(0, 0, 0, .18);
    padding: clamp(1.35rem, 3vw, 2rem);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.footer-brand-mark {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(234, 214, 174, .24);
    border-radius: 1rem;
    background: #050505;
    color: #ead6ae;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .14em;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
}

img.footer-brand-mark {
    display: block;
}

.footer-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(234, 214, 174, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    padding: .65rem .85rem;
    color: #ead6ae;
    font-size: .75rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.footer-link {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    padding: .78rem .82rem .78rem 1rem;
    color: #d4d4d8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: transform .34s var(--ease-luxury), border-color .34s ease, background .34s ease, color .34s ease, box-shadow .34s ease;
}

.footer-link::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(234, 214, 174, .17) 42%, transparent 70%);
    opacity: 0;
    transform: translateX(-42%);
    transition: opacity .34s ease, transform .68s var(--ease-luxury);
}

.footer-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-link .fa-solid {
    flex: 0 0 auto;
    color: rgba(234, 214, 174, .72);
    transform: translate3d(0, 0, 0);
    transition: color .34s ease, transform .34s var(--ease-luxury);
}

.footer-link:hover,
.footer-link:focus-visible {
    border-color: rgba(234, 214, 174, .4);
    background: rgba(255, 255, 255, .075);
    color: #fff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .1);
    transform: translateX(6px);
}

.footer-link:hover::before,
.footer-link:focus-visible::before {
    opacity: 1;
    transform: translateX(46%);
}

.footer-link:hover .fa-solid,
.footer-link:focus-visible .fa-solid {
    color: #ead6ae;
    transform: translate(3px, -3px) scale(1.04);
}

.footer-link:focus-visible {
    outline: 2px solid rgba(234, 214, 174, .55);
    outline-offset: 3px;
}

.footer-link-gold {
    border-color: rgba(234, 214, 174, .34);
    background:
        linear-gradient(135deg, rgba(234, 214, 174, .2), rgba(196, 139, 56, .11)),
        rgba(255, 255, 255, .06);
    color: #f4ead8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .28);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.footer-bottom-links a {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    padding: .55rem .75rem;
    color: #a1a1aa;
    font-weight: 800;
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease-luxury);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    border-color: rgba(234, 214, 174, .34);
    background: rgba(234, 214, 174, .09);
    color: #ead6ae;
    transform: translateY(-2px);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.footer-social-link {
    position: relative;
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035) 58%, rgba(234, 214, 174, .08)),
        rgba(255, 255, 255, .04);
    color: #d4d4d8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: color .32s ease, border-color .32s ease, background .32s ease, box-shadow .32s ease, transform .32s var(--ease-luxury);
}

.footer-social-link::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: radial-gradient(circle at 35% 20%, rgba(234, 214, 174, .42), transparent 42%);
    opacity: 0;
    transform: scale(.72);
    transition: opacity .32s ease, transform .32s var(--ease-luxury);
}

.footer-social-link .fa-brands {
    font-size: .95rem;
    transition: transform .32s var(--ease-luxury);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    border-color: rgba(234, 214, 174, .42);
    background: rgba(234, 214, 174, .1);
    color: #ead6ae;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22), 0 0 0 5px rgba(234, 214, 174, .06);
    transform: translateY(-3px);
}

.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.footer-social-link:hover .fa-brands,
.footer-social-link:focus-visible .fa-brands {
    transform: scale(1.08);
}

.footer-social-link:focus-visible {
    outline: 2px solid rgba(234, 214, 174, .55);
    outline-offset: 3px;
}

.product-search-form {
    min-width: 0;
}

.product-search-form .product-search-button {
    width: auto;
    min-width: 6.25rem;
    flex: 0 0 auto;
}

.glass-panel {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .54) 48%, rgba(244, 234, 216, .28)),
        rgba(255, 255, 255, .68);
    box-shadow: 0 24px 80px rgba(15, 15, 15, .075), inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: transform .38s var(--ease-luxury), box-shadow .38s ease, border-color .38s ease, background .38s ease;
}

.glass-panel::before {
    position: absolute;
    inset: 1px;
    z-index: -1;
    pointer-events: none;
    content: "";
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .5), transparent 34%, rgba(234, 214, 174, .18));
    opacity: .72;
}

.glass-panel:hover {
    border-color: rgba(234, 214, 174, .85);
    box-shadow: var(--shadow-cinematic), inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: translateY(-2px);
}

.product-card .favorite-btn.is-active .fa-heart,
.favorite-btn.is-active .fa-heart {
    color: currentColor;
    font-weight: 900;
}

.favorite-btn:not(.is-active) .fa-heart {
    font-weight: 400;
}

.product-card {
    position: relative;
    isolation: isolate;
    min-width: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68) 52%, rgba(244, 234, 216, .22)),
        rgba(255, 255, 255, .82);
    box-shadow: 0 22px 70px rgba(15, 15, 15, .075);
    transition: transform .42s var(--ease-luxury), box-shadow .42s ease, border-color .42s ease;
}

.product-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(125deg, rgba(255, 255, 255, .42), transparent 36%, rgba(234, 214, 174, .2) 100%);
    opacity: .45;
    transition: opacity .42s ease;
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card:hover {
    border-color: rgba(234, 214, 174, .95);
    box-shadow: 0 38px 110px rgba(15, 15, 15, .16);
    transform: translateY(-6px);
}

.product-card:hover::before {
    opacity: .78;
}

.product-specs > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
    transition: background .28s ease, transform .28s var(--ease-luxury);
}

.product-card:hover .product-specs > span {
    background: rgba(244, 234, 216, .58);
    transform: translateY(-1px);
}

.product-card-footer {
    flex-wrap: wrap;
}

.stock-badge {
    white-space: nowrap;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.section-heading > p {
    color: #9e6b2b;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.section-heading > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: 0;
}

.section-heading a {
    color: #795023;
    font-size: .875rem;
    font-weight: 800;
}

.section-heading-dark > p {
    color: #ead6ae;
}

.section-heading-dark h2 {
    color: #fff;
}

.section-heading-dark a {
    color: #ead6ae;
}

.jewelry-hero,
.jewelry-section {
    position: relative;
}

.jewelry-hero::after,
.jewelry-section::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(115deg, rgba(255, 255, 255, .14), transparent 32%, rgba(234, 214, 174, .12));
}

.jewelry-hero > *,
.jewelry-section > * {
    position: relative;
    z-index: 1;
}

.jewelry-card {
    box-shadow: 0 26px 76px rgba(15, 15, 15, .11);
}

.jewelry-card:hover {
    box-shadow: 0 36px 96px rgba(15, 15, 15, .18);
}

.form-label {
    display: grid;
    gap: .55rem;
    color: #3f3f46;
    font-size: .875rem;
    font-weight: 700;
}

.form-input {
    width: 100%;
    border: 1px solid #e4e4e7;
    border-radius: 1.25rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86)),
        rgba(255, 255, 255, .92);
    padding: .9rem 1rem;
    color: #18181b;
    font-size: .925rem;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease, transform .3s var(--ease-luxury);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 3.35rem;
    background-color: rgba(255, 255, 255, .94);
    background-image:
        url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%3E%3Cpath%20d='M6%208.25L10%2012.25L14%208.25'%20stroke='%2318171b'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E"),
        radial-gradient(circle at calc(100% - 1.55rem) 50%, rgba(244, 234, 216, .74) 0, rgba(244, 234, 216, .74) .95rem, rgba(244, 234, 216, 0) .98rem),
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88) 55%, rgba(244, 234, 216, .24));
    background-position: right 1.05rem center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 1.05rem 1.05rem, 100% 100%, 100% 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 10px 26px rgba(15, 15, 15, .03);
}

select.form-input:hover {
    border-color: rgba(196, 139, 56, .42);
    background-image:
        url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%3E%3Cpath%20d='M6%208.25L10%2012.25L14%208.25'%20stroke='%239e6b2b'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E"),
        radial-gradient(circle at calc(100% - 1.55rem) 50%, rgba(234, 214, 174, .92) 0, rgba(234, 214, 174, .92) .95rem, rgba(234, 214, 174, 0) .98rem),
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .9) 55%, rgba(244, 234, 216, .34));
}

select.form-input:focus {
    background-image:
        url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%3E%3Cpath%20d='M6%208.25L10%2012.25L14%208.25'%20stroke='%23795023'%20stroke-width='1.9'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E"),
        radial-gradient(circle at calc(100% - 1.55rem) 50%, rgba(234, 214, 174, .96) 0, rgba(234, 214, 174, .96) .95rem, rgba(234, 214, 174, 0) .98rem),
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .94) 55%, rgba(244, 234, 216, .38));
}

select.form-input::-ms-expand {
    display: none;
}

select.form-input option {
    background: #fff;
    color: #18181b;
    font-weight: 600;
}

.form-input:focus {
    border-color: #c48b38;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(196, 139, 56, .13);
    transform: translateY(-1px);
}

.admin-login-page {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(115deg, rgba(6, 8, 11, .88), rgba(16, 16, 18, .64) 42%, rgba(99, 67, 29, .48)),
        radial-gradient(circle at 18% 16%, rgba(234, 214, 174, .34), transparent 24rem),
        radial-gradient(circle at 84% 20%, rgba(132, 93, 42, .42), transparent 22rem),
        radial-gradient(circle at 50% 105%, rgba(255, 255, 255, .16), transparent 30rem),
        #080808;
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-login-page::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(135deg, transparent 0 44%, rgba(234, 214, 174, .12) 44% 45%, transparent 45% 100%);
    background-size: 72px 72px, 72px 72px, 100% 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .18));
}

.admin-login-page::after {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .48)),
        radial-gradient(circle at center, transparent 0 38%, rgba(0, 0, 0, .52) 100%);
}

.admin-login-shell {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
}

.admin-login-card {
    position: relative;
    width: min(100%, 28rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 1.75rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08) 44%, rgba(196, 139, 56, .12)),
        rgba(16, 16, 18, .82);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .2);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.admin-login-card::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .28), transparent 30%),
        linear-gradient(180deg, transparent 0 62%, rgba(0, 0, 0, .22));
}

.admin-login-card > * {
    position: relative;
    z-index: 1;
}

.admin-login-heading {
    margin-bottom: 2rem;
}

.admin-login-mark {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 1rem;
    background: #fff;
    color: #050505;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .12em;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.admin-login-eyebrow {
    margin-top: 1.55rem;
    color: #ead6ae;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.admin-login-heading h1 {
    margin-top: .8rem;
    color: #fff;
    font-size: clamp(2rem, 7vw, 2.85rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.admin-login-help {
    margin-bottom: 1.25rem;
    color: #f6f0e6;
    font-size: .95rem;
    font-weight: 650;
    line-height: 1.7;
}

.admin-login-label {
    display: grid;
    gap: .6rem;
    color: #fff;
    font-size: .86rem;
    font-weight: 850;
    letter-spacing: 0;
}

.admin-login-input {
    width: 100%;
    min-height: 3.35rem;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 1.1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(250, 247, 242, .94)),
        #fff;
    padding: .9rem 1rem;
    color: #111;
    font-size: 1.05rem;
    font-weight: 750;
    outline: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .92);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease-luxury);
}

.admin-login-input:focus {
    border-color: #ead6ae;
    box-shadow: 0 0 0 4px rgba(234, 214, 174, .22), 0 18px 38px rgba(0, 0, 0, .26);
    transform: translateY(-1px);
}

.admin-login-button {
    display: inline-flex;
    width: 100%;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(135deg, #f7e7c7, #c48b38 56%, #93611f),
        #c48b38;
    color: #070707;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .52);
    transition: box-shadow .24s ease, transform .24s var(--ease-luxury), filter .24s ease;
}

.admin-login-button:hover {
    filter: brightness(1.07);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .36), 0 0 0 5px rgba(234, 214, 174, .13);
    transform: translateY(-2px);
}

.admin-login-button:active {
    transform: translateY(0);
}

.admin-login-link {
    display: block;
    margin-top: 1rem;
    color: #f6f0e6;
    font-size: .9rem;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition: color .22s ease;
}

.admin-login-link:hover {
    color: #fff;
}

.admin-login-alert {
    margin-bottom: 1rem;
    border: 1px solid rgba(252, 165, 165, .42);
    border-radius: 1.1rem;
    background: rgba(127, 29, 29, .52);
    padding: .85rem 1rem;
    color: #fff1f2;
    font-size: .9rem;
    font-weight: 750;
}

.file-upload-control {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .9rem;
    min-height: 4.7rem;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 1.5rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .76) 54%, rgba(244, 234, 216, .28)),
        rgba(255, 255, 255, .88);
    padding: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88), 0 14px 34px rgba(15, 15, 15, .035);
    cursor: pointer;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease-luxury), background .3s ease;
}

.file-upload-control:hover,
.file-upload-control:focus-within {
    border-color: rgba(196, 139, 56, .5);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .82) 54%, rgba(234, 214, 174, .38)),
        rgba(255, 255, 255, .94);
    box-shadow: 0 20px 46px rgba(15, 15, 15, .08), 0 0 0 4px rgba(196, 139, 56, .10);
    transform: translateY(-1px);
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(145deg, #111, #2c2c2c);
    color: #ead6ae;
    box-shadow: 0 14px 30px rgba(15, 15, 15, .16);
}

.file-upload-title,
.file-upload-name {
    display: block;
}

.file-upload-title {
    color: #18181b;
    font-weight: 800;
}

.file-upload-name {
    overflow: hidden;
    margin-top: .2rem;
    color: #71717a;
    font-size: .8rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-upload-action {
    border-radius: 999px;
    background: rgba(24, 24, 27, .94);
    padding: .65rem .95rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(15, 15, 15, .16);
}

.file-upload-control.has-file .file-upload-name {
    color: #795023;
}

.password-field {
    position: relative;
    display: block;
    width: 100%;
}

.password-field .form-input {
    padding-right: 3.45rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: .58rem;
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(244, 234, 216, .42)),
        rgba(255, 255, 255, .86);
    color: #52525b;
    box-shadow: 0 10px 22px rgba(15, 15, 15, .055);
    transform: translateY(-50%);
    transition: border-color .24s ease, color .24s ease, box-shadow .24s ease, transform .24s var(--ease-luxury), background .24s ease;
}

.password-toggle:hover,
.password-toggle[aria-pressed="true"] {
    border-color: rgba(196, 139, 56, .46);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(234, 214, 174, .58)),
        rgba(255, 255, 255, .94);
    color: #111;
    box-shadow: 0 14px 30px rgba(15, 15, 15, .085);
}

.password-toggle:focus-visible {
    outline: 2px solid rgba(196, 139, 56, .66);
    outline-offset: 3px;
}

.password-toggle svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

textarea.form-input {
    resize: vertical;
}

.rich-editor {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 1.75rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76) 58%, rgba(244, 234, 216, .2)),
        rgba(255, 255, 255, .86);
    box-shadow: 0 20px 56px rgba(15, 15, 15, .065), inset 0 1px 0 rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease-luxury);
}

.rich-editor:focus-within {
    border-color: rgba(196, 139, 56, .6);
    box-shadow: 0 26px 70px rgba(15, 15, 15, .1), 0 0 0 4px rgba(196, 139, 56, .11);
    transform: translateY(-1px);
}

.rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    border-bottom: 1px solid rgba(228, 228, 231, .86);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(244, 234, 216, .24)),
        rgba(255, 255, 255, .6);
    padding: .7rem;
}

.rich-editor-toolbar button,
.rich-editor-select {
    min-height: 2.45rem;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: #18181b;
    font-size: .82rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 15, 15, .04);
    transition: border-color .24s ease, color .24s ease, background .24s ease, box-shadow .24s ease, transform .24s var(--ease-luxury);
}

.rich-editor-toolbar button {
    display: inline-grid;
    width: 2.45rem;
    place-items: center;
}

.rich-editor-select {
    min-width: 9rem;
    padding: 0 2rem 0 .95rem;
}

.rich-editor-toolbar button:hover,
.rich-editor-toolbar button[aria-pressed="true"],
.rich-editor-select:hover {
    border-color: rgba(196, 139, 56, .52);
    background: #fff;
    color: #111;
    box-shadow: 0 14px 30px rgba(15, 15, 15, .08);
    transform: translateY(-1px);
}

.rich-editor-toolbar button:focus-visible,
.rich-editor-select:focus-visible {
    outline: 2px solid rgba(196, 139, 56, .66);
    outline-offset: 3px;
}

.rich-editor-surface {
    min-height: 22rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    outline: none;
}

.rich-editor-surface:empty::before {
    content: attr(data-placeholder);
    color: #a1a1aa;
}

.rich-editor-compact .rich-editor-surface,
.rich-editor-compact .rich-editor-textarea:not([hidden]) {
    min-height: 12rem;
}

.rich-editor-mini .rich-editor-surface,
.rich-editor-mini .rich-editor-textarea:not([hidden]) {
    min-height: 9rem;
}

.rich-editor-textarea:not([hidden]) {
    min-height: 22rem;
    border: 0;
    border-radius: 0;
    background: #101010;
    color: #f4f4f5;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: .86rem;
    line-height: 1.7;
    box-shadow: none;
}

.rich-editor-textarea:not([hidden]):focus {
    box-shadow: inset 0 0 0 1px rgba(234, 214, 174, .45);
    transform: none;
}

.rich-editor.is-source-mode {
    border-color: rgba(24, 24, 27, .36);
    background: #101010;
}

.rich-editor-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-top: 1px solid rgba(228, 228, 231, .86);
    padding: .8rem 1rem;
    color: #71717a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rich-editor-footer span:first-child {
    color: #795023;
}

.wysiwyg-asset-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(15, 15, 15, .42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.wysiwyg-asset-modal.hidden {
    display: none;
}

.wysiwyg-asset-dialog {
    position: relative;
    width: min(100%, 34rem);
    max-height: min(88vh, 46rem);
    overflow: auto;
    border: 1px solid rgba(234, 214, 174, .42);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 16% 0%, rgba(234, 214, 174, .24), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(250, 250, 249, .9));
    padding: clamp(1.25rem, 4vw, 1.75rem);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.wysiwyg-asset-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: #52525b;
    transition: background .22s ease, color .22s ease, transform .22s var(--ease-luxury);
}

.wysiwyg-asset-close:hover {
    background: #111;
    color: #f4ead8;
    transform: translateY(-1px);
}

.wysiwyg-check-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 3.25rem;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .74);
    padding: .85rem 1rem;
    color: #3f3f46;
    font-size: .84rem;
    font-weight: 800;
}

.wysiwyg-check-row input {
    width: 1rem;
    height: 1rem;
    accent-color: #c48b38;
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 1rem;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .66) 60%, rgba(244, 234, 216, .22)),
        rgba(255, 255, 255, .72);
    padding: clamp(3.25rem, 7vw, 5rem) 1.5rem;
    text-align: center;
    box-shadow: 0 28px 90px rgba(15, 15, 15, .075);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.empty-state h1,
.empty-state h2,
.empty-state h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
}

.empty-state p {
    max-width: 32rem;
    color: #71717a;
    line-height: 1.7;
}

.dashboard-card,
.admin-stat {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .68) 55%, rgba(234, 214, 174, .24)),
        rgba(255, 255, 255, .82);
    padding: 1.5rem;
    box-shadow: 0 24px 72px rgba(15, 15, 15, .085), inset 0 1px 0 rgba(255, 255, 255, .86);
    transition: transform .38s var(--ease-luxury), box-shadow .38s ease, border-color .38s ease;
}

.dashboard-card:hover,
.admin-stat:hover {
    border-color: rgba(234, 214, 174, .86);
    box-shadow: 0 34px 92px rgba(15, 15, 15, .13);
    transform: translateY(-4px);
}

.dashboard-card p,
.admin-stat span {
    color: #71717a;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.dashboard-card strong,
.admin-stat strong {
    display: block;
    margin-top: .75rem;
    color: #111;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
}

.admin-stat .fa-solid {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
    color: #c48b38;
}

.admin-panel {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .72) 58%, rgba(244, 234, 216, .18)),
        rgba(255, 255, 255, .86);
    padding: 1.5rem;
    box-shadow: 0 24px 72px rgba(15, 15, 15, .075), inset 0 1px 0 rgba(255, 255, 255, .84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .36s ease, border-color .36s ease, transform .36s var(--ease-luxury);
}

.admin-panel:hover {
    border-color: rgba(234, 214, 174, .72);
    box-shadow: 0 30px 86px rgba(15, 15, 15, .105), inset 0 1px 0 rgba(255, 255, 255, .86);
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 .65rem;
    font-size: .875rem;
}

.admin-table th {
    padding: 0 .9rem;
    color: #71717a;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-align: left;
    text-transform: uppercase;
}

.admin-table td {
    background: #fff;
    padding: .9rem;
    vertical-align: middle;
    transition: background .25s ease, transform .25s var(--ease-luxury), box-shadow .25s ease;
}

.admin-table tbody tr:hover td {
    background: #fffdf8;
    box-shadow: 0 12px 34px rgba(15, 15, 15, .045);
}

.admin-table td:first-child {
    border-bottom-left-radius: 1.25rem;
    border-top-left-radius: 1.25rem;
}

.admin-table td:last-child {
    border-bottom-right-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

.icon-btn {
    display: inline-grid;
    height: 2.4rem;
    width: 2.4rem;
    place-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    background: #fff;
    color: #3f3f46;
    box-shadow: 0 10px 24px rgba(15, 15, 15, .045);
    transition: border-color .28s ease, color .28s ease, transform .28s var(--ease-luxury), box-shadow .28s ease;
}

.icon-btn:hover {
    border-color: #c48b38;
    color: #111;
    box-shadow: 0 16px 34px rgba(15, 15, 15, .08);
    transform: translateY(-2px);
}

[data-gallery-image].is-active {
    border-color: rgba(196, 139, 56, .9);
    box-shadow: 0 14px 34px rgba(15, 15, 15, .1), 0 0 0 3px rgba(196, 139, 56, .12);
}

body.lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: rgba(8, 8, 8, .82);
    padding: clamp(.75rem, 2.5vw, 2rem);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.product-lightbox.hidden {
    display: none;
}

.product-lightbox__stage {
    position: relative;
    display: grid;
    width: min(100%, 74rem);
    max-height: calc(100vh - 2rem);
    grid-template-columns: 3.25rem minmax(0, 1fr) 3.25rem;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.product-lightbox__figure {
    display: grid;
    min-height: 0;
    grid-column: 2;
    gap: .85rem;
    margin: 0;
    touch-action: pan-y;
    user-select: none;
}

.product-lightbox__figure img {
    display: block;
    width: 100%;
    max-height: min(72vh, 48rem);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1.5rem;
    background: #111;
    object-fit: contain;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .38);
}

.product-lightbox__figure figcaption {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-align: center;
    text-transform: uppercase;
}

.product-lightbox__close,
.product-lightbox__nav {
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background .2s ease, border-color .2s ease, transform .2s var(--ease-luxury);
}

.product-lightbox__close:hover,
.product-lightbox__nav:hover {
    border-color: rgba(234, 214, 174, .72);
    background: rgba(255, 255, 255, .2);
    transform: translateY(-1px);
}

.product-lightbox__close:focus-visible,
.product-lightbox__nav:focus-visible,
.product-lightbox__thumbs button:focus-visible {
    outline: 2px solid rgba(234, 214, 174, .9);
    outline-offset: 3px;
}

.product-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
}

.product-lightbox__nav {
    width: 3.25rem;
    height: 3.25rem;
}

.product-lightbox__nav--prev {
    grid-column: 1;
    grid-row: 1;
}

.product-lightbox__nav--next {
    grid-column: 3;
    grid-row: 1;
}

.product-lightbox__thumbs {
    display: flex;
    grid-column: 1 / -1;
    gap: .7rem;
    max-width: 100%;
    overflow-x: auto;
    padding: .25rem .25rem .5rem;
    scrollbar-color: rgba(234, 214, 174, .72) rgba(255, 255, 255, .12);
}

.product-lightbox__thumbs button {
    flex: 0 0 auto;
    width: clamp(4.25rem, 8vw, 6.5rem);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .22);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .1);
    padding: .18rem;
    opacity: .68;
    transition: border-color .2s ease, opacity .2s ease, transform .2s var(--ease-luxury);
}

.product-lightbox__thumbs button:hover,
.product-lightbox__thumbs button.is-active {
    border-color: #ead6ae;
    opacity: 1;
    transform: translateY(-1px);
}

.product-lightbox__thumbs img {
    display: block;
    aspect-ratio: 1;
    width: 100%;
    border-radius: .75rem;
    object-fit: cover;
}

.gallery-sort-grid {
    align-items: start;
}

.gallery-sort-item {
    transition: border-color .24s ease, box-shadow .24s ease, opacity .24s ease, transform .24s var(--ease-luxury);
}

.gallery-sort-item.is-dragging {
    border-color: rgba(196, 139, 56, .72);
    opacity: .56;
    box-shadow: 0 22px 54px rgba(15, 15, 15, .16);
    transform: scale(.985);
}

.gallery-sort-handle {
    display: inline-grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 999px;
    background: #fff;
    color: #71717a;
    cursor: grab;
    box-shadow: 0 10px 22px rgba(15, 15, 15, .045);
    transition: border-color .24s ease, color .24s ease, box-shadow .24s ease, transform .24s var(--ease-luxury);
    touch-action: none;
}

.gallery-sort-handle:hover {
    border-color: #c48b38;
    color: #111;
    box-shadow: 0 14px 30px rgba(15, 15, 15, .08);
    transform: translateY(-1px);
}

.gallery-sort-item.is-dragging .gallery-sort-handle {
    cursor: grabbing;
}

.media-dropzone {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px dashed rgba(196, 139, 56, .45);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68) 52%, rgba(244, 234, 216, .34)),
        rgba(255, 255, 255, .8);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 24px 72px rgba(15, 15, 15, .065), inset 0 1px 0 rgba(255, 255, 255, .86);
    transition: border-color .32s ease, box-shadow .32s ease, transform .32s var(--ease-luxury), background .32s ease;
}

.media-dropzone.is-drag-over,
.media-dropzone:focus-within {
    border-color: rgba(196, 139, 56, .9);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 234, 216, .5)),
        rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-cinematic), 0 0 0 5px rgba(196, 139, 56, .1);
    transform: translateY(-2px);
}

.media-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .68) 54%, rgba(244, 234, 216, .2)),
        rgba(255, 255, 255, .82);
    padding: 1rem;
    box-shadow: 0 22px 70px rgba(15, 15, 15, .075);
    transition: transform .36s var(--ease-luxury), border-color .36s ease, box-shadow .36s ease;
}

.media-card::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background: linear-gradient(125deg, rgba(255, 255, 255, .48), transparent 40%, rgba(234, 214, 174, .18));
    opacity: .56;
}

.media-card:hover,
.media-card.is-selected {
    border-color: rgba(196, 139, 56, .72);
    box-shadow: 0 30px 86px rgba(15, 15, 15, .12);
    transform: translateY(-4px);
}

.media-file-preview {
    display: grid;
    place-items: center;
    gap: .65rem;
    color: #3f3f46;
    text-align: center;
    background:
        radial-gradient(circle at 28% 18%, rgba(234, 214, 174, .55), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(244, 244, 245, .8));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.media-file-preview-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(212, 212, 216, .7);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .82);
    color: #111;
    box-shadow: 0 14px 34px rgba(15, 15, 15, .08);
}

.media-file-preview span {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .22em;
    color: #7c5b2c;
}

.skeleton-bar,
.skeleton-card {
    overflow: hidden;
    background: linear-gradient(90deg, #eee, #f8f8f8, #eee);
    background-size: 220% 100%;
    animation: shimmer 1.15s linear infinite;
}

@keyframes shimmer {
    to {
        background-position-x: -220%;
    }
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.prose-luxury h2 {
    margin-top: .75rem;
    color: #111;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0;
}

.prose-luxury p {
    margin-top: 1.25rem;
    color: #52525b;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-card {
    position: relative;
    isolation: isolate;
}

.blog-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(125deg, rgba(255, 255, 255, .46), transparent 38%, rgba(234, 214, 174, .18));
    opacity: .48;
    transition: opacity .38s ease;
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

.blog-card:hover::before {
    opacity: .82;
}

.blog-featured-image {
    transition: transform .42s var(--ease-luxury), box-shadow .42s ease, border-color .42s ease;
}

.blog-featured-image:hover {
    border-color: rgba(234, 214, 174, .82);
    box-shadow: var(--shadow-cinematic);
    transform: translateY(-3px);
}

.blog-content {
    color: #3f3f46;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-content > * + * {
    margin-top: 1.4rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #111;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.16;
}

.blog-content h2 {
    margin-top: 2.4rem;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.blog-content h3 {
    margin-top: 2rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.blog-content a {
    color: #795023;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(196, 139, 56, .34);
    text-underline-offset: .22em;
    transition: color .24s ease, text-decoration-color .24s ease;
}

.blog-content a:hover {
    color: #111;
    text-decoration-color: #111;
}

.blog-content ul,
.blog-content ol {
    display: grid;
    gap: .6rem;
    padding-left: 1.2rem;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content blockquote {
    border-left: 3px solid #c48b38;
    border-radius: 0 1.25rem 1.25rem 0;
    background: linear-gradient(145deg, rgba(244, 234, 216, .48), rgba(255, 255, 255, .7));
    padding: 1.1rem 1.25rem;
    color: #18181b;
    font-weight: 650;
}

.blog-content img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.toast {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: min(22rem, calc(100vw - 2rem));
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 45px rgba(15, 15, 15, .15);
    padding: .9rem 1rem;
    color: #18181b;
    font-size: .875rem;
    font-weight: 700;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: toast-in .28s cubic-bezier(.2, .8, .2, 1) both;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    background: rgba(15, 15, 15, .48);
    padding: 1rem;
    backdrop-filter: blur(14px);
}

.modal-backdrop.hidden {
    display: none;
}

.modal-card {
    position: relative;
    width: min(100%, 30rem);
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86) 56%, rgba(244, 234, 216, .28)),
        rgba(255, 255, 255, .94);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    padding: 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: modal-in .3s cubic-bezier(.2, .8, .2, 1) both;
}

.reveal-on-scroll {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(20px) scale(.992);
    transition: opacity .72s ease, transform .72s var(--ease-luxury), filter .72s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

main > section {
    scroll-margin-top: 6rem;
}

main > section + section {
    position: relative;
}

@keyframes luxury-gradient-drift {
    from {
        background-position: 0% 50%, center;
    }

    to {
        background-position: 100% 50%, center;
    }
}

@keyframes footer-line-drift {
    from {
        transform: translateX(-18%) scaleX(.72);
        opacity: .58;
    }

    to {
        transform: translateX(18%) scaleX(1);
        opacity: .96;
    }
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
    }

    .section-heading > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-panel,
    .glass-panel {
        border-radius: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
