:root {
    --sd-bg: #f7fafc;
    --sd-bg-soft: #eef6f8;
    --sd-surface: #ffffff;
    --sd-surface-strong: #f2f7f9;
    --sd-border: #dce8ec;
    --sd-border-strong: rgba(201, 146, 46, .42);
    --sd-text: #101820;
    --sd-muted: #64717f;
    --sd-cyan: #f0c15a;
    --sd-blue: #c9922e;
    --sd-shadow: 0 24px 60px rgba(16, 24, 32, .08);
}

* {
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--sd-text);
    background: var(--sd-bg);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

::selection {
    color: #fff;
    background: var(--sd-blue);
}

.site-navbar {
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--sd-border);
    box-shadow: 0 10px 30px rgba(16, 24, 32, .04);
    backdrop-filter: blur(16px);
}

.navbar-brand {
    color: var(--sd-text);
    font-weight: 800;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--sd-text);
}

.brand-mark {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--sd-cyan), var(--sd-blue));
    border-radius: .6rem;
    box-shadow: 0 12px 28px rgba(201, 146, 46, .18);
}

.nav-link {
    position: relative;
    color: var(--sd-muted);
    font-weight: 700;
    transition: color .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--sd-blue);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link.active::after {
    position: absolute;
    right: .5rem;
    bottom: .15rem;
    left: .5rem;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--sd-cyan), var(--sd-blue));
    border-radius: 999px;
}

.navbar-toggler {
    border-color: var(--sd-border);
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(201, 146, 46, .16);
}

.navbar-toggler-icon {
    filter: none;
}

main {
    min-height: 70vh;
    padding: 6rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sd-text);
    font-weight: 800;
}

p {
    color: var(--sd-muted);
}

.text-cyan {
    color: var(--sd-blue);
}

.section-spacing {
    padding: 5rem 0;
}

.premium-card {
    height: 100%;
    padding: 2rem;
    background: var(--sd-surface);
    border: 1px solid var(--sd-border);
    border-radius: 1rem;
    box-shadow: 0 14px 40px rgba(16, 24, 32, .05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.premium-card:hover {
    border-color: var(--sd-border-strong);
    box-shadow: var(--sd-shadow);
    transform: translateY(-4px);
}

.btn-shark {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--sd-text);
    --bs-btn-border-color: var(--sd-text);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--sd-blue);
    --bs-btn-hover-border-color: var(--sd-blue);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #a56f1f;
    --bs-btn-active-border-color: #a56f1f;
    border-radius: .7rem;
    box-shadow: 0 16px 34px rgba(201, 146, 46, .18);
    font-weight: 800;
}

.btn-shark-outline {
    --bs-btn-color: var(--sd-text);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: var(--sd-border);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--sd-blue);
    --bs-btn-hover-border-color: var(--sd-blue);
    border-radius: .7rem;
    font-weight: 800;
}

.btn-shark,
.btn-shark-outline,
.btn-shop-primary,
.btn-shop-outline,
.social-link,
.footer-link {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-shark:hover,
.btn-shark-outline:hover,
.btn-shop-primary:hover,
.btn-shop-outline:hover {
    transform: translateY(-2px);
}

.site-footer {
    color: rgba(255, 255, 255, .58);
    background: #030405;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer strong,
.site-footer h2 {
    color: #fff;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.footer-brand img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 46px;
    object-fit: contain;
}

.footer-link {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
    color: #f0c15a;
}

.social-link {
    display: inline-grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    color: #fff;
    text-decoration: none;
    background: rgba(216, 166, 66, .16);
    border: 1px solid rgba(216, 166, 66, .35);
    border-radius: .6rem;
}

.social-link:hover,
.social-link:focus {
    color: #111;
    background: #f0c15a;
    border-color: #f0c15a;
    transform: translateY(-2px);
}

.form-control,
.form-select {
    color: var(--sd-text);
    background-color: #fff;
    border-color: var(--sd-border);
    border-radius: .7rem;
}

.form-control:focus,
.form-select:focus {
    color: var(--sd-text);
    background-color: #fff;
    border-color: var(--sd-cyan);
    box-shadow: 0 0 0 .2rem rgba(201, 146, 46, .14);
}

.shop-home {
    --shop-bg: var(--sd-bg);
    --shop-surface: var(--sd-surface);
    --shop-surface-soft: var(--sd-bg-soft);
    --shop-text: var(--sd-text);
    --shop-muted: var(--sd-muted);
    --shop-border: var(--sd-border);
    --shop-blue: var(--sd-blue);
    --shop-turquoise: var(--sd-cyan);
    --shop-shadow: var(--sd-shadow);
    width: 100vw;
    margin: -6rem 0 -6rem calc(50% - 50vw);
    color: var(--shop-text);
    background: var(--shop-bg);
}

.shop-home h1,
.shop-home h2,
.shop-home h3,
.shop-home h4,
.shop-home h5,
.shop-home h6 {
    color: var(--shop-text);
}

.shop-home p {
    color: var(--shop-muted);
}

.shop-hero {
    padding: 6.5rem 0 5rem;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(238, 247, 248, .9)),
        radial-gradient(circle at 80% 20%, rgba(216, 166, 66, .18), transparent 30rem);
}

.shop-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--shop-blue);
    background: rgba(216, 166, 66, .09);
    border: 1px solid rgba(216, 166, 66, .2);
    border-radius: 999px;
    font-weight: 800;
}

.shop-home .lead {
    color: #536170;
    font-size: 1.18rem;
}

.btn-shop-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--shop-text, var(--sd-text));
    --bs-btn-border-color: var(--shop-text, var(--sd-text));
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--shop-blue, var(--sd-blue));
    --bs-btn-hover-border-color: var(--shop-blue, var(--sd-blue));
    border-radius: .7rem;
    box-shadow: 0 16px 34px rgba(201, 146, 46, .18);
    font-weight: 800;
}

.btn-shop-outline {
    --bs-btn-color: var(--shop-text, var(--sd-text));
    --bs-btn-bg: #fff;
    --bs-btn-border-color: var(--shop-border, var(--sd-border));
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--shop-blue, var(--sd-blue));
    --bs-btn-hover-border-color: var(--shop-blue, var(--sd-blue));
    border-radius: .7rem;
    font-weight: 800;
}

.hero-product-showcase {
    position: relative;
    min-height: 430px;
    padding: 2rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(230, 243, 246, .96)),
        linear-gradient(90deg, transparent 0 48%, rgba(201, 146, 46, .08) 48% 52%, transparent 52%);
    border: 1px solid var(--shop-border);
    border-radius: 1.5rem;
    box-shadow: var(--shop-shadow);
}

.glass-panel-demo {
    position: absolute;
    right: 13%;
    bottom: 8%;
    width: 52%;
    height: 78%;
    border: 2px solid rgba(201, 146, 46, .35);
    border-radius: 1rem;
    background: linear-gradient(115deg, rgba(255, 255, 255, .68), rgba(216, 166, 66, .1));
    box-shadow: inset 18px 0 34px rgba(255, 255, 255, .6), 0 26px 60px rgba(201, 146, 46, .16);
}

.glass-panel-demo span:first-child {
    position: absolute;
    top: 0;
    left: 18%;
    width: 2px;
    height: 100%;
    background: rgba(201, 146, 46, .18);
}

.glass-panel-demo span:last-child {
    position: absolute;
    top: 16%;
    right: 16%;
    width: .55rem;
    height: .55rem;
    background: var(--shop-blue);
    border-radius: 999px;
}

.hero-badge,
.hero-note {
    position: absolute;
    z-index: 2;
    padding: 1rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--shop-border);
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(16, 24, 32, .08);
    backdrop-filter: blur(10px);
}

.hero-badge {
    top: 2rem;
    left: 2rem;
}

.hero-badge strong,
.hero-badge small {
    display: block;
}

.hero-note {
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--shop-text);
    font-weight: 800;
}

.hero-note i {
    color: var(--shop-turquoise);
    font-size: 1.4rem;
}

.shop-section {
    padding: 5rem 0;
}

