/* input(3655,1): run-time error CSS1019: Unexpected token, found '}' */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* ── Design Tokens (Custom Properties) ──────────────────────── */
:root {
    --pircher-dark: #1B1B1B;
    --pircher-text: #1a1a1a;
    --pircher-light: #e5dfd9;
    --pircher-bg: #fafafa;
    --pircher-white: #fff;
    --pircher-muted: #bbb;
    --pircher-border: #e8e8e8;
    --pircher-border-light: rgba(255, 255, 255, 0.1);
    --pircher-overlay: rgba(0, 0, 0, 0.65);
    --pircher-shadow: rgba(0, 0, 0, 0.5);
    --pircher-gold: #c9a96e;
    --pircher-nav-height: 60px;
    --pircher-transition: 0.2s ease;
    --pircher-font-body: 'aw-conqueror-didot', Georgia, 'Times New Roman', serif;
    --pircher-font-ui: futura-pt, sans-serif;
}


/* ── Cookie Consent Overlay ─────────────────────────────────── */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pircher-overlay);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-overlay-hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-dialog {
background: var(--pircher-dark);
color: var(--pircher-light);
border: 1px solid var(--pircher-border-light);
    border-radius: 0;
    max-width: 460px;
    width: 90%;
    padding: 32px;
    box-shadow: 0 20px 60px var(--pircher-shadow);
    animation: cookieSlideUp 0.35s ease-out;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-dialog-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cookie-dialog-header svg {
    flex-shrink: 0;
    color: var(--pircher-light);
}

.cookie-dialog-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--pircher-white);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--pircher-muted);
}

.cookie-dialog .cookie-link {
    color: var(--pircher-light);
    text-decoration: underline;
    font-weight: 400;
}

.cookie-dialog .cookie-link:hover {
    color: var(--pircher-white);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.cookie-btn:active {
    transform: scale(0.97);
}

.cookie-btn-accept {
    background: var(--pircher-white);
    color: var(--pircher-dark);
}

.cookie-btn-accept:hover {
    background: var(--pircher-light);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--pircher-light);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-essential:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
    .cookie-dialog {
        padding: 24px;
        border-radius: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }

    .cookie-actions {
        flex-direction: column;
    }
}

/* ── End Cookie Consent Overlay ─────────────────────────────── */

/* ── Skip Navigation (Accessibility) ───────────────────────── */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 12px 24px;
    background: var(--pircher-dark);
    color: var(--pircher-white);
    text-decoration: none;
    font-size: 14px;
    border-radius: 0 0 4px 4px;
    transition: top var(--pircher-transition);
}

.skip-nav:focus {
    top: 0;
    outline: 2px solid var(--pircher-light);
    outline-offset: 2px;
}

.mobile-margin {
    padding-top: 0px;
    height: 60px;
}

.desktop-margin {
    padding-top: 60px;
}

.adminForm {
    margin-bottom: 20px;
}

/* ── Layout Utility Classes (extracted from inline styles) ──── */
.fixed-top-nav {
    z-index: 1000;
}

.nav-icon-offset {
    margin-right: 6px;
    vertical-align: -1px;
}

.no-underline {
    text-decoration: none;
}

.modal-header-clean {
    border: none;
    padding: 20px 30px;
}

.modal-close-visible {
    opacity: 1;
}

.modal-body-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-divider {
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 28px auto;
}

.btn-unstyled {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.body-content-home {
    width: 100%;
    padding-top: 0;
}

.form-inline-block {
    display: inline;
}


/* ── Homepage Sections ─────────────────────────────────────── */
.hp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hp-hero-mobile {
    background: #000;
}

.hp-hero-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hp-hero-bg-mobile {
    background-position: center bottom;
}

/* ── Hero Scroll Indicator ── */
.hp-scroll-indicator {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1039;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0;
    transition: opacity 0.5s ease, border-color 0.3s ease, background 0.3s ease;
    animation: hp-scroll-bounce 2.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.hp-scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hp-scroll-indicator:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

.hp-scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes hp-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.hp-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 2px;
}

.hp-category-card {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
    height: clamp(500px, 36vw, 800px);
}

.hp-category-card-mobile {
    height: 500px;
    margin-top: 2px;
}

.hp-category-card-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.7s ease;
}

.hp-category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.4s ease;
}

.hp-category-overlay-bottom {
    align-items: flex-end;
    padding-bottom: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%);
}

.hp-category-label {
    text-align: center;
}

