@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    min-height: 100vh;
    background: #060606; /* solid base so background image doesn't compete */
    overflow-x: hidden;
    position: relative;
}

/* subtle, blurred background image placed behind content and heavily dimmed */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('../images/backgrounds/Background_Roxy.jpeg') center / cover no-repeat fixed;
    filter: blur(8px) saturate(0.45) brightness(0.35);
    opacity: 0.75;
    z-index: -3;
}

/* dark overlay to mute the image and keep text readable */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,7,0.85) 0%, rgba(5,5,7,0.65) 40%, rgba(5,5,7,0.85) 100%);
    z-index: -2;
    pointer-events: none;
}

/* ================= HEADER ================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(5, 5, 15, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(246, 210, 122, 0.18);
    padding: 12px 24px;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 16px 48px;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #f3f4f6;
}

.header-nav {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: center;
}

.header-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.2s;
    position: relative;
    border: 1px solid transparent;
}

.header-nav a:hover {
    color: #fff;
    background: rgba(246, 210, 122, 0.08);
    border-color: rgba(246, 210, 122, 0.18);
}

.header-nav a.active {
    color: #fff;
    background: rgba(246, 210, 122, 0.12);
    border-color: rgba(246, 210, 122, 0.24);
}

.header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.lang-select {
    position: relative;
}

.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(246, 210, 122, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.lang-toggle-btn:hover {
    background: rgba(246, 210, 122, 0.08);
    border-color: rgba(246, 210, 122, 0.38);
}

.lang-caret {
    color: #f3e5bf;
    font-size: 11px;
    line-height: 1;
    transition: transform 0.2s;
}

.lang-select.active .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(18, 18, 24, 0.97);
    border: 1px solid rgba(246, 210, 122, 0.28);
    border-radius: 12px;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.lang-select.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(246, 210, 122, 0.10);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(246, 210, 122, 0.12);
}

.lang-option.active {
    background: linear-gradient(90deg, rgba(246, 210, 122, 0.18), rgba(180, 83, 9, 0.10));
}

.lang-option img {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    filter: none;
}

.lang-option span {
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}

.lang-option:hover span,
.lang-option.active span {
    color: #f6d27a;
}

.btn-header {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-account {
    background: transparent;
    color: #d1d5db;
    border: 1px solid rgba(246, 210, 122, 0.20);
}

.btn-account:hover {
    border-color: #f6d27a;
    color: #fff;
    background: rgba(246, 210, 122, 0.08);
}

.btn-mrs-switch {
    background: rgba(246, 210, 122, 0.08);
    color: #d1d5db;
    border: 1px solid rgba(246, 210, 122, 0.18);
    padding: 8px 16px;
    font-size: 13px;
}

.btn-mrs-switch:hover {
    background: rgba(246, 210, 122, 0.14);
    color: #f6d27a;
    border-color: #f6d27a;
}

.btn-cart {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #fff;
    border: 1px solid #d7a94b;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cart:hover {
    background: linear-gradient(135deg, #ffe2a4, #c26a13);
    border-color: #c26a13;
    box-shadow: 0 6px 16px rgba(246, 210, 122, 0.22);
}

.cart-icon {
    font-size: 16px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    pointer-events: none;
}

.mode-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: #f3f4f6;
    cursor: pointer;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.logo-image {
    height: 50px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.logo-image:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

#mainNav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    margin-left: auto;
}

#mainNav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

#mainNav a:hover,
#mainNav a.nav-active {
    color: #fff;
    border-color: rgba(246, 210, 122, 0.28);
    background: linear-gradient(135deg, rgba(246, 210, 122, 0.12), rgba(180, 83, 9, 0.10));
    box-shadow: 0 10px 24px rgba(246, 210, 122, 0.12);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.icon-btn img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
}

.current-lang-flag {
    display: block;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    filter: none;
}

.mode-switch {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.mode-switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #f6d27a, #b45309);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: translateX(0);
}

button.mode-toggle-btn.mistress-mode .mode-switch-slider {
    transform: translateX(20px) !important;
}

button.mode-toggle-btn:active .mode-switch-slider {
    transform: scale(0.95) !important;
}

button.mode-toggle-btn.mistress-mode:active .mode-switch-slider {
    transform: translateX(20px) scale(0.95) !important;
}

/* ================= HERO ================= */
.hero {
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: center;
    width: min(1160px, 100%);
    margin: 0 auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(246, 210, 122, 0.14), transparent 26%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 26%);
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(88px);
    pointer-events: none;
    opacity: 0.28;
    z-index: 0;
}

.hero-blob-left {
    background: rgba(255, 210, 122, 0.24);
    top: -60px;
    left: -100px;
}

.hero-blob-right {
    background: rgba(212, 175, 55, 0.32);
    bottom: -40px;
    right: -90px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
}

/* Layout used by home.html: left column with text, right column with image/card */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 480px);
    gap: 48px;
    align-items: center;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.hero-copy {
    max-width: 680px;
}

.hero-copy .eyebrow {
    display: inline-block;
    font-weight: 700;
    color: #f6d27a;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-copy-text {
    color: #cfc7bf;
    max-width: 520px;
    margin-bottom: 18px;
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.hero-card-image {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(1,1,1,0.7);
    border: 1px solid rgba(255,255,255,0.04);
}

.hero-card-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: saturate(0.85) contrast(0.9) brightness(0.8);
}

.hero-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5,5,7,0.55), rgba(5,5,7,0.15));
}

.hero-card-copy h2,
.hero-card-copy p {
    color: #d7c9b0;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 18px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-card-image {
        max-width: 100%;
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(246, 210, 122, 0.24);
    background: rgba(0, 0, 0, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f6d27a;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(45deg, #fff2cf, #d7a94b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title-accent {
    display: block;
    color: #d7a94b;
    background: none;
    -webkit-text-fill-color: #d7a94b;
}

.hero-sub {
    margin-top: 0;
    color: #bbb;
    font-size: 15px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 6px;
}

.hero-tagline {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(246, 210, 122, 0.20);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe2a4, #c26a13);
    box-shadow: 0 8px 24px rgba(246, 210, 122, 0.24);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(15, 15, 25, 0.6);
    color: #f3f4f6;
    border: 1px solid rgba(246, 210, 122, 0.24);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: #f6d27a;
    color: #f3f4f6;
    background: rgba(246, 210, 122, 0.08);
    transform: translateY(-2px);
}

.btn-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}

/* ================= SECTIONS WRAPPER ================= */
.sections-wrapper {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 32px;
}

/* ================= TIPPING CARD ================= */
.tipping-card {
    margin-top: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 30, 0.75);
    padding: 28px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.tipping-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tipping-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 8px;
}

.tipping-text p {
    font-size: 14px;
    color: #9ca3af;
    max-width: 480px;
}

/* ================= BIO SECTION ================= */
.bio-section {
    margin-top: 32px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
}

.bio-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 12px;
}

.bio-text p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.65;
    margin-bottom: 10px;
}

.bio-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 30, 0.7);
    min-height: 220px;
}

.bio-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

.bio-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 15, 0.8) 0%, rgba(5, 5, 15, 0.15) 50%, transparent 100%);
    pointer-events: none;
}

.bio-image-caption {
    position: absolute;
    bottom: 12px;
    left: 14px;
}

.bio-caption-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f6d27a;
    margin-bottom: 4px;
}

.bio-caption-sub {
    font-size: 11px;
    color: #d1d5db;
}

/* ================= NEWSLETTER SECTION ================= */
.newsletter-section {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(20, 15, 30, 0.85) 100%);
    padding: 40px 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.newsletter-text .eyebrow-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f6d27a;
    margin-bottom: 10px;
}

.newsletter-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #f3f4f6;
    line-height: 1.3;
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.65;
    margin-bottom: 8px;
}

.newsletter-disclaimer {
    font-size: 13px;
    color: #6b7280;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(5, 5, 15, 0.7);
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #f3f4f6;
    letter-spacing: 0.03em;
}

.form-group input {
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(100, 100, 130, 0.5);
    background: rgba(15, 15, 28, 0.8);
    color: #f3f4f6;
    padding: 0 14px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: #4b5563;
}

.form-group input:focus {
    border-color: #f6d27a;
    box-shadow: 0 0 0 2px rgba(246, 210, 122, 0.14);
}

.newsletter-legal {
    font-size: 11px;
    color: #4b5563;
    line-height: 1.5;
    margin-top: -4px;
}

/* ================= HOME PAGE SECTIONS ================= */
.home-collections {
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #fff2cf, #d7a94b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ================= COLLECTION GRID ================= */
.collections-container {
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.products-grid {
    max-width: 1500px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 24px;
    border-radius: 34px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(36, 22, 14, 0.98), rgba(16, 10, 7, 0.99)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.14), transparent 38%),
        radial-gradient(circle at bottom right, rgba(215, 169, 75, 0.10), transparent 42%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 245, 220, 0.05);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}


.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(246, 210, 122, 0.3);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.58), 0 0 42px rgba(246, 210, 122, 0.12);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 244, 214, 0.28), rgba(246, 210, 122, 0.1), rgba(255, 255, 255, 0.04));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


/* ================= IMAGE ================= */
.product-card img {
    width: 100%;
    height: 380px;
    margin: 0;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    border: 1px solid rgba(255, 244, 214, 0.14);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}




/* ================= CARD CONTENT ================= */
.product-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;     /* 👈 horizontaal centreren */
    text-align: center;      /* 👈 tekst centreren */
    gap: 16px;
}


.product-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff2cf;
    margin: 4px 0 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.01em;
}


.product-desc {
    font-size: 14px;
    color: rgba(245, 234, 224, 0.78);
    opacity: 1;
    text-align: center;
    line-height: 1.7;
    max-width: 30ch;
    align-self: center;
}


.price-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.product-price {
    font-size: 54px;
    font-weight: 700;
    color: #fff7e7;
    align-self: center;
    line-height: 1;
    text-shadow: 0 0 28px rgba(246, 210, 122, 0.14);
}

.product-sub {
    font-size: 11px;
    color: #d6c2ae;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.product-items {
    font-size: 15px;
    font-weight: 600;
    color: #f2d3ba;
    align-self: center;
    margin: 4px 0 0 0;
}

.product-videos {
    font-size: 14px;
    font-weight: 600;
    color: #e6bf90;
    align-self: center;
    margin: 2px 0 0 0;
}

/* ================= PRODUCT FEATURES LIST ================= */
.product-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: none;
    align-self: center;
}

.product-features li {
    font-size: 13px;
    color: #f3ebe4;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(90deg, rgba(255,244,214,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(246, 210, 122, 0.12);
    border-radius: 16px;
    cursor: default;
    user-select: none;
}

.product-features li .lock-icon {
    color: #f6d27a;
    filter: brightness(1.1);
    font-size: 14px;
}

/* ================= SECTION HEADER (MEEST POPULAIR) ================= */
.section-header {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0 0 20px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff2cf, #d7a94b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin: 0;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.section-title::before {
    left: -40px;
}

.section-title::after {
    right: -40px;
}





/* ================= TIER SELECTOR ================= */
.tier-selector {
    width: 100%;
    max-width: none;
    margin: 8px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}



.tier {
    min-width: 78px;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(246,210,122,0.12);
    background: rgba(255,255,255,0.03);
    color: #e2cdbd;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}


.tier:hover {
    background: rgba(246,210,122,0.08);
    color: #fff8eb;
    border-color: rgba(246,210,122,0.24);
}


.tier.active {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(246, 210, 122, 0.24);
}



/* ================= BUY BUTTON ================= */
.buy-btn {
    margin-top: 12px;
    width: 100%;
    max-width: none;
    padding: 17px 18px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    align-self: center;
    box-shadow: 0 18px 34px rgba(180, 83, 9, 0.22);
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(246, 210, 122, 0.2);
}

/* ================= RADIO OPTIONS ================= */
.radio-option-label:hover {
    background: rgba(255,255,255,0.08) !important;
}

.radio-options input[type="radio"]:focus {
    outline: 2px solid #f6d27a;
    outline-offset: 2px;
}



/* ================= MODAL ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #16161a;
    padding: 30px;
    border-radius: 18px;
    border: 2px solid #d7a94b;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* ================= CART ================= */
.cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #16161a;
    padding: 30px;
    border-left: 2px solid #d7a94b;
    transition: right 0.4s ease;
    z-index: 150;
}