.shop-section-muted {
    background: var(--shop-surface-soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading span,
.shop-cta span {
    display: inline-block;
    margin-bottom: .65rem;
    color: var(--shop-blue);
    font-weight: 800;
}

.section-heading h2,
.shop-cta h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.shop-card,
.product-card,
.benefit-item {
    height: 100%;
    background: var(--shop-surface);
    border: 1px solid var(--shop-border);
    border-radius: 1rem;
    box-shadow: 0 14px 40px rgba(16, 24, 32, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.shop-card:hover,
.product-card:hover,
.benefit-item:hover {
    border-color: rgba(216, 166, 66, .42);
    box-shadow: var(--shop-shadow);
    transform: translateY(-4px);
}

.category-card {
    padding: 1.6rem;
}

.category-card i,
.benefit-item i {
    display: inline-grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.2rem;
    place-items: center;
    color: var(--shop-blue);
    background: rgba(216, 166, 66, .1);
    border-radius: .85rem;
    font-size: 1.35rem;
}

.category-card h3,
.product-card h3,
.benefit-item h3 {
    margin-bottom: .7rem;
    font-size: 1.08rem;
}

.category-card p {
    margin-bottom: 0;
}

.benefit-item {
    padding: 1.4rem;
}

.benefit-item h3 {
    margin-bottom: 0;
    line-height: 1.35;
}

.product-card {
    overflow: hidden;
}

.product-image {
    display: grid;
    min-height: 220px;
    place-items: center;
    color: rgba(16, 24, 32, .28);
    background: linear-gradient(135deg, #ffffff, #eaf4f6);
}

.product-image i {
    font-size: 3rem;
}

.product-image-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eaf4f6;
}

.product-image-clear {
    background: linear-gradient(135deg, #ffffff, #dff5f8);
}

.product-image-dark {
    background:
        linear-gradient(135deg, rgba(16, 24, 32, .12), transparent 45%),
        linear-gradient(135deg, #ffffff, #eef4f6);
}

.product-image-steel {
    background: linear-gradient(135deg, #ffffff, #d9e5e9);
}

.product-image-chrome {
    background: linear-gradient(135deg, #ffffff, #e5eef1 48%, #cfdde2);
}

.product-body {
    padding: 1.4rem;
}

.product-category-label {
    display: inline-block;
    margin-bottom: .65rem;
    color: var(--shop-blue);
    font-size: .85rem;
    font-weight: 800;
}

.product-body p {
    margin-bottom: 1.2rem;
    color: var(--shop-blue);
    font-weight: 800;
}

.product-detail-media {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 1.25rem;
    box-shadow: var(--shop-shadow);
}

.product-detail-media img {
    display: block;
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.product-detail-media .product-image {
    min-height: 460px;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.product-price-box strong {
    color: var(--shop-blue);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}

.product-price-box span {
    color: var(--shop-muted);
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: line-through;
}

.product-meta-label {
    display: block;
    margin-bottom: .25rem;
    color: var(--shop-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.product-description {
    padding-top: 1.5rem;
    border-top: 1px solid var(--shop-border);
}

.product-quantity-input {
    max-width: 8rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--sd-border);
    border-radius: 1rem;
    box-shadow: 0 14px 40px rgba(16, 24, 32, .05);
}

.cart-item img,
.cart-item-placeholder {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: .8rem;
}

.cart-item-placeholder {
    display: grid;
    place-items: center;
    color: rgba(16, 24, 32, .28);
    background: linear-gradient(135deg, #ffffff, #dff5f8);
}

.cart-summary {
    position: sticky;
    top: 6rem;
}

.auth-panel {
    max-width: 560px;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--sd-border);
    border-radius: 1.25rem;
    box-shadow: var(--sd-shadow);
}

.shop-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    color: #fff;
    background: linear-gradient(135deg, var(--shop-blue), var(--shop-turquoise));
    border-radius: 1.25rem;
    box-shadow: var(--shop-shadow);
}

.shop-cta h2,
.shop-cta p {
    color: #fff;
}

.shop-cta p {
    margin-bottom: 0;
    opacity: .9;
}

.shop-cta .btn-shop-primary {
    --bs-btn-color: var(--shop-text);
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--shop-text);
    --bs-btn-hover-border-color: var(--shop-text);
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .nav-link {
        padding: .75rem 0;
    }

    .nav-link.active::after {
        right: auto;
        bottom: .35rem;
        left: 0;
        width: 2.5rem;
    }

    .hero-product-showcase {
        min-height: 360px;
    }

    .shop-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    main {
        padding: 4rem 0;
    }

    .section-spacing {
        padding: 3rem 0;
    }

    .premium-card,
    .category-card,
    .product-body,
    .benefit-item {
        padding: 1.4rem;
    }

    .shop-home {
        margin-top: -4rem;
        margin-bottom: -4rem;
    }

    .shop-hero,
    .shop-section {
        padding: 3.5rem 0;
    }

    .hero-product-showcase {
        min-height: 300px;
        padding: 1rem;
    }

    .hero-badge,
    .hero-note {
        right: 1rem;
        left: 1rem;
    }

    .hero-note {
        bottom: 1rem;
    }

    .shop-cta {
        padding: 2rem;
    }

    .product-detail-media img,
    .product-detail-media .product-image {
        min-height: 320px;
    }

    .cart-item {
        grid-template-columns: 72px 1fr;
    }

    .cart-item img,
    .cart-item-placeholder {
        width: 72px;
        height: 72px;
    }
}

/* Shark Design premium homepage */
body.is-home {
    background: #050607;
    overflow-x: hidden;
}

body.is-home main {
    min-height: auto;
    padding: 0;
}

.site-navbar {
    position: relative;
    background: rgba(0, 0, 0, .94);
    border-bottom-color: rgba(255, 255, 255, .12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.site-navbar__inner {
    display: flex;
    width: min(100% - clamp(2rem, 4vw, 2.8rem), 1500px);
    align-items: center;
    margin: 0 auto;
    padding: .5rem 0;
}

.site-mobile-actions {
    display: none;
}

.shark-logo {
    gap: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.shark-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 44px;
    object-fit: contain;
}

.shark-logo span {
    letter-spacing: .04em;
}

.shark-logo span + span {
    color: #7e858d;
    font-weight: 500;
}

.site-navbar .nav-link,
.nav-icon {
    color: rgba(255, 255, 255, .64);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active,
.nav-icon:hover,
.nav-icon:focus,
.nav-icon.active {
    color: #fff;
}

.site-navbar .nav-link {
    font-size: .92rem;
    font-weight: 700;
}

.site-navbar .nav-link.active::after {
    right: 0;
    bottom: -.95rem;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d8a642, transparent);
    box-shadow: 0 0 18px rgba(216, 166, 66, .72);
}

.nav-icon {
    position: relative;
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    color: rgba(240, 193, 90, .78);
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1.18rem;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-icon:hover,
.nav-icon:focus,
.nav-icon.active {
    color: #f7d78a;
    background: rgba(216, 166, 66, .1);
    border-color: rgba(216, 166, 66, .32);
    box-shadow: 0 0 18px rgba(216, 166, 66, .22);
}

.site-actions {
    flex-direction: row;
    align-items: center;
}

.cart-count-badge {
    position: absolute;
    top: .1rem;
    right: .05rem;
    display: grid;
    min-width: 1rem;
    height: 1rem;
    place-items: center;
    padding: 0 .25rem;
    color: #0b0b0b;
    background: #f0c15a;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
}

.cart-count-badge.is-empty {
    display: none;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: background-color .24s ease;
}

.cart-drawer.is-open {
    pointer-events: auto;
    background: rgba(0, 0, 0, .52);
}

.cart-drawer__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(100%, 430px);
    height: 100%;
    color: #fff;
    background: #08090a;
    border-left: 1px solid rgba(216, 166, 66, .25);
    box-shadow: -24px 0 70px rgba(0, 0, 0, .44);
    transform: translateX(100%);
    transition: transform .28s ease;
}

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

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cart-drawer__title {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}

.cart-drawer__title strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.cart-drawer__title span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    min-height: 1.65rem;
    padding: .25rem .55rem;
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
    font-weight: 800;
    background: rgba(216, 166, 66, .1);
    border: 1px solid rgba(216, 166, 66, .22);
    border-radius: 999px;
}

.cart-drawer__title b {
    display: block;
    color: #d8a642;
    font-size: .76rem;
    font-weight: 900;
}

.cart-drawer__close {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(216, 166, 66, .1);
    border: 1px solid rgba(216, 166, 66, .28);
    border-radius: 999px;
}

.cart-drawer__body {
    display: grid;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) auto;
}

.cart-drawer__items {
    display: grid;
    align-content: start;
    gap: .75rem;
    padding: 1rem;
    overflow: auto;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: .85rem;
    padding: .75rem;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .65rem;
}

.cart-drawer-item img,
.cart-drawer-item__placeholder {
    width: 72px;
    height: 72px;
    border-radius: .5rem;
}

.cart-drawer-item img {
    object-fit: cover;
}

.cart-drawer-item__placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .07);
}

.cart-drawer-item strong,
.cart-drawer-item span,
.cart-drawer-item em {
    display: block;
}

.cart-drawer-item strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    font-size: .92rem;
    line-height: 1.32;
}

.cart-drawer-item span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .58);
    font-size: .82rem;
}

.cart-drawer-item em {
    grid-column: 2;
    color: #f0c15a;
    font-style: normal;
    font-weight: 900;
}

.cart-drawer-item__content {
    min-width: 0;
}

.cart-drawer-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    margin-top: .65rem;
}

.cart-drawer-qty {
    display: grid;
    grid-template-columns: 2rem 2.7rem 2rem;
    min-height: 2.15rem;
    overflow: hidden;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .45rem;
}

.cart-drawer-qty button,
.cart-drawer-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f0c15a;
    background: rgba(255, 255, 255, .04);
    border: 0;
}

.cart-drawer-qty button:disabled {
    color: rgba(255, 255, 255, .25);
}

.cart-drawer-qty input {
    width: 100%;
    min-width: 0;
    color: #fff;
    text-align: center;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    outline: none;
}

.cart-drawer-qty input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-drawer-qty input[type="number"]::-webkit-outer-spin-button,
.cart-drawer-qty input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-drawer-remove {
    gap: .35rem;
    min-height: 2.15rem;
    padding: 0 .65rem;
    color: #ffb6b6;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 120, 120, .2);
    border-radius: .45rem;
}

.cart-drawer__footer {
    display: grid;
    gap: .65rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.cart-drawer__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .5rem;
}

.cart-drawer__total span {
    color: rgba(255, 255, 255, .62);
    font-weight: 800;
}

.cart-drawer__total strong {
    color: #fff;
    font-size: 1.15rem;
}

.cart-drawer__empty {
    display: grid;
    place-items: center;
    align-self: center;
    padding: 2rem;
    text-align: center;
}

.cart-drawer__empty i {
    margin-bottom: .8rem;
    color: #d8a642;
    font-size: 2.4rem;
}

.cart-drawer__empty strong {
    color: #fff;
    font-size: 1.2rem;
}

.cart-drawer__empty p {
    max-width: 18rem;
    margin: .45rem 0 1rem;
    color: rgba(255, 255, 255, .62);
}

body.cart-drawer-open {
    overflow: hidden;
}

.search-overlay {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding: 0 clamp(1rem, 4vw, 2.8rem);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
}

.search-overlay.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.search-overlay__panel {
    position: relative;
    width: min(100%, 760px);
    margin-top: .75rem;
    padding: .85rem;
    color: #fff;
    background: rgba(8, 9, 10, .98);
    border: 1px solid rgba(216, 166, 66, .28);
    border-radius: .65rem;
    box-shadow: 0 20px 54px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.search-overlay__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(216, 166, 66, .1);
    border: 1px solid rgba(216, 166, 66, .28);
    border-radius: 999px;
}

.search-overlay__head {
    padding-right: 2.5rem;
    margin-bottom: .7rem;
}

.search-overlay__head span {
    display: block;
    margin-bottom: .35rem;
    color: #d8a642;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.search-overlay__head h2 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 600;
}

.search-overlay__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .7rem;
    align-items: center;
}

.search-overlay__field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .8rem;
    min-height: 3rem;
    padding: 0 .85rem;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(216, 166, 66, .34);
    border-radius: .65rem;
}

.search-overlay__field i {
    color: #f0c15a;
    font-size: 1.2rem;
}

.search-overlay__field input {
    width: 100%;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1rem;
}

.search-overlay__field input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.search-overlay__results {
    display: grid;
    gap: .65rem;
    max-height: min(50vh, 430px);
    margin-top: .75rem;
    overflow: auto;
}

.search-overlay__hint {
    margin: 0;
    padding: 1rem;
    color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .6rem;
}

.search-result {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: center;
    padding: .7rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .65rem;
    transition: border-color .2s ease, background-color .2s ease;
}

.search-result:hover,
.search-result:focus {
    color: #fff;
    background: rgba(216, 166, 66, .08);
    border-color: rgba(216, 166, 66, .32);
}

.search-result img,
.search-result > span {
    grid-row: span 2;
    width: 64px;
    height: 64px;
    border-radius: .5rem;
}

.search-result img {
    object-fit: cover;
}

.search-result > span {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .07);
}