.hp-category-title {
    color: var(--pircher-white);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hp-category-title-dark {
    color: #333;
    font-size: 18px;
    letter-spacing: 0.15em;
}

.hp-category-title-shadow {
    font-size: 20px;
    letter-spacing: 0.18em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hp-divider-light {
    width: 40px;
    height: 1px;
    background: var(--pircher-white);
    margin: 14px auto;
}

.hp-divider-dark {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 16px auto 0;
}

.hp-divider-dark-sm {
    width: 30px;
    height: 1px;
    background: #333;
    margin: 10px auto;
}

.hp-divider-dark-md {
    width: 30px;
    height: 1px;
    background: #000;
    margin-bottom: 20px;
}

.hp-divider-white-subtle {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 22px;
}

.hp-category-cta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
}

.hp-category-cta-dark {
    color: #666;
    font-size: 11px;
    letter-spacing: 0.1em;
}

/* Swarovski / Banner Section */
.hp-banner {
    position: relative;
    overflow: hidden;
    margin-top: 2px;
    background: #1a1a1a;
}

.hp-banner-bg {
    width: 100%;
    height: 460px;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}

.hp-banner-bg-mobile {
    height: 400px;
    background-position: center top;
}

.hp-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.hp-banner-inner {
    text-align: center;
    max-width: 520px;
}

.hp-banner-logo {
    height: 28px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.hp-banner-title {
    color: var(--pircher-white);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hp-banner-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

.hp-btn-outline-light {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hp-btn-outline-light:link,
.hp-btn-outline-light:visited,
.hp-btn-outline-light:active {
    color: #fff;
    text-decoration: none;
}

.hp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

/* Brand Introduction */
.hp-intro {
    max-width: 780px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.hp-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}

.hp-kicker-sm {
    font-size: 11px;
    letter-spacing: 0.25em;
    margin-bottom: 14px;
}

.hp-kicker-light {
    color: rgba(255, 255, 255, 0.5);
}

.hp-intro-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hp-intro-divider {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 0 auto 24px;
}

.hp-intro-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
}

/* Trio Grid */
.hp-trio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}

.hp-trio-card {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
    height: clamp(420px, 32vw, 700px);
}

.hp-trio-card-bg {
    width: 100%;
    height: 100%;
}

/* Split Row */
.hp-split-row {
    display: flex;
    flex-direction: row;
    margin-top: 2px;
}

.hp-split-image {
    width: 50%;
    min-height: clamp(500px, 32vw, 720px);
}

.hp-split-video-wrap {
    position: relative;
    overflow: hidden;
}

.hp-split-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hp-split-content {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    background: #faf9f7;
}

.hp-split-inner {
    max-width: 420px;
}

.hp-split-kicker {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.hp-split-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 18px;
}

.hp-split-text {
    font-size: 14px;
    line-height: 1.85;
    color: #666;
    font-weight: 300;
    margin-bottom: 24px;
}

.hp-text-link {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

/* Swarovski Split */
.hp-split-content-swarovski {
    background: #faf9f7;
}

/* Values Section */
.hp-values {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 24px;
}

.hp-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    text-align: center;
}

.hp-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.hp-values-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.hp-values-icon {
    margin-bottom: 16px;
    color: #999;
    fill: none;
}

.hp-values-subtitle {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hp-values-text {
    font-size: 13px;
    line-height: 1.8;
    color: #777;
    font-weight: 300;
}

/* Statement Banner */
.hp-statement {
    position: relative;
    overflow: hidden;
    height: 420px;
    margin-top: 2px;
}

.hp-statement-bg {
    width: 100%;
    height: 100%;
    background: url('../img/voileWhiteWide.avif?v=mKcGmjydXx4hj3kETigNMABuopY') center / cover no-repeat;
}

.hp-statement-inner {
    text-align: center;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 48px;
}

.hp-statement-title {
    color: var(--pircher-text);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hp-statement-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}

/* Dark overrides for light-background statement banner */
.hp-statement .hp-kicker-light {
    color: #777;
}

.hp-statement .hp-divider-white-subtle {
    background: rgba(0, 0, 0, 0.15);
}

.hp-statement .hp-btn-outline-light-lg {
    border-color: var(--pircher-text);
    color: var(--pircher-text);
}

.hp-statement .hp-btn-outline-light-lg:link,
.hp-statement .hp-btn-outline-light-lg:visited,
.hp-statement .hp-btn-outline-light-lg:active {
    color: var(--pircher-text);
}

.hp-statement .hp-btn-outline-light-lg:hover {
    background: var(--pircher-text);
    color: var(--pircher-white);
}

.hp-btn-outline-light-lg {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hp-btn-outline-light-lg:link,
.hp-btn-outline-light-lg:visited,
.hp-btn-outline-light-lg:active {
    color: #fff;
    text-decoration: none;
}

.hp-btn-outline-light-lg:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}


/* ── Luxury Navbar ──────────────────────────────────────────── */
.luxury-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    height: 60px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

/* Override Bootstrap blue on any link/button inside the navbar */
.luxury-nav a,
.luxury-nav a:link,
.luxury-nav a:visited,
.luxury-nav a:hover,
.luxury-nav a:active,
.luxury-nav button {
    color: #1a1a1a;
    text-decoration: none;
}

.luxury-nav.nav-transparent {
    background: transparent;
    border-bottom-color: transparent;
}

.luxury-nav.nav-transparent .luxury-nav-link,
.luxury-nav.nav-transparent .luxury-nav-icon,
.luxury-nav.nav-transparent .luxury-nav-menu-btn,
.luxury-nav.nav-transparent .luxury-nav-menu-label,
.luxury-nav.nav-transparent .luxury-nav-bag-count {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.luxury-nav.nav-transparent .luxury-nav-logo {
    filter: brightness(0) invert(1);
}

.luxury-nav.nav-transparent .luxury-nav-center,
.luxury-nav.nav-transparent .luxury-nav-left {
    opacity: 0;
    pointer-events: none;
}

/* Ensure headerBanner alerts never bleed into the navbar */
#headerBanner {
    position: relative;
    z-index: 1001;
}

#headerBanner .alert-container {
    line-height: normal;
}

#headerBanner .alert {
    margin-bottom: 0;
    border-radius: 0;
}

.luxury-nav.nav-scrolled {
    background: #fff;
    border-bottom-color: #e8e8e8;
}

.luxury-nav.nav-scrolled .luxury-nav-link,
.luxury-nav.nav-scrolled .luxury-nav-icon,
.luxury-nav.nav-scrolled .luxury-nav-menu-btn,
.luxury-nav.nav-scrolled .luxury-nav-menu-label,
.luxury-nav.nav-scrolled .luxury-nav-bag-count {
    color: #1a1a1a;
}

.luxury-nav.nav-scrolled .luxury-nav-logo {
    filter: brightness(0) saturate(100%) invert(22%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.luxury-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 28px;
    max-width: 100%;
}

.luxury-nav-left {
    display: flex;
    align-items: center;
    flex: 1;
    transition: opacity 0.3s ease;
}

.luxury-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.luxury-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 18px;
}

.luxury-nav-logo {
    height: 18px;
    display: block;
    transition: filter 0.4s ease;
    /* Anthrazit: darken the SVG logo */
    filter: brightness(0) saturate(100%) invert(22%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

@media (min-width: 768px) {
    .luxury-nav-logo {
        height: 22px;
    }
}

.luxury-nav-link {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, color 0.4s ease;
}

.luxury-nav-link:hover {
    opacity: 0.6;
    color: inherit;
    text-decoration: none;
}

.luxury-nav-icon {
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease, color 0.4s ease;
}

.luxury-nav-icon:hover {
    opacity: 0.6;
    color: inherit;
    text-decoration: none;
}

.luxury-nav-bag-count {
font-size: 11px;
font-weight: 400;
letter-spacing: 0.04em;
color: #1a1a1a;
    transition: color 0.4s ease;
}

.luxury-nav-menu-btn {
display: flex;
align-items: center;
gap: 8px;
background: none;
border: none;
cursor: pointer;
padding: 0;
color: #1a1a1a;
    transition: opacity 0.3s ease, color 0.4s ease;
}

.luxury-nav-menu-btn:hover {
    opacity: 0.6;
}

.luxury-nav-menu-label {
font-size: 12px;
font-weight: 400;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #1a1a1a;
    transition: color 0.4s ease;
}

@media (max-width: 767px) {
    .luxury-nav-link .nav-contact-label,
    .luxury-nav-menu-label {
        display: none;
    }
    .luxury-nav-link svg {
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .luxury-nav-inner {
        padding: 0 16px;
    }
    .luxury-nav-right {
        gap: 14px;
    }
}

/* ── Hero Info Bar ──────────────────────────────────────────── */
.hero-info-bar {
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.hero-info-bar .alert-container {
    text-align: center;
}

.hero-info-bar .alert {
    padding: 8px 40px 8px 20px;
}

.hero-info-bar.info-bar-hidden {
    max-height: 0;
    opacity: 0;
}

/* ── Hero Large Logo ───────────────────────────────────────── */
body.modal-open .hero-logo-stage {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s 0.2s;
}

.hero-logo-stage {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 1040;
    pointer-events: none;
    transform-origin: top center;
    transform: translate3d(-50%, var(--hl-y, 100px), 0) scale3d(var(--hl-s, 4), var(--hl-s, 4), 1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-logo-stage.collapsed {
    transform: translate3d(-50%, var(--hl-y-end, 19px), 0) scale3d(1, 1, 1);
}

.hero-logo-stage.no-anim,
.hero-logo-stage.no-anim .hero-logo-light,
.hero-logo-stage.no-anim .hero-logo-dark {
    transition-duration: 0s !important;
}

.hero-logo-light {
    display: block;
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: opacity 0.5s ease;
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(22%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-logo-stage.collapsed .hero-logo-light {
    opacity: 0;
}

.hero-logo-stage.collapsed .hero-logo-dark {
    opacity: 1;
}

@media (min-width: 576px) {
    .hero-logo-light {
        height: 22px;
    }
}

/* Hide account (person) icon on mobile — accessible via hamburger menu */
@media (max-width: 575px) {
    .luxury-nav-icon-account {
        display: none !important;
    }
}

/* ── Fullscreen Menu ────────────────────────────────────────── */
.luxury-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.luxury-menu-list li {
    margin-bottom: 14px;
}

.luxury-menu-link {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.luxury-menu-link:hover {
    opacity: 0.5;
    color: #1a1a1a;
    text-decoration: none;
}

.luxury-menu-list-secondary .luxury-menu-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #777;
}

.luxury-menu-list-secondary .luxury-menu-link:hover {
    color: #1a1a1a;
}

/* Keep old classes used elsewhere */
.navbar-nav .nav-link {
    color: #1a1a1a;
}

.nav-link-secondary {
    color: green;
}

.secondary {
    color: red;
}


.full-screen-width {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    width: 100vw;
}


a.navbar-brand {
    white-space: normal !important;
    text-align: center !important;
    word-break: break-all !important;
}

.square {
    float: left;
    position: relative;
    width: 33.1%;
    padding-bottom: 33.1%;
    margin: 0.1%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}

.square:hover {
    opacity: 0.85;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0;
    border-radius: 0;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-showroom {
    background-color: #f8f7f5;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 0;
}

.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.dropdown-toggle::after {
    display: none;
}

#map {
    height: 100%;
}


/* ── Base Typography ───────────────────────────────────────── */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    color: #1a1a1a;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    letter-spacing: 0.04em;
}

figure.circleImage {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
}

.circleImage > img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.site-header {
    background-color: #000;
    position: fixed;
    top: 0px;
    width: 100%;
    border: 0;
    box-shadow: none;
    z-index: 100;
}

.store-bgimg-mobile {
    background: url('../img/pircherStoreBackground.png');
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
    background-position-x: 00px;
    background-size: 140%;
}

.store-bgimg {
    background: url('../img/pircherStoreBackground.png');
    background-repeat: no-repeat;
    background-position: left;
    background-position-y: bottom;
    background-position-x: 650px;
    background-size: 800px;
}

.site-header-light {
    background-color: #000;
    position: fixed;
    top: 0px;
    width: 100%;
    border: 0;
    box-shadow: none;
    z-index: 100;
    color: white;
    height: 60px;
}

.site-header a {
    color: #1a1a1a;
    transition: ease-in-out color .15s;
}

    .site-header a:hover {
        color: #000;
        text-decoration: none;
    }


.border-top {
    border-top: 1px solid #e8e8e8;
}

.border-bottom {
    border-bottom: 1px solid #e8e8e8;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}










.validation {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
}

.form-control {
    border-radius: 0px;
    border-width: 0 0 1px 0;
    border-color: #d4d4d4;
    font-size: 15px;
    padding: 12px 0;
    background: transparent;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-width: 0 0 1px 0;
        border-color: #000;
        box-shadow: none;
        background: transparent;
    }

.container {
    background-color: transparent;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.product-grid {
    text-align: center;
}

    .product-grid .product-image {
        position: relative;
        overflow: hidden;
    }

        .product-grid .product-image a.image {
            display: block;
        }

        .product-grid .product-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }

.product-grid:hover .product-image img {
    transform: scale(1.03);
}

.product-image .pic-1 {
    backface-visibility: hidden;
    transition: all 0.5s;
}

.product-grid:hover .product-image .pic-1 {
    opacity: 0;
}

.product-image img.pic-2 {
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    filter: hue-rotate(60deg);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
}

.product-grid:hover .product-image .pic-2 {
    opacity: 1;
    filter: hue-rotate(0);
}

.product-grid .product-discount-label {
    color: #fff;
    background: #000;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 25px;
    text-transform: uppercase;
    padding: 2px 14px;
    border-radius: 0;
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-grid .social {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    transition: all 0.3s ease 0s;
}

    .product-grid .social li {
        display: inline-block;
        margin: 0 3px;
        opacity: 0;
        transform: translateY(10px);
        transition: all .4s ease;
    }

.product-grid:hover .social li {
    opacity: 1;
    transform: translateY(0);
}

.product-grid .social li a {
    color: #000;
    background: #fff;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 0;
    display: block;
    position: relative;
    transition: all 0.3s linear 0s;
}

    .product-grid .social li a:hover {
        color: #fff;
        background: #000;
    }

    .product-grid .social li a:before,
    .product-grid .social li a:after {
        content: attr(data-tip);
        color: #fff;
        background-color: #000;
        font-size: 11px;
        letter-spacing: 0.05em;
        line-height: 20px;
        border-radius: 0;
        padding: 5px 10px;
        white-space: nowrap;
        visibility: hidden;
        transform: translateX(-50%);
        position: absolute;
        left: 50%;
        top: -40px;
        z-index: 0;
    }

    .product-grid .social li a:after {
        content: '';
        height: 15px;
        width: 15px;
        padding: 0;
        border-radius: 0;
        transform: translateX(-50%) rotate(45deg);
        top: -22px;
        left: 50%;
        z-index: -1;
    }

    .product-grid .social li a:hover:before,
    .product-grid .social li a:hover:after {
        visibility: visible;
    }

.product-grid .product-content {
    padding: 16px 12px;
}

.product-grid .title {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
}

    .product-grid .title a {
        color: #1a1a1a;
        transition: all 0.3s ease;
    }

        .product-grid .title a:hover {
            color: #666;
        }

.product-grid .price {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

    .product-grid .price span {
        color: #999999;
        font-size: 13px;
        font-weight: 400;
        text-decoration: line-through;
        margin-left: 7px;
        display: inline-block;
    }

.product-grid .rating {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .product-grid .rating li {
        color: #ffd200;
        font-size: 13px;
    }

        .product-grid .rating li.disable {
            color: #c1c1c1;
        }

@media screen and (max-width:990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}

.bi-before {
    display: inline-block;
    content: "";
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
}

.checkbox {
    width: 100%;
    margin: 15px auto;
    position: relative;
    display: block;
}

    .checkbox input[type="checkbox"] {
        width: auto;
        opacity: 0.00000001;
        position: absolute;
        left: 0;
        margin-left: -20px;
    }

    .checkbox label {
        position: relative;
    }

        .checkbox label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            margin: 4px;
            width: 18px;
            height: 18px;
            transition: transform 0.28s ease;
            border-radius: 0px;
            border: 1px solid #ccc;
            background-color: #fff;
        }

        .checkbox label:after {
            content: '';
            display: block;
            width: 10px;
            height: 5px;
            border-bottom: 2px solid #000;
            border-left: 2px solid #000;
            transform: rotate(-45deg) scale(0);
            transition: transform ease 0.25s;
            will-change: transform;
            position: absolute;
            top: 10px;
            left: 8px;
        }

    .checkbox input[type="checkbox"]:checked ~ label::before {
        color: #000;
    }

    .checkbox input[type="checkbox"]:checked ~ label::after {
        transform: rotate(-45deg) scale(1);
    }

    .checkbox label {
        min-height: 34px;
        display: block;
        padding-left: 30px;
        margin-bottom: 0;
        font-weight: normal;
        cursor: pointer;
        vertical-align: sub;
    }

        .checkbox label span {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

    .checkbox input[type="checkbox"]:focus + label::before {
        outline: 0;
    }


.nav-pills .nav-link {
    color: black;
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    letter-spacing: 0.05em;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #000;
}

.alert-success {
    color: #fff;
    background-color: #000;
    border-radius: 0;
    border: none;
    letter-spacing: 0.03em;
}

.footer {
    position: absolute;
    bottom: 0px;
    text-decoration: none;
    font-size: 30px;
    color: white;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.btn-outline-primary {
    border-color: #000;
    border-radius: 0;
    color: #000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: none !important;
}


.form-control::placeholder {
    color: #999;
    font-weight: 300;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
    font-weight: 300;
}

.form-control::-ms-input-placeholder {
    color: #999;
    font-weight: 300;
}


.modal-content {
    background-color: #fff;
    border-radius: 0;
    border: none;
}

.modal-body {
    background-color: transparent;
}

.modal-header {
    border: none;
    border-color: transparent;
}


.mobile-nav-menu li {
    list-style-type: none;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin-right: 30px;
    letter-spacing: 0.1em;
}

.mobile-nav-menu a {
    text-decoration: none;
    align-content: center;
    color: #1a1a1a !important;
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.mobile-nav-menu a:hover {
    opacity: 0.6;
}

.mobile-nav-menu-hero-loggedin {
    vertical-align: middle;
    padding-top: 30px;
    padding-bottom: 10px;
    background-color: #000;
    color: #fff;
    font-size: large;
    font-weight: 300;
    text-transform: none !important;
}

.mobile-nav-menu-hero {
    vertical-align: middle;
    padding-top: 30px;
    padding-bottom: 10px;
    background-color: #000;
    color: #fff;
    font-size: large;
    font-weight: 300;
    text-transform: none !important;
}

    .mobile-nav-menu-hero li {
        padding: 8px;
        color: #fff;
        text-transform: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-right: 26px;
        font-weight: 300;
        letter-spacing: 0.02em;
    }

    .mobile-nav-menu-hero a {
        background-color: white;
        opacity: 1;
        border-radius: 0px;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 400;
        color: #000 !important;
        letter-spacing: 0.1em;
    }

        .mobile-nav-menu-hero a:hover {
            background-color: #f0f0f0;
            opacity: 1;
            border-radius: 0px;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 400;
            color: #000 !important;
        }



.btn-close:focus {
    border: 0px;
    border-color: transparent;
    box-shadow: none;
}

.row-full {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}


.navbar-dark {
    background-color: #000 !important;
}


.bag-items-text {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
}


.btn {
    border-radius: 0px;
    padding-left: 24px;
    padding-right: 24px;
    min-width: 130px;
    padding-top: 14px;
    padding-bottom: 14px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    width: 100%;
    letter-spacing: 0.12em;
    border-color: #000;
    border-width: 0px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

    .btn:focus, .btn:active .btn:hover {
        outline: none !important;
        box-shadow: none !important;
        border-color: #000 !important;
    }

.btn-primary {
    background-color: #000;
    color: white !important;
}

    .btn-primary:hover {
        background-color: #333;
    }

    .btn-primary:focus {
        background-color: #000;
    }

.btn-outline-primary {
    font-weight: 400;
    color: #000;
    border-width: 1px;
}

    .btn-outline-primary:hover {
        background-color: #000;
        border-color: #000;
    }


.modal-backdrop {
    display: none;
}

/* unvisited link */
a:link {
    color: #1a1a1a;
}
/* visited link */
a:visited {
    color: #1a1a1a;
}
/* mouse over link */
a:hover {
    color: #1a1a1a;
}
/* selected link */
a:active {
    color: #1a1a1a;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
}

.button custom-toggler:focus {
    border-color: transparent;
    box-shadow: none;
    -webkit-appearance: none;
}


/* ── reCAPTCHA Badge ──────────────────────────────────────────── */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.business-hours .opening-hours li.today {
    font-weight: 700;
}

/* ── Verify Page Animations ───────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* ── Registration Wizard ──────────────────────────────────────── */
.step { display: none; }
.step.active { display: block; }
.step-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.step-dot { width: 12px; height: 12px; border-radius: 50%; background: #dee2e6; transition: background 0.3s; }
.step-dot.active { background: #000; }
.step-dot.done { background: #198754; }
.wizard-card { max-width: 560px; margin: 0 auto; padding: 24px; }
.step h4 { text-align: center; margin-bottom: 24px; font-weight: 400; }
.btn-wizard { min-width: 120px; }


/* ── Luxury Design Enhancements ───────────────────────────────── */

/* Hero sections */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-section:hover img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
}

.hero-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
}

/* Category cards on home page */
.category-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none !important;
    margin-bottom: 2px;
    background: #f8f7f5;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.category-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Elegant horizontal divider */
.luxury-divider {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 24px auto;
}

/* Section headings */
.section-heading {
    text-align: center;
    padding: 60px 20px 40px;
}

.section-heading h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading p {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* Smooth page transitions */
@keyframes pageReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

#bodyContent {
    animation: pageReveal 0.5s ease-out;
}

/* Footer — Gucci-inspired */
.ft {
    background: #000;
    color: #aaa;
    font-size: 13px;
    letter-spacing: 0.03em;
}

/* ── Newsletter Band ── */
.ft-newsletter {
    border-bottom: 1px solid #1a1a1a;
    padding: 56px 24px;
}

.ft-newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.ft-newsletter-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px;
}

.ft-newsletter-sub {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 0.03em;
    margin: 0 0 28px;
    line-height: 1.7;
}

.ft-newsletter-form {
    width: 100%;
}

.ft-newsletter-field {
    display: flex;
    border-bottom: 1px solid #333;
    transition: border-color 0.3s ease;
}

.ft-newsletter-field:focus-within {
    border-color: #fff;
}

.ft-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 0;
    font-family: inherit;
}

.ft-newsletter-input::placeholder {
    color: #888;
    font-weight: 400;
}

.ft-newsletter-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 12px 4px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.ft-newsletter-btn:hover {
    color: #fff;
}

.ft-newsletter-legal {
    margin: 10px 0 0;
    font-size: 10px;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.ft-newsletter-legal a,
.ft-newsletter-legal a:link,
.ft-newsletter-legal a:visited {
    color: #999 !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ft-newsletter-legal a:hover {
    color: #ccc !important;
}

/* ── Main Footer Grid ── */
.ft-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 40px;
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 48px;
}

.ft-col-head {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    list-style: none;
    cursor: default;
}

.ft-col-head::-webkit-details-marker {
    display: none;
}

.ft-col-head span {
    display: inline;
}

.ft-accordion-icon {
    display: none;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-links li {
    margin-bottom: 12px;
}

.ft-links a,
.ft-links a:link,
.ft-links a:visited,
.ft-links a:active {
    color: #aaa !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.ft-links a:hover {
    color: #fff !important;
}

.ft-link-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.ft-link-btn:hover {
    color: #fff;
}

/* Social */
.ft-social {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.ft-social-icon,
.ft-social-icon:link,
.ft-social-icon:visited,
.ft-social-icon:active {
    color: #ccc !important;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.ft-social-icon:hover {
    color: #fff !important;
}

.ft-origin {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
    line-height: 1.6;
}

/* ── Bottom Bar ── */
.ft-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 36px 24px 40px;
    text-align: center;
}

.ft-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ft-bottom-logo {
    height: 48px;
    opacity: 1;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) !important;
}

.ft-bottom-copy {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
}

.ft-bottom-legal {
    font-size: 10px;
    font-weight: 400;
    color: #777;
    letter-spacing: 0.03em;
    margin: 0;
}

/* ── Footer Responsive ── */
@media (max-width: 991px) {
    .ft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 32px;
    }

    .ft-col {
        margin-bottom: 8px;
    }
}

@media (max-width: 767px) {
    .ft-newsletter {
        padding: 40px 20px;
    }

    .ft-main {
        padding: 0 20px 20px;
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ft-col {
        margin-bottom: 0;
        border-bottom: 1px solid #1a1a1a;
    }

    .ft-col:last-child {
        border-bottom: none;
    }

    .ft-col-head {
        margin-bottom: 0;
        padding: 18px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ft-accordion-icon {
        display: block;
        transition: transform 0.3s ease;
        color: #666;
        flex-shrink: 0;
    }

    .ft-accordion[open] .ft-accordion-icon {
        transform: rotate(180deg);
    }

    .ft-links,
    .ft-social,
    .ft-origin {
        padding-bottom: 16px;
    }

    /* Collapse accordions on mobile by default */
    .ft-accordion:not([open]) .ft-links,
    .ft-accordion:not([open]) .ft-social,
    .ft-accordion:not([open]) .ft-origin {
        display: none;
    }

    .ft-bottom-logo {
        height: auto;
        max-width: 180px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* ── Shopping Bag (cb-*) ──────────────────────────────────────── */

/* Empty State */
.cb-empty {
    text-align: center;
    padding: 100px 24px 80px;
    max-width: 480px;
    margin: 0 auto;
}

.cb-empty-icon {
    margin-bottom: 32px;
    opacity: 0.5;
}

.cb-empty-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.cb-empty-text {
    font-size: 14px;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin-bottom: 36px;
}

a.cb-empty-cta,
a.cb-empty-cta:visited,
a.cb-empty-cta:link {
    display: inline-block;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 48px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

a.cb-empty-cta:hover {
    background: #333;
    color: #fff;
}

/* Main Container */
.cb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Header */
.cb-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 48px 0 36px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 0;
}

.cb-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    color: #1a1a1a;
}

.cb-count {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #999;
}

/* Alerts */
.cb-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.55;
}

.cb-alert--warn {
    background: #fdf6ec;
    border-left: 3px solid #e5a835;
    color: #8a6914;
}

.cb-alert--info {
    background: #f0f4ff;
    border-left: 3px solid #6b8cce;
    color: #3b5998;
}

/* Grid Layout */
.cb-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: flex-start;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .cb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Items Column */
.cb-items {
    min-width: 0;
}

.cb-items-head {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.cb-col-qty {
    text-align: center;
}

.cb-col-price {
    text-align: right;
}

@media (max-width: 767px) {
    .cb-items-head {
        display: none;
    }
}

/* Item Row */
.cb-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    gap: 16px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: cbFadeIn 0.5s ease both;
}

@keyframes cbFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cb-row--unavail {
    opacity: 0.5;
}

.cb-row-product {
    display: flex;
    gap: 20px;
    min-width: 0;
}

/* Thumbnail */
.cb-thumb {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 150px;
    overflow: hidden;
    display: block;
    background: #f8f7f5;
}

.cb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cb-thumb:hover img {
    transform: scale(1.05);
}

.cb-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-thumb-overlay span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    border: 1px solid #ccc;
    padding: 4px 14px;
}

/* Row Info */
.cb-row-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-top: 4px;
}

a.cb-row-name,
a.cb-row-name:visited {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 1.3;
}

a.cb-row-name:hover {
    opacity: 0.55;
    color: #1a1a1a;
}

.cb-row-desc {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 2px 0 0;
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cb-row-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.cb-row-sep {
    color: #ccc;
}

.cb-row-badges {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.cb-badge {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
    border: 1px solid #ddd;
    padding: 3px 10px;
}

/* Remove Link */
a.cb-remove,
a.cb-remove:visited {
    display: inline-block;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: transparent;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
    margin-top: 10px;
}

a.cb-remove:hover {
    color: #1a1a1a;
    text-decoration-color: #1a1a1a;
}

/* Desktop Qty + Price columns */
.cb-row-qty {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4px;
}

.cb-row-price {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 4px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
}

/* Quantity Stepper */
.cb-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.cb-qty-btn {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    user-select: none;
}

.cb-qty-btn:hover:not(:disabled) {
    background: #f5f5f5;
}

.cb-qty-btn:disabled {
    color: #d4d4d4;
    cursor: default;
}

.cb-qty-val {
    min-width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 6px 0;
    line-height: 1;
}

/* Mobile-only actions (qty + price inline) */
.cb-row-mobile-actions {
    display: none;
}

@media (max-width: 767px) {
    .cb-row {
        display: block;
    }

    .cb-row-qty,
    .cb-row-price {
        display: none;
    }

    .cb-row-mobile-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 14px;
    }

    .cb-row-line-total {
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: #1a1a1a;
    }

    .cb-thumb {
        width: 100px;
        height: 130px;
    }
}

/* ── Summary Sidebar ── */
.cb-summary {
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .cb-summary {
        position: static;
    }
}

.cb-summary-inner {
    background: #faf9f7;
    padding: 36px 32px;
}

.cb-summary-title {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 28px;
    color: #1a1a1a;
}

.cb-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.cb-summary-row--muted {
    color: #999;
    font-size: 13px;
    font-style: italic;
}

.cb-summary-line {
    height: 1px;
    background: #d4d4d4;
    margin: 16px 0;
}

.cb-summary-row--total {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 4px 0 0;
}

.cb-summary-notice {
    margin-top: 16px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 300;
    color: #8a6914;
    background: #fdf6ec;
    border-left: 3px solid #e5a835;
    line-height: 1.5;
}

/* CTA Button */
a.cb-cta,
a.cb-cta:visited,
a.cb-cta:link {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    text-align: center;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

a.cb-cta:hover {
    background: #333;
    color: #fff;
}

.cb-cta-disabled {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #aaa;
    background: #f0f0f0;
}

/* Express Checkout Divider */
.cb-divider-text {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 0;
    color: #aaa;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cb-divider-text::before,
.cb-divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

/* Trust Signals */
.cb-trust {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
}

.cb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #888;
}

.cb-trust-item svg {
    flex-shrink: 0;
    color: #bbb;
}

/* Continue Shopping */
.cb-back {
    text-align: center;
    padding: 40px 0 20px;
}

a.cb-back-link,
a.cb-back-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.cb-back-link:hover {
    color: #1a1a1a;
}

a.cb-back-link svg {
    transition: transform 0.3s ease;
}

a.cb-back-link:hover svg {
    transform: translateX(-3px);
}

@media (max-width: 575px) {
    .cb-header {
        padding: 32px 0 24px;
    }

    .cb-title {
        font-size: 22px;
    }

    .cb-summary-inner {
        padding: 28px 24px;
    }

    .cb-trust {
        grid-template-columns: 1fr;
    }
}


/* ── Checkout ─────────────────────────────────────────────────── */
.co-header {
    text-align: center;
    padding: 40px 0 12px;
}

.co-title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.co-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #999;
    margin: 0 0 16px;
}

.co-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #777;
    padding: 6px 16px;
    background: #f8f7f5;
    transition: background 0.3s ease, color 0.3s ease;
}

.co-timer strong {
    font-weight: 500;
    color: #1a1a1a;
}

.co-timer-urgent {
    background: #fff3f3;
    color: #b91c1c;
}

.co-timer-urgent strong {
    color: #b91c1c;
}

.co-timer-expired {
    background: #fde8e8;
    color: #991b1b;
}

/* ── Express Checkout (Apple Pay / Google Pay) ── */
.co-express {
    max-width: 480px;
    margin: 28px auto 0;
}

.co-express-inner {
    padding: 0;
}

.co-express-label {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}

.co-express-buttons {
    min-height: 52px;
}

.co-express-error {
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    text-align: center;
}

.co-express-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 480px;
    margin: 28px auto 0;
}

.co-express-divider::before,
.co-express-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.co-express-divider span {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bbb;
    white-space: nowrap;
}

/* ── Step Indicator ── */
.co-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 0 36px;
}

.co-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #d4d4d4;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.co-step-dot::after {
    content: attr(data-label);
    position: absolute;
    top: 40px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.co-step-dot.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.co-step-dot.active::after {
    color: #1a1a1a;
    font-weight: 500;
}

.co-step-dot.done {
    border-color: #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.co-step-dot.done::before {
    content: '✓';
    font-size: 14px;
}

.co-step-dot.done::after {
    color: #1a1a1a;
}

.co-step-connector {
    width: 60px;
    height: 1px;
    background: #d4d4d4;
    transition: background 0.3s ease;
}

.co-step-connector.done {
    background: #1a1a1a;
}

@media (max-width: 480px) {
    .co-step-connector {
        width: 32px;
    }
    .co-step-dot::after {
        font-size: 9px;
    }
}

/* ── Layout ── */
.co-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: flex-start;
    padding-top: 12px;
}

@media (max-width: 991px) {
    .co-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .co-summary-col {
        order: -1;
        margin-bottom: 24px;
    }
}

/* ── Steps ── */
.co-step {
    display: none;
    animation: fadeInUp 0.35s ease-out;
}

.co-step.active {
    display: block;
}

.co-step-header {
    margin-bottom: 28px;
}

.co-step-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.co-step-desc {
    font-size: 13px;
    color: #777;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ── Fields ── */
.co-field {
    margin-bottom: 20px;
    flex: 1;
}

.co-field-row {
    display: flex;
    gap: 16px;
}

@media (max-width: 575px) {
    .co-field-row {
        flex-direction: column;
        gap: 0;
    }
}

.co-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.co-required {
    color: #b91c1c;
}

.co-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: #999;
    font-size: 11px;
}

.co-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    cursor: pointer;
}

/* ── Custom Country Select ── */
.ccs {
    position: relative;
}

.ccs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    background: transparent;
}

.ccs-trigger-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #999;
    font-size: 15px;
}

.ccs-trigger-text-selected {
    color: #1a1a1a;
}

.ccs-chevron {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.2s ease;
}

.ccs-open .ccs-chevron {
    transform: rotate(180deg);
}

.ccs-open .ccs-trigger {
    border-color: #1a1a1a;
}

.ccs-flyout {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    overflow: hidden;
    animation: ccs-slide-in 0.15s ease-out;
}

@keyframes ccs-slide-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ccs-search-wrap {
    position: relative;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.ccs-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    pointer-events: none;
}

.ccs-search {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 9px 12px 9px 34px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
}

.ccs-search:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.ccs-search::placeholder {
    color: #bbb;
}

.ccs-list {
    max-height: 260px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
}

.ccs-list::-webkit-scrollbar {
    width: 5px;
}

.ccs-list::-webkit-scrollbar-track {
    background: transparent;
}

.ccs-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.ccs-group-label {
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    user-select: none;
}

.ccs-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 14px;
}

.ccs-item {
    padding: 9px 16px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.1s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.ccs-item:hover,
.ccs-item-focused {
    background: #f5f5f5;
}

.ccs-item:active {
    background: #ebebeb;
}

.ccs-item-selected {
    font-weight: 600;
    background: #f8f8f8;
    position: relative;
}

.ccs-item-selected::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='%231a1a1a' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.485 3.929a.75.75 0 0 1 .086 1.056l-6 7a.75.75 0 0 1-1.097.04l-3-3a.75.75 0 0 1 1.06-1.06l2.424 2.424 5.471-6.374a.75.75 0 0 1 1.056-.086z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.ccs-empty {
    padding: 24px 16px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

@media (max-width: 767px) {
    .ccs-flyout {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        max-height: 70vh;
        max-height: 70dvh;
        animation: ccs-slide-up 0.25s ease-out;
    }

    @keyframes ccs-slide-up {
        from { opacity: 0; transform: translateY(100%); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .ccs-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        animation: ccs-fade-in 0.2s ease-out;
    }

    @keyframes ccs-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .ccs-flyout {
        z-index: 1000;
    }

    .ccs-search-wrap {
        padding: 16px 16px 12px;
    }

    .ccs-search-wrap::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: #ddd;
        border-radius: 2px;
        margin: 0 auto 14px;
    }

    .ccs-list {
        max-height: calc(70vh - 80px);
        max-height: calc(70dvh - 80px);
    }

    .ccs-item {
        padding: 13px 16px;
        font-size: 16px;
    }

    .ccs-group-label {
        padding: 10px 16px 6px;
        font-size: 11px;
    }
}

.co-field-error {
    border-color: #b91c1c !important;
}

.co-field-error + .ccs .ccs-trigger {
    border-color: #b91c1c !important;
}

.co-field-error:focus {
    border-color: #b91c1c !important;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

/* ── Inline field error messages ── */
.co-field-msg {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #b91c1c;
    margin-top: 5px;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.co-field-msg-visible {
    min-height: auto;
    max-height: 40px;
    opacity: 1;
    margin-top: 5px;
}

/* ── Step error banner ── */
.co-step-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    animation: coShakeIn 0.35s ease;
}

@keyframes coShakeIn {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-6px); }
    40%  { transform: translateX(5px); }
    60%  { transform: translateX(-3px); }
    80%  { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

/* ── Step Actions ── */
.co-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid #e8e8e8;
}

.co-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #777;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.co-back-link:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.co-next-btn {
    display: inline-flex;
    align-items: center;
    min-width: auto;
    width: auto;
    margin-top: 0;
    padding: 14px 28px;
}

.co-place-btn {
    display: inline-flex;
    align-items: center;
    min-width: auto;
    width: auto;
    margin-top: 0;
    padding: 14px 32px;
}

@media (max-width: 575px) {
    .co-step-actions {
        flex-direction: column-reverse;
        gap: 12px;
        align-items: stretch;
    }
    .co-next-btn,
    .co-place-btn {
        width: 100%;
        justify-content: center;
    }
    .co-back-link {
        justify-content: center;
        padding: 8px 0;
    }
}

/* ── Payment Options ── */
.co-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.co-payment-option {
    display: block;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    padding: 18px 20px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.co-payment-option:hover {
    border-color: #999;
}

.co-payment-option.selected {
    border-color: #1a1a1a;
    background: #fafaf9;
}

.co-payment-option input[type="radio"] {
    display: none;
}

.co-payment-option-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.co-payment-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-payment-option-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #d4d4d4;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.3s ease;
}

.co-payment-option.selected .co-payment-option-radio {
    border-color: #1a1a1a;
}

.co-payment-option.selected .co-payment-option-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1a;
}

.co-payment-option-name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.co-payment-option-desc {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    margin: 4px 0 0 30px;
    line-height: 1.5;
}

.co-payment-detail {
    margin-bottom: 16px;
}

.co-payment-detail p {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    padding: 8px 0 0 0;
    background: transparent;
    margin: 0;
}

/* ── Payment Method Selector (step 4) ── */
.co-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.co-payment-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.co-payment-method:hover {
    border-color: #999;
}

.co-payment-method:has(input:checked) {
    border-color: #1a1a1a;
    background: #fafaf9;
}

.co-payment-radio {
    margin-top: 3px;
}

.co-payment-method-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.co-payment-method-name {
    font-size: 14px;
    color: #1a1a1a;
    letter-spacing: 0.04em;
}

.co-payment-method-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.co-payment-empty {
    padding: 14px 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.co-payment-panels {
    margin-bottom: 20px;
}

.co-payment-info {
    background: #fafaf9;
    border: 1px solid #e8e8e8;
    padding: 18px 20px;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.co-payment-info strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.co-payment-info p {
    margin: 0 0 10px;
    color: #666;
}

.co-bank-details {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 20px;
    row-gap: 6px;
    margin: 12px 0 0;
    font-size: 12px;
}

.co-bank-details dt {
    color: #999;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11px;
}

.co-bank-details dd {
    margin: 0;
    font-family: "Segoe UI", monospace;
    color: #1a1a1a;
    word-break: break-all;
}

/* ── Stripe Payment Element ── */
#stripe-payment-element-container {
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-top: 4px;
}

.co-stripe-container {
    padding: 24px 20px 20px;
    background: #fafaf9;
    border: 1px solid #e8e8e8;
    margin-top: 12px;
    position: relative;
}

.co-stripe-badge {
    position: absolute;
    top: -11px;
    left: 20px;
    background: #fafaf9;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
}

.co-stripe-badge svg {
    color: #16803c;
}

#stripe-payment-element {
    min-height: 100px;
}

#stripe-payment-message {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ── Hobex Seamless Payment ── */
#hobex-payment-container {
    padding: 28px 24px 24px;
    background: #fafaf9;
    border: 1px solid #e8e8e8;
    margin-top: 12px;
    position: relative;
}

#hobex-payment-container::before {
    content: '\1F512  SECURE PAYMENT';
    position: absolute;
    top: -11px;
    left: 20px;
    background: #fafaf9;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: #999;
}

#hobex-card-iframe {
    min-height: 280px;
}

#hobex-card-iframe iframe {
    border: none !important;
    width: 100% !important;
    min-height: 460px;
    display: block;
}

.hobex-loading {
    text-align: center;
    padding: 48px 20px;
    color: #b5b5b5;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hobex-loading::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 16px;
    border: 1.5px solid #e8e8e8;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: hobexSpin 0.8s linear infinite;
}

@keyframes hobexSpin {
    to { transform: rotate(360deg); }
}

#hobex-payment-message {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-top: 12px;
}

.hobex-error {
    color: #b91c1c;
    padding: 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    background: #fef2f2;
    border: 1px solid #fecaca;
}



/* ── Info Box ── */
.co-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f8f7f5;
    font-size: 13px;
    font-weight: 300;
    color: #555;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.co-info-box strong {
    font-weight: 500;
}