.cart.show {
    right: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .collections-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collections-container {
        grid-template-columns: 1fr; /* 1 card onder elkaar op telefoon */
        padding: 0 20px;
    }

    .products-grid {
        grid-template-columns: 1fr; /* 1 card onder elkaar op telefoon */
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .sections-wrapper {
        padding: 0 16px;
    }

    .tipping-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tipping-inner .btn-primary {
        align-self: flex-start;
    }

    .bio-section {
        grid-template-columns: 1fr;
    }

    .bio-image-wrap img {
        height: 240px;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-section {
        padding: 28px 20px;
    }

    .topbar {
        padding: 12px 24px;
    }

    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 24px;
        padding: 12px 24px;
    }

    .logo-text {
        font-size: 14px;
    }

    .header-nav {
        display: flex;
        gap: 24px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-header {
        padding: 8px 14px;
        font-size: 12px;
    }

    .lang-toggle-btn {
        padding: 6px 8px;
    }

    .collections-container {
        grid-template-columns: 1fr; /* 1 card onder elkaar op telefoon */
        padding: 0 20px;
    }

    .products-grid {
        grid-template-columns: 1fr; /* 1 card onder elkaar op telefoon */
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .sections-wrapper {
        padding: 0 16px;
    }

    .tipping-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tipping-inner .btn-primary {
        align-self: flex-start;
    }

    .bio-section {
        grid-template-columns: 1fr;
    }

    .bio-image-wrap img {
        height: 240px;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-section {
        padding: 28px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title::before,
    .section-title::after {
        font-size: 18px;
    }

    .section-title::before {
        left: -30px;
    }

    .section-title::after {
        right: -30px;
    }

    .product-features {
        max-width: 100%;
    }
}
/* ================= BUTTONS (GLOBAL) ================= */
.btn {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.primary {
    background: linear-gradient(45deg, #f6d27a, #b45309);
    color: #111;
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(246, 210, 122, 0.28);
}

.secondary {
    background: transparent;
    border: 1px solid #f59e0b;
    color: #f59e0b;
}

.secondary:hover {
    background: rgba(246,210,122,0.12);
    color: #fff;
}

/* ================= MOBILE NAV ================= */
.menu-toggle {
    display: none !important;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f6d27a;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

/* ================= MISTRESS MODE UNIVERSAL STYLES ================= */

/* HEADER & BUTTONS IN MISTRESS MODE */
body.mistress-mode .mode-toggle-btn {
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.12);
}

body.mistress-mode .mode-switch-slider {
    background: linear-gradient(45deg, #d4af37, #8b6914);
}

body.mistress-mode .btn-primary {
    background: linear-gradient(135deg, #d4af37, #8b6914);
    color: #fff;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}

body.mistress-mode .btn-primary:hover {
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.32);
    background: linear-gradient(135deg, #e8c840, #a0780a);
}

body.mistress-mode .btn-outline {
    border-color: rgba(212, 175, 55, 0.24);
    color: #fff;
}

body.mistress-mode .btn-outline:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
}

/* HERO SECTION IN MISTRESS MODE */
body.mistress-mode .hero-pill {
    border-color: rgba(212, 175, 55, 0.24);
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
}

body.mistress-mode .hero-title {
    background: linear-gradient(45deg, #e8c840, #8b6914);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

body.mistress-mode .hero-title-accent {
    color: #d4af37;
    -webkit-text-fill-color: #d4af37;
}

/* SECTION TITLES IN MISTRESS MODE */
body.mistress-mode .section-title {
    background: linear-gradient(90deg, #e8c840, #8b6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* PRODUCT CARDS IN MISTRESS MODE */
body.mistress-mode .product-card {
    border-color: rgba(212, 175, 55, 0.16);
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(139, 105, 20, 0.06)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 38%),
        radial-gradient(circle at bottom right, rgba(139, 105, 20, 0.10), transparent 42%);
}

body.mistress-mode .product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.58), 0 0 42px rgba(212, 175, 55, 0.16);
}

body.mistress-mode .product-card h3 {
    color: #e8c840;
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.12);
}

body.mistress-mode .product-price {
    color: #e8c840;
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.16);
}

body.mistress-mode .tier.active {
    background: linear-gradient(135deg, #d4af37, #8b6914);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.28);
}

body.mistress-mode .buy-btn {
    background: linear-gradient(135deg, #d4af37, #8b6914);
    color: #fff;
    box-shadow: 0 18px 34px rgba(212, 175, 55, 0.26);
}

body.mistress-mode .buy-btn:hover {
    box-shadow: 0 22px 40px rgba(212, 175, 55, 0.32);
}

/* FORM ELEMENTS IN MISTRESS MODE */
body.mistress-mode .form-group input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

body.mistress-mode .newsletter-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(139, 105, 20, 0.06) 100%);
    border-color: rgba(212, 175, 55, 0.18);
}

body.mistress-mode .newsletter-text .eyebrow-label {
    color: #d4af37;
}

/* CARDS AND CONTAINERS IN MISTRESS MODE */
body.mistress-mode .tipping-card {
    border-color: rgba(212, 175, 55, 0.18);
}

body.mistress-mode .bio-image-wrap {
    border-color: rgba(212, 175, 55, 0.18);
}

/* BADGES AND ACCENTS IN MISTRESS MODE */
body.mistress-mode .cart-badge {
    background: linear-gradient(135deg, #d4af37, #8b6914);
    color: #fff;
}

body.mistress-mode .modal-content {
    border-color: #d4af37;
}

body.mistress-mode .cart {
    border-left-color: #d4af37;
}

/* LINKS AND INTERACTIVE ELEMENTS IN MISTRESS MODE */
body.mistress-mode #mainNav a:hover,
body.mistress-mode #mainNav a.nav-active {
    border-color: rgba(212, 175, 55, 0.28);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(139, 105, 20, 0.10));
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.16);
}

/* LANG BUTTON IN MISTRESS MODE */
body.mistress-mode .lang-toggle-btn {
    border-color: rgba(212, 175, 55, 0.22);
}

body.mistress-mode .lang-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.38);
}

body.mistress-mode .lang-dropdown {
    border-color: rgba(212, 175, 55, 0.18);
}

body.mistress-mode .lang-option:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
}

body.mistress-mode .lang-option {
    border-bottom-color: rgba(212, 175, 55, 0.10);
}

/* ================= LANGUAGE SELECT (legacy aliases) ================= */

/* ================= CART FOOTER ================= */
.cart-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #d7a94b;
}

.small-text {
    font-size: 14px;
    color: #ccc;
}

/* ================= BOOKING / CONTACT ================= */
.booking-page-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* ================= CARD ================= */
.card {
    background: rgba(22,22,26,0.9);
    border: 1px solid rgba(246, 210, 122, 0.34);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.booking-card {
    background: rgba(22,22,26,0.9);
    border: 1px solid rgba(246, 210, 122, 0.34);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.booking-card h2 {
    color: #fff2cf;
    text-align: center;
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    margin-left: 2px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(246, 210, 122, 0.34);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #f6d27a;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 15px rgba(246, 210, 122, 0.22);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #888;
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-subtitle {
    text-align: center;
    color: #bbb;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-footer-note {
    margin-top: 25px;
    font-size: 13px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.booking-form .btn {
    margin-top: 10px;
    width: 100%;
    max-width: none;
    padding: 16px;
    font-size: 16px;
}

/* ================= MOBILE BREAKPOINT ================= */
@media (max-width: 768px) {
    .topbar {
        padding: 12px 16px;
    }

    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        padding: 12px 16px;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 12px;
    }

    .header-nav {
        display: flex;
        gap: 16px;
    }

    .header-nav a {
        font-size: 13px;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-header {
        padding: 6px 10px;
        font-size: 11px;
    }

    .mode-toggle-btn {
        padding: 6px 10px;
        gap: 6px;
        font-size: 11px;
        border-radius: 18px;
    }

    .mode-toggle-btn .mode-label {
        font-size: 13px;
        line-height: 1;
    }

    .mode-switch {
        width: 32px;
        height: 18px;
    }

    .mode-switch-slider {
        width: 14px;
        height: 14px;
        transform: translateX(0);
    }

    button.mode-toggle-btn.mistress-mode .mode-switch-slider {
        transform: translateX(14px) !important;
    }

    button.mode-toggle-btn.mistress-mode:active .mode-switch-slider {
        transform: translateX(14px) scale(0.95) !important;
    }

    .header-icons {
        gap: 8px;
    }

    .icon-btn {
        padding: 8px;
        border-radius: 10px;
    }

    .icon-btn img {
        width: 20px;
    }

    .lang-select {
        gap: 6px;
    }

    .lang-select img {
        width: 22px;
        height: 15px;
    }

    /* Contact pagina mobiel */
    .booking-page-container {
        padding: 40px 16px;
    }

    .booking-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .booking-card h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .booking-form {
        gap: 18px;
    }

    .form-group {
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        display: block;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 8px;
    }

    .booking-form textarea {
        min-height: 140px;
        resize: vertical;
    }

    .booking-form .btn {
        padding: 15px;
        font-size: 16px;
        border-radius: 12px;
        margin-top: 5px;
    }

    .contact-footer-note {
        font-size: 12px;
        margin-top: 20px;
        padding: 0 5px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(246, 210, 122, 0.18);
    margin-top: 60px;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #fff2cf;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-tip {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-tip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253,164,175,0.34);
}

.footer-link {
    color: #f6d27a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-link:hover {
    color: #f3f4f6;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-top: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo-small {
    max-width: 80px;
    height: auto;
    margin-top: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.footer-logo-small:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-footer {
        margin-top: 40px;
        padding: 30px 15px 15px;
    }
}

/* ================= LUXURY GOLD THEME ================= */
:root {
    --lux-bg-deep: #0f0b06;
    --lux-bg-panel: #1a1208;
    --lux-gold-1: #f6d27a;
    --lux-gold-2: #d7a94b;
    --lux-gold-3: #fff2cf;
    --lux-red-1: #7a1420;
    --lux-red-2: #4f0d15;
    --lux-red-accent: #d7a94b;
    --lux-red-dark: #b45309;
    --lux-ivory: #fff6df;
    --lux-line: rgba(246, 210, 122, 0.18);
    --lux-shadow: rgba(246, 210, 122, 0.14);
}

body::after {
    background:
        radial-gradient(circle at 22% 18%, rgba(246, 210, 122, 0.13), transparent 54%),
        radial-gradient(circle at 78% 84%, rgba(215, 169, 75, 0.08), transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(255, 242, 207, 0.06), transparent 42%);
    filter: blur(100px);
}

.topbar {
    border-color: rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(24, 15, 10, 0.94), rgba(10, 7, 5, 0.94)),
        radial-gradient(circle at 12% 0%, rgba(246, 210, 122, 0.10), transparent 42%),
        radial-gradient(circle at 88% 100%, rgba(215, 169, 75, 0.07), transparent 44%);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.6), 0 0 30px rgba(246, 210, 122, 0.12);
}

.logo-image,
.hero-title,
.section-title {
    background: linear-gradient(120deg, var(--lux-gold-3), var(--lux-gold-1), #b45309);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

#mainNav a,
.nav-dropdown-toggle,
.mode-toggle-btn,
.icon-btn,
.lang-dropdown {
    border-color: var(--lux-line);
}

#mainNav a,
.nav-dropdown-toggle {
    background: linear-gradient(180deg, rgba(255, 244, 214, 0.07), rgba(255, 255, 255, 0.02));
    color: #f4ebdf;
}

#mainNav a:hover,
#mainNav a.nav-active {
    color: #fff9ee;
    border-color: rgba(246, 210, 122, 0.28);
    background: linear-gradient(135deg, rgba(246, 210, 122, 0.12), rgba(180, 83, 9, 0.12));
    box-shadow: 0 10px 24px rgba(246, 210, 122, 0.10);
}

.product-card,
.booking-card,
.card,
.modal-content,
.cart {
    border: 1px solid rgba(246, 210, 122, 0.12);
    background: linear-gradient(180deg, rgba(28, 19, 10, 0.96), rgba(17, 12, 7, 0.96));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 246, 223, 0.06);
}

.product-card h3,
.product-items,
.product-videos,
.booking-card h2,
.footer-section h3 {
    color: #fff2cf;
}

.product-price {
    color: #fff7e7;
    text-shadow: 0 0 28px rgba(246, 210, 122, 0.14);
}

.product-features li {
    background: linear-gradient(90deg, rgba(255,244,214,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(246, 210, 122, 0.12);
}

.product-features li .lock-icon {
    color: #f6d27a;
}

.buy-btn,
.primary,
.btn-tip {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    box-shadow: 0 18px 34px rgba(180, 83, 9, 0.22);
}

.buy-btn:hover,
.primary:hover,
.btn-tip:hover {
    background: linear-gradient(135deg, #ffe2a4, #c26a13);
    box-shadow: 0 22px 40px rgba(246, 210, 122, 0.2);
}

.secondary {
    border-color: var(--lux-gold-2);
    color: var(--lux-gold-1);
}

.secondary:hover {
    background: linear-gradient(135deg, rgba(246, 210, 122, 0.10), rgba(180, 83, 9, 0.10));
    color: #fff6df;
}

.tier.active {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    box-shadow: 0 12px 24px rgba(246, 210, 122, 0.24);
}

.cart-badge {
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    box-shadow: 0 0 12px rgba(246, 210, 122, 0.32);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    border-color: rgba(246, 210, 122, 0.18);
    background: rgba(246, 210, 122, 0.04);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #f6d27a;
    box-shadow: 0 0 16px rgba(246, 210, 122, 0.18);
}

.site-footer {
    border-top-color: var(--lux-line);
    background:
        linear-gradient(180deg, rgba(10, 8, 7, 0.96), rgba(6, 5, 5, 0.98)),
        radial-gradient(circle at 20% 0%, rgba(246, 210, 122, 0.08), transparent 45%);
}

.footer-link {
    color: #f6d27a;
}

.footer-link:hover {
    color: #fff2cf;
}

.menu-toggle span {
    background: linear-gradient(90deg, var(--lux-gold-1), var(--lux-red-1));
}

.mode-toggle-btn .mode-label.active {
    color: var(--lux-gold-1);
}

.cart-footer {
    border-top: 1px solid var(--lux-line);
}

/* ================= AGE VERIFICATION MODAL ================= */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    overflow-y: auto;
    z-index: 9999;
}

.age-verification-modal.hidden {
    display: none;
}

.age-verification-content {
    background: linear-gradient(135deg, rgba(20, 10, 40, 0.95) 0%, rgba(40, 15, 60, 0.95) 100%);
    border: 2px solid var(--lux-gold-1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    margin: auto;
    text-align: center;
    box-shadow: 0 25px 60px rgba(246, 210, 122, 0.2);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verification-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--lux-gold-1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-verification-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

#ageVerificationForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.age-verification-content .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.age-verification-content .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lux-gold-1);
    text-align: left;
}

.age-verification-content .form-group input {
    padding: 12px 16px;
    border: 2px solid var(--lux-gold-1);
    background: rgba(10, 5, 20, 0.5);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.age-verification-content .form-group input:focus {
    outline: none;
    background: rgba(20, 10, 40, 0.8);
    box-shadow: 0 0 15px rgba(246, 210, 122, 0.3);
    border-color: #fff2cf;
}

.age-verification-content .btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--lux-gold-1), #d7a94b);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.age-verification-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(246, 210, 122, 0.4);
}

.age-verification-content .btn:active {
    transform: translateY(0);
}

.age-verification-disclaimer {
    font-size: 13px;
    color: #b0b0b0;
    margin-top: 20px;
    font-style: italic;
}

.age-verification-error {
    background: rgba(255, 50, 50, 0.1);
    border: 2px solid #ff3232;
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: slideUp 0.3s ease-out;
}

@media (max-width: 600px) {
    .age-verification-modal {
        padding: 16px;
        align-items: flex-start;
    }

    .age-verification-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .age-verification-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .age-verification-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #ageVerificationForm {
        flex-flow: row wrap;
        gap: 12px;
        margin: 22px 0;
    }

    #ageVerificationForm .form-group {
        flex: 1 1 0;
        min-width: 0;
        gap: 6px;
    }

    #ageVerificationForm .form-group label {
        font-size: 12px;
        text-align: center;
    }

    .age-verification-content .form-group input {
        width: 100%;
        padding: 12px 6px;
        text-align: center;
    }

    #ageVerificationForm .btn,
    .age-verification-content .btn {
        flex: 1 0 100%;
        width: 100%;
        margin-top: 6px;
    }

    .age-verification-disclaimer {
        font-size: 12px;
        margin-top: 14px;
    }
}

/* ================= HOME PAGE REDESIGN ================= */
.home-page {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at 14% 14%, rgba(246, 210, 122, 0.18), transparent 28%),
        radial-gradient(circle at 84% 10%, rgba(120, 19, 30, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(6, 5, 7, 0.66), rgba(6, 5, 7, 0.9)),
        url('../images/backgrounds/Background_Roxy.jpeg') center top / cover no-repeat fixed;
}

.home-page::before {
    background: linear-gradient(180deg, rgba(7, 6, 8, 0.28), rgba(7, 6, 8, 0.72));
}

.home-page::after {
    background:
        radial-gradient(circle at 20% 18%, rgba(246, 210, 122, 0.14), transparent 42%),
        radial-gradient(circle at 78% 82%, rgba(215, 169, 75, 0.08), transparent 48%),
        radial-gradient(circle at 50% 5%, rgba(255, 242, 207, 0.06), transparent 32%);
    filter: blur(110px);
}

.home-page .topbar {
    width: calc(100% - 32px);
    max-width: 1400px;
    margin: 14px auto 0;
    padding: 14px 20px;
    border-radius: 999px;
}

.home-page .home-main {
    padding-bottom: 84px;
}

.home-page .hero {
    padding: 44px 20px 16px;
}

.home-page .hero-tribute-row {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 24px 16px;
}

.home-page .hero-tribute-row .tribute-card {
    flex: 1;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-page .hero-tribute-row .tribute-card .tribute-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.home-page .home-portrait-hero {
    max-width: 260px;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .home-page .hero-tribute-row {
        flex-direction: column;
        align-items: center;
        padding: 24px 16px 16px;
    }
    .home-page .home-portrait-hero {
        max-width: 100%;
        width: 100%;
    }
}

.home-page .hero-shell,
.home-page .sections-wrapper,
.home-page .collections-showcase {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.home-page .hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.home-page .hero-inner {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: clamp(26px, 4vw, 44px);
    border-radius: 34px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(16, 13, 16, 0.92), rgba(9, 8, 12, 0.84)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.1), transparent 34%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 246, 223, 0.06);
}

.home-page .hero-pill,
.home-page .panel-eyebrow,
.home-page .section-eyebrow,
.home-page .quick-link-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 210, 122, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #f6d27a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .hero-title,
.home-page .hero-portrait-copy h2,
.home-page .quick-link-copy h3,
.home-page .spotlight-copy h2,
.home-page .collections-intro h2,
.home-page .newsletter-text h2 {
    font-family: 'Cormorant Garamond', serif;
}

.home-page .hero-title {
    font-size: clamp(3.6rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.home-page .hero-title-accent {
    margin-top: 4px;
    color: #f0c56a;
    -webkit-text-fill-color: #f0c56a;
}

.home-page .hero-sub {
    max-width: 42rem;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 237, 228, 0.8);
}

.home-page .hero-cta {
    justify-content: flex-start;
    gap: 14px;
}

.home-page .btn-primary,
.home-page .btn-outline {
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 14px;
}

.home-page .hero-tagline {
    color: rgba(230, 212, 192, 0.68);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-page .hero-badges,
.home-page .hero-stat-row,
.home-page .tribute-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-page .hero-badge,
.home-page .hero-stat,
.home-page .tribute-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(249, 238, 224, 0.84);
    font-size: 12px;
}

.home-page .hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-page .hero-portrait-card,
.home-page .quick-link-card,
.home-page .tribute-card,
.home-page .spotlight-section,
.home-page .newsletter-section {
    border-radius: 30px;
    border: 1px solid rgba(246, 210, 122, 0.14);
    background:
        linear-gradient(180deg, rgba(16, 13, 16, 0.9), rgba(9, 8, 12, 0.8)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.08), transparent 30%);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 246, 223, 0.05);
}

.home-page .hero-portrait-card {
    overflow: hidden;
}

.home-page .hero-portrait-media {
    position: relative;
}

.home-page .hero-portrait-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.home-page .hero-portrait-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(10, 8, 10, 0.55)),
        linear-gradient(0deg, rgba(10, 8, 10, 0.84), rgba(10, 8, 10, 0.05));
    pointer-events: none;
}

.home-page .hero-portrait-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.home-page .hero-portrait-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    color: #fff0cb;
}