.search-result strong {
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result small {
    grid-column: 2;
    color: rgba(255, 255, 255, .58);
    font-weight: 700;
}

.search-result em {
    grid-column: 3;
    grid-row: 1 / 3;
    color: #f0c15a;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .2);
}

.navbar-toggler-icon {
    filter: invert(1) grayscale(1);
}

.btn-shop-primary {
    --bs-btn-bg: #b27b24;
    --bs-btn-border-color: #d8a642;
    --bs-btn-hover-bg: #c9922e;
    --bs-btn-hover-border-color: #f0c15a;
    border-radius: .38rem;
    box-shadow: 0 0 0 1px rgba(240, 193, 90, .22), 0 0 26px rgba(216, 166, 66, .3);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.btn-shop-outline {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(0, 0, 0, .25);
    --bs-btn-border-color: rgba(255, 255, 255, .26);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(216, 166, 66, .18);
    --bs-btn-hover-border-color: rgba(240, 193, 90, .8);
    border-radius: .38rem;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.shop-home {
    --sd-page-pad: clamp(1rem, 2vw, 1.4rem);
    --sd-site-width: 1500px;
    width: 100%;
    margin: 0;
    padding: 0 var(--sd-page-pad) 1rem;
    color: #fff;
    background:
        radial-gradient(circle at 8% 22%, rgba(201, 146, 46, .16), transparent 28rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
    overflow: hidden;
}

.sd-hero,
.sd-feature-strip,
.sd-collections,
.sd-products,
.sd-benefits {
    max-width: var(--sd-site-width);
}

.sd-hero-scroll {
    width: 100%;
    max-width: var(--sd-site-width);
    margin: 0 auto;
}

.shop-home h1,
.shop-home h2,
.shop-home h3,
.shop-home p {
    color: inherit;
}

.sd-hero {
    position: relative;
    display: grid;
    height: calc(100vh - 72px);
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    overflow: hidden;
    background:
        linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, .98) 28%, rgba(2, 3, 4, .46) 52%, rgba(2, 3, 4, .04) 100%),
        #050607;
}

.sd-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 34%, rgba(120, 136, 148, .16), transparent 18rem),
        linear-gradient(90deg, #030405 0%, #080a0d 48%, #171a1e 100%);
    opacity: .98;
}

.sd-hero__sequence {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0;
    transition: opacity .16s ease-out;
    will-change: opacity;
}

.sd-hero__sequence.is-active {
    opacity: 1;
}

.sd-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .22), transparent 55%, rgba(0, 0, 0, .88)),
        linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .02));
}

.sd-hero__content {
    position: relative;
    z-index: 2;
    width: min(44rem, 100%);
    box-sizing: border-box;
    align-self: center;
    padding: clamp(4rem, 8vw, 8.3rem) clamp(1.3rem, 5vw, 4rem);
}

.sd-eyebrow {
    display: inline-block;
    margin-bottom: 1.4rem;
    color: #d8a642;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.sd-hero h1 {
    max-width: 18ch;
    margin-bottom: 1.35rem;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 3.8vw, 3.35rem);
    font-weight: 600;
    line-height: 1.04;
}

.sd-hero h1::after {
    display: block;
    width: 4.8rem;
    height: 2px;
    margin-top: 1.5rem;
    content: "";
    background: #d8a642;
    box-shadow: 0 0 18px rgba(216, 166, 66, .58);
}

.sd-hero p {
    max-width: 32rem;
    margin-bottom: 2.1rem;
    color: rgba(255, 255, 255, .66);
    font-size: 1.08rem;
    line-height: 1.75;
}

.sd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4.5rem;
}

.sd-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    min-height: 3.25rem;
    padding: .9rem 1.7rem;
}

.sd-play {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-play span {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 50%;
}

.sd-guarantee {
    position: absolute;
    right: clamp(2rem, 8vw, 8rem);
    bottom: 7.8rem;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr;
    max-width: 14rem;
    gap: .1rem .9rem;
    color: #fff;
}

.sd-guarantee span {
    display: grid;
    grid-row: span 2;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(216, 166, 66, .16);
    border: 1px solid rgba(240, 193, 90, .42);
    border-radius: 50%;
}

.sd-guarantee strong {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-guarantee small {
    color: rgba(255, 255, 255, .62);
    line-height: 1.5;
}

.sd-waterline {
    position: absolute;
    right: -4rem;
    bottom: -1.2rem;
    left: -4rem;
    z-index: 2;
    height: 16rem;
    opacity: .62;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 58% 82%, rgba(216, 166, 66, .32), transparent 42%),
        repeating-radial-gradient(ellipse at 56% 100%, transparent 0 1.55rem, rgba(240, 193, 90, .24) 1.62rem 1.7rem, transparent 1.86rem 3.45rem);
    filter: blur(.2px);
    transform: skewY(-3deg);
}

.sd-feature-strip,
.sd-collections,
.sd-products,
.sd-benefits {
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0 auto;
}

.sd-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    padding: .9rem;
    margin-top: -1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        rgba(10, 12, 14, .94);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .85rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.sd-feature-card {
    position: relative;
    min-height: 18rem;
    padding: 2.25rem 2.05rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(4, 6, 8, .18), rgba(4, 6, 8, .92)),
        linear-gradient(90deg, rgba(7, 9, 12, .86), rgba(7, 9, 12, .38)),
        url("../images/home/shower-details.png");
    background-position: center, center, var(--bg-pos);
    background-size: cover, cover, 420%;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .45rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, filter .22s ease;
}

.sd-feature-card::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 166, 66, .14), transparent 9rem),
        linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 34%);
    opacity: .78;
}

.sd-feature-card::after {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(216, 166, 66, .34), transparent);
    opacity: .65;
}

.sd-feature-card:hover {
    border-color: rgba(216, 166, 66, .34);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .04);
    filter: brightness(1.08);
    transform: translateY(-3px);
}

.sd-feature-card i {
    position: relative;
    z-index: 1;
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 4.8rem;
    color: #fff;
    text-shadow: 0 0 18px rgba(216, 166, 66, .46);
    font-size: 1.85rem;
}

.sd-feature-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: .8rem;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sd-feature-card p {
    position: relative;
    z-index: 1;
    max-width: 15rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .84rem;
    line-height: 1.65;
}

.sd-collections {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, 1fr);
    gap: clamp(1rem, 2.6vw, 4rem);
    align-items: stretch;
    margin-top: 2.7rem;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 4rem);
    background: linear-gradient(110deg, rgba(18, 21, 24, .94), rgba(9, 11, 13, .96));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .9rem;
}

.sd-collection-copy {
    align-self: center;
}

.sd-collection-copy h2,
.sd-section-head h2 {
    max-width: 11ch;
    margin-bottom: 1.4rem;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    font-weight: 500;
    line-height: 1.08;
}

.sd-collection-copy p {
    max-width: 20rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.sd-collection-copy a,
.sd-product-card a {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #d8a642;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-collection-card {
    position: relative;
    display: flex;
    min-height: 24rem;
    align-items: flex-end;
    padding: 1.8rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, .86)),
        url("../images/home/shower-details.png");
    background-position: center, var(--bg-pos);
    background-size: cover, 380%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .48rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.sd-product-feature-card {
    padding: 0;
    background: rgba(255, 255, 255, .04);
}

.sd-product-feature-card > img,
.sd-product-feature-card > .sd-product-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.sd-product-feature-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .88)),
        linear-gradient(90deg, rgba(0, 0, 0, .3), transparent 58%);
}

.sd-product-feature-card:hover > img {
    transform: scale(1.04);
}

.sd-product-feature-card > div {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.7rem;
}

.sd-product-feature-card span,
.sd-product-card__body span {
    display: block;
    min-height: 2.4em;
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.55;
}

.sd-product-feature-card a {
    margin-top: .85rem;
}

.sd-collection-card h3,
.sd-product-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: .42rem;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(.95rem, 1.15vw, 1.05rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: none;
}

.sd-collection-card p,
.sd-product-card p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .86rem;
}

.sd-products {
    position: relative;
    margin-top: 4.6rem;
    padding-top: .4rem;
}

.sd-section-head {
    margin-bottom: 1.3rem;
}

.sd-section-head h2 {
    max-width: none;
    margin-bottom: 0;
}

.sd-product-showcase-head {
    max-width: 760px;
    margin: 0 auto 1.65rem;
    text-align: center;
}

.sd-product-showcase-head h2 {
    margin-bottom: .45rem;
    font-size: clamp(1.25rem, 2vw, 1.95rem);
    font-weight: 500;
}

.sd-product-showcase-head h2 span {
    color: #d8a642;
}

.sd-product-showcase-head p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
}

.sd-product-showcase-head::after {
    display: block;
    width: 5rem;
    height: 1px;
    margin: .85rem auto 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(240, 193, 90, .92), transparent);
    box-shadow: 0 0 20px rgba(216, 166, 66, .45);
}

.sd-category-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-top: 1.15rem;
}

.sd-category-tabs a {
    display: inline-flex;
    min-height: 2.35rem;
    align-items: center;
    padding: .52rem .95rem;
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.sd-category-tabs a:hover,
.sd-category-tabs a:focus,
.sd-category-tabs a.is-active {
    color: #f0c15a;
    background: rgba(216, 166, 66, .1);
    border-color: rgba(216, 166, 66, .42);
}

.sd-product-slider {
    position: relative;
}

.sd-product-track {
    display: grid;
    grid-auto-columns: minmax(260px, calc((100% - 3rem) / 4));
    grid-auto-flow: column;
    gap: 1.05rem;
    overflow-x: auto;
    padding: .25rem .1rem .85rem;
    scroll-padding: .1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.sd-product-track::-webkit-scrollbar {
    display: none;
}

.sd-product-card {
    position: relative;
    display: flex;
    min-height: 28.8rem;
    align-items: flex-end;
    overflow: hidden;
    background: #07090b;
    border: 1px solid rgba(216, 166, 66, .32);
    border-radius: .45rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    scroll-snap-align: start;
}

.sd-product-card:hover {
    border-color: rgba(240, 193, 90, .75);
    box-shadow: 0 26px 66px rgba(0, 0, 0, .42), 0 0 30px rgba(216, 166, 66, .16);
    transform: translateY(-3px);
}

.sd-product-card__media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #111418;
}

.sd-product-card img,
.sd-product-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #101419;
}

.sd-product-card img {
    transition: transform .35s ease, filter .35s ease;
}

.sd-product-card:hover img {
    filter: brightness(1.05);
    transform: scale(1.035);
}

.sd-product-card::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .94) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .42), transparent 58%);
}

.sd-product-card::before {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    z-index: 1;
    height: 36%;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 10, 12, .28), rgba(8, 10, 12, .82)),
        radial-gradient(circle at 18% 100%, rgba(216, 166, 66, .14), transparent 12rem);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .38rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    mask-image: linear-gradient(180deg, transparent 0%, #000 26%);
}

.sd-slider-button {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(5, 6, 7, .86);
    border: 1px solid rgba(216, 166, 66, .55);
    border-radius: 50%;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .36);
    transform: translateY(-50%);
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.sd-slider-button:hover,
.sd-slider-button:focus {
    border-color: rgba(240, 193, 90, .75);
    transform: translateY(-50%) scale(1.04);
}

.sd-slider-button:disabled {
    opacity: .28;
    pointer-events: none;
}

.sd-slider-button--prev {
    left: -1.7rem;
}

.sd-slider-button--next {
    right: -1.7rem;
}

.sd-product-placeholder {
    display: grid;
    place-items: center;
    color: #d8a642;
    font-size: 3rem;
}

.sd-product-card__body {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 1.35rem 1.25rem 1.15rem;
}

.sd-product-card h3::after {
    display: block;
    width: 3.2rem;
    height: 1px;
    margin-top: .85rem;
    content: "";
    background: rgba(240, 193, 90, .72);
}

.sd-product-card p {
    margin-bottom: 0;
    color: #d8a642;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sd-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .65rem;
    margin-top: .55rem;
}