/* ── Terms ── */
.co-terms {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.3s ease;
}

.co-terms-error {
    border-color: #b91c1c;
}

.co-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
}

.co-terms-label input[type="checkbox"] {
    display: none;
}

.co-terms-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 1px solid #d4d4d4;
    margin-top: 1px;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.co-terms-label input[type="checkbox"]:checked + .co-terms-check {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.co-terms-label input[type="checkbox"]:checked + .co-terms-check::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.co-terms-label a {
    color: #1a1a1a !important;
    font-weight: 400;
}

.co-shipment-area {
    margin-bottom: 8px;
}

/* ── Order Summary Sidebar ── */
.co-summary-col {
    position: sticky;
    top: 80px;
}

@media (max-width: 991px) {
    .co-summary-col {
        position: static;
    }
}

.co-summary {
    background: #f8f7f5;
    padding: 28px;
}

.co-summary-title {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-summary-count {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    background: #1a1a1a;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.co-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.co-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-summary-item-img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.co-summary-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-summary-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-summary-item-info {
    flex: 1;
    min-width: 0;
}

.co-summary-item-name {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.co-summary-item-price {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    flex-shrink: 0;
}

.co-summary-divider {
    height: 1px;
    background: #d4d4d4;
    margin: 16px 0;
}

.co-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.co-summary-free {
    font-size: 12px;
    color: #16803c;
    font-weight: 400;
}

.co-summary-total {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 4px 0 0;
}

.co-summary-trust {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #e4e2df;
}

.co-summary-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #777;
}

/* ── Mobile Summary Toggle ── */
.co-summary-toggle {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: #f8f7f5;
    border: 1px solid #e8e8e8;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .co-summary {
        display: none;
    }
    .co-summary-toggle {
        display: flex;
    }
    .co-summary-col .co-summary.show {
        display: block;
        margin-bottom: 12px;
    }
}

/* ── Shipping Options (Step 3) ── */
.co-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.co-shipping-option {
    display: block;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    padding: 18px 20px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.co-shipping-option:hover {
    border-color: #999;
}

.co-shipping-option.selected {
    border-color: #1a1a1a;
    background: #fafaf9;
}

.co-shipping-option input[type="radio"] {
    display: none;
}

.co-shipping-option-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.co-shipping-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-shipping-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.co-shipping-option-name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.co-shipping-option-detail {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.co-shipping-option-price {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    flex-shrink: 0;
}

.co-shipping-option.selected .co-payment-option-radio {
    border-color: #1a1a1a;
}

.co-shipping-option.selected .co-payment-option-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1a;
}

/* ── Shipping Promo / Free-Shipping ── */
.co-promo-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.co-promo-banner strong {
    font-weight: 500;
}

.co-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 6px;
}


/* ── Store (Gucci-inspired) ───────────────────────────────────── */

/* Category Bar */
.st-catbar-wrap {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.st-catbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.st-catbar::-webkit-scrollbar { display: none; }

.st-catbar-link {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.st-catbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #1a1a1a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.st-catbar-link:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.st-catbar-link:hover::after {
    transform: scaleX(1);
}

.st-catbar-link.active {
    color: #1a1a1a;
    font-weight: 500;
}

.st-catbar-link.active::after {
    transform: scaleX(1);
}

@media (max-width: 767px) {
    .st-catbar {
        justify-content: flex-start;
        padding: 0 16px;
    }
    .st-catbar-link {
        padding: 14px 14px;
        font-size: 11px;
    }
}

/* Header */
.st-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 28px 0 20px;
}

.st-header-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.st-header-count {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #999;
}

@media (max-width: 575px) {
    .st-header {
        padding: 20px 0 14px;
    }
    .st-header-title {
        font-size: 20px;
        letter-spacing: 0.1em;
    }
}

/* Product Grid — full-bleed */
.st-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e8e8e8;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (min-width: 992px) {
    .st-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .st-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Product Card ── */
@keyframes stCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.st-card {
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    animation: stCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.st-card--sold {
    pointer-events: auto;
}

.st-card--sold .st-card-img {
    opacity: 0.45;
    filter: grayscale(0.3);
}

/* Media / Image */
.st-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f6f5f1;
}

.st-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease;
}

.st-card:hover .st-card-img {
    transform: scale(1.06);
}

/* Subtle gradient overlay on hover */
.st-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0, 0, 0, 0.12) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.st-card:hover .st-card-overlay {
    opacity: 1;
}