.home-page .hero-portrait-copy p,
.home-page .quick-link-copy p,
.home-page .collections-intro p,
.home-page .newsletter-text p {
    color: rgba(244, 236, 226, 0.74);
    line-height: 1.7;
}

.home-page .quick-link-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-page .quick-link-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-page .quick-link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 210, 122, 0.24);
    box-shadow: 0 32px 58px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(246, 210, 122, 0.06);
}

.home-page .quick-link-index {
    padding-top: 2px;
    color: rgba(244, 229, 208, 0.46);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.home-page .quick-link-label {
    margin-bottom: 10px;
}

.home-page .quick-link-copy h3 {
    margin: 0 0 6px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.92;
    color: #fff4dc;
}

.home-page .quick-link-copy p {
    font-size: 13px;
}

.home-page .home-sections {
    padding: 0 32px;
    margin-top: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.home-page #tipping {
    scroll-margin-top: 120px;
}

.home-page .tribute-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 30px 32px;
}

.home-page .tipping-text h2,
.home-page .spotlight-copy h2,
.home-page .collections-intro h2,
.home-page .newsletter-text h2 {
    background: linear-gradient(120deg, #fff2cf, #f6d27a, #b45309);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-page .tipping-text h2 {
    margin-top: 10px;
    font-size: clamp(2.1rem, 4vw, 3rem);
}

.home-page .tribute-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.home-page .spotlight-section {
    margin-top: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: center;
}

.home-page .spotlight-image-wrap {
    min-height: 470px;
    border-radius: 26px;
}

.home-page .spotlight-image-wrap img {
    height: 100%;
    min-height: 470px;
}

.home-page .spotlight-copy {
    padding: 22px 12px 22px 10px;
}

.home-page .spotlight-name {
    margin: 14px 0 8px;
    color: rgba(244, 229, 208, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .spotlight-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.97;
    margin-bottom: 14px;
}

.home-page .spotlight-copy p {
    max-width: 60ch;
}

.home-page .spotlight-points {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.home-page .spotlight-point {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f7ede2;
    line-height: 1.6;
}

.home-page .collections-showcase {
    padding: 8px 32px 0;
}

.home-page .collections-intro {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.home-page .collections-intro .section-eyebrow {
    margin: 0 auto 12px;
}

.home-page .collections-intro h2 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 0.98;
    margin-bottom: 12px;
}

.home-page .collections-container {
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-page .product-card {
    min-height: 100%;
    padding: 18px 18px 22px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(26, 18, 13, 0.96), rgba(12, 9, 8, 0.98)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.11), transparent 34%);
}

.home-page .product-card img {
    height: 330px;
    border-radius: 22px;
}

.home-page .product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 0.92;
    margin-top: 10px;
}

.home-page .product-desc {
    max-width: 34ch;
}

.home-page .newsletter-section {
    padding: 36px;
    margin-bottom: 0;
}

.home-page .newsletter-inner {
    gap: 32px;
}

.home-page .newsletter-form {
    background: rgba(9, 8, 12, 0.76);
}

@media (max-width: 1180px) {
    .home-page .hero-shell {
        grid-template-columns: 1fr;
    }

    .home-page .hero-inner {
        align-items: center;
        text-align: center;
    }

    .home-page .hero-cta,
    .home-page .hero-badges {
        justify-content: center;
    }

    .home-page .hero-side {
        max-width: 920px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .home-page .topbar {
        border-radius: 30px;
    }

    .home-page .quick-link-panel,
    .home-page .collections-container {
        grid-template-columns: 1fr 1fr;
    }

    .home-page .tribute-card,
    .home-page .spotlight-section,
    .home-page .newsletter-inner {
        grid-template-columns: 1fr;
    }

    .home-page .tribute-actions {
        justify-content: flex-start;
    }

    .home-page .spotlight-copy {
        padding: 12px 6px 18px;
    }
}

@media (max-width: 640px) {
    .home-page .topbar {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 14px;
        border-radius: 28px;
    }

    .home-page .hero {
        padding: 26px 10px 10px;
    }

    .home-page .hero-inner,
    .home-page .hero-portrait-card,
    .home-page .quick-link-card,
    .home-page .tribute-card,
    .home-page .spotlight-section,
    .home-page .newsletter-section,
    .home-page .product-card {
        border-radius: 24px;
    }

    .home-page .hero-inner {
        padding: 24px 18px;
    }

    .home-page .hero-title {
        font-size: 3rem;
    }

    .home-page .hero-badge,
    .home-page .hero-stat,
    .home-page .tribute-tag {
        width: 100%;
        justify-content: center;
    }

    .home-page .hero-portrait-media,
    .home-page .hero-portrait-media img,
    .home-page .spotlight-image-wrap,
    .home-page .spotlight-image-wrap img {
        min-height: 360px;
    }

    .home-page .quick-link-panel,
    .home-page .collections-container {
        grid-template-columns: 1fr;
    }

    .home-page .home-sections,
    .home-page .collections-showcase {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-page .newsletter-section {
        padding: 24px;
    }

    .home-page .product-card img {
        height: 300px;
    }
}


/* ================= SITE REFRESH ================= */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

.container {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
}

.logo-image {
    background: none;
    -webkit-text-fill-color: initial;
    color: initial;
}

.topbar {
    width: min(1440px, calc(100% - 32px));
    margin: 14px auto 0;
    padding: 14px 18px;
    border-radius: 32px;
    gap: 14px;
    justify-content: space-between;
    overflow: visible;
}

#mainNav {
    flex: 1 1 680px;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

#mainNav a {
    min-height: 42px;
    padding: 10px 16px;
}

.mode-toggle-btn,
.icon-btn,
.lang-toggle-btn {
    min-height: 44px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.mode-toggle-btn:hover,
.icon-btn:hover,
.lang-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.mode-toggle-btn {
    padding: 8px 14px;
}

.header-icons {
    gap: 10px;
    margin-left: auto;
}

.icon-btn img {
    width: 18px;
    height: 18px;
}

.cart-badge.hidden {
    display: none;
}

.site-footer,
.footer {
    background:
        linear-gradient(180deg, rgba(10, 8, 7, 0.96), rgba(6, 5, 5, 0.98)),
        radial-gradient(circle at 20% 0%, rgba(246, 210, 122, 0.08), transparent 45%);
    border-top: 1px solid rgba(246, 210, 122, 0.18);
    margin-top: 60px;
    padding: 40px 20px 20px;
}

.footer .footer-content,
.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

body:not(.home-page) .hero {
    min-height: auto;
    width: min(1440px, calc(100% - 32px));
    margin: 26px auto 0;
    padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 44px);
    border-radius: 34px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(18, 14, 12, 0.95), rgba(9, 8, 10, 0.92)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(122, 20, 32, 0.16), transparent 38%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 246, 223, 0.05);
}

body:not(.home-page) .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

body:not(.home-page) .hero-sub {
    max-width: 54rem;
    margin: 12px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(243, 237, 230, 0.72);
}

body:not(.home-page) .products-grid,
body:not(.home-page) .collections-container {
    width: min(1440px, calc(100% - 32px));
    margin: 24px auto 88px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

body:not(.home-page) .product-card {
    min-height: 100%;
    padding: 18px 18px 22px;
    border-radius: 30px;
}

body:not(.home-page) .product-card img {
    height: 340px;
    border-radius: 22px;
}

body:not(.home-page) .product-card-content {
    padding: 24px 12px 8px;
}

body:not(.home-page) .product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 0.94;
}

body:not(.home-page) .product-desc {
    max-width: 34ch;
}

body:not(.home-page) .product-price {
    font-size: clamp(2.9rem, 8vw, 3.8rem);
}

.modal-content {
    width: min(500px, calc(100% - 32px));
    max-width: 500px;
    padding: 28px;
    border-radius: 26px;
}

.booking-page-container {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 28px 16px 88px;
}

.booking-card {
    max-width: 640px;
    padding: clamp(28px, 5vw, 44px);
    border-radius: 30px;
}

.booking-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.95;
}

.contact-subtitle,
.contact-footer-note,
.booking-form label {
    color: rgba(243, 237, 230, 0.72);
}