.sd-product-card__footer a {
    display: inline-grid;
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    font-size: 1rem;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.sd-product-card__footer a:hover,
.sd-product-card__footer a:focus {
    background: rgba(216, 166, 66, .14);
    border-color: rgba(216, 166, 66, .62);
    transform: translateX(2px);
}

.sd-products-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.sd-products-cta a {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 3.05rem;
    padding: .85rem 2.2rem;
    color: #f0c15a;
    text-decoration: none;
    background: rgba(16, 41, 70, .2);
    border: 1px solid rgba(216, 166, 66, .3);
    border-radius: .45rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-experience {
    width: 100vw;
    min-height: calc(100vh - 72px);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-top: clamp(1.8rem, 4vw, 3rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 8% 22%, rgba(201, 146, 46, .16), transparent 28rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
}

.category-hero {
    width: min(100%, var(--sd-site-width));
    margin: 0 auto 2.4rem;
    text-align: center;
}

.category-hero h1 {
    margin: 0 0 .65rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 600;
    line-height: 1.04;
}

.category-hero p {
    max-width: 42rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, .58);
    font-size: .94rem;
    line-height: 1.65;
}

.category-hero::after {
    display: block;
    width: 5rem;
    height: 1px;
    margin: 1.2rem auto 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(240, 193, 90, .88), transparent);
}

.category-filter-toggle {
    display: none;
    width: min(100%, var(--sd-site-width));
    margin: 0 auto .85rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 2.8rem;
    color: #111;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f0c15a, #b9801c);
    border: 1px solid rgba(240, 193, 90, .72);
    border-radius: .65rem;
}

.category-filters {
    width: min(100%, var(--sd-site-width));
    margin: 0 auto 1.35rem;
    padding: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(240, 193, 90, .18);
    border-radius: .8rem;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .26);
}

.category-filters__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: .8rem;
}

.category-filters__header a {
    color: #d8a642;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.category-filters__grid {
    display: grid;
    grid-template-columns: minmax(13rem, 1.5fr) repeat(4, minmax(8rem, 1fr)) auto;
    gap: .75rem;
    align-items: end;
}

.category-filters label {
    display: grid;
    gap: .35rem;
    margin: 0;
}

.category-filters label span {
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.category-filters input,
.category-filters select {
    width: 100%;
    min-height: 2.75rem;
    padding: .7rem .85rem;
    color: #fff;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .55rem;
    outline: none;
}

.category-filters input::placeholder {
    color: rgba(255, 255, 255, .38);
}

.category-filters select option {
    color: #f6f0e3;
    background: #08090a;
}

.category-filters input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.category-filters input[type="number"]::-webkit-outer-spin-button,
.category-filters input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.category-filters input:focus,
.category-filters select:focus {
    border-color: rgba(240, 193, 90, .72);
    box-shadow: 0 0 0 .16rem rgba(216, 166, 66, .15);
}

.category-filters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 2.75rem;
    padding: .7rem 1rem;
    color: #111;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f0c15a, #b9801c);
    border: 1px solid rgba(240, 193, 90, .72);
    border-radius: .55rem;
}

.category-products {
    display: grid;
    width: min(100%, var(--sd-site-width));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
}

.category-products .sd-product-card {
    min-height: 28.8rem;
}

.category-products .sd-product-card h2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(.95rem, 1.15vw, 1.1rem);
    font-weight: 600;
    line-height: 1.18;
}

.category-products .sd-product-card h2::after {
    display: block;
    width: 3.2rem;
    height: 1px;
    margin-top: .85rem;
    content: "";
    background: rgba(240, 193, 90, .72);
}

.category-empty {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, .62);
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .75rem;
}

.category-empty i {
    margin-bottom: .8rem;
    color: #d8a642;
    font-size: 2.4rem;
}

.category-empty h2 {
    color: #fff;
    font-size: 1.2rem;
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: min(100%, var(--sd-site-width));
    margin: 2rem auto 0;
}

.category-pagination a,
.category-pagination > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    min-height: 2.7rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(240, 193, 90, .28);
    border-radius: 999px;
}

.category-pagination > span:not(.is-disabled) {
    min-width: auto;
    padding: 0 .35rem;
    color: rgba(255, 255, 255, .64);
    font-size: .86rem;
    background: transparent;
    border: 0;
}

.category-pagination .is-disabled {
    opacity: .35;
}

.product-page {
    min-height: calc(100vh - 72px);
    padding-top: clamp(1.2rem, 3vw, 2.4rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 82% 12%, rgba(216, 166, 66, .16), transparent 24rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
}

.product-breadcrumb,
.product-detail,
.product-info,
.product-related {
    width: min(100%, var(--sd-site-width));
    margin-right: auto;
    margin-left: auto;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .42);
    font-size: .78rem;
    font-weight: 800;
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
}

.product-breadcrumb a:hover,
.product-breadcrumb span {
    color: #d8a642;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
}

.product-gallery,
.product-summary,
.product-info,
.product-related {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(240, 193, 90, .16);
    border-radius: .9rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .26);
}

.product-gallery {
    padding: .75rem;
}

.product-gallery__main {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #08090a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .7rem;
    cursor: zoom-in;
}

.product-gallery__main img,
.product-gallery__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
}

.product-gallery__placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .42);
    font-size: 3rem;
}

.product-gallery__main > span {
    position: absolute;
    right: .9rem;
    bottom: .9rem;
    z-index: 2;
    display: inline-grid;
    width: 2.55rem;
    height: 2.55rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(0, 0, 0, .62);
    border: 1px solid rgba(240, 193, 90, .36);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.product-gallery__slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .55rem;
    align-items: center;
    margin-top: .75rem;
}

.product-gallery__thumbs {
    display: grid;
    grid-auto-columns: minmax(5.4rem, 1fr);
    grid-auto-flow: column;
    gap: .65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery__thumbs button {
    padding: 0;
    overflow: hidden;
    background: #090a0b;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .55rem;
    scroll-snap-align: start;
}

.product-gallery__thumbs button.is-active {
    border-color: rgba(240, 193, 90, .82);
    box-shadow: 0 0 0 .14rem rgba(216, 166, 66, .14);
}

.product-gallery__thumbs img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-gallery__nav {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(240, 193, 90, .28);
    border-radius: 999px;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: none;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(14px);
}

.product-lightbox.is-open {
    display: grid;
}

.product-lightbox img {
    display: block;
    width: min(100%, 1180px);
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid rgba(240, 193, 90, .22);
    border-radius: .85rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, .5);
}

.product-lightbox__close,
.product-lightbox__nav {
    position: absolute;
    display: inline-grid;
    place-items: center;
    color: #f0c15a;
    background: rgba(10, 10, 10, .72);
    border: 1px solid rgba(240, 193, 90, .34);
    border-radius: 999px;
}

.product-lightbox__close {
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
}

.product-lightbox__nav {
    top: 50%;
    width: 3.1rem;
    height: 3.1rem;
    transform: translateY(-50%);
}

.product-lightbox__nav--prev {
    left: 1.25rem;
}

.product-lightbox__nav--next {
    right: 1.25rem;
}

body.product-lightbox-open {
    overflow: hidden;
}

.product-summary {
    position: sticky;
    top: 5.5rem;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.2rem, 2.4vw, 2rem);
}

.product-summary__category,
.product-section-label {
    display: inline-flex;
    margin-bottom: .75rem;
    color: #d8a642;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-summary h1 {
    margin: 0 0 .85rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.08;
}

.product-summary__lead {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
}

.product-summary__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .75rem;
    margin-bottom: 1rem;
}

.product-summary__price strong {
    color: #f0c15a;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1;
}

.product-summary__price span {
    color: rgba(255, 255, 255, .42);
    font-weight: 800;
    text-decoration: line-through;
}

.product-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.15rem;
}

.product-summary__meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .65rem;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
}

.product-summary__meta .is-available {
    color: #62d88f;
    background: rgba(98, 216, 143, .12);
}

.product-summary__meta .is-empty {
    color: #ff8c8c;
    background: rgba(255, 140, 140, .12);
}

.product-buy {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: .75rem;
    align-items: end;
    margin-bottom: 1rem;
}

.product-buy label {
    display: grid;
    gap: .35rem;
    margin: 0;
}

.product-buy label span {
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-quantity-stepper {
    display: grid;
    grid-template-columns: 2.35rem minmax(3rem, 1fr) 2.35rem;
    min-height: 2.85rem;
    overflow: hidden;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .55rem;
}

.product-quantity-stepper button {
    display: inline-grid;
    place-items: center;
    color: #f0c15a;
    background: rgba(255, 255, 255, .035);
    border: 0;
}

.product-quantity-stepper button:disabled {
    color: rgba(255, 255, 255, .25);
}

.product-buy input {
    min-height: 2.85rem;
    padding: .7rem .2rem;
    color: #fff;
    text-align: center;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    outline: none;
}

.product-buy input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.product-buy input[type="number"]::-webkit-outer-spin-button,
.product-buy input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.product-buy .btn {
    min-height: 2.85rem;
}

.cart-form-message {
    grid-column: 1 / -1;
    margin: 0;
    padding: .7rem .85rem;
    font-size: .82rem;
    font-weight: 800;
    border-radius: .55rem;
}

.cart-form-message.is-error {
    color: #ffb6b6;
    background: rgba(255, 80, 80, .12);
    border: 1px solid rgba(255, 120, 120, .24);
}

.cart-form-message.is-success {
    color: #b9f3cc;
    background: rgba(98, 216, 143, .12);
    border: 1px solid rgba(98, 216, 143, .24);
}

.product-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}

.product-assurance div {
    display: grid;
    gap: .35rem;
    padding: .75rem;
    color: rgba(255, 255, 255, .68);
    font-size: .75rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: .65rem;
}

.product-assurance i {
    color: #d8a642;
    font-size: 1.15rem;
}

.product-info {
    margin-top: 1rem;
    padding: clamp(1.2rem, 2.4vw, 2rem);
}

.product-info h2,
.product-related h2 {
    margin: 0 0 .75rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
    font-weight: 600;
}

.product-info p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.product-info dl {
    display: grid;
    gap: .75rem;
    margin: 0;
}

.product-info dl div {
    padding: .9rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: .65rem;
}

.product-info dt {
    color: #d8a642;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-info dd {
    margin: .3rem 0 0;
    color: #fff;
    font-weight: 800;
}

.product-related {
    margin-top: 1rem;
    padding: clamp(1.2rem, 2.4vw, 2rem);
}

.product-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-related__head h2 {
    margin: 0;
}

.product-related__head a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #d8a642;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.error-page {
    display: grid;
    width: 100vw;
    min-height: calc(100vh - 72px);
    margin: -6rem calc(50% - 50vw);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
    place-items: center;
    background:
        radial-gradient(circle at 78% 28%, rgba(216, 166, 66, .18), transparent 24rem),
        radial-gradient(circle at 16% 72%, rgba(255, 255, 255, .06), transparent 20rem),
        linear-gradient(135deg, #050607 0%, #090a0b 58%, #030405 100%);
}

.error-hero {
    position: relative;
    width: min(100%, 760px);
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(240, 193, 90, .22);
    border-radius: .95rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, .34);
}

.error-hero::before {
    position: absolute;
    right: -7rem;
    bottom: -5rem;
    width: 22rem;
    height: 12rem;
    content: "";
    background: repeating-radial-gradient(ellipse at center, transparent 0 1rem, rgba(216, 166, 66, .18) 1.08rem 1.14rem, transparent 1.22rem 2.25rem);
    opacity: .7;
    transform: rotate(-8deg);
}

.error-hero > * {
    position: relative;
    z-index: 1;
}