/* ── Badges ── */
.st-card-badge {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    line-height: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.st-card-badge--sold {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    font-size: 11px;
    letter-spacing: 0.18em;
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.st-card-badge--low {
    top: 12px;
    left: 12px;
    background: rgba(180, 60, 40, 0.88);
    color: #fff;
}

.st-card-badge--exc {
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 26, 0.88);
    color: #fff;
}

.st-card-badge--low + .st-card-badge--exc {
    top: 36px;
}

.st-card-badge--sw {
    bottom: 12px;
    left: 12px;
    top: auto;
    background: rgba(255, 255, 255, 0.82);
    color: #1a1a1a;
    font-size: 8px;
    letter-spacing: 0.08em;
}

/* ── Card Body ── */
.st-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.st-card-name {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.st-card-name:hover {
    color: #888;
    text-decoration: none;
}

.st-card-sku {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #bbb;
    text-transform: uppercase;
}

.st-card-price {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-top: 4px;
}

/* ── Add-to-Bag Button ── */
.st-card-atc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 16px;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: futura-pt, sans-serif;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease;
    z-index: 3;
}

.st-card:hover .st-card-atc {
    opacity: 1;
    transform: translateY(0);
}

.st-card-atc:hover {
    background: rgba(50, 50, 50, 0.95);
}

.st-card-atc.st-added {
    background: rgba(22, 80, 42, 0.92);
    opacity: 1;
    transform: translateY(0);
}

.st-card-atc.st-unavailable {
    background: rgba(100, 100, 100, 0.9);
    opacity: 1;
    transform: translateY(0);
    cursor: default;
}

.st-card-atc svg {
    flex-shrink: 0;
}

/* Spinner */
@keyframes stSpin {
    to { transform: rotate(360deg); }
}

.st-spin {
    animation: stSpin 0.7s linear infinite;
}

/* ── Mobile: always-visible button ── */
@media (max-width: 991px) {
    .st-card-atc {
        position: relative;
        opacity: 1;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-top: 1px solid #ebebeb;
        background: #fff;
        color: #1a1a1a;
    }

    .st-card-atc:hover {
        background: #f8f7f4;
    }

    .st-card-atc.st-added {
        background: #f0f7f2;
        color: #16502a;
        border-top-color: #d1e7d8;
    }

    .st-card-atc.st-unavailable {
        background: #f5f5f5;
        color: #999;
        border-top-color: #e8e8e8;
    }

    .st-card-body {
        padding: 12px 14px 4px;
    }

    .st-card-name {
        font-size: 12px;
    }

    .st-card-price {
        font-size: 12px;
    }

    .st-card-atc {
        font-size: 10px;
        padding: 12px 14px;
    }
}

@media (max-width: 575px) {
    .st-card-body {
        padding: 10px 10px 2px;
        gap: 2px;
    }

    .st-card-name {
        font-size: 11px;
    }

    .st-card-sku {
        font-size: 9px;
    }

    .st-card-price {
        font-size: 11px;
        margin-top: 2px;
    }

    .st-card-atc {
        font-size: 9px;
        padding: 10px 10px;
        letter-spacing: 0.08em;
    }

    .st-card-badge--exc,
    .st-card-badge--low {
        font-size: 8px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .st-card-badge--low + .st-card-badge--exc {
        top: 28px;
    }

    .st-card-badge--sw {
        font-size: 7px;
        bottom: 8px;
        left: 8px;
        padding: 3px 7px;
    }

    .st-card-badge--sold {
        font-size: 10px;
        padding: 8px 18px;
    }
}

/* ── Toast Notification ── */
.st-toast {
    position: fixed;
    top: 68px;
    right: 20px;
    z-index: 10000;
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
}

.st-toast-show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.st-toast-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 20px;
    min-width: 280px;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.st-toast-icon {
    flex-shrink: 0;
    color: #4ade80;
}

.st-toast-msg {
    flex: 1;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.st-toast-action {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.st-toast-action:hover {
    opacity: 0.7;
    color: #fff !important;
}

.st-toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    display: flex;
    transition: color 0.3s ease;
}

.st-toast-close:hover {
    color: #fff;
}

@media (max-width: 575px) {
    .st-toast {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
    }
    .st-toast-show {
        transform: translateY(0);
    }
    .st-toast-inner {
        min-width: 100%;
        max-width: 100%;
    }
}

/* ── Empty / Offline States ── */
.st-empty {
    text-align: center;
    padding: 80px 20px 60px;
}

.st-empty-icon {
    margin-bottom: 28px;
    opacity: 0.5;
}

.st-empty-title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.st-empty-text {
    font-size: 14px;
    color: #777;
    font-weight: 300;
    letter-spacing: 0.04em;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.8;
}

.st-empty-divider {
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 28px auto;
}

.st-empty-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 36px;
    border: 1px solid #1a1a1a;
    transition: background 0.3s ease, color 0.3s ease;
}

.st-empty-btn:hover {
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
}

.st-empty-btn.st-empty-btn-fill {
    background: #1a1a1a;
    color: #fff;
}

.st-empty-btn.st-empty-btn-fill:hover {
    background: #333;
    color: #fff;
}

/* ══════════════════════════════════════════
   Product Detail — Gucci-inspired
   ══════════════════════════════════════════ */

/* Breadcrumb */
.st-pd-breadcrumb {
    margin-bottom: 24px;
}

.st-pd-breadcrumb a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.st-pd-breadcrumb a:hover {
    color: #1a1a1a;
}

/* Main grid */
.st-pd {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0 60px;
    align-items: start;
}

/* Image */
.st-pd-media {
    position: relative;
    background: #f8f7f5;
}

.st-pd-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Info panel */
.st-pd-info {
    position: sticky;
    top: 120px;
    padding: 10px 0 60px;
}

/* Tags */
.st-pd-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.st-pd-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #1a1a1a;
    color: #fff;
    padding: 5px 12px;
}

.st-pd-tag-alt {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

/* Title */
.st-pd-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin: 0 0 6px;
    line-height: 1.3;
}

.st-pd-sku {
    display: inline-block;
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

/* Price */
.st-pd-price {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    color: #1a1a1a;
}

/* Add to Bag button */
.st-pd-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.st-pd-add:hover {
    background: #333;
}

.st-pd-add:disabled {
    cursor: default;
}

.st-pd-added {
    background: #2d6a4f !important;
}

.st-pd-added:hover {
    background: #2d6a4f !important;
}

.st-pd-add-label {
    font-family: inherit;
}

.st-pd-add-spinner {
    display: inline-flex;
    align-items: center;
}

/* Availability */
.st-pd-avail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.st-pd-avail-item {
    display: flex;
    align-items: flex-start;
}

.st-pd-avail-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.st-pd-avail-value {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: #777;
    letter-spacing: 0.02em;
}

/* Accordions */
.st-pd-accordion {
    border-bottom: 1px solid #e8e8e8;
}

.st-pd-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.st-pd-accordion-head::-webkit-details-marker {
    display: none;
}

.st-pd-accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.st-pd-accordion[open] .st-pd-accordion-icon {
    transform: rotate(180deg);
}

.st-pd-accordion-body {
    padding: 0 0 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.02em;
    white-space: pre-wrap;
}

.st-pd-accordion-body p {
    margin: 0 0 10px;
}

.st-pd-accordion-body p:last-child {
    margin-bottom: 0;
}

/* Help */
.st-pd-help {
    margin-top: 28px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #777;
}

.st-pd-help a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.st-pd-help a:hover {
    color: #555;
}

/* Admin */
.st-pd-admin {
    margin-top: 40px;
}

.st-pd-admin-divider {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .st-pd {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .st-pd-info {
        position: static;
        padding: 28px 0 40px;
    }

    .st-pd-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .st-pd-breadcrumb {
        margin-bottom: 16px;
    }

    .st-pd-info {
        padding: 20px 0 30px;
    }

    .st-pd-title {
        font-size: 20px;
        letter-spacing: 0.06em;
    }

    .st-pd-price {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .st-pd-add {
        padding: 14px 16px;
        font-size: 12px;
    }
}

/* ══════════════════════════════════════════════════════════════
   Identity / Account Pages (id-*)
   ══════════════════════════════════════════════════════════════ */


/* ── Standalone page wrapper (Login, Register, Forgot, etc.) ── */
.id-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    padding: 40px 16px 60px;
}

/* ── Card container ── */
.id-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 40px 36px;
}

.id-card-wide {
    max-width: 560px;
}

.id-card-center {
    text-align: center;
}

.id-card-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-align: center;
}

.id-card-sub {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 28px;
}

/* ── Form fields ── */
.id-field {
    margin-bottom: 20px;
}

.id-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.id-input {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.id-input:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.id-input:disabled {
    background: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

.id-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.id-input.is-invalid,
.id-select.is-invalid {
    border-color: #b00020;
}

.id-validation {
    display: block;
    font-size: 12px;
    color: #b00020;
    margin-top: 4px;
}

.id-error {
    background: #fdf0f0;
    border: 1px solid #f5c6cb;
    color: #b00020;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    display: none;
}

.id-error.validation-summary-errors {
    display: block;
}

/* ── Field layouts ── */
.id-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.id-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.id-field-grid-addr {
    grid-template-columns: 1fr 2fr;
}

/* ── Checkbox & Radio ── */
.id-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.id-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

.id-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.id-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
}

.id-radio input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

/* ── Buttons ── */
.id-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.id-btn:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    text-decoration: none;
}

.id-btn-outline {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.id-btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
}

.id-btn-danger {
    background: #b00020;
    border-color: #b00020;
}

.id-btn-danger:hover {
    background: #8e001a;
    border-color: #8e001a;
}

.id-btn-link {
    display: inline-block;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 4px;
}

.id-btn-link:hover {
    color: #555;
}

/* ── External login buttons ── */
.id-external-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.id-btn-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    color: #1a1a1a;
}