.booking-form {
    gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    min-height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.booking-form textarea {
    min-height: 160px;
}

.auth-container {
    width: min(520px, calc(100% - 32px));
    margin: 54px auto 96px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 30px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(22, 17, 14, 0.96), rgba(10, 9, 11, 0.92)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.1), transparent 34%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 246, 223, 0.05);
}

.auth-container h2 {
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    line-height: 0.95;
    color: #fff1d2;
}

.auth-container p {
    color: rgba(243, 237, 230, 0.68);
    text-align: center;
    margin-bottom: 26px;
    line-height: 1.7;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form .form-group {
    gap: 8px;
}

.auth-form label {
    color: #f3ebe0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.auth-form input {
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(246, 210, 122, 0.48);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(246, 210, 122, 0.1);
}

.auth-btn {
    min-height: 54px;
    margin-top: 8px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    box-shadow: 0 18px 34px rgba(180, 83, 9, 0.22);
}

.auth-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(246, 210, 122, 0.2);
    filter: brightness(1.03);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
    text-align: center;
}

.auth-links a {
    color: #f6d27a;
    text-decoration: none;
    transition: color 0.22s ease;
}

.auth-links a:hover {
    color: #fff1d2;
}

.auth-divider,
.password-hint {
    color: rgba(243, 237, 230, 0.46);
}

.password-hint {
    font-size: 12px;
    margin-top: -2px;
}

.auth-container .error-message,
.auth-container .success-message {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    display: none;
}

.auth-container .error-message {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.auth-container .success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(134, 239, 172, 0.32);
    color: #bbf7d0;
}

.account-shell {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto 96px;
}

.account-logout {
    margin-top: 20px;
}

.account-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 210, 122, 0.12);
    border-radius: 20px;
}

.tab-btn {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 241, 210, 0.55);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(246, 210, 122, 0.08);
    color: #fff1d2;
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(246, 210, 122, 0.18), rgba(180, 83, 9, 0.14));
    border-color: rgba(246, 210, 122, 0.35);
    color: #f6d27a;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15);
}

.tab-content {
    display: none;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(246, 210, 122, 0.12);
    background:
        linear-gradient(180deg, rgba(22, 17, 14, 0.96), rgba(10, 9, 11, 0.92)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.08), transparent 36%);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 246, 223, 0.05);
}

.tab-content.active {
    display: block;
    animation: surfaceFadeIn 0.24s ease;
}

@keyframes surfaceFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-section-title {
    margin: 0 0 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 0.96;
    color: #fff1d2;
}

.purchase-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px;
    margin-bottom: 18px;
    border-radius: 24px;
    border: 1px solid rgba(246, 210, 122, 0.12);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.purchase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 210, 122, 0.22);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.purchase-info h3 {
    margin: 0 0 10px;
    color: #fff1d2;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.purchase-info p {
    margin: 4px 0;
    color: rgba(243, 237, 230, 0.68);
    font-size: 14px;
}

.purchase-info .badge {
    display: inline-flex;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(246, 210, 122, 0.12);
    color: #f6d27a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.purchase-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 12px 20px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #f3ebe0;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 210, 122, 0.28);
    background: rgba(246, 210, 122, 0.08);
}

.empty-state {
    padding: 56px 24px;
    text-align: center;
    color: rgba(243, 237, 230, 0.62);
}

.empty-state h3 {
    margin-bottom: 12px;
    color: #fff1d2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
}

.bio-page-shell {
    width: min(1400px, calc(100% - 32px));
    margin: 26px auto 92px;
}

.mj-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 26px;
    align-items: start;
    max-width: none;
    margin: 0;
    padding: 0;
}

.mj-story-card,
.mj-slideshow {
    padding: clamp(24px, 4vw, 34px);
    border-radius: 30px;
}

.bio-page-title {
    margin-bottom: 14px !important;
    font-size: clamp(2.8rem, 6vw, 4.2rem) !important;
    text-align: left;
}

.mj-text h3 {
    margin-bottom: 18px;
    color: rgba(246, 210, 122, 0.8);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mj-text p {
    margin-bottom: 14px;
    color: rgba(243, 237, 230, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

.mj-slideshow {
    position: sticky;
    top: 104px;
}

.slideshow-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.36);
}

.prev,
.next {
    position: absolute;
    top: calc(50% - 24px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(246, 210, 122, 0.32);
    border-radius: 50%;
    background: rgba(8, 8, 10, 0.62);
    color: #fff1d2;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    backdrop-filter: blur(10px);
}

.prev:hover,
.next:hover {
    transform: scale(1.04);
    border-color: rgba(246, 210, 122, 0.54);
    background: rgba(18, 14, 12, 0.88);
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.dots-container {
    margin-top: 18px;
    text-align: center;
}

.dot {
    width: 24px;
    height: 8px;
    margin: 0 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.16);
    display: inline-block;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.dot.active {
    background: linear-gradient(90deg, #f6d27a, #b45309);
    border-color: rgba(246, 210, 122, 0.42);
    transform: translateY(-1px);
}

.slide-controls {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.slide-counter {
    color: rgba(243, 237, 230, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.slide-pause-btn {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(246, 210, 122, 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.slide-pause-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(180, 83, 9, 0.22);
}

.secret-store-hero,
.secret-store-products,
.secret-store-cta {
    width: min(1440px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.secret-store-hero {
    margin-top: 26px;
    padding: clamp(40px, 6vw, 76px) clamp(20px, 4vw, 44px);
    border-radius: 34px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(18, 14, 12, 0.95), rgba(9, 8, 10, 0.92)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(122, 20, 32, 0.18), transparent 38%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 246, 223, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secret-store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 22%, rgba(246, 210, 122, 0.16), transparent 36%),
        radial-gradient(circle at 84% 72%, rgba(122, 20, 32, 0.2), transparent 30%);
    pointer-events: none;
}

.secret-store-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.secret-store-logo {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 210, 122, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #f6d27a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.secret-store-title {
    margin: 18px 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: none;
    color: #fff1d2;
}

.secret-store-subtitle {
    margin: 0 0 14px;
    color: rgba(246, 210, 122, 0.9);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.secret-store-description {
    max-width: 52rem;
    margin: 0 auto;
    color: rgba(243, 237, 230, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

.secret-store-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 0;
}

.secret-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 210, 122, 0.16);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(26, 18, 13, 0.96), rgba(12, 9, 8, 0.98)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.11), transparent 34%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 246, 223, 0.05);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.secret-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 210, 122, 0.28);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42), 0 0 34px rgba(246, 210, 122, 0.1);
}

.secret-product-image {
    width: calc(100% - 36px);
    height: 220px;
    margin: 18px 18px 0;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(34, 24, 18, 0.96), rgba(12, 9, 8, 0.98)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.14), transparent 36%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.secret-product-content {
    padding: 22px 22px 24px;
}

.secret-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(246, 210, 122, 0.14);
    color: #f6d27a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.secret-product-title {
    margin: 14px 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 0.94;
    text-transform: none;
    color: #fff1d2;
}

.secret-product-description {
    min-height: 0;
    color: rgba(243, 237, 230, 0.74);
    line-height: 1.7;
}

.secret-product-price {
    margin: 18px 0 16px;
    color: #fff6df;
    font-size: 2.4rem;
    font-weight: 700;
}

.secret-store-button {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #f6d27a, #b45309);
    color: #1a120d;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 18px 34px rgba(180, 83, 9, 0.22);
}

.secret-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(246, 210, 122, 0.2);
}

.secret-store-cta {
    margin-top: 0;
    margin-bottom: 92px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(246, 210, 122, 0.14);
    background:
        linear-gradient(180deg, rgba(18, 14, 12, 0.95), rgba(9, 8, 10, 0.92)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.08), transparent 36%);
    text-align: center;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 246, 223, 0.05);
}

.secret-store-cta-title {
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.95;
    text-transform: none;
    color: #fff1d2;
}

.secret-store-cta-text {
    max-width: 44rem;
    margin: 0 auto 22px;
    color: rgba(243, 237, 230, 0.72);
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .topbar {
        padding: 14px 16px;
    }

    #mainNav {
        display: none;
        order: 5;
        width: 100%;
        flex: 0 0 100%;
        margin-top: 6px;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(246, 210, 122, 0.14);
        background:
            linear-gradient(180deg, rgba(22, 17, 14, 0.96), rgba(10, 9, 11, 0.92)),
            radial-gradient(circle at top left, rgba(246, 210, 122, 0.1), transparent 36%);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
        justify-content: flex-start;
        gap: 10px;
    }

    #mainNav.active {
        display: flex;
    }

    #mainNav a {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
        min-height: 44px;
        align-items: center;
    }

    .menu-toggle {
        order: 4;
        display: inline-flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        min-width: 44px;
        min-height: 44px;
        padding: 0 11px;
        margin-left: 0;
        border: 1px solid rgba(246, 210, 122, 0.18);
        border-radius: 14px;
        background: rgba(0, 0, 0, 0.35);
    }

    .mode-toggle-btn {
        order: 2;
        margin-left: auto;
    }

    .header-icons {
        order: 3;
        margin-left: 0;
    }

    .auth-container,
    .account-shell,
    .bio-page-shell,
    .secret-store-hero,
    .secret-store-products,
    .secret-store-cta,
    body:not(.home-page) .hero,
    body:not(.home-page) .products-grid,
    body:not(.home-page) .collections-container,
    .container {
        width: calc(100% - 24px);
    }

    .mj-container {
        grid-template-columns: 1fr;
    }

    .mj-slideshow {
        position: static;
    }
}

@media (max-width: 768px) {
    .topbar {
        width: calc(100% - 20px);
        padding: 12px 14px;
        border-radius: 28px;
    }

    .mode-toggle-btn {
        min-height: 40px;
        padding: 6px 10px;
    }

    .header-icons {
        gap: 8px;
    }

    body:not(.home-page) .hero,
    .auth-container,
    .tab-content,
    .secret-store-cta,
    .booking-card,
    .mj-story-card,
    .mj-slideshow {
        border-radius: 24px;
    }

    body:not(.home-page) .product-card img,
    .secret-product-image {
        height: 300px;
    }

    .secret-store-products {
        grid-template-columns: 1fr;
    }

    .purchase-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchase-actions {
        width: 100%;
    }

    .purchase-actions .btn-primary,
    .purchase-actions .btn-secondary {
        flex: 1 1 180px;
    }
}

/* ================= MODERN PREMIUM TUNE ================= */
:root {
    --modern-bg: #091019;
    --modern-surface: rgba(14, 21, 30, 0.78);
    --modern-surface-strong: rgba(12, 17, 24, 0.94);
    --modern-surface-soft: rgba(255, 255, 255, 0.04);
    --modern-line: rgba(255, 255, 255, 0.08);
    --modern-line-strong: rgba(212, 175, 55, 0.24);
    --modern-text: #f7f8fb;
    --modern-muted: #aab4c2;
    --modern-accent: #d4af37;
    --modern-accent-soft: #f6d27a;
    --modern-shadow: 0 28px 90px rgba(4, 7, 12, 0.42);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--modern-text);
    background:
        radial-gradient(circle at 12% 14%, rgba(212, 175, 55, 0.12), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(212, 175, 55, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(8, 11, 16, 0.74), rgba(8, 11, 16, 0.92)),
        url('../images/backgrounds/Background_Roxy.jpeg') center / cover no-repeat fixed;
}

body::before {
    background: linear-gradient(180deg, rgba(7, 10, 15, 0.34), rgba(7, 10, 15, 0.76));
}

body::after {
    background:
        radial-gradient(circle at 20% 16%, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at 80% 76%, rgba(180, 140, 40, 0.10), transparent 30%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05), transparent 28%);
    filter: blur(132px);
}

body h1,
body h2,
body h3,
body .hero-title,
body .section-title,
body .account-section-title,
body .secret-store-title,
body .links-title,
body .guestbook-title,
body .guestbook-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-title,
.section-title,
.account-section-title,
.secret-store-title,
.secret-store-cta-title,
.links-title,
.links-cta h2,
.guestbook-title,
.guestbook-cta h2 {
    background: linear-gradient(120deg, #ffffff, #fff2cf 48%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.05em;
}

.section-title::before,
.section-title::after {
    display: none;
}

.topbar {
    background:
        linear-gradient(180deg, rgba(14, 21, 30, 0.88), rgba(9, 14, 20, 0.82)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 34%);
    border: 1px solid var(--modern-line);
    border-radius: 28px;
    box-shadow: var(--modern-shadow);
    backdrop-filter: blur(22px) saturate(160%);
}

#mainNav a,
.mode-toggle-btn,
.icon-btn,
.lang-toggle-btn {
    background: var(--modern-surface-soft);
    border-color: var(--modern-line);
}

#mainNav a {
    color: rgba(247, 248, 251, 0.86);
    font-weight: 600;
}

#mainNav a:hover,
#mainNav a.nav-active {
    color: #fff;
    border-color: var(--modern-line-strong);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.05));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mode-switch {
    background: rgba(255, 255, 255, 0.09);
}

.mode-switch-slider {
    background: linear-gradient(135deg, var(--modern-accent-soft), var(--modern-accent));
}

.btn,
.btn-primary,
.buy-btn,
.btn-tip,
.primary,
.auth-btn,
.secret-store-button {
    border-radius: 16px;
}

.btn-primary,
.buy-btn,
.btn-tip,
.primary,
.auth-btn,
.secret-store-button {
    background: linear-gradient(135deg, var(--modern-accent-soft), var(--modern-accent));
    color: #18120f;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.24);
}

.btn-primary:hover,
.buy-btn:hover,
.btn-tip:hover,
.primary:hover,
.auth-btn:hover,
.secret-store-button:hover {
    box-shadow: 0 22px 44px rgba(212, 175, 55, 0.28);
}