.error-hero__code {
    margin-bottom: .6rem;
    color: rgba(240, 193, 90, .16);
    font-size: clamp(5rem, 18vw, 10rem);
    font-weight: 900;
    line-height: .8;
}

.error-hero span {
    display: inline-flex;
    margin-bottom: .8rem;
    color: #d8a642;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.error-hero h1 {
    margin: 0 0 .8rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.error-hero p {
    max-width: 34rem;
    margin: 0 auto 1.4rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
}

.error-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
}

.contact-page {
    min-height: calc(100vh - 72px);
    padding-top: clamp(2rem, 5vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 80% 16%, rgba(216, 166, 66, .16), transparent 24rem),
        radial-gradient(circle at 16% 74%, rgba(255, 255, 255, .055), transparent 20rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
}

.contact-shell {
    width: min(100%, var(--sd-site-width));
    margin: 0 auto;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    margin-bottom: 1rem;
}

.contact-hero > div,
.contact-card {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(240, 193, 90, .16);
    border-radius: .9rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .26);
}

.contact-hero > div {
    padding: clamp(1.5rem, 4vw, 3.4rem);
}

.contact-hero span,
.contact-card span {
    display: inline-flex;
    margin-bottom: .75rem;
    color: #d8a642;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 14ch;
    margin: 0 0 1rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1.02;
}

.contact-hero p,
.contact-card p {
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
}

.contact-hero p {
    max-width: 42rem;
    margin-bottom: 1.35rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.contact-card {
    padding: clamp(1.15rem, 2.4vw, 1.7rem);
}

.contact-card i {
    display: inline-grid;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.2rem;
    place-items: center;
    color: #f0c15a;
    background: rgba(216, 166, 66, .12);
    border: 1px solid rgba(216, 166, 66, .26);
    border-radius: 999px;
    font-size: 1.25rem;
}

.contact-card h2 {
    margin: 0 0 .65rem;
    color: #fff;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 900;
}

.contact-card a {
    color: #f0c15a;
    font-weight: 900;
    text-decoration: none;
}

.contact-card--featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.checkout-page {
    min-height: calc(100vh - 72px);
    padding-top: clamp(1.6rem, 4vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 82% 12%, rgba(216, 166, 66, .16), transparent 24rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
}

.cart-page {
    min-height: calc(100vh - 72px);
    padding-top: clamp(1.6rem, 4vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 82% 12%, rgba(216, 166, 66, .14), transparent 24rem),
        linear-gradient(180deg, #050607 0%, #07090b 58%, #030405 100%);
}

.cart-shell {
    width: min(100%, var(--sd-site-width));
    margin: 0 auto;
}

.cart-head {
    max-width: 680px;
    margin-bottom: 1.5rem;
}

.cart-head span {
    color: #d8a642;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cart-head h1 {
    margin: .45rem 0 .6rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
}

.cart-head p {
    color: rgba(255, 255, 255, .62);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 1rem;
    align-items: start;
}

.cart-list {
    display: grid;
    gap: .85rem;
}

.cart-page-item,
.cart-page-summary,
.cart-empty {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(240, 193, 90, .16);
    border-radius: .85rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .26);
}

.cart-page-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
    padding: .9rem;
}

.cart-page-item img,
.cart-page-item__placeholder {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: .55rem;
}

.cart-page-item__placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .06);
}

.cart-page-item h2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0 0 .2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
}

.cart-page-item span,
.cart-page-item p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .84rem;
}

.cart-page-qty {
    display: grid;
    grid-template-columns: 2.2rem 3.2rem 2.2rem;
    width: max-content;
    min-height: 2.35rem;
    margin-top: .65rem;
    overflow: hidden;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .5rem;
}

.cart-page-qty button {
    display: inline-grid;
    place-items: center;
    color: #f0c15a;
    background: rgba(255, 255, 255, .04);
    border: 0;
}

.cart-page-qty button:disabled {
    color: rgba(255, 255, 255, .25);
}

.cart-page-qty input {
    width: 100%;
    min-width: 0;
    color: #fff;
    text-align: center;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    outline: none;
}

.cart-page-qty input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-page-qty input[type="number"]::-webkit-outer-spin-button,
.cart-page-qty input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-page-item > strong {
    color: #f0c15a;
    white-space: nowrap;
}

.cart-page-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 2.35rem;
    padding: 0 .8rem;
    color: #ffb6b6;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255, 80, 80, .08);
    border: 1px solid rgba(255, 120, 120, .24);
    border-radius: .5rem;
}

.cart-page-summary {
    position: sticky;
    top: 5.5rem;
    display: grid;
    gap: .85rem;
    padding: 1.2rem;
}

.cart-page-summary h2 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.cart-page-summary dl {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cart-page-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-page-summary dt {
    color: rgba(255, 255, 255, .58);
    font-weight: 800;
}

.cart-page-summary dd {
    margin: 0;
    color: #fff;
    font-weight: 900;
}

.cart-page-summary dl div:last-child dd {
    color: #f0c15a;
    font-size: 1.2rem;
}

.cart-page-summary p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .88rem;
}

.cart-method-preview {
    display: grid;
    gap: .65rem;
}

.cart-method-preview div {
    display: grid;
    gap: .25rem;
    padding: .75rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .55rem;
}

.cart-method-preview span {
    color: #d8a642;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-method-preview small {
    color: rgba(255, 255, 255, .62);
}

.cart-empty {
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.cart-empty i {
    margin-bottom: .8rem;
    color: #d8a642;
    font-size: 2.4rem;
}

.cart-empty h2 {
    color: #fff;
}

.cart-empty p {
    max-width: 28rem;
    color: rgba(255, 255, 255, .62);
}

.checkout-shell,
.checkout-success {
    width: min(100%, var(--sd-site-width));
    margin: 0 auto;
}

.checkout-head {
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.checkout-head span,
.checkout-card h2,
.checkout-summary h2,
.checkout-success > span:not(.checkout-success__icon) {
    color: #d8a642;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.checkout-head h1,
.checkout-success h1 {
    margin: .5rem 0 .65rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
}

.checkout-head p,
.checkout-success p {
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
    gap: 1rem;
    align-items: start;
}

.checkout-form {
    display: grid;
    gap: 1rem;
}

.checkout-card,
.checkout-summary,
.checkout-success {
    padding: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(240, 193, 90, .16);
    border-radius: .85rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .26);
}

.checkout-card h2,
.checkout-summary h2 {
    margin-bottom: 1rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.checkout-grid label,
.checkout-notes {
    display: grid;
    gap: .35rem;
}

.checkout-grid .is-wide {
    grid-column: 1 / -1;
}

.checkout-grid label span,
.checkout-notes span {
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: .8rem .9rem;
    color: #fff;
    background: rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .55rem;
    outline: none;
}

.checkout-form textarea {
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: rgba(240, 193, 90, .72);
    box-shadow: 0 0 0 .16rem rgba(216, 166, 66, .15);
}

.checkout-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1rem;
}

.checkout-options label {
    display: flex;
    gap: .7rem;
    padding: .85rem;
    cursor: pointer;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .65rem;
}

.checkout-options input {
    width: auto;
    margin-top: .2rem;
    accent-color: #d8a642;
}

.checkout-options strong,
.checkout-options span {
    display: block;
}

.checkout-options strong {
    color: #fff;
}

.checkout-options span {
    color: rgba(255, 255, 255, .58);
    font-size: .86rem;
}

.checkout-options em {
    display: block;
    margin-top: .3rem;
    color: #f0c15a;
    font-style: normal;
    font-weight: 900;
}

.checkout-options small {
    display: block;
    margin-top: .25rem;
    color: rgba(255, 255, 255, .48);
}

.checkout-submit {
    min-height: 3rem;
}

.checkout-summary {
    position: sticky;
    top: 5.5rem;
}

.checkout-summary__items {
    display: grid;
    gap: .75rem;
    margin-bottom: 1rem;
}

.checkout-summary__items article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: .7rem;
}

.checkout-summary__items img,
.checkout-summary__items article > span {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: .45rem;
}

.checkout-summary__items article > span {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
}

.checkout-summary__items strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    font-size: .86rem;
}

.checkout-summary__items small {
    color: rgba(255, 255, 255, .52);
}

.checkout-summary__items em {
    grid-column: 2;
    color: #f0c15a;
    font-style: normal;
    font-weight: 900;
}