.id-btn-external:hover {
    background: #f5f5f5;
    border-color: #999;
}

.id-btn-external-apple {
    background: #000;
    color: #fff;
    border-color: #000;
}

.id-btn-external-apple:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

/* ── Links ── */
.id-link {
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.id-link:hover {
    color: #555;
}

/* ── Divider ── */
.id-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
}

.id-divider::before,
.id-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.id-divider span {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ── Email verification badges ── */
.id-email-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.id-email-row .id-input {
    flex: 1;
    min-width: 200px;
}

.id-badge-confirmed {
    font-size: 12px;
    font-weight: 500;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 10px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.id-badge-unconfirmed {
    font-size: 12px;
    font-weight: 500;
    color: #b00020;
    background: #fdf0f0;
    padding: 4px 10px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}


/* ── Manage layout ── */
.id-manage {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

.id-manage-header {
    text-align: center;
    padding: 20px 0 28px;
}

.id-manage-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.id-manage-sub {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.id-manage-nav {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 36px;
}

.id-manage-content {
    min-width: 0;
}

/* ── Horizontal nav ── */
.id-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.id-nav li {
    flex-shrink: 0;
}

.id-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    margin-bottom: -1px;
}

.id-nav-link:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.id-nav-link svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.id-nav-link:hover svg {
    opacity: 0.7;
}

.id-nav-active {
    color: #1a1a1a !important;
    font-weight: 500;
    border-bottom-color: #1a1a1a;
}

.id-nav-active svg {
    opacity: 1 !important;
}

/* ── Section titles (inside manage content) ── */
.id-section-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.id-sub-heading {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 16px;
}

/* ── Orders ── */
.id-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.id-order-card {
    border: 1px solid #e8e8e8;
    padding: 20px 24px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.id-order-card:hover {
    border-color: #1a1a1a;
}

.id-order-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.id-order-date {
    font-size: 13px;
    color: #777;
    letter-spacing: 0.3px;
}

.id-order-status {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: #f5f5f5;
    color: #1a1a1a;
}

.id-status-paid {
    background: #fff8e1;
    color: #f57f17;
}

.id-status-done {
    background: #e8f5e9;
    color: #2e7d32;
}

.id-status-cancelled {
    background: #fdf0f0;
    color: #b00020;
}

.id-order-body {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.id-order-items {
    font-size: 14px;
    color: #1a1a1a;
}

.id-order-total {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.id-order-detail {
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.id-order-detail:hover {
    color: #555;
}

/* ── Documents ── */
.id-doc-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.id-doc-filter {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #777;
    padding: 6px 14px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.id-doc-filter:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.id-doc-filter.id-doc-filter-active,
.id-doc-filter.id-doc-filter-active:hover {
    color: #fff;
    background: #1a1a1a;
    border-color: #1a1a1a;
    opacity: 1;
}

.id-doc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.id-doc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e8e8e8;
    background: #fff;
    transition: border-color 0.2s ease;
}

.id-doc-card:hover {
    border-color: #1a1a1a;
}

.id-doc-icon {
    flex-shrink: 0;
    color: #999;
}

.id-doc-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.id-doc-name {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.id-doc-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.id-doc-type {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 2px 8px;
    background: #f5f5f5;
    color: #1a1a1a;
}

.id-doc-type-invoice {
    background: #e8f5e9;
    color: #2e7d32;
}

.id-doc-type-delivery {
    background: #e3f2fd;
    color: #1565c0;
}

.id-doc-type-credit {
    background: #fff8e1;
    color: #f57f17;
}

.id-doc-download {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1a1a1a;
    border: 1px solid #e8e8e8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.id-doc-download:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* ── Empty state ── */
.id-empty {
    text-align: center;
    padding: 48px 16px;
}

/* ── Order Detail (customer) ── */
.id-od {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.id-od-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    margin-bottom: 32px;
}

.id-od-back:hover {
    color: #1a1a1a;
}

.id-od-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.id-od-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.id-od-date {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.id-od-status {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #1a1a1a;
    white-space: nowrap;
    flex-shrink: 0;
}

.id-od-status-paid { background: #fff8e1; color: #f57f17; }
.id-od-status-done { background: #e8f5e9; color: #2e7d32; }
.id-od-status-cancelled { background: #fdf0f0; color: #b00020; }
.id-od-status-hold { background: #fff3e0; color: #e65100; }

.id-od-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.id-od-card {
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 28px;
    margin-bottom: 20px;
}

.id-od-card-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.id-od-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.id-od-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.id-od-item:last-child {
    border-bottom: none;
}

.id-od-item-img {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    background: #f8f7f5;
}

.id-od-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.id-od-item-info {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.id-od-item-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.id-od-item-sku {
    font-size: 13px;
    color: #999;
    margin: 0 0 8px;
    letter-spacing: 0.2px;
}

.id-od-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #b8860b;
    margin: 0 0 4px;
}

.id-od-item-label {
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #bbb;
    margin: 4px 0 0;
}

.id-od-item-price {
    flex-shrink: 0;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    padding-top: 4px;
}

.id-od-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 4px;
    border-top: 1px solid #e8e8e8;
}

.id-od-total span:first-child {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.id-od-total span:last-child {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.id-od-info-block {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.id-od-info-block p {
    margin: 0;
}

.id-od-info-name {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.id-od-info-muted {
    color: #bbb;
    font-size: 13px;
    font-style: italic;
}

.id-od-link {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.2s ease;
}

.id-od-link:hover {
    border-color: #1a1a1a;
}

.id-od-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.id-od-track-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 767px) {
    .id-od {
        padding: 24px 16px 60px;
    }

    .id-od-header {
        flex-direction: column;
        gap: 12px;
    }

    .id-od-title {
        font-size: 20px;
    }

    .id-od-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .id-od-item {
        gap: 14px;
    }

    .id-od-item-img {
        width: 80px;
        height: 80px;
    }

    .id-od-card {
        padding: 20px;
    }
}

/* ── Order Detail: additional styles ── */
.id-od-total-sub {
    border-top: none;
    padding-top: 8px;
    margin-top: 0;
}

.id-od-total-grand {
    border-top: 2px solid #1a1a1a;
    padding-top: 16px;
    margin-top: 4px;
}

.id-od-total-grand span:last-child {
    font-size: 22px;
    font-weight: 600;
}

.id-od-info-instructions {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
    line-height: 1.6;
}

.id-od-info-amount {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 10px;
}

.id-od-badge-paid {
    display: inline-block;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    margin-top: 8px;
}

.id-od-badge-pending {
    display: inline-block;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: #fff8e1;
    color: #f57f17;
    margin-top: 8px;
}

/* ── Order Confirmation Page ── */
.oc {
    max-width: 1060px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    animation: fadeInUp 0.5s ease-out;
}

.oc-icon {
    text-align: center;
    margin-bottom: 24px;
}

.oc-check-circle {
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
    animation: ocCircleDraw 0.6s ease forwards;
}

.oc-check-path {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: ocCheckDraw 0.4s ease 0.5s forwards;
}

@keyframes ocCircleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes ocCheckDraw {
    to { stroke-dashoffset: 0; }
}

.oc-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 12px;
}

.oc-subtitle {
    font-size: 15px;
    color: #777;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.6;
}

.oc-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.oc-card {
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 28px;
    margin-bottom: 20px;
}

.oc-card-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.oc-items {
    display: flex;
    flex-direction: column;
}

.oc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.oc-item:last-child {
    border-bottom: none;
}

.oc-item-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    background: #f8f7f5;
}

.oc-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oc-item-info {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.oc-item-name {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.oc-item-sku {
    font-size: 13px;
    color: #999;
    margin: 0 0 2px;
    letter-spacing: 0.2px;
}

.oc-item-qty {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.oc-item-price {
    flex-shrink: 0;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    padding-top: 4px;
}

.oc-totals {
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid #e8e8e8;
}

.oc-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.oc-totals-row span:first-child {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    letter-spacing: 0.3px;
}

.oc-totals-grand {
    border-top: 2px solid #1a1a1a;
    margin-top: 8px;
    padding-top: 14px;
}

.oc-totals-grand span:first-child {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.oc-totals-grand span:last-child {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.oc-info {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.oc-info p {
    margin: 0;
}

.oc-info-name {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.oc-info-muted {
    color: #bbb;
    font-size: 13px;
    font-style: italic;
    margin-top: 6px;
}

.oc-info-instructions {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
    line-height: 1.6;
}

.oc-bank-details {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 16px;
    row-gap: 6px;
    margin: 10px 0 0 0;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
}

.oc-bank-details dt {
    color: #64748b;
    font-weight: 600;
}

.oc-bank-details dd {
    margin: 0;
    color: #1e293b;
    word-break: break-all;
}

.oc-bank-details code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}

.oc-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

a.oc-btn-primary,
a.oc-btn-primary:visited,
a.oc-btn-primary:link {
    display: inline-block;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

a.oc-btn-primary:hover,
a.oc-btn-primary:focus {
    background: #333;
    color: #fff;
}

.oc-btn-secondary {
    display: inline-block;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.oc-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 767px) {
    .oc {
        padding: 32px 16px 60px;
    }

    .oc-title {
        font-size: 22px;
    }

    .oc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .oc-item {
        gap: 14px;
    }

    .oc-item-img {
        width: 70px;
        height: 70px;
    }

    .oc-card {
        padding: 20px;
    }

    .oc-actions {
        flex-direction: column;
        align-items: center;
    }

    .oc-btn-primary,
    .oc-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

.id-empty svg {
    margin-bottom: 16px;
}

.id-empty p {
    font-size: 15px;
    color: #777;
    margin-bottom: 24px;
}

.id-empty .id-btn {
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

/* ── Personal data cards ── */
.id-info-box {
    background: #f8f7f5;
    border: 1px solid #e8e8e8;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.id-info-box p {
    margin: 0;
}

.id-data-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.id-data-card {
    border: 1px solid #e8e8e8;
    padding: 28px 24px;
    text-align: center;
    background: #fff;
}

.id-data-card svg {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.id-data-card h3 {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.id-data-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 20px;
}

.id-data-card .id-btn {
    max-width: none;
}

.id-data-card-danger {
    border-color: #f5c6cb;
}

.id-data-card-danger svg {
    color: #b00020;
}

/* ── Warning box (delete confirm) ── */
.id-warning-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff8e1;
    border: 1px solid #ffe082;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.id-warning-box svg {
    flex-shrink: 0;
    color: #f57f17;
    margin-top: 2px;
}

.id-warning-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ── Status message ── */
.id-status-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.2px;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.id-status-msg svg {
    flex-shrink: 0;
}

.id-status-msg-error {
    background: #fdf0f0;
    color: #b00020;
    border-color: #f5c6cb;
}

.id-status-msg-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.id-status-msg-close:hover {
    opacity: 1;
}

/* ── Authenticator / 2FA ── */
.id-steps-list {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0 0 28px;
}

.id-steps-list li {
    counter-increment: step;
    position: relative;
    padding: 0 0 24px 44px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.id-steps-list li:last-child {
    padding-bottom: 0;
}

.id-steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    color: #fff;
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.id-steps-list li a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.id-steps-list li a:hover {
    color: #555;
}

.id-key-display {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    background: #f8f7f5;
    border: 1px solid #e8e8e8;
    padding: 8px 14px;
    color: #1a1a1a;
    word-break: break-all;
}

.id-qr-wrap {
    margin: 16px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    display: inline-block;
}

/* ── External login cards ── */
.id-ext-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.id-ext-login:last-child {
    border-bottom: none;
}

.id-ext-login-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.id-ext-login form button {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b00020;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.id-ext-login form button:hover {
    color: #8e001a;
}

/* ── Registration wizard ── */

.id-wizard-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.id-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.id-dot.active {
    background: #1a1a1a;
    transform: scale(1.2);
}

.id-dot.done {
    background: #888;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.id-step-title {
    font-family: futura-pt, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.id-wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.id-wizard-actions .id-btn,
.id-wizard-actions .id-btn-outline {
    width: auto;
    min-width: 140px;
    flex: 0 0 auto;
}

.id-wizard-actions-end {
    justify-content: flex-end;
}

.id-recaptcha-note {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.id-recaptcha-note a {
    color: #777;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .id-manage {
        padding: 0 0 60px;
    }

    .id-manage-header {
        padding: 12px 16px 20px;
    }

    .id-manage-title {
        font-size: 22px;
    }

    .id-manage-nav {
        margin-bottom: 24px;
    }

    .id-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 8px;
    }

    .id-nav-link {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .id-nav-link svg {
        display: none;
    }

    .id-manage-content {
        padding: 0 16px;
    }

    .id-card {
        padding: 28px 20px;
        border-left: none;
        border-right: none;
    }

    .id-card-title {
        font-size: 20px;
    }

    .id-field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .id-field-grid-addr {
        grid-template-columns: 1fr 2fr;
    }

    .id-data-actions {
        grid-template-columns: 1fr;
    }

    .id-order-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .id-doc-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .id-doc-name {
        font-size: 13px;
    }

    .id-doc-meta {
        flex-wrap: wrap;
        gap: 4px;
    }

    .id-wizard-actions .id-btn,
    .id-wizard-actions .id-btn-outline {
        min-width: 110px;
        font-size: 12px;
        padding: 12px 16px;
    }
}

/* ══ Express Checkout (Apple Pay / Google Pay) ══ */

.co-express-section {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 0 16px;
}

.co-express-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 8px;
    color: #999;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.co-express-divider::before,
.co-express-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 24px;
    text-align: center;
}

.gallery-section--page {
    margin-top: 60px;
}

.gallery-section-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.gallery-section-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.gallery-section-divider {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 0 auto 12px;
}

.gallery-section-desc {
    font-size: 17px;
    color: #888;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-page-grid,
.hp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2px;
}

.gallery-page-grid {
    margin-bottom: 80px;
}

.hp-gallery-grid {
    margin-bottom: 40px;
}

/* Gallery Items */
.hp-gallery-item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
}

.hp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hp-gallery-item:hover img {
    transform: scale(1.05);
}

.hp-gallery-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.45) 100%);
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hp-gallery-caption span {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 300;
}

/* Gallery Empty State */
.gallery-empty {
    text-align: center;
    padding: 80px 24px;
    color: #999;
}

/* Lightbox */
.hp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.hp-lightbox-open {
    display: flex;
}

.hp-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
    cursor: default;
    animation: hpLightboxFadeIn 0.25s ease;
}

.hp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    z-index: 10000;
}

.hp-lightbox-close:hover {
    opacity: 1;
}

@keyframes hpLightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Gallery caption hover — kept outside section block for cascade clarity */
.hp-gallery-item:hover .hp-gallery-caption,
.hp-gallery-item:focus .hp-gallery-caption {
    opacity: 1;
}

/* ── Contact Page ── */
.ct-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.ct-info-item {
    padding: 0 24px;
}
.ct-info-item + .ct-info-item {
    border-left: 1px solid #e8e8e8;
}
.ct-info-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.ct-info-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}
.ct-info-text a {
    color: #1a1a1a !important;
    text-decoration: none;
    border-bottom: 1px solid #d4d4d4;
    transition: border-color 0.3s ease;
}
.ct-info-text a:hover {
    border-color: #1a1a1a;
}

.ct-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.ct-hours-section-divider {
    border-left: 1px solid #e8e8e8;
    padding-left: 24px;
}
.ct-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ct-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 300;
    color: #555;
    letter-spacing: 0.02em;
}
.ct-hours-list li:last-child {
    border-bottom: none;
}
.ct-hours-list li.today {
    font-weight: 500;
    color: #1a1a1a;
}
.ct-hours-list li .ct-day {
    flex-shrink: 0;
    min-width: 100px;
}
.ct-hours-list li .ct-time {
    text-align: right;
    color: #999;
}
.ct-hours-list li.today .ct-time {
    color: #1a1a1a;
}
.ct-holiday-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ct-holiday-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 300;
    color: #555;
    letter-spacing: 0.02em;
}
.ct-holiday-list li:last-child {
    border-bottom: none;
}

.ct-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.ct-form-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
    display: block;
}
.ct-form-wrapper .form-control,
.ct-form-wrapper .form-select {
    border-radius: 0;
    border-width: 0 0 1px 0;
    border-color: #d4d4d4;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 0;
    background: transparent;
    transition: border-color 0.3s ease;
    letter-spacing: 0.02em;
}
.ct-form-wrapper .form-control:focus,
.ct-form-wrapper .form-select:focus {
    border-width: 0 0 1px 0;
    border-color: #1a1a1a;
    box-shadow: none;
    background: transparent;
}
.ct-form-wrapper .form-control::placeholder {
    color: #ccc;
    font-weight: 300;
}
.ct-form-wrapper select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23999' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.ct-hotels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.ct-hotel-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid #eee;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ct-hotel-card:hover {
    border-color: #d4d4d4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ct-hotel-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.ct-hotel-location {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}
.ct-hotel-link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}
.ct-hotel-link:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

@media (max-width: 767px) {
    .ct-info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ct-info-item + .ct-info-item {
        border-left: none;
        border-top: 1px solid #e8e8e8;
        padding-top: 32px;
    }
    .ct-hours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ct-hours-section-divider {
        border-left: none;
        border-top: 1px solid #e8e8e8;
        padding-left: 0;
        padding-top: 32px;
    }
    .ct-hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ct-map-card {
        position: static !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border-bottom: 1px solid #e8e8e8;
    }
}

.ct-map-card {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    background: #fff;
    padding: 28px 32px;
    max-width: 300px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.ct-map-card a:hover {
    background: #333 !important;
}

/* ── Gallery Page Responsive ── */
@media (max-width: 575px) {
    .gallery-page-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Homepage Responsive ── */
@media (max-width: 575px) {
    .hp-trio-grid { grid-template-columns: 1fr !important; }
    .hp-trio-grid a { height: 400px !important; }
    .hp-split-row { flex-direction: column !important; }
    .hp-split-row > div { width: 100% !important; min-height: 360px !important; }
    .hp-values-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .hp-gallery-grid { grid-template-columns: 1fr 1fr; }
    .hp-gallery-grid .hp-gallery-item:last-child { display: none; }
}

/* ── Verify Page ── */
.vf-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.vf-input:focus {
    border-color: #1a1a1a;
}
.vf-textarea {
    resize: vertical;
}
.vf-upload-area {
    position: relative;
    border: 2px dashed #d0d0d0;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.vf-upload-area:hover {
    border-color: #1a1a1a;
    background: #fafafa;
}
.vf-submit-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease, color 0.3s ease;
}
.vf-submit-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