.btn-outline,
.secondary,
.btn-secondary {
    border-color: var(--modern-line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--modern-text);
}

.btn-outline:hover,
.secondary:hover,
.btn-secondary:hover {
    border-color: var(--modern-line-strong);
    background: rgba(212, 175, 55, 0.08);
}

body:not(.home-page) .hero,
body:not(.home-page) .product-card,
body:not(.home-page) .card,
body:not(.home-page) .booking-card,
.modal-content,
.cart,
.auth-container,
.tab-content,
.mj-story-card,
.mj-slideshow,
.secret-product-card,
.secret-store-cta,
body .links-category,
body .guestbook-form-container,
body .guestbook-entry,
body .guestbook-cta {
    border-color: var(--modern-line);
    background:
        linear-gradient(180deg, rgba(14, 21, 30, 0.90), rgba(9, 14, 20, 0.86)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34%);
    box-shadow: var(--modern-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body:not(.home-page) .hero {
    text-align: left;
    padding: clamp(34px, 5vw, 56px) clamp(24px, 4vw, 42px);
}

body:not(.home-page) .hero-title {
    max-width: 14ch;
    font-size: clamp(2.9rem, 6vw, 5rem);
    line-height: 0.9;
}

body:not(.home-page) .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 46rem;
    font-size: 15px;
    color: var(--modern-muted);
}

body:not(.home-page) .product-card,
.secret-product-card {
    border-radius: 28px;
}

body:not(.home-page) .product-card img,
.secret-product-image,
.mySlides img {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.30);
}

body:not(.home-page) .product-card h3,
.secret-product-title,
.purchase-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.04em;
}

.product-desc,
.product-features li,
.contact-subtitle,
.contact-footer-note,
.secret-product-description,
.secret-store-description,
.secret-store-cta-text,
.purchase-info p,
.empty-state,
.mj-text p,
body .links-subtitle,
body .link-content p,
body .guestbook-subtitle,
body .form-description,
body .guestbook-cta p {
    color: var(--modern-muted);
}

.product-features li,
.spotlight-point {
    border-color: var(--modern-line);
    background: rgba(255, 255, 255, 0.04);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.auth-form input,
.age-verification-content .form-group input,
body .guestbook-form input,
body .guestbook-form textarea {
    border-color: var(--modern-line);
    background: rgba(255, 255, 255, 0.04);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.auth-form input:focus,
.age-verification-content .form-group input:focus,
body .guestbook-form input:focus,
body .guestbook-form textarea:focus {
    border-color: var(--modern-line-strong);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
}

.lang-dropdown,
.age-verification-content {
    background:
        linear-gradient(180deg, rgba(14, 21, 30, 0.96), rgba(9, 14, 20, 0.92)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34%);
}

.lang-dropdown,
.age-verification-content,
.age-verification-content .form-group input {
    border-color: var(--modern-line);
}

.age-verification-content {
    box-shadow: var(--modern-shadow);
}

.home-page {
    background:
        radial-gradient(circle at 12% 14%, rgba(212, 175, 55, 0.16), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(180, 140, 40, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(7, 10, 14, 0.76), rgba(7, 10, 14, 0.94)),
        url('../images/backgrounds/Background_Roxy.jpeg') center top / cover no-repeat fixed;
}

.home-page .topbar {
    border-radius: 28px;
}

.home-page .hero-inner,
.home-page .hero-portrait-card,
.home-page .quick-link-card,
.home-page .tribute-card,
.home-page .spotlight-section,
.home-page .newsletter-section,
.home-page .product-card {
    border-color: var(--modern-line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(15, 22, 30, 0.90), rgba(9, 14, 20, 0.84)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 32%);
    box-shadow: var(--modern-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-page .hero-title,
.home-page .hero-portrait-copy h2,
.home-page .quick-link-copy h3,
.home-page .spotlight-copy h2,
.home-page .collections-intro h2,
.home-page .newsletter-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.05em;
}

.home-page .hero-title {
    font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.home-page .hero-sub,
.home-page .hero-tagline,
.home-page .hero-portrait-copy p,
.home-page .quick-link-copy p,
.home-page .collections-intro p,
.home-page .newsletter-text p,
.home-page .spotlight-copy p {
    color: var(--modern-muted);
}

.home-page .hero-pill,
.home-page .panel-eyebrow,
.home-page .section-eyebrow,
.home-page .quick-link-label,
.home-page .hero-badge,
.home-page .hero-stat,
.home-page .tribute-tag {
    border-color: var(--modern-line);
    background: rgba(255, 255, 255, 0.04);
}

.home-page .quick-link-card:hover,
.home-page .product-card:hover,
.secret-product-card:hover,
body .links-category:hover,
body .guestbook-entry:hover {
    border-color: var(--modern-line-strong);
}

body .links-title,
body .links-cta h2,
body .guestbook-title,
body .guestbook-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
}

body .links-subtitle,
body .guestbook-subtitle {
    max-width: 42rem;
}

body .links-category,
body .guestbook-form-container,
body .guestbook-cta,
body .guestbook-entry {
    border-color: var(--modern-line);
}

body .link-item {
    border-color: var(--modern-line);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
}

body .link-item:hover {
    border-color: var(--modern-line-strong);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

body .link-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--modern-line);
}

body .link-arrow,
body .category-title,
body .premium-badge,
body .section-divider,
body .guestbook-form label {
    color: var(--modern-accent-soft);
}

body .guestbook-entry {
    background: rgba(255, 255, 255, 0.03);
}

body .guestbook-entry:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.mistress-mode .hero-title,
body.mistress-mode .section-title,
body.mistress-mode .account-section-title,
body.mistress-mode .secret-store-title,
body.mistress-mode .guestbook-title,
body.mistress-mode .links-title {
    background: linear-gradient(120deg, #fff7fb, #ffc1d4 44%, #ff7ea4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.mistress-mode .btn-primary,
body.mistress-mode .buy-btn,
body.mistress-mode .auth-btn,
body.mistress-mode .secret-store-button,
body.mistress-mode .btn-tip,
body.mistress-mode .primary {
    background: linear-gradient(135deg, #ffc0d3, #ff7ea4);
    color: #1f1017;
    box-shadow: 0 18px 40px rgba(255, 126, 164, 0.26);
}

body.mistress-mode #mainNav a:hover,
body.mistress-mode #mainNav a.nav-active,
body.mistress-mode .btn-outline:hover,
body.mistress-mode .secondary:hover,
body.mistress-mode .btn-secondary:hover {
    border-color: rgba(255, 126, 164, 0.28);
    background: linear-gradient(135deg, rgba(255, 126, 164, 0.12), rgba(255, 255, 255, 0.05));
}

@media (max-width: 1100px) {
    .topbar {
        row-gap: 10px;
    }

    body:not(.home-page) .hero {
        text-align: center;
    }

    body:not(.home-page) .hero-title,
    body:not(.home-page) .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .topbar {
        border-radius: 24px;
    }

    body:not(.home-page) .hero,
    .auth-container,
    .tab-content,
    .secret-store-cta,
    .booking-card,
    .mj-story-card,
    .mj-slideshow,
    .home-page .hero-inner,
    .home-page .hero-portrait-card,
    .home-page .quick-link-card,
    .home-page .tribute-card,
    .home-page .spotlight-section,
    .home-page .newsletter-section,
    .home-page .product-card,
    body .links-category,
    body .guestbook-form-container,
    body .guestbook-cta {
        border-radius: 24px;
    }

    body:not(.home-page) .hero-title {
        max-width: none;
    }
}

/* ================= SOFT ELEGANT REFRESH ================= */
:root {
    --soft-bg: #151112;
    --soft-bg-deep: #0f0d0d;
    --soft-panel: rgba(31, 25, 27, 0.82);
    --soft-panel-strong: rgba(25, 20, 22, 0.94);
    --soft-panel-soft: rgba(255, 250, 244, 0.055);
    --soft-line: rgba(244, 216, 166, 0.15);
    --soft-line-strong: rgba(216, 154, 145, 0.34);
    --soft-text: #fbf7f1;
    --soft-heading: #fff4e5;
    --soft-muted: #d0c2b9;
    --soft-muted-2: #a9968e;
    --soft-champagne: #f4d8a6;
    --soft-rose: #d89a91;
    --soft-rose-deep: #965c63;
    --soft-teal: #8eb6aa;
    --soft-shadow: 0 18px 48px rgba(10, 7, 8, 0.36);
    --soft-shadow-hover: 0 22px 54px rgba(10, 7, 8, 0.42);
}

html {
    scroll-behavior: smooth;
}

body,
.home-page {
    font-family: 'Manrope', sans-serif;
    color: var(--soft-text);
    background:
        linear-gradient(180deg, rgba(35, 25, 27, 0.54), rgba(13, 11, 11, 0.92)),
        linear-gradient(90deg, rgba(150, 92, 99, 0.22), rgba(37, 74, 69, 0.14)),
        url('../images/backgrounds/Background_Roxy.jpeg') center top / cover no-repeat fixed;
}

body::before {
    background: linear-gradient(180deg, rgba(16, 12, 13, 0.28), rgba(16, 12, 13, 0.70));
}

body::after,
.hero-blob {
    display: none !important;
}

body h1,
body h2,
body h3,
body .hero-title,
body .section-title,
body .account-section-title,
body .secret-store-title,
body .secret-store-cta-title,
body .links-title,
body .links-cta h2,
body .guestbook-title,
body .guestbook-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0;
    text-shadow: none;
    text-transform: none;
}

.hero-title,
.section-title,
.account-section-title,
.secret-store-title,
.secret-store-cta-title,
.links-title,
.links-cta h2,
.guestbook-title,
.guestbook-cta h2,
body.mistress-mode .hero-title,
body.mistress-mode .section-title,
body.mistress-mode .account-section-title,
body.mistress-mode .secret-store-title,
body.mistress-mode .guestbook-title,
body.mistress-mode .links-title {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--soft-heading);
}

p,
.product-desc,
.product-features li,
.contact-subtitle,
.contact-footer-note,
.secret-product-description,
.secret-store-description,
.secret-store-cta-text,
.purchase-info p,
.empty-state,
.mj-text p,
body .links-subtitle,
body .link-content p,
body .guestbook-subtitle,
body .form-description,
body .guestbook-cta p {
    color: var(--soft-muted);
    line-height: 1.75;
}

.topbar {
    width: min(1180px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 10px 14px;
    gap: 12px;
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(32, 25, 27, 0.84), rgba(19, 16, 16, 0.78)),
        linear-gradient(90deg, rgba(244, 216, 166, 0.08), rgba(142, 182, 170, 0.05));
    box-shadow: 0 14px 36px rgba(8, 6, 7, 0.28);
    backdrop-filter: blur(20px) saturate(140%);
}

.home-page .topbar {
    border-radius: 8px;
}

.logo-image {
    height: 46px;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

#mainNav {
    gap: 6px;
}

#mainNav a {
    padding: 10px 12px;
    border-color: transparent;
    background: transparent;
    color: rgba(251, 247, 241, 0.82);
    font-weight: 650;
    letter-spacing: 0;
    box-shadow: none;
}

#mainNav a:hover,
#mainNav a.nav-active,
body.mistress-mode #mainNav a:hover,
body.mistress-mode #mainNav a.nav-active {
    color: #fff;
    border-color: var(--soft-line);
    background: rgba(244, 216, 166, 0.08);
    box-shadow: none;
    transform: none;
}

.mode-toggle-btn,
.icon-btn,
.lang-toggle-btn {
    min-height: 42px;
    border-color: var(--soft-line);
    background: rgba(255, 250, 244, 0.055);
    color: var(--soft-text);
    box-shadow: none;
}

.mode-toggle-btn:hover,
.icon-btn:hover,
.lang-toggle-btn:hover {
    border-color: var(--soft-line-strong);
    background: rgba(244, 216, 166, 0.09);
}

.mode-switch {
    background: rgba(255, 250, 244, 0.13);
}

.mode-switch-slider {
    background: linear-gradient(135deg, var(--soft-champagne), var(--soft-rose));
    box-shadow: 0 3px 10px rgba(216, 154, 145, 0.28);
}

.menu-toggle span {
    background: var(--soft-champagne);
}

.lang-dropdown,
.age-verification-content {
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(31, 25, 27, 0.96), rgba(18, 15, 15, 0.94)),
        linear-gradient(90deg, rgba(244, 216, 166, 0.06), rgba(142, 182, 170, 0.04));
    box-shadow: var(--soft-shadow);
}

.lang-option {
    border-bottom-color: rgba(244, 216, 166, 0.09);
    color: var(--soft-muted);
}

.lang-option:hover {
    color: var(--soft-heading);
    background: rgba(244, 216, 166, 0.08);
}

.btn,
.btn-primary,
.btn-outline,
.buy-btn,
.btn-tip,
.primary,
.secondary,
.btn-secondary,
.auth-btn,
.secret-store-button {
    min-height: 44px;
    border-radius: 999px;
    letter-spacing: 0;
}

.btn-primary,
.buy-btn,
.btn-tip,
.primary,
.auth-btn,
.secret-store-button,
body.mistress-mode .btn-primary,
body.mistress-mode .buy-btn,
body.mistress-mode .auth-btn,
body.mistress-mode .secret-store-button,
body.mistress-mode .btn-tip,
body.mistress-mode .primary {
    border: 1px solid rgba(255, 244, 229, 0.20);
    background: linear-gradient(135deg, var(--soft-champagne), var(--soft-rose));
    color: #211616;
    box-shadow: 0 12px 28px rgba(216, 154, 145, 0.20);
}

.btn-primary:hover,
.buy-btn:hover,
.btn-tip:hover,
.primary:hover,
.auth-btn:hover,
.secret-store-button:hover {
    filter: saturate(1.05);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(216, 154, 145, 0.24);
}

.btn-outline,
.secondary,
.btn-secondary {
    border: 1px solid var(--soft-line);
    background: rgba(255, 250, 244, 0.045);
    color: var(--soft-text);
    box-shadow: none;
}

.btn-outline:hover,
.secondary:hover,
.btn-secondary:hover,
body.mistress-mode .btn-outline:hover,
body.mistress-mode .secondary:hover,
body.mistress-mode .btn-secondary:hover {
    border-color: var(--soft-line-strong);
    background: rgba(216, 154, 145, 0.10);
    color: #fff;
}

.cart-badge,
body.mistress-mode .cart-badge {
    background: var(--soft-rose);
    color: #211616;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.20);
}

body:not(.home-page) .hero,
body:not(.home-page) .product-card,
body:not(.home-page) .card,
body:not(.home-page) .booking-card,
.modal-content,
.cart,
.auth-container,
.tab-content,
.mj-story-card,
.mj-slideshow,
.secret-product-card,
.secret-store-hero,
.secret-store-cta,
body .links-category,
body .guestbook-form-container,
body .guestbook-entry,
body .guestbook-cta {
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, var(--soft-panel), rgba(18, 15, 15, 0.82)),
        linear-gradient(90deg, rgba(244, 216, 166, 0.055), rgba(142, 182, 170, 0.035));
    box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 250, 244, 0.05);
}