.checkout-summary dl,
.checkout-success__summary {
    display: grid;
    gap: .7rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.checkout-summary dl div,
.checkout-success__summary div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-summary dt,
.checkout-success__summary span {
    color: rgba(255, 255, 255, .58);
    font-weight: 800;
}

.checkout-summary dd,
.checkout-success__summary strong {
    margin: 0;
    color: #fff;
    font-weight: 900;
}

.checkout-summary dl div:last-child dd {
    color: #f0c15a;
    font-size: 1.25rem;
}

.checkout-alert {
    display: grid;
    gap: .2rem;
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    color: #ffb6b6;
    background: rgba(255, 80, 80, .12);
    border: 1px solid rgba(255, 120, 120, .24);
    border-radius: .65rem;
}

.checkout-alert.is-success {
    color: #b9f3cc;
    background: rgba(98, 216, 143, .12);
    border-color: rgba(98, 216, 143, .24);
}

.checkout-success {
    max-width: 760px;
    text-align: center;
}

.checkout-success__icon {
    display: inline-grid;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    place-items: center;
    color: #111;
    background: linear-gradient(135deg, #f0c15a, #b9801c);
    border-radius: 999px;
    font-size: 2rem;
}

.checkout-success p strong {
    color: #f0c15a;
}

.checkout-success__items {
    display: grid;
    gap: .5rem;
    margin: 1rem 0;
    text-align: left;
}

.checkout-success__items article {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .55rem;
}

.checkout-success__items span {
    color: #f0c15a;
    font-weight: 900;
}

.checkout-success__actions {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 1rem;
}

.sd-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.7rem;
    padding: 2.3rem clamp(1.2rem, 3vw, 4rem);
    background: linear-gradient(110deg, rgba(18, 21, 24, .94), rgba(9, 11, 13, .98));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .9rem;
}

.sd-benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.sd-benefit-item i {
    color: #d8a642;
    font-size: 2rem;
}

.sd-benefit-item h2 {
    margin-bottom: .3rem;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-benefit-item p {
    max-width: 16rem;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .84rem;
    line-height: 1.6;
}

body.is-home .site-footer {
    color: rgba(255, 255, 255, .58);
    background: #030405;
    border-top-color: rgba(255, 255, 255, .12);
}

body.is-home .site-footer strong,
body.is-home .site-footer h2 {
    color: #fff;
}

body.is-home .footer-link {
    color: rgba(255, 255, 255, .62);
}

body.is-home .social-link,
body.is-home .brand-mark {
    color: #fff;
    background: rgba(216, 166, 66, .16);
    border: 1px solid rgba(216, 166, 66, .35);
    box-shadow: none;
}

@media (max-width: 1199.98px) {
    .sd-feature-strip,
    .sd-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-collections {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sd-collection-copy {
        grid-column: 1 / -1;
    }

    .sd-product-track {
        grid-auto-columns: minmax(255px, calc((100% - 1rem) / 2));
    }

    .category-filters__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-summary {
        position: static;
        min-height: 0;
        justify-content: flex-start;
    }

    .sd-product-card {
        min-height: 25rem;
    }
}

@media (max-width: 991.98px) {
    .site-navbar .nav-link.active::after {
        bottom: .3rem;
        width: 2.4rem;
    }

    .sd-hero {
        min-height: 760px;
    }

    .sd-hero__media {
        background-position: 65% center;
        opacity: .68;
    }

    .sd-guarantee {
        right: 1.5rem;
        bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .shop-home {
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .category-filters {
        display: none;
        padding: .85rem;
    }

    .category-filter-toggle {
        display: flex;
    }

    .category-filters.is-open {
        display: block;
    }

    .category-filters__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem;
    }

    .category-filters label:first-child,
    .category-filters button {
        grid-column: 1 / -1;
    }

    .category-filters input,
    .category-filters select,
    .category-filters button {
        min-height: 2.55rem;
        font-size: .82rem;
    }

    .product-page {
        padding-top: 1rem;
    }

    .product-breadcrumb {
        font-size: .7rem;
    }

    .product-gallery,
    .product-summary,
    .product-info,
    .product-related {
        border-radius: .75rem;
    }

    .product-gallery__main img,
    .product-gallery__placeholder {
        aspect-ratio: 1 / 1.15;
    }

    .product-gallery__thumbs {
        grid-auto-columns: 4.7rem;
    }

    .product-gallery__nav {
        width: 2.15rem;
        height: 2.15rem;
    }

    .product-lightbox {
        padding: 4.5rem .75rem 3rem;
    }

    .product-lightbox__close {
        top: .85rem;
        right: .85rem;
    }

    .product-lightbox__nav {
        top: auto;
        bottom: .85rem;
        width: 2.85rem;
        height: 2.85rem;
        transform: none;
    }

    .product-lightbox__nav--prev {
        left: calc(50% - 3.25rem);
    }

    .product-lightbox__nav--next {
        right: calc(50% - 3.25rem);
    }

    .product-summary h1 {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }

    .product-buy {
        grid-template-columns: 1fr;
    }

    .product-assurance {
        grid-template-columns: 1fr;
    }

    .product-related__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-layout,
    .checkout-grid,
    .checkout-options,
    .cart-layout,
    .contact-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        max-width: 100%;
        font-size: clamp(1.7rem, 9vw, 2.35rem);
    }

    .contact-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .checkout-summary,
    .cart-page-summary {
        position: static;
    }

    .cart-page-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .cart-page-item img,
    .cart-page-item__placeholder {
        width: 76px;
        height: 76px;
    }

    .cart-page-item > strong,
    .cart-page-item form {
        grid-column: 2;
    }

    .cart-page-remove {
        width: 100%;
    }

    .checkout-success__actions {
        flex-direction: column;
    }

    .error-page {
        margin-top: -4rem;
        margin-bottom: -4rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .error-hero {
        text-align: left;
    }

    .error-hero__actions {
        justify-content: flex-start;
    }

    .error-hero__actions .btn {
        justify-content: center;
        width: 100%;
    }

    .sd-hero {
        height: calc(100svh - 72px);
        min-height: 560px;
    }

    .sd-hero__media {
        background-position: center;
    }

    .sd-hero__sequence {
        object-position: 72% center;
    }

    .sd-hero__content {
        width: 100%;
        padding: 2.7rem 1.05rem 2rem;
    }

    .sd-hero h1 {
        max-width: 11.5ch;
        margin-bottom: .8rem;
        font-size: clamp(1.7rem, 8.8vw, 2.28rem);
        line-height: 1.02;
    }

    .sd-hero h1::after {
        width: 3.9rem;
        margin-top: .85rem;
    }

    .sd-hero p {
        max-width: min(100%, 18rem);
        margin-bottom: 1.15rem;
        font-size: .82rem;
        line-height: 1.45;
    }

    .sd-actions {
        flex-direction: column;
        width: min(100%, 18rem);
        gap: .75rem;
        margin-bottom: 1.15rem;
    }

    .sd-actions .btn {
        justify-content: center;
        width: 100%;
        min-height: 2.85rem;
        min-width: 0;
        padding: .72rem 1rem;
        white-space: normal;
    }

    .sd-play {
        display: none;
    }

    .sd-product-track {
        grid-auto-columns: calc((100% - .75rem) / 2);
        gap: .75rem;
    }

    .sd-feature-strip,
    .sd-collections,
    .sd-benefits {
        grid-template-columns: 1fr;
    }

    .sd-feature-card {
        min-height: 14rem;
        background-size: cover, 180%;
    }

    .sd-feature-card i {
        margin-bottom: 3rem;
    }

    .sd-collection-card {
        min-height: 18rem;
        background-size: cover, 190%;
    }

    .sd-product-showcase-head {
        margin-bottom: 1.4rem;
        text-align: left;
    }

    .sd-category-tabs {
        justify-content: flex-start;
    }

    .sd-product-showcase-head h2 {
        font-size: clamp(1.05rem, 4.4vw, 1.35rem);
        line-height: 1.08;
        white-space: nowrap;
    }

    .sd-product-showcase-head .sd-eyebrow {
        display: none;
    }

    .sd-product-showcase-head p {
        font-size: .74rem;
        line-height: 1.45;
    }

    .sd-product-card {
        min-height: 21rem;
    }

    .sd-product-card__body {
        padding: 1rem .85rem .9rem;
    }

    .sd-product-card h3 {
        font-size: .82rem;
        line-height: 1.18;
        -webkit-line-clamp: 3;
    }

    .sd-product-card p {
        font-size: .75rem;
    }

    .sd-product-card__footer a {
        width: 2rem;
        height: 2rem;
    }

    .category-experience {
        padding-top: 1.4rem;
    }

    .category-hero {
        margin-bottom: 1.4rem;
        text-align: left;
    }

    .category-hero .sd-eyebrow {
        display: none;
    }

    .category-hero h1 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .category-hero p {
        font-size: .82rem;
    }

    .category-hero::after {
        margin-left: 0;
    }

    .category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .category-products .sd-product-card {
        min-height: 21rem;
    }

    .category-products .sd-product-card h2 {
        font-size: .82rem;
        line-height: 1.18;
    }

    .sd-guarantee {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 3;
        max-width: min(100% - 2.1rem, 15rem);
        margin: -4.9rem 1.05rem 2rem;
    }
}

@media (max-width: 991.98px) {
    .site-navbar__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: .75rem;
        width: min(100% - 2rem, 1200px);
        padding: .7rem 0;
    }

    .site-mobile-menu-toggle {
        grid-column: 1;
        grid-row: 1;
    }

    .site-navbar .navbar-toggler {
        display: inline-grid;
        width: 2.35rem;
        height: 2.35rem;
        place-items: center;
        margin: 0;
        padding: 0;
        border-radius: .45rem;
    }

    .site-navbar .navbar-toggler-icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .shark-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        font-size: 1.25rem;
    }

    .shark-logo img {
        max-width: 142px;
        max-height: 34px;
    }

    .site-mobile-actions {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        align-items: center;
        gap: .3rem;
    }

    .site-mobile-actions .nav-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-height: 2.25rem;
        font-size: 1.05rem;
    }

    #mainNavbar {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    #mainNavbar .site-actions {
        display: none;
    }
}

@media (max-width: 420px) {
    .sd-eyebrow {
        margin-bottom: 1rem;
        font-size: .58rem;
        letter-spacing: .14em;
    }

    .sd-hero {
        min-height: 535px;
    }

    .sd-hero__content {
        padding-top: 2.35rem;
    }

}

/* Admin application */
.admin-body {
    color: #16202a;
    background: #f4f6f8;
}

.admin-editor-card {
    padding: 1.15rem;
    background: #fff;
    border: 1px solid #dde4ec;
    border-radius: .75rem;
    box-shadow: 0 18px 46px rgba(22, 32, 42, .06);
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-card-header span,
.admin-order-info span,
.admin-order-notes span {
    display: block;
    color: #657386;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-card-header h2 {
    margin: .15rem 0 0;
    color: #111923;
    font-size: 1.1rem;
    font-weight: 900;
}

.admin-order-detail {
    display: grid;
    gap: 1rem;
}

.admin-order-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}

.admin-order-info div,
.admin-order-notes,
.admin-order-items article,
.admin-order-total div {
    padding: .9rem;
    background: #f7f9fb;
    border: 1px solid #e2e8ef;
    border-radius: .6rem;
}

.admin-order-info strong {
    display: block;
    margin-top: .25rem;
    color: #111923;
}

.admin-order-notes {
    margin-top: .8rem;
}

.admin-order-notes p {
    margin: .35rem 0 0;
}

.admin-order-items {
    display: grid;
    gap: .65rem;
}

.admin-order-items article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
}

.admin-order-items article > div span {
    display: block;
    color: #657386;
    font-size: .82rem;
}

.admin-order-total {
    display: grid;
    gap: .6rem;
    max-width: 420px;
    margin: 1rem 0 0 auto;
}

.admin-order-total div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.admin-order-total dt {
    color: #657386;
    font-weight: 800;
}

.admin-order-total dd {
    margin: 0;
    color: #111923;
    font-weight: 900;
}

.admin-menu-item-form {
    display: grid;
    gap: .85rem;
}

.admin-menu-item-grid {
    display: grid;
    grid-template-columns: minmax(150px, 1.2fr) 150px minmax(180px, 1fr) minmax(180px, 1fr) 100px auto;
    gap: .75rem;
    align-items: end;
}

.admin-menu-item-grid label {
    display: grid;
    gap: .25rem;
}

.admin-menu-item-grid label span {
    color: #657386;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-menu-checks {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center;
    min-height: 2.4rem;
}

.admin-menu-checks .form-check {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin: 0;
}

.admin-menu-items {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
}

.admin-menu-items article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: end;
    padding: .9rem;
    background: #f7f9fb;
    border: 1px solid #e2e8ef;
    border-radius: .65rem;
}

@media (max-width: 1199.98px) {
    .admin-menu-item-grid,
    .admin-menu-items article {
        grid-template-columns: 1fr;
    }
}

.admin-body main {
    min-height: auto;
    padding: 0;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    padding: 1.15rem;
    color: #d7dde5;
    background: #111820;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .7rem .7rem 1.25rem;
    color: #fff;
    text-decoration: none;
}

.admin-brand:hover,
.admin-brand:focus {
    color: #fff;
}

.admin-brand__mark {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    color: #111820;
    background: #ffffff;
    border-radius: .65rem;
    font-size: .88rem;
    font-weight: 900;
}

.admin-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-brand strong,
.admin-brand small {
    display: block;
}

.admin-brand strong {
    line-height: 1.1;
}

.admin-brand small {
    margin-top: .18rem;
    color: rgba(255, 255, 255, .52);
    font-size: .75rem;
    font-weight: 700;
}