body:not(.home-page) .hero {
    width: min(1120px, calc(100% - 32px));
    margin: 44px auto 28px;
    padding: 42px;
    text-align: center;
}

body:not(.home-page) .hero-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 58px;
    line-height: 0.96;
}

body:not(.home-page) .hero-sub {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--soft-muted);
}

body:not(.home-page) .products-grid,
body:not(.home-page) .collections-container,
.secret-store-products {
    gap: 24px;
}

body:not(.home-page) .product-card,
.secret-product-card,
.home-page .product-card {
    padding: 14px 14px 22px;
    border-radius: 8px;
}

.product-card::before {
    display: none;
}

body:not(.home-page) .product-card:hover,
.home-page .product-card:hover,
.secret-product-card:hover,
body .links-category:hover,
body .guestbook-entry:hover {
    border-color: var(--soft-line-strong);
    transform: translateY(-4px);
    box-shadow: var(--soft-shadow-hover);
}

body:not(.home-page) .product-card img,
.home-page .product-card img,
.secret-product-image,
.mySlides img {
    border-radius: 6px;
    border-color: rgba(255, 250, 244, 0.12);
    box-shadow: 0 14px 32px rgba(8, 6, 7, 0.28);
    filter: saturate(0.95) contrast(0.98);
}

body:not(.home-page) .product-card h3,
.home-page .product-card h3,
.secret-product-title,
.purchase-info h3 {
    color: var(--soft-heading);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0;
}

.product-price,
.secret-product-price {
    color: #fff0d6;
    text-shadow: none;
}

.product-sub,
.product-items,
.product-videos,
.product-feature-label,
.premium-badge,
.section-divider,
body .link-arrow,
body .category-title,
body .guestbook-form label {
    color: var(--soft-champagne);
}

.product-features li,
.spotlight-point,
body .link-item,
.purchase-card {
    border-color: var(--soft-line);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.045);
}

body .link-item:hover {
    border-color: var(--soft-line-strong);
    background: rgba(255, 250, 244, 0.07);
    transform: translateY(-2px);
}

.home-page .home-main {
    padding-bottom: 52px;
}

.home-page .hero {
    padding: 72px 20px 34px;
    text-align: left;
}

.home-page .hero-shell,
.home-page .sections-wrapper,
.home-page .collections-showcase,
.sections-wrapper {
    max-width: 1160px;
}

.home-page .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.6fr);
    align-items: center;
    gap: 28px;
}

.home-page .hero-inner {
    max-width: none;
    margin: 0;
    padding: 8px 0;
    align-items: flex-start;
    text-align: left;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-page .hero-pill,
.home-page .panel-eyebrow,
.home-page .section-eyebrow,
.home-page .quick-link-label,
.home-page .hero-badge,
.home-page .hero-stat,
.home-page .tribute-tag,
.secret-product-badge,
.secret-store-logo {
    border: 1px solid var(--soft-line);
    background: rgba(255, 250, 244, 0.06);
    color: var(--soft-champagne);
    letter-spacing: 0;
}

.home-page .hero-title {
    font-size: 64px;
    line-height: 0.94;
    color: var(--soft-heading);
}

.home-page .hero-title-accent {
    margin-top: 8px;
    color: var(--soft-rose);
    -webkit-text-fill-color: var(--soft-rose);
}

.home-page .hero-sub {
    max-width: 610px;
    font-size: 17px;
    color: var(--soft-muted);
}

.home-page .hero-cta,
.home-page .hero-badges,
.home-page .hero-stat-row,
.home-page .tribute-tags {
    justify-content: flex-start;
}

.home-page .hero-tagline {
    color: var(--soft-muted-2);
}

.home-page .hero-side {
    gap: 14px;
    max-width: 320px;
    justify-self: end;
}

.home-page .hero-portrait-card,
.home-page .quick-link-card,
.home-page .tribute-card,
.home-page .spotlight-section,
.home-page .newsletter-section,
.home-page .product-card {
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(31, 25, 27, 0.82), rgba(18, 15, 15, 0.78)),
        linear-gradient(90deg, rgba(244, 216, 166, 0.055), rgba(142, 182, 170, 0.035));
    box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 250, 244, 0.05);
}

.home-page .hero-portrait-card {
    overflow: hidden;
}

.home-page .hero-portrait-media,
.home-page .spotlight-image-wrap {
    border-radius: 6px;
}

.home-page .hero-portrait-media img {
    height: auto;
}

.home-page .hero-portrait-overlay,
.bio-image-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(17, 13, 14, 0.34)),
        linear-gradient(0deg, rgba(17, 13, 14, 0.72), rgba(17, 13, 14, 0.04));
}

.home-page .hero-portrait-copy {
    padding: 22px;
}

.home-page .hero-portrait-copy h2,
.home-page .quick-link-copy h3,
.home-page .spotlight-copy h2,
.home-page .collections-intro h2,
.home-page .newsletter-text h2,
.home-page .tipping-text h2 {
    color: var(--soft-heading);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0;
}

.home-page .hero-portrait-copy p,
.home-page .quick-link-copy p,
.home-page .collections-intro p,
.home-page .newsletter-text p,
.home-page .spotlight-copy p {
    color: var(--soft-muted);
}

.home-page .quick-link-panel {
    gap: 12px;
}

.home-page .quick-link-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    color: inherit;
}

.home-page .quick-link-card:hover {
    border-color: var(--soft-line-strong);
    transform: translateY(-3px);
}

.home-page .quick-link-index {
    color: rgba(244, 216, 166, 0.48);
}

.home-page .home-sections {
    display: grid;
    gap: 28px;
}

/* ================= LUXURY HERO BANNER ================= */
.luxury-hero {
    min-height: auto;
    padding: clamp(90px, 12vw, 130px) 20px clamp(60px, 8vw, 90px);
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-hero .lux-banner {
    position: relative;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    overflow: visible;
}

.lux-banner::before {
    display: none;
}

.lux-banner > * {
    position: static;
    z-index: auto;
}

.lux-corner {
    display: none;
}

.lux-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 10px auto;
    max-width: 200px;
}

.lux-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
}

.lux-diamond {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #d4af37;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.9), 0 0 2px rgba(212, 175, 55, 1);
    flex-shrink: 0;
}

.lux-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.02em;
    background: linear-gradient(140deg, #fffbe8 0%, #f5d87a 30%, #d4af37 58%, #a87c20 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.4));
}

.lux-sub {
    margin: 0;
    font-size: 10px;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.65);
    font-weight: 500;
}

body:not(.home-page) .hero.luxury-hero,
.hero.luxury-hero {
    min-height: auto !important;
}

body:not(.home-page) .hero.luxury-hero,
body:not(.home-page) .hero.luxury-hero .lux-banner,
.hero.luxury-hero,
.hero.luxury-hero .lux-banner {
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: clamp(90px, 12vw, 130px) 20px clamp(60px, 8vw, 90px) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.hero.luxury-hero .lux-banner {
    padding: 0 !important;
}

body:not(.home-page) .hero.luxury-hero::before,
body:not(.home-page) .hero.luxury-hero .lux-banner::before,
.hero.luxury-hero::before,
.hero.luxury-hero .lux-banner::before {
    display: none !important;
}

body:not(.home-page) .hero.luxury-hero .lux-banner > *,
.hero.luxury-hero .lux-banner > * {
    position: static !important;
    z-index: auto !important;
}

body:not(.home-page) .hero.luxury-hero .lux-corner,
.hero.luxury-hero .lux-corner {
    display: none !important;
}

body:not(.home-page) .hero.luxury-hero .lux-divider,
.hero.luxury-hero .lux-divider {
    margin: 10px auto !important;
}

@media (max-width: 600px) {
    .lux-banner {
        padding: 24px 20px 20px;
    }
    .lux-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
}

.home-page .tribute-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px;
}

.home-page .tribute-actions {
    align-items: flex-end;
}

.home-page .spotlight-section {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    padding: 18px;
    gap: 30px;
}

.home-page .spotlight-image-wrap {
    min-height: 100%;
    border: 0;
    background: transparent;
}

.home-page .spotlight-image-wrap img {
    height: 100%;
    min-height: 430px;
    border-radius: 6px;
}

.home-page .spotlight-name {
    color: var(--soft-teal);
}

.home-page .spotlight-copy {
    padding: 14px 12px 14px 0;
}

.home-page .spotlight-point {
    color: var(--soft-text);
}

.home-page .collections-showcase {
    margin: 60px auto 44px;
    padding: 0 32px;
}

.home-page .collections-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.home-page .collections-container {
    margin: 30px auto 0;
    padding: 0;
    gap: 24px;
}

.home-page .product-card img {
    height: 340px;
}

.home-page .product-card-content {
    padding: 22px 12px 0;
}

.home-page .product-card h3 {
    font-size: 34px;
    line-height: 1;
}

.home-page .newsletter-section {
    padding: 30px;
}

.home-page .newsletter-inner {
    gap: 34px;
}

.newsletter-form {
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.045);
    box-shadow: none;
}

.form-group input,
.form-group select,
.form-group textarea,
.booking-form input,
.booking-form select,
.booking-form textarea,
.auth-form input,
.age-verification-content .form-group input,
body .guestbook-form input,
body .guestbook-form textarea,
.modal-content input,
.modal-content textarea,
.modal-content select {
    min-height: 44px;
    border: 1px solid var(--soft-line);
    border-radius: 6px;
    background: rgba(255, 250, 244, 0.06);
    color: var(--soft-text);
    box-shadow: none;
}

.form-group input::placeholder,
.booking-form input::placeholder,
.booking-form textarea::placeholder,
.auth-form input::placeholder,
body .guestbook-form input::placeholder,
body .guestbook-form textarea::placeholder,
.modal-content input::placeholder {
    color: rgba(208, 194, 185, 0.54);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.auth-form input:focus,
.age-verification-content .form-group input:focus,
body .guestbook-form input:focus,
body .guestbook-form textarea:focus,
.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
    border-color: var(--soft-line-strong);
    background: rgba(255, 250, 244, 0.08);
    box-shadow: 0 0 0 3px rgba(216, 154, 145, 0.12);
}

.modal-content {
    color: var(--soft-text);
}

.modal-content h2,
.age-verification-content h2,
.booking-card h2,
.auth-container h2,
.tab-content h2 {
    color: var(--soft-heading);
}

#tipModal .modal-content {
    max-width: 440px !important;
}

#customTipAmount {
    border: 1px solid var(--soft-line) !important;
    border-radius: 6px !important;
    background: rgba(255, 250, 244, 0.06) !important;
    color: var(--soft-text) !important;
}

.site-footer,
.footer {
    border-top: 1px solid var(--soft-line);
    background:
        linear-gradient(180deg, rgba(19, 16, 16, 0.78), rgba(11, 9, 9, 0.92)),
        linear-gradient(90deg, rgba(244, 216, 166, 0.045), rgba(142, 182, 170, 0.035));
}

.footer-section h3,
.footer-link,
.footer-logo {
    color: var(--soft-champagne);
}

.home-page .hero-shell {
    padding: 0;
}

.home-page .hero-portrait-copy h2 {
    font-size: 32px;
    line-height: 1.02;
}

.home-page .quick-link-copy h3 {
    font-size: 26px;
    line-height: 1.05;
}

.home-page .spotlight-copy h2,
.home-page .collections-intro h2,
.home-page .newsletter-text h2 {
    font-size: 42px;
    line-height: 1;
}

.home-page .tipping-text h2 {
    font-size: 34px;
    line-height: 1.05;
}

.section-title,
.account-section-title,
.secret-store-title,
.links-title,
.guestbook-title {
    font-size: 56px;
    line-height: 0.98;
}

.secret-store-hero {
    padding: 58px 34px;
}

.secret-product-title {
    font-size: 36px;
    line-height: 1;
}

.secret-store-cta-title,
.links-cta h2,
.guestbook-cta h2 {
    font-size: 44px;
    line-height: 1;
}

.booking-card h2,
.auth-container h2,
.tab-content h2,
.modal-content h2,
.age-verification-content h2 {
    font-size: 34px;
    line-height: 1.05;
}

@media (max-width: 1100px) {
    .topbar {
        width: calc(100% - 24px);
        margin-top: 12px;
        row-gap: 10px;
    }

    #mainNav {
        border: 1px solid var(--soft-line);
        border-radius: 8px;
        background: rgba(25, 20, 22, 0.95);
        box-shadow: var(--soft-shadow);
    }

    #mainNav a {
        border-radius: 6px;
    }

    .menu-toggle {
        border-color: var(--soft-line);
        border-radius: 8px;
        background: rgba(255, 250, 244, 0.055);
    }

    .home-page .hero-shell {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .home-page .hero-inner {
        max-width: 720px;
    }

    .home-page .hero-side {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .home-page .tribute-card,
    .home-page .spotlight-section,
    .home-page .newsletter-inner {
        grid-template-columns: 1fr;
    }

    .home-page .tribute-actions {
        align-items: flex-start;
    }

    .home-page .spotlight-copy {
        padding: 4px 2px 2px;
    }
}

@media (max-width: 768px) {
    .topbar,
    .home-page .topbar {
        width: calc(100% - 20px);
        border-radius: 8px;
    }

    body:not(.home-page) .hero,
    .auth-container,
    .tab-content,
    .secret-store-cta,
    .booking-card,
    .mj-story-card,
    .mj-slideshow,
    .home-page .hero-portrait-card,
    .home-page .quick-link-card,
    .home-page .tribute-card,
    .home-page .spotlight-section,
    .home-page .newsletter-section,
    .home-page .product-card,
    body .links-category,
    body .guestbook-form-container,
    body .guestbook-cta {
        border-radius: 8px;
    }

    .home-page .hero {
        padding: 52px 16px 24px;
    }

    .home-page .hero-title {
        font-size: 44px;
        line-height: 0.98;
    }

    .home-page .hero-sub {
        font-size: 15px;
    }

    .home-page .hero-cta {
        width: 100%;
    }

    .home-page .hero-cta .btn {
        flex: 0 0 auto;
        width: 100%;
    }

    .home-page .hero-portrait-media img,
    .home-page .spotlight-image-wrap img,
    body:not(.home-page) .product-card img,
    .secret-product-image {
        height: 320px;
        min-height: 0;
    }

    .home-page .quick-link-panel,
    .home-page .collections-container,
    .secret-store-products {
        grid-template-columns: 1fr;
    }

    .home-page .home-sections,
    .home-page .collections-showcase,
    .sections-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-page .newsletter-section,
    .home-page .tribute-card {
        padding: 22px;
    }

    body:not(.home-page) .hero {
        width: calc(100% - 24px);
        padding: 30px 22px;
    }

    body:not(.home-page) .hero-title {
        font-size: 42px;
    }

    .section-title,
    .account-section-title,
    .secret-store-title,
    .links-title,
    .guestbook-title {
        font-size: 42px;
    }

    .home-page .spotlight-copy h2,
    .home-page .collections-intro h2,
    .home-page .newsletter-text h2,
    .secret-store-cta-title,
    .links-cta h2,
    .guestbook-cta h2 {
        font-size: 34px;
    }

    .home-page .hero-portrait-copy h2,
    .home-page .tipping-text h2,
    .booking-card h2,
    .auth-container h2,
    .tab-content h2,
    .modal-content h2,
    .age-verification-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .home-page .hero-title {
        font-size: 38px;
    }

    .home-page .hero-badge,
    .home-page .hero-stat,
    .home-page .tribute-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-page .quick-link-card {
        grid-template-columns: 1fr;
    }
}

/* ================= HOME PAGE ELEGANT REDESIGN ================= */
.home-page.home-elegant .hero {
    padding: 88px 24px 56px;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.home-page.home-elegant .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.home-page.home-elegant .hero-copy {
    display: grid;
    gap: 24px;
}

.home-page.home-elegant .eyebrow,
.home-page.home-elegant .highlight-eyebrow,
.home-page.home-elegant .section-eyebrow,
.home-page.home-elegant .newsletter-copy .eyebrow-label {
    color: #f5d387;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.home-page.home-elegant .hero-title {
    font-size: clamp(3.8rem, 5vw, 5.4rem);
    line-height: 0.98;
    margin: 0;
    max-width: 12ch;
    letter-spacing: -0.05em;
    color: #fff;
}

.home-page.home-elegant .hero-copy-text {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(246, 238, 224, 0.88);
}

.home-page.home-elegant .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-page.home-elegant .hero-card {
    border-radius: 32px;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.96);
    border: 1px solid rgba(246, 210, 122, 0.16);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
}

.home-page.home-elegant .hero-card-image {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.home-page.home-elegant .hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-page.home-elegant .hero-card-image:hover img {
    transform: scale(1.06);
}

.home-page.home-elegant .hero-card-copy {
    padding: 30px;
    display: grid;
    gap: 16px;
}

.home-page.home-elegant .hero-card-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #f5d387;
    font-size: 0.8rem;
    font-weight: 700;
}

.home-page.home-elegant .hero-card-copy h2 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.home-page.home-elegant .hero-card-copy p {
    color: rgba(245, 236, 225, 0.82);
    line-height: 1.75;
}

.home-page.home-elegant .home-highlights {
    max-width: 1180px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-page.home-elegant .highlight-card {
    padding: 28px 30px;
    background: rgba(13, 12, 18, 0.92);
    border: 1px solid rgba(246, 210, 122, 0.12);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 14px;
}

.home-page.home-elegant .highlight-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: #fff;
}

.home-page.home-elegant .highlight-card p {
    color: rgba(235, 227, 215, 0.82);
    line-height: 1.8;
}

.home-page.home-elegant .collections-showcase {
    max-width: 1180px;
    margin: 0 auto 70px;
    padding: 0 24px;
}

.home-page.home-elegant .collections-intro {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.home-page.home-elegant .collections-intro h2 {
    font-size: clamp(2.2rem, 3vw, 3.4rem);
    margin: 0;
    color: #fff;
}

.home-page.home-elegant .collections-intro p {
    color: rgba(236, 229, 216, 0.78);
    line-height: 1.75;
}

.home-page.home-elegant .divider {
    width: 80px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(246, 210, 122, 0.95), rgba(255, 255, 255, 0.18));
    border-radius: 999px;
}

.home-page.home-elegant .collections-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-page.home-elegant .gallery-preview {
    max-width: 1180px;
    margin: 0 auto 70px;
    padding: 0 24px;
}

.home-page.home-elegant .gallery-preview-inner {
    display: grid;
    gap: 28px;
}

.home-page.home-elegant .gallery-preview-heading {
    display: grid;
    gap: 14px;
    text-align: center;
}

.home-page.home-elegant .gallery-preview-heading h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin: 0;
    color: #fff;
}

.home-page.home-elegant .gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.home-page.home-elegant .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(246, 210, 122, 0.14);
}

.home-page.home-elegant .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-page.home-elegant .gallery-item:hover img {
    transform: scale(1.06);
}

.home-page.home-elegant .gallery-item--stacked {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.home-page.home-elegant .gallery-item--stacked img {
    min-height: 140px;
}

.home-page.home-elegant .newsletter-section {
    max-width: 1180px;
    margin: 0 auto 90px;
    padding: 0 24px;
}

.home-page.home-elegant .newsletter-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
    gap: 30px;
    align-items: start;
}

.home-page.home-elegant .newsletter-copy {
    display: grid;
    gap: 16px;
}

.home-page.home-elegant .newsletter-copy h2 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    color: #fff;
    margin: 0;
}

.home-page.home-elegant .newsletter-copy p,
.home-page.home-elegant .newsletter-disclaimer {
    color: rgba(243, 236, 225, 0.82);
}

.home-page.home-elegant .newsletter-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(14, 12, 18, 0.92);
    border: 1px solid rgba(246, 210, 122, 0.14);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.home-page.home-elegant .newsletter-form .form-group label {
    color: rgba(245, 236, 225, 0.9);
}

.home-page.home-elegant .newsletter-form .form-group input {
    border-color: rgba(246, 210, 122, 0.16);
    background: rgba(18, 16, 22, 0.95);
    color: #f7f0e6;
}

.home-page.home-elegant .newsletter-form button {
    width: 100%;
    padding: 16px 18px;
}

@media (max-width: 1100px) {
    .home-page.home-elegant .hero-grid,
    .home-page.home-elegant .gallery-grid,
    .home-page.home-elegant .newsletter-inner,
    .home-page.home-elegant .home-highlights {
        grid-template-columns: 1fr;
    }

    .home-page.home-elegant .hero-card-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .home-page.home-elegant .hero {
        padding: 62px 18px 38px;
    }

    .home-page.home-elegant .hero-title {
        font-size: 3rem;
    }

    .home-page.home-elegant .hero-actions {
        flex-direction: column;
    }

    .home-page.home-elegant .collections-container,
    .home-page.home-elegant .gallery-grid {
        gap: 18px;
    }

    .home-page.home-elegant .newsletter-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-page.home-elegant .hero {
        padding: 50px 14px 32px;
    }

    .home-page.home-elegant .hero-title {
        font-size: 2.4rem;
    }

    .home-page.home-elegant .gallery-item--stacked img {
        min-height: 160px;
    }
}

/* ================= HOME PAGE FINAL UI POLISH ================= */
.home-page .hero {
    padding: 88px 20px 44px;
    min-height: calc(100vh - 120px);
}

.home-page .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 38px;
}

.home-page .hero-inner {
    padding: 34px 34px 28px;
    border-radius: 36px;
    border: 1px solid rgba(246, 210, 122, 0.18);
    background: linear-gradient(180deg, rgba(14, 12, 20, 0.94), rgba(10, 8, 15, 0.9));
    box-shadow: 0 42px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 244, 214, 0.04);
}

.home-page .hero-title {
    font-size: clamp(3.8rem, 5vw, 5.8rem);
    line-height: 0.98;
}

.home-page .hero-sub {
    max-width: 620px;
    color: rgba(250, 243, 226, 0.88);
    font-size: 1.08rem;
}

.home-page .hero-cta {
    justify-content: flex-start;
    gap: 16px;
    margin-top: 16px;
}

.home-page .hero-side {
    gap: 26px;
}

.home-page .hero-portrait-card {
    padding: 0;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 15, 22, 0.95), rgba(10, 8, 16, 0.97));
    border: 1px solid rgba(246, 210, 122, 0.16);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.55);
}

.home-page .hero-portrait-media {
    min-height: 380px;
}

.home-page .hero-portrait-media img {
    transition: transform 0.7s ease;
}

.home-page .hero-portrait-media:hover img {
    transform: scale(1.04);
}

.home-page .hero-portrait-copy {
    padding: 28px 30px 32px;
    display: grid;
    gap: 14px;
}

.home-page .hero-portrait-copy h2 {
    font-size: 2rem;
}

.home-page .hero-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-page .hero-gallery-item {
    min-height: 220px;
    border-radius: 24px;
    overflow: hidden;
}

.home-page .hero-gallery-item img {
    transition: transform 0.6s ease;
}

.home-page .hero-gallery-item:hover img {
    transform: scale(1.08);
}

.home-page .collections-showcase {
    padding: 0 18px 70px;
}

.home-page .collections-intro h2 {
    font-size: clamp(2.2rem, 3vw, 3.5rem);
}

.home-page .home-gallery {
    padding: 0 18px 70px;
}

.home-page .home-gallery-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.home-page .home-gallery-item {
    min-height: 240px;
    border-radius: 26px;
}

.home-page .home-gallery-item--tall {
    grid-row: span 2;
}

.home-page .newsletter-section {
    padding: 48px 44px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 10, 16, 0.94), rgba(18, 14, 24, 0.96));
}

.home-page .newsletter-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
    gap: 32px;
}

.home-page .newsletter-form {
    padding: 30px;
    border-radius: 28px;
}

.home-page .newsletter-text h2 {
    font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.home-page .newsletter-text p,
.home-page .newsletter-disclaimer {
    color: rgba(236, 226, 212, 0.82);
}

@media (max-width: 1100px) {
    .home-page .hero-shell {
        grid-template-columns: 1fr;
    }

    .home-page .hero-side {
        max-width: 100%;
    }

    .home-page .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(220px, auto);
    }
}

@media (max-width: 768px) {
    .home-page .hero {
        padding: 60px 16px 36px;
    }

    .home-page .hero-title {
        font-size: 3.2rem;
    }

    .home-page .hero-inner {
        padding: 28px 24px 24px;
    }

    .home-page .newsletter-section {
        padding: 32px 24px;
    }

    .home-page .newsletter-inner {
        grid-template-columns: 1fr;
    }
}

/* ================= COMPACT PRODUCT CARDS ON MOBILE ================= */
@media (max-width: 768px) {
    .home-page .product-card img,
    body:not(.home-page) .product-card img {
        height: 220px;
    }

    .home-page .product-card,
    body:not(.home-page) .product-card {
        padding: 14px 14px 18px;
        gap: 10px;
    }

    .home-page .product-card h3,
    body:not(.home-page) .product-card h3 {
        font-size: 22px;
    }

    .product-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .product-price,
    body:not(.home-page) .product-price {
        font-size: 32px;
    }

    .product-sub,
    .product-videos {
        font-size: 11px;
    }

    .tier-selector {
        margin-top: 4px;
        gap: 6px;
    }

    .tier {
        min-width: 0;
        padding: 7px 12px;
        font-size: 11px;
    }

    .product-features {
        gap: 6px;
        margin-top: 4px;
    }

    .product-features li {
        padding: 8px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .buy-btn {
        padding: 13px 16px;
        margin-top: 8px;
        font-size: 14px;
    }

    .home-page .collections-container,
    body:not(.home-page) .collections-container,
    .products-grid {
        gap: 18px;
    }
}

/* ================= HOME HERO — LUXURY POLISH ================= */
.home-page .hero-shell {
    align-items: center;
}

.home-page .hero-title,
.home-page .hero-portrait-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, #fff2cf, #f6d27a, #b45309);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.22));
}

.home-page .hero-inner {
    padding-top: 18px;
}

.home-page .hero-portrait-card {
    position: relative;
}

.home-page .hero-portrait-card .lux-corner {
    z-index: 2;
}