.admin-nav {
    display: grid;
    gap: .35rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.admin-nav__link {
    display: flex;
    min-height: 2.85rem;
    align-items: center;
    gap: .75rem;
    padding: .7rem .85rem;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: .55rem;
    font-size: .93rem;
    font-weight: 800;
    text-align: left;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.admin-nav__link i {
    width: 1.15rem;
    color: rgba(255, 255, 255, .46);
    font-size: 1.05rem;
}

.admin-nav__link:hover,
.admin-nav__link:focus,
.admin-nav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.admin-nav__link:hover {
    transform: translateX(2px);
}

.admin-nav__link.is-active i {
    color: #6fd6a7;
}

.admin-nav__button {
    width: 100%;
}

.admin-sidebar__footer {
    display: grid;
    gap: .35rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.admin-main {
    min-width: 0;
    padding: 1rem 1.5rem 1.5rem;
}

.admin-topbar {
    display: flex;
    min-height: 4.7rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: .95rem 1.1rem;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .8rem;
    box-shadow: 0 18px 42px rgba(17, 24, 32, .06);
    backdrop-filter: blur(16px);
}

.admin-topbar__eyebrow {
    display: block;
    margin-bottom: .2rem;
    color: #697586;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-topbar h1 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 900;
}

.admin-topbar__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.admin-user-pill {
    display: inline-flex;
    min-height: 2.3rem;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    color: #364152;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
}

.admin-content {
    display: grid;
    gap: 1rem;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    position: relative;
    min-height: 11rem;
    padding: 1.1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .8rem;
    box-shadow: 0 16px 36px rgba(17, 24, 32, .05);
}

.admin-stat-card::after {
    position: absolute;
    right: -2.2rem;
    bottom: -2.6rem;
    width: 7rem;
    height: 7rem;
    content: "";
    background: rgba(17, 24, 32, .05);
    border-radius: 50%;
}

.admin-stat-card__icon {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: .65rem;
    font-size: 1.1rem;
}

.admin-stat-card span,
.admin-stat-card strong,
.admin-stat-card small {
    position: relative;
    z-index: 1;
    display: block;
}

.admin-stat-card span {
    color: #697586;
    font-size: .82rem;
    font-weight: 900;
}

.admin-stat-card strong {
    margin-top: .35rem;
    color: #111820;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 900;
    line-height: 1.05;
}

.admin-stat-card small {
    margin-top: .55rem;
    color: #7b8794;
    font-weight: 700;
}

.admin-stat-card--green .admin-stat-card__icon {
    color: #126b43;
    background: #dff7ea;
}

.admin-stat-card--blue .admin-stat-card__icon {
    color: #8a5d18;
    background: #fff3d6;
}

.admin-stat-card--ink .admin-stat-card__icon {
    color: #252f3f;
    background: #edf0f3;
}

.admin-stat-card--amber .admin-stat-card__icon {
    color: #8a4b08;
    background: #fff2cc;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
    gap: 1rem;
}

.admin-panel--flush {
    padding-bottom: .65rem;
}

.admin-panel-link {
    color: #c9922e;
    font-size: .86rem;
    font-weight: 900;
    text-decoration: none;
}

.admin-recent-list,
.admin-health-list {
    display: grid;
    gap: .75rem;
}

.admin-recent-product {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: .85rem;
    padding: .72rem;
    color: #111820;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: .7rem;
    transition: background-color .2s ease, border-color .2s ease;
}

.admin-recent-product:hover,
.admin-recent-product:focus {
    background: #f8fafc;
    border-color: rgba(17, 24, 32, .08);
}

.admin-recent-product img,
.admin-recent-product__placeholder {
    width: 54px;
    height: 54px;
    border-radius: .55rem;
}

.admin-recent-product img {
    object-fit: cover;
}

.admin-recent-product__placeholder {
    display: grid;
    place-items: center;
    color: #9aa4b2;
    background: #edf0f3;
}

.admin-recent-product strong,
.admin-recent-product small {
    display: block;
}

.admin-recent-product strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .92rem;
}

.admin-recent-product small {
    margin-top: .18rem;
    color: #697586;
    font-weight: 700;
}

.admin-recent-product em {
    color: #364152;
    font-size: .86rem;
    font-style: normal;
    font-weight: 900;
}

.admin-health-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .85rem;
    background: #f8fafc;
    border-radius: .65rem;
}

.admin-health-list span {
    color: #697586;
    font-weight: 800;
}

.admin-health-list strong {
    color: #111820;
    font-size: 1.15rem;
    font-weight: 900;
}

.admin-progress {
    margin-top: 1.2rem;
}

.admin-progress > div {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .55rem;
    color: #364152;
    font-weight: 900;
}

.admin-progress__bar {
    display: block;
    height: .65rem;
    overflow: hidden;
    background: #edf0f3;
    border-radius: 999px;
}

.admin-progress__bar i {
    display: block;
    height: 100%;
    background: #d8a642;
    border-radius: inherit;
}

.admin-empty-state {
    display: grid;
    place-items: center;
    padding: 2.5rem 1rem;
    color: #697586;
    text-align: center;
}

.admin-empty-state i {
    margin-bottom: .7rem;
    color: #c9922e;
    font-size: 2rem;
}

.admin-empty-state strong {
    color: #111820;
}

.admin-empty-state p {
    margin: .25rem 0 0;
}

.admin-products-toolbar {
    display: grid;
    gap: .8rem;
    padding: .85rem;
    background: #fff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .65rem;
    box-shadow: 0 10px 24px rgba(17, 24, 32, .04);
}

.admin-products-toolbar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-products-toolbar__head span,
.admin-products-toolbar__head strong {
    display: block;
}

.admin-products-toolbar__head span {
    color: #c9922e;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-products-toolbar__head strong {
    color: #111820;
    font-size: .98rem;
    font-weight: 900;
}

.admin-products-filter {
    display: grid;
    grid-template-columns: minmax(230px, 1.4fr) repeat(4, minmax(130px, .75fr)) auto;
    gap: .65rem;
    align-items: end;
}

.admin-filter-field {
    display: grid;
    gap: .35rem;
    margin: 0;
}

.admin-filter-field span {
    color: #697586;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-filter-field .form-control,
.admin-filter-field .form-select {
    min-height: 2.35rem;
    border-color: rgba(17, 24, 32, .12);
    border-radius: .5rem;
    font-size: .9rem;
}

.admin-filter-actions,
.admin-products-toolbar__side {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.admin-status-pill {
    display: inline-flex;
    min-width: 2.3rem;
    min-height: 1.65rem;
    align-items: center;
    justify-content: center;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-status-pill.is-ok {
    color: #126b43;
    background: #dff7ea;
}

.admin-status-pill.is-warning {
    color: #8a4b08;
    background: #fff2cc;
}

.admin-status-pill.is-danger {
    color: #9f2d2d;
    background: #fee2e2;
}

.admin-status-pill.is-muted {
    color: #697586;
    background: #edf0f3;
}

.admin-product-list {
    display: grid;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .65rem;
    box-shadow: 0 10px 24px rgba(17, 24, 32, .04);
}

.admin-product-list__head {
    display: grid;
    grid-template-columns: minmax(310px, 1.65fr) minmax(120px, .7fr) minmax(110px, .6fr) 72px 72px 82px 116px;
    gap: .8rem;
    align-items: center;
    padding: .7rem .95rem;
    color: #697586;
    background: #f8fafc;
    border-bottom: 1px solid rgba(17, 24, 32, .08);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-product-row {
    display: grid;
    grid-template-columns: minmax(310px, 1.65fr) minmax(120px, .7fr) minmax(110px, .6fr) 72px 72px 82px 116px;
    gap: .8rem;
    align-items: center;
    padding: .78rem .95rem;
    background: #fff;
    border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.admin-product-row:last-child {
    border-bottom: 0;
}

.admin-product-row__main {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    min-width: 0;
}

.admin-product-row__image {
    width: 54px;
    height: 54px;
    object-fit: cover;
    background: #eef4f6;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .45rem;
}

.admin-product-row__image--empty {
    display: grid;
    place-items: center;
    color: #9aa4b2;
}

.admin-product-row__copy {
    min-width: 0;
}

.admin-product-row__copy strong,
.admin-product-row__copy span {
    display: block;
}

.admin-product-row__copy strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #111820;
    font-size: .92rem;
    font-weight: 900;
    line-height: 1.32;
}

.admin-product-row__copy span {
    margin-top: .18rem;
    color: #697586;
    font-size: .78rem;
    font-weight: 700;
}

.admin-product-row__meta {
    display: contents;
}

.admin-product-row__meta div {
    display: grid;
    align-items: center;
    min-width: 0;
}

.admin-product-row__meta span {
    display: none;
}

.admin-product-row__meta strong:not(.admin-status-pill) {
    display: block;
    overflow: hidden;
    color: #111820;
    font-size: .84rem;
    font-weight: 900;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.admin-product-row__actions {
    display: flex;
    justify-content: flex-end;
    gap: .35rem;
}

.admin-icon-action {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: #516070;
    text-decoration: none;
    background: #f3f6f8;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .45rem;
    font-size: .88rem;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.admin-icon-action:hover,
.admin-icon-action:focus {
    color: #111820;
    background: #e8edf2;
}

.admin-icon-action.is-primary {
    color: #fff;
    background: #b27b24;
    border-color: #d8a642;
}

.admin-icon-action.is-danger {
    color: #b42318;
    background: #fff;
    border-color: rgba(180, 35, 24, .28);
}

.admin-icon-action.is-danger:hover,
.admin-icon-action.is-danger:focus {
    color: #fff;
    background: #b42318;
    border-color: #b42318;
}

.admin-empty-state--card {
    background: #fff;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .8rem;
    box-shadow: 0 14px 30px rgba(17, 24, 32, .045);
}

.admin-branding-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.admin-branding-card {
    display: grid;
    gap: 1rem;
}

.admin-branding-preview {
    display: grid;
    place-items: center;
    min-height: 8.5rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .75rem;
}

.admin-branding-preview--logo img {
    width: auto;
    max-width: min(100%, 280px);
    max-height: 90px;
    object-fit: contain;
}

.admin-branding-preview--logo strong {
    color: #111820;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.admin-branding-preview--favicon {
    width: 8.5rem;
    min-height: 8.5rem;
}

.admin-branding-preview--favicon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.admin-branding-preview--favicon i {
    color: #c9922e;
    font-size: 2.4rem;
}

.admin-remove-check {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    color: #697586;
    font-weight: 800;
}

.admin-branding-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.admin-seo-box {
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: .7rem;
}

.admin-seo-box .admin-panel__header {
    margin-bottom: .9rem;
}

/* Admin product editor */
.admin-product-editor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 1.25rem;
    align-items: start;
}

.admin-editor-main,
.admin-editor-side {
    display: grid;
    gap: 1.25rem;
}

.admin-editor-side {
    position: sticky;
    top: 6rem;
}

.admin-panel {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--sd-border);
    border-radius: .75rem;
    box-shadow: 0 14px 34px rgba(16, 24, 32, .05);
}

.admin-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.admin-panel__header span {
    display: block;
    margin-bottom: .25rem;
    color: var(--sd-blue);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-panel__header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.admin-panel__header small {
    color: var(--sd-muted);
    font-weight: 700;
}

.admin-media-dropzone {
    display: grid;
    min-height: 12rem;
    place-items: center;
    padding: 1.5rem;
    color: var(--sd-muted);
    text-align: center;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(216, 166, 66, .08), rgba(201, 146, 46, .04)),
        #fbfdfe;
    border: 1px dashed rgba(201, 146, 46, .42);
    border-radius: .7rem;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.admin-media-dropzone:hover,
.admin-media-dropzone:focus-within {
    border-color: var(--sd-blue);
    box-shadow: 0 0 0 .22rem rgba(201, 146, 46, .1);
}

.admin-media-dropzone i {
    color: var(--sd-blue);
    font-size: 2.4rem;
}

.admin-media-dropzone strong,
.admin-media-dropzone span {
    display: block;
}

.admin-media-dropzone strong {
    margin-top: .7rem;
    color: var(--sd-text);
    font-size: 1rem;
}

.admin-media-dropzone span {
    max-width: 24rem;
    margin-top: .35rem;
    font-size: .9rem;
}

.admin-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .9rem;
    margin-top: 1rem;
}

.admin-media-item {
    position: relative;
    overflow: hidden;
    background: #f4f7f9;
    border: 2px solid transparent;
    border-radius: .65rem;
    box-shadow: inset 0 0 0 1px var(--sd-border);
}

.admin-media-item.is-primary {
    border-color: var(--sd-blue);
    box-shadow: 0 14px 32px rgba(201, 146, 46, .14);
}

.admin-media-item.is-primary::before {
    position: absolute;
    top: .65rem;
    left: .65rem;
    z-index: 2;
    padding: .32rem .55rem;
    color: #fff;
    content: "Principala";
    background: var(--sd-blue);
    border-radius: .35rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-media-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.admin-media-item__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .65rem;
    background: #fff;
    border-top: 1px solid var(--sd-border);
}

.admin-media-primary {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: 0;
    color: var(--sd-blue);
    background: transparent;
    border: 0;
    font-size: .8rem;
    font-weight: 800;
}

.admin-media-delete {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    margin: 0;
    color: #9f2d2d;
    font-size: .8rem;
    font-weight: 700;
}

.admin-switch {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: var(--sd-text);
    cursor: pointer;
    font-weight: 800;
}

.admin-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-switch span {
    position: relative;
    flex: 0 0 auto;
    width: 3rem;
    height: 1.6rem;
    background: #d8e3e8;
    border-radius: 999px;
    transition: background-color .2s ease;
}

.admin-switch span::after {
    position: absolute;
    top: .2rem;
    left: .2rem;
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(16, 24, 32, .18);
    transition: transform .2s ease;
}

.admin-switch input:checked + span {
    background: var(--sd-blue);
}

.admin-switch input:checked + span::after {
    transform: translateX(1.4rem);
}

.admin-save-bar {
    display: grid;
    gap: .65rem;
}

.admin-product-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    background: #eef4f6;
    border: 1px solid var(--sd-border);
    border-radius: .5rem;
}

.admin-product-thumb--empty {
    display: grid;
    place-items: center;
    color: rgba(16, 24, 32, .32);
}

@media (max-width: 991.98px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        padding: .85rem;
    }

    .admin-brand {
        padding-bottom: .8rem;
    }

    .admin-nav,
    .admin-sidebar__footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .admin-sidebar__footer {
        margin-top: .8rem;
    }

    .admin-nav__link {
        min-height: 2.55rem;
    }

    .admin-main {
        padding: .9rem;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar__actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-stat-grid,
    .admin-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-products-filter {
        grid-template-columns: 1fr;
    }

    .admin-filter-actions,
    .admin-products-toolbar__head {
        justify-content: flex-start;
    }

    .admin-products-toolbar__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-product-list__head {
        display: none;
    }

    .admin-product-row {
        grid-template-columns: 1fr;
        gap: .75rem;
        padding: .85rem;
    }

    .admin-product-row__meta {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: .6rem;
    }

    .admin-product-row__meta div {
        display: block;
        padding: .65rem;
        background: #f8fafc;
        border-radius: .5rem;
    }

    .admin-product-row__meta span {
        display: block;
        margin-bottom: .22rem;
        color: #7b8794;
        font-size: .66rem;
        font-weight: 900;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .admin-product-row__actions {
        display: flex;
        min-width: 0;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .admin-branding-grid {
        grid-template-columns: 1fr;
    }

    .admin-product-editor {
        grid-template-columns: 1fr;
    }

    .admin-editor-side {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .admin-topbar__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-stat-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-recent-product {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .admin-recent-product img,
    .admin-recent-product__placeholder {
        width: 46px;
        height: 46px;
    }

    .admin-recent-product em {
        grid-column: 2;
    }

    .admin-products-toolbar {
        padding: .8rem;
    }

    .admin-filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-product-row {
        padding: .75rem;
    }

    .admin-product-row__main {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .admin-product-row__image {
        width: 62px;
        height: 62px;
    }

    .admin-product-row__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-product-row__actions {
        display: flex;
    }

    .admin-branding-actions {
        justify-content: stretch;
    }

    .admin-branding-actions .btn {
        width: 100%;
    }

    .search-overlay {
        padding: 0 .75rem;
    }

    .search-overlay__panel {
        margin-top: .6rem;
    }

    .search-result {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .search-result img,
    .search-result > span {
        width: 54px;
        height: 54px;
    }

    .search-result em {
        grid-column: 2;
        grid-row: auto;
    }

    .search-overlay__form {
        grid-template-columns: 1fr;
    }
}

/* Product detail experience */
.product-experience {
    padding-bottom: 3rem;
}

.pd-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(420px, 48%);
    gap: 0;
    width: min(100%, 1500px);
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 3rem) 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 34% 18%, rgba(68, 134, 196, .14), transparent 24rem),
        linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 42%),
        #040506;
}

.pd-orbit {
    position: absolute;
    right: -8%;
    bottom: 10%;
    left: -6%;
    height: 14rem;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 26% 80%, rgba(216, 166, 66, .3), transparent 28%),
        repeating-radial-gradient(ellipse at 26% 100%, transparent 0 1.1rem, rgba(216, 166, 66, .22) 1.18rem 1.24rem, transparent 1.3rem 2.65rem);
    filter: blur(.1px);
    opacity: .65;
    transform: skewY(-5deg);
}

.pd-rail {
    position: absolute;
    top: 25%;
    bottom: 21%;
    left: clamp(1rem, 2.4vw, 3rem);
    z-index: 3;
    display: grid;
    align-content: space-between;
    justify-items: center;
    color: rgba(255, 255, 255, .75);
    font-size: .78rem;
}

.pd-rail i {
    width: 1px;
    height: 7.5rem;
    background: linear-gradient(180deg, rgba(216, 166, 66, .62), rgba(255, 255, 255, .22));
}

.pd-rail b {
    width: .35rem;
    height: .35rem;
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
}

.pd-main-visual {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 72px);
    overflow: visible;
}

.pd-main-visual > img,
.pd-main-visual > .product-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 72px);
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    filter: saturate(.82) contrast(1.12) brightness(.72);
}

.pd-main-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 48% 30%, transparent 0 16rem, rgba(0, 0, 0, .25) 34rem),
        linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 42%, rgba(0, 0, 0, .72)),
        linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 52%, rgba(0, 0, 0, .92));
}