.home-page .btn-outline {
    border-color: rgba(246, 210, 122, 0.4);
    background: rgba(246, 210, 122, 0.05);
}

.home-page .btn-outline:hover {
    border-color: #f6d27a;
    background: rgba(246, 210, 122, 0.12);
}

/* ================= HOME HERO — EXTRA GALLERY + DIVIDERS ================= */
.home-page .hero-inner .lux-divider,
.home-page .collections-intro .lux-divider {
    margin: 0;
}

.home-page .hero-inner .lux-divider {
    width: 170px;
    margin-left: 0;
    justify-content: flex-start;
}

.home-page .collections-intro .lux-divider {
    margin: 12px auto;
}

.home-page .hero-gallery-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-page .hero-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.home-page .hero-gallery-item:hover {
    border-color: rgba(246, 210, 122, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 26px rgba(246, 210, 122, 0.18);
}

.home-page .hero-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(10, 8, 10, 0.65) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.home-page .hero-gallery-item:hover::after {
    opacity: 0.55;
}

.home-page .hero-gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.home-page .hero-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1100px) {
    .home-page .hero-gallery-item img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .home-page .hero-gallery-item img {
        height: 160px;
    }
}

/* ================= HOME GALLERY — MOSAIC SHOWCASE ================= */
.home-page .home-gallery {
    max-width: 1160px;
    margin: 60px auto 44px;
    padding: 0 32px;
}

.home-page .home-gallery-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 30px;
}

.home-page .home-gallery-intro .lux-divider {
    margin: 14px auto 0;
}

.home-page .home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 190px;
    grid-auto-flow: dense;
    gap: 16px;
}

.home-page .home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background: rgba(9, 8, 12, 0.6);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.home-page .home-gallery-item--tall {
    grid-row: span 2;
}

.home-page .home-gallery-item:hover {
    border-color: rgba(246, 210, 122, 0.55);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(246, 210, 122, 0.2);
    transform: translateY(-4px);
}

.home-page .home-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(10, 8, 10, 0.55) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.home-page .home-gallery-item:hover::after {
    opacity: 0.4;
}

.home-page .home-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform 0.6s ease;
}

.home-page .home-gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .home-page .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }
}

@media (max-width: 600px) {
    .home-page .home-gallery {
        padding: 0 16px;
        margin: 44px auto 32px;
    }

    .home-page .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .home-page .home-gallery-item--tall {
        grid-row: span 2;
    }
}

/* ================= HOME HERO — MATCHING TWIN PANELS ================= */
.home-page .hero-shell {
    align-items: stretch;
}

.home-page .hero-inner {
    border-radius: 34px;
    border: 1px solid rgba(246, 210, 122, 0.16);
    background:
        linear-gradient(180deg, rgba(16, 13, 16, 0.92), rgba(9, 8, 12, 0.84)),
        radial-gradient(circle at top left, rgba(246, 210, 122, 0.1), transparent 40%);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 246, 223, 0.06);
    padding: clamp(28px, 4vw, 44px);
    justify-content: center;
}

@media (max-width: 1100px) {
    .home-page .hero-inner {
        padding: clamp(24px, 5vw, 36px);
    }
}

/* ================= HOME — CALMER, MORE SPACIOUS RHYTHM ================= */
.home-page .hero {
    padding-bottom: 64px;
}

.home-page .collections-showcase {
    margin: 0 auto 130px;
}

.home-page .home-gallery {
    margin: 0 auto 130px;
}

.home-page .home-gallery-grid {
    gap: 24px;
}

.home-page .sections-wrapper {
    margin-bottom: 90px;
}

@media (max-width: 768px) {
    .home-page .hero {
        padding-bottom: 36px;
    }

    .home-page .collections-showcase,
    .home-page .home-gallery {
        margin: 0 auto 74px;
    }

    .home-page .home-gallery-grid {
        gap: 14px;
    }

    .home-page .sections-wrapper {
        margin-bottom: 56px;
    }
}

/* ================= HERO NOIR (photographic welcome hero) ================= */
.home-page .hero.hero-noir {
    background: #060606;
    backdrop-filter: none;
    padding: 100px 24px 90px;
}

.home-page .hero-noir-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: stretch;
    gap: 64px;
}

.home-page .hero-noir-copy {
    display: grid;
    gap: 18px;
    align-content: center;
}

.home-page .hero-noir-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 3.6vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    max-width: none;
    margin: 0;
    display: block;
}

.home-page .hero-noir-title .hero-title-light {
    display: block;
    color: #fff;
}

.home-page .hero-noir-title .hero-title-accent {
    display: block;
    background: none;
    color: #e8a84f;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #e8a84f;
}

.home-page .hero-noir-divider {
    width: 56px;
    height: 3px;
    background: #e8a84f;
    margin: 6px 0 4px;
}

.home-page .hero-noir-lead {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f5f0e8;
    max-width: 46ch;
    margin: 0;
}

.home-page .hero-noir-copy .hero-copy-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(230, 226, 219, 0.68);
    max-width: 52ch;
    margin: 0;
}

.home-page .hero-noir-copy .hero-actions {
    margin-top: 18px;
}

.home-page .hero-noir-portrait {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px;
    background: #060606;
}

.home-page .hero-noir-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .home-page .hero-noir-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-page .hero-noir-portrait {
        min-height: 360px;
        order: -1;
    }

    .home-page .hero-noir-copy {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .home-page .hero.hero-noir {
        padding: 72px 20px 56px;
    }

    .home-page .hero-noir-title {
        font-size: clamp(2.1rem, 8vw, 2.6rem);
    }
}

/* ================= HOME PAGE — LUXE ATMOSPHERE (no black, jewel-tone mesh) ================= */

:root {
    --home-wine-deep: #170606;
    --home-wine: #3d0f14;
    --home-plum: #1c0708;
    --home-bronze: #e8a84f;
    --home-rose: #b23a3a;
}

body.home-page {
    background: var(--home-wine-deep);
}

/* Modern gradient-mesh backdrop: black-red mood with bronze glow — no grey, no purple */
body.home-page::before {
    background:
        radial-gradient(ellipse 70% 55% at 12% 8%, rgba(232, 168, 79, 0.28), transparent 60%),
        radial-gradient(ellipse 65% 55% at 88% 14%, rgba(178, 42, 42, 0.34), transparent 62%),
        radial-gradient(ellipse 80% 65% at 92% 92%, rgba(232, 168, 79, 0.16), transparent 65%),
        radial-gradient(ellipse 75% 60% at 6% 95%, rgba(120, 20, 20, 0.32), transparent 60%),
        linear-gradient(160deg, var(--home-wine) 0%, var(--home-plum) 48%, #0c0303 100%);
    filter: none;
    opacity: 1;
}

body.home-page::after {
    background:
        radial-gradient(ellipse 100% 42% at 50% 100%, rgba(10, 4, 4, 0.5), transparent 70%),
        radial-gradient(ellipse 100% 32% at 50% 0%, rgba(10, 4, 4, 0.38), transparent 70%);
}

/* Header: warm black-red glass instead of near-black */
.home-page .topbar {
    background: rgba(26, 8, 9, 0.6);
    border-bottom: 1px solid rgba(232, 168, 79, 0.2);
}

/* Soft bronze spotlight glow behind the hero portrait, black-red shadow instead of black */
.home-page .hero-noir-portrait {
    background: var(--home-wine-deep);
    border-radius: 26px;
    box-shadow: 0 0 100px rgba(232, 168, 79, 0.18), 0 40px 90px rgba(10, 4, 4, 0.55);
}

.home-page .hero-noir-portrait img {
    border-radius: 26px;
}

/* Hero shell: let the mesh show through instead of a solid black panel */
.home-page .hero.hero-noir {
    background: transparent;
    backdrop-filter: none;
}

/* Serif, boutique-style section headings */
.home-page.home-elegant .collections-intro h2,
.home-page.home-elegant .gallery-preview-heading h2,
.home-page.home-elegant .newsletter-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Diamond-flanked divider motif, echoing the site's luxury accent */
.home-page.home-elegant .divider {
    position: relative;
    width: 64px;
    height: 1px;
    margin: 2px auto 10px;
    background: linear-gradient(90deg, transparent, rgba(232, 168, 79, 0.85), transparent);
}

.home-page.home-elegant .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #e8a84f;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(232, 168, 79, 0.85);
}

/* Elegant seam between sections */
.home-page.home-elegant .collections-showcase,
.home-page.home-elegant .gallery-preview,
.home-page.home-elegant .newsletter-section {
    position: relative;
    padding-top: 30px;
}

.home-page.home-elegant .collections-showcase::before,
.home-page.home-elegant .gallery-preview::before,
.home-page.home-elegant .newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(55%, 560px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 168, 79, 0.22), transparent);
}

/* Highlight cards: wine-tinted glass instead of near-black, hairline top accent + lift-and-glow on hover */
.home-page.home-elegant .highlight-card {
    position: relative;
    background: rgba(40, 10, 12, 0.48);
    backdrop-filter: blur(14px) saturate(140%);
    border-color: rgba(232, 168, 79, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.home-page.home-elegant .highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 168, 79, 0.65), transparent);
}

.home-page.home-elegant .highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 168, 79, 0.35);
    background: rgba(60, 14, 16, 0.58);
    box-shadow: 0 26px 60px rgba(10, 4, 4, 0.5), 0 0 40px rgba(232, 168, 79, 0.1);
}

.home-page.home-elegant .highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    letter-spacing: 0.01em;
}

/* Gallery: darken-on-hover reveal + warm glow, wine tint instead of black */
.home-page.home-elegant .gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-page.home-elegant .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 4, 4, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-page.home-elegant .gallery-item:hover {
    box-shadow: 0 26px 60px rgba(10, 4, 4, 0.55), 0 0 50px rgba(232, 168, 79, 0.14);
}

.home-page.home-elegant .gallery-item:hover::after {
    opacity: 1;
}

/* Newsletter panel: wine-glass boudoir card with a whisper of a gold border */
.home-page.home-elegant .newsletter-form {
    position: relative;
    backdrop-filter: blur(14px) saturate(140%);
    background: linear-gradient(160deg, rgba(48, 12, 14, 0.6), rgba(24, 8, 9, 0.65));
    border-color: rgba(232, 168, 79, 0.22);
}

.home-page.home-elegant .newsletter-form .form-group input {
    background: rgba(28, 9, 10, 0.5);
    border-color: rgba(232, 168, 79, 0.2);
}

/* Product cards (bundles): wine-glass instead of espresso-black */
.home-page .product-card {
    background:
        linear-gradient(180deg, rgba(52, 12, 14, 0.75), rgba(20, 7, 8, 0.88)),
        radial-gradient(circle at top left, rgba(232, 168, 79, 0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(178, 42, 42, 0.16), transparent 45%);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(10, 4, 4, 0.5), inset 0 1px 0 rgba(255, 245, 220, 0.05);
}

.home-page .product-card:hover {
    box-shadow: 0 34px 70px rgba(10, 4, 4, 0.55), 0 0 42px rgba(246, 210, 122, 0.14);
}

/* Home buttons: subtle lift and gold glow on hover */
.home-page .hero-actions .btn,
.home-page.home-elegant .newsletter-form button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .hero-actions .btn:hover,
.home-page.home-elegant .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(232, 168, 79, 0.22);
}

@media (max-width: 600px) {
    .home-page.home-elegant .collections-showcase,
    .home-page.home-elegant .gallery-preview,
    .home-page.home-elegant .newsletter-section {
        padding-top: 20px;
    }
}

/* ================= ACCOUNT PAGE – MOBILE CLEANUP ================= */
@media (max-width: 768px) {
    body:not(.home-page) .hero .hero-sub#accountEmailDisplay {
        width: 100%;
        font-size: 14px;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .account-shell {
        width: calc(100% - 20px);
        margin-bottom: 56px;
    }

    /* Tabs: even 2-column grid instead of ragged flex-wrap */
    .account-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 6px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .account-tabs .tab-btn {
        min-width: 0;
        width: 100%;
        padding: 11px 8px;
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    /* Panel: less inner padding so cards get real width */
    body .tab-content {
        padding: 18px 14px;
        border-radius: 20px;
    }

    body .account-section-title {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 16px;
        overflow-wrap: anywhere;
    }

    /* Cards */
    .account-shell .purchase-card {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        margin-bottom: 14px;
        border-radius: 18px;
    }

    .account-shell .purchase-card:hover {
        transform: none;
    }

    .account-shell .purchase-info h3 {
        font-size: 19px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .account-shell .purchase-info p {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    /* Action buttons: full-width stack, kill the inline right-align on bookings */
    .account-shell .purchase-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
        gap: 8px;
    }

    .account-shell .purchase-actions .btn-primary,
    .account-shell .purchase-actions .btn-secondary,
    .account-shell .purchase-actions .btn {
        flex: 1 1 auto;
        width: 100%;
        padding: 12px 16px;
        text-align: center;
    }

    .account-shell .empty-state {
        padding: 40px 16px;
    }

    .account-shell .empty-state h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .account-tabs {
        grid-template-columns: 1fr;
    }

    .account-tabs .tab-btn {
        padding: 12px 10px;
        font-size: 14px;
    }

    body .tab-content {
        padding: 16px 12px;
    }

    body .account-section-title {
        font-size: 23px;
    }
}


/* Keep the expanded header on one line with all navigation links. */
@media (min-width: 1101px) {
    .topbar { flex-wrap: nowrap; gap: 8px; }
    #mainNav { flex: 1 1 auto; flex-wrap: nowrap; gap: 2px; min-width: 0; }
    #mainNav a { white-space: nowrap; padding: 10px 6px; font-size: 13px; }
    .topbar .logo-image, .topbar .mode-toggle-btn, .topbar .header-icons { flex-shrink: 0; }
}