.pd-pin {
    position: absolute;
    top: var(--top);
    left: var(--left);
    z-index: 4;
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    color: #fff;
    background: #b27b24;
    border: 1px solid rgba(240, 193, 90, .58);
    border-radius: 50%;
    box-shadow: 0 0 0 .35rem rgba(216, 166, 66, .16), 0 0 28px rgba(216, 166, 66, .42);
}

.pd-pin::after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: clamp(5rem, 10vw, 10rem);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(216, 166, 66, .62), transparent);
    border-top: 1px dashed rgba(216, 166, 66, .38);
}

.pd-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: clamp(1.4rem, 2.5vw, 2rem);
    align-self: start;
    padding: clamp(3rem, 6vw, 5.5rem) 0 0 clamp(2rem, 4vw, 4rem);
}

.pd-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-weight: 800;
}

.pd-copy h1 {
    max-width: 13ch;
    margin-bottom: 1.35rem;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(3.1rem, 5vw, 5rem);
    font-weight: 500;
    line-height: .98;
}

.pd-copy p {
    max-width: 29rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
}

.pd-buy-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 44rem);
    margin-top: .25rem;
    padding: .9rem 1rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
        rgba(8, 10, 12, .72);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .75rem;
    backdrop-filter: blur(14px);
}

.pd-buy-panel small,
.pd-buy-panel span {
    display: block;
    color: rgba(255, 255, 255, .56);
}

.pd-buy-panel strong {
    display: block;
    color: #d8a642;
    font-size: 1.45rem;
}

.pd-buy-panel span {
    text-decoration: line-through;
}

.pd-feature-list {
    display: grid;
    width: min(100%, 44rem);
    gap: 1.05rem;
}

.pd-feature {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 1.45rem;
    align-items: center;
}

.pd-feature img,
.pd-feature-placeholder {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
    background: #101419;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .8rem;
    filter: saturate(.88) brightness(.78) contrast(1.08);
}

.pd-feature i {
    color: rgba(255, 255, 255, .9);
    font-size: 1.8rem;
}

.pd-feature h2 {
    margin: .5rem 0 .5rem;
    color: #fff;
    font-size: .98rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-feature p {
    margin-bottom: .65rem;
    color: rgba(255, 255, 255, .62);
    font-size: .8rem;
    line-height: 1.55;
}

.pd-feature a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #d8a642;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.pd-benefits,
.pd-description {
    position: relative;
    z-index: 4;
    width: min(100% - 2rem, 1400px);
    margin: 0 auto;
}

.pd-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: -1.4rem;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
        rgba(14, 16, 19, .94);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.pd-benefits article {
    padding: 1.2rem 1.6rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.pd-benefits article:last-child {
    border-right: 0;
}

.pd-benefits i {
    color: #f0c15a;
    font-size: 2rem;
}

.pd-benefits h2 {
    margin: 1.2rem 0 .75rem;
    color: #fff;
    font-size: .92rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-benefits p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .86rem;
    line-height: 1.65;
}

.pd-description {
    margin-top: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1rem;
}

.pd-description h2 {
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.pd-description p {
    max-width: 860px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
}

.pd-description dl {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0 0;
}

.pd-description dl div {
    min-width: 180px;
    padding: 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .7rem;
}

.pd-description dt {
    color: #d8a642;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-description dd {
    margin: .35rem 0 0;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .pd-hero,
    .pd-content {
        grid-template-columns: 1fr;
    }

    .pd-hero {
        padding-top: 1rem;
    }

    .pd-content {
        padding: 2rem 0 0;
    }

    .pd-main-visual,
    .pd-main-visual > img,
    .pd-main-visual > .product-image {
        min-height: 560px;
    }

    .pd-pin::after,
    .pd-rail {
        display: none;
    }

    .pd-benefits {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pd-benefits article {
        border-right: 0;
    }
}

@media (max-width: 767.98px) {
    .pd-hero {
        padding: 1rem .75rem 2rem;
    }

    .pd-main-visual,
    .pd-main-visual > img,
    .pd-main-visual > .product-image {
        min-height: 420px;
    }

    .pd-content,
    .pd-feature {
        grid-template-columns: 1fr;
    }

    .pd-copy h1 {
        font-size: clamp(2.4rem, 13vw, 3.4rem);
    }

    .pd-buy-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .pd-benefits {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .pd-description {
        width: calc(100% - 1.5rem);
        padding: 1.4rem;
    }
}
