:root {
    --scale: 1;
    --fc-gold: gold;
    --fc-gold-rgb: 255, 215, 0;
    --fc-gold-light: #fff4bf;
    --fc-gold-dark: #6b4b00;
    --fc-black: #0a0a0a;
    --fc-text: #fff;
    --fc-text-muted: rgba(255, 255, 255, 0.68);
    --fc-text-light: rgba(255, 255, 255, 0.78);
    --fc-border-light: rgba(255, 255, 255, 0.08);
    --fc-border-subtle: rgba(255, 255, 255, 0.14);
    --fc-bg-overlay: rgba(0, 0, 0, 0.5);
    --fc-bg-dark: rgba(8, 8, 8, 0.82);
    --fc-bg-form: rgba(8, 8, 8, 0.92);
    --fc-border-gray: rgba(164, 164, 164, 0.92);
    --fc-input-idle: rgba(164, 164, 164, 0.92);
    --fc-input-active: #f3d165;
    --fc-input-bg: rgba(255, 255, 255, 0.1);
    --fc-form-surface: rgba(8, 8, 8, 0.82);
    --fc-form-border: rgba(181, 181, 181, 0.72);
    --fc-form-focus: #f3d165;
    --fc-transition: all 0.3s ease;
    --fc-header-height: 88px;
    --fc-shell-max-width: 980px;
    --fc-card-max-width: 820px;
    --fc-contact-max-width: 640px;
    background-attachment: scroll, scroll;
    --fc-info-icon-size: 60px;
}

html, body { 
    scroll-behavior: smooth; 
    font-family: 'Slab Serif', 'Roboto slab', 'Arvo', 'Rockwell', 'Bitter', 'Zilla slab', serif, sans-serif; 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; 
    overflow-y: auto; 
    scroll-padding-top: 20px; 
    width: 100%; 
    height: 100%;  
    color: var(--fc-text); 
    min-height: 100vh;
    background: #050505;
    position: relative;
    font-size: calc(18px * var(--scale));
} 

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

body { 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    background: #050505;
    background-attachment: scroll;
    position: relative;
    z-index: 0;
} 

body::-webkit-scrollbar { 
    display: none; 
}

/* OVERALL */
.content,
.site-main,
.footer {
    position: relative;
    z-index: 1;
}
.card { 
    position: relative; 
    overflow: hidden; 
    padding: 2rem; 
    border-radius: 20px; 
    background: rgba(128, 128, 128,0.02); 
    backdrop-filter: blur(20px); 
} 

/* BUTTONS */
.button,
.fc-button,
.fc-pill-button,
.submit--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.34);
    background: rgba(var(--fc-gold-rgb), 0.08);
    color: var(--fc-text);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.button:hover,
.fc-button:hover:not(:disabled),
.fc-pill-button:hover,
.submit--btn:hover,
.submit--btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(var(--fc-gold-rgb), 0.76);
}

.fc-button--primary {
    background: linear-gradient(135deg, rgba(var(--fc-gold-rgb), 0.2), rgba(var(--fc-gold-rgb), 0.08));
    color: var(--fc-gold-light);
}

.fc-button--ghost,
.fc-pill-button {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
}

.fc-pill-button {
    min-height: 40px;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-pill-button.is-active {
    background: rgba(var(--fc-gold-rgb), 0.14);
    color: var(--fc-text);
    border-color: rgba(var(--fc-gold-rgb), 0.54);
}

.submit--btn {
    width: 100%;
    min-height: 45px;
    background: transparent;
    border: 2px solid var(--fc-gold);
    color: var(--fc-gold);
    font-weight: 600;
}

.submit--btn:hover,
.submit--btn:focus-visible {
    outline: none;
}
 
/* TYPOGRAPHY */
h1, h2, h3 { 
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.05;
}

.fc-section-title,
.fc-auth-heading,
.fc-visual-title,
.contact__title,
.info__title,
.about__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    background: linear-gradient(to right, var(--fc-gold-dark), var(--fc-gold), var(--fc-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.fc-auth-heading {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.fc-section-copy,
.fc-auth-copy,
.fc-auth-form__subtitle,
.fc-product-tile__copy,
.fc-cart-row__copy,
.info__text,
.about__text,
.contact__text {
    margin: 0;
    color: var(--fc-text-muted);
    line-height: 1.6;
}

.fc-eyebrow {
    margin: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(var(--fc-gold-rgb), 0.78);
}
 
::selection { 
    background: gold; 
    color: black; 
} 

::-moz-selection { 
    background: gold; 
    color: black; 
}

.overlay {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.is-active {
  display: flex;
  opacity: 1;
}

.overlay .fc-overlay-shell {
  background: rgba(0,0,0,0.5);
}

.close-overlay { 
    align-self: start; 
    justify-content: end; 
    max-width: fit-content; 
    background-color: #0a0a0a; 
    border-color: gold; 
} 

/* DISPLAY ON SCROLL */  
body::-webkit-scrollbar { 
    display: none; 
} 

section > *{ 
    max-width: 1200px; 
    width: 100%; 
}
 
section { 
    position: relative; 
    top: 0; 
    left: 0; 
    height: 100vh; 
    width: 100%; 
    min-height: 100vh;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 1.5rem; 
    scroll-snap-align: none; 
    scroll-snap-stop: normal; 
    transition: transform 0.6s ease, opacity 0.6s ease; 
    z-index: 2;
} 

@media (max-width: 950px) { 
    .home__nav { 
        opacity: 0; 
    } 
} 

/* ICONS */
.menu-container > button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button > img {
    width: 30px;
    height: auto;
    align-self: flex-end;
}

/* INPUT & FORM FIELDS */
.fc-field {
    position: relative;
    width: 100%;
    min-height: 50px;
    margin: 25px 0;
    color: var(--fc-text);
}

.contact__form .fc-field,
.fc-auth-panel .fc-field {
    margin: 0;
}

.fc-field textarea ~ label {
    top: 20px;
    transform: translateY(-250%);
}

.fc-field textarea {
    height: auto;
    min-height: 100px;
    padding-top: 20px;
    resize: vertical;
}

.fc-field textarea .fc-field__icon {
    top: 30px;
    transform: none;
}

.fc-field input,
.fc-field textarea {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    border-bottom: 2px solid var(--fc-border-gray);
    padding-right: 25px;
    font-size: 16px;
    color: var(--fc-text);
    font-weight: 500;
    transition: .5s;
}

.fc-field input:focus,
.fc-field input:not(:placeholder-shown),
.fc-field textarea:focus,
.fc-field textarea:not(:placeholder-shown),
.fc-field[data-filled="true"] input:not([type="file"]),
.fc-field[data-filled="true"] textarea {
    border-bottom-color: var(--fc-gold);
}

.fc-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-200%);
    font-size: 16px;
    color: var(--fc-text);
    pointer-events: none;
    transition: .5s;
}

.fc-field input:focus ~ label,
.fc-field input:not(:placeholder-shown) ~ label,
.fc-field textarea:focus ~ label,
.fc-field textarea:not(:placeholder-shown) ~ label,
.fc-field:focus-within .fc-field__label,
.fc-field[data-filled="true"] .fc-field__label {
    top: 6px;
    color: var(--fc-gold);
}

.fc-field .fc-field__icon.fc-field__icon--end {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-140%);
    height: auto;
    width: 25px;
    filter: brightness(100%) saturate(0);
}

.fc-field textarea ~ .fc-field__icon.fc-field__icon--end{
    justify-self: start;
    align-self: flex-start;
    top: 65%;
    transform: none;
}

.fc-field.file-group .fc-field__icon.fc-field__icon--end {
    filter: none;
    transform: translate(5%, 0%);
}

.fc-field.input-group.contact__message-group label.fc-field__label {
    transform: translateY(-100%);
}

.fc-field:focus-within .fc-field__icon.fc-field__icon--end,
.fc-field input:focus ~ .fc-field__icon.fc-field__icon--end, 
.fc-field input:is([type="text"], [type="email"]):not(:placeholder-shown) ~ .fc-field__icon.fc-field__icon--end, 
.fc-field textarea:focus ~ .fc-field__icon.fc-field__icon--end, 
.fc-field textarea:not(:placeholder-shown) ~ .fc-field__icon.fc-field__icon--end, 
.fc-field[data-filled="true"] .fc-field__icon.fc-field__icon--end { 
    filter: brightness(0) saturate(100%) invert(88%) 
            sepia(16%) saturate(6222%) hue-rotate(357deg) 
            brightness(104%) contrast(108%); 
}

.fc-field__icon.info-icon {
    width: var(--fc-info-icon-size);
    height: auto;
    filter: brightness(0) saturate(100%) invert(88%) 
            sepia(16%) saturate(6222%) hue-rotate(357deg) 
            brightness(104%) contrast(108%);
}

.fc-field__icon.info-icon.market {
    width: calc(var(--fc-info-icon-size) + 12%);
}

.fc-field__icon.info-icon.owner {
    width: calc(var(--fc-info-icon-size) + 11%);
}

.fc-field.file-group {
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-right: 25px;
}

.fc-field input[type="file"] {
    border-bottom: 2px solid var(--fc-border-gray);
    color: var(--fc-text);
    padding: 10px 21px 0 0;
    height: auto;
    width: 105%;
    cursor: pointer;
}

.fc-field input[type="file"] ~ label {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    color: var(--fc-text);
    pointer-events: none;
    transition: .5s;
}

.fc-field.file-group img,
.fc-field input[type="file"] ~ img {
    filter: brightness(0) invert(1);
}

.fc-field.file-group:focus-within input[type="file"],
.fc-field.file-group[data-has-file="true"] input[type="file"] {
    border-bottom: 2px solid var(--fc-gold);
    outline: none;
    color: var(--fc-gold);
}

.fc-field.file-group:focus-within .fc-field__icon.fc-field__label,
.fc-field.file-group[data-has-file="true"] .fc-field__label {
    top: -10px;
    color: var(--fc-gold);
}

.fc-field.file-group:focus-within .fc-field__icon.fc-field__icon--end,
.fc-field.file-group[data-has-file="true"] .fc-field__icon.fc-field__icon--end {
    filter: brightness(0) saturate(100%) invert(88%) 
            sepia(16%) saturate(6222%) hue-rotate(357deg) 
            brightness(104%) contrast(108%);
}

.fc-field input[type="file"]::file-selector-button {
    border: 1px solid var(--fc-border-gray);
    background: none;
    color: var(--fc-text);
    border-radius: 40px;
    padding: 5px 15px;
    margin-right: 10px;
    cursor: pointer;
    transition: .5s;
}

.fc-field input[type="file"]::file-selector-button:hover {
    border-color: var(--fc-gold);
    color: var(--fc-gold);
    transform: translateY(-10%);
}

.fc-field.file-group:focus-within input[type="file"]::file-selector-button,
.fc-field.file-group[data-has-file="true"] input[type="file"]::file-selector-button {
    border-color: var(--fc-gold);
    color: var(--fc-gold);
}

.fc-button {
    width: 100%;
    max-width: 50rem;
    align-self: center;
}

/* HOME SECTION */ 
.home > *:not(canvas) { 
    position: relative; 
    z-index: 3;
} 

/*Background*/ 
.home { 
    position: relative; 
    height: 100vh;
    min-height: 100vh; 
    width: 100%; 
    padding-top: 0; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
} 

.scene { 
    position: fixed; 
    pointer-events: none; 
    height: 200vh; 
    width: 100%; 
} 

/* Navbar */ 
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 80px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 2rem; 
    background: rgba(10, 10, 10, 0.7); 
    z-index: 1000;
} 

.logo-link { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: gold; 
    text-decoration: none;
    flex: 0 0 auto;
    height: 100%;
} 

.navbar__logo { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: gold; 
    font-size: 1.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    flex: 0 0 auto;
    height: 100%;
}

.logo__text {
    color: gold;
    font-size: 2rem;
} 

.navbar__menu-button { 
    position: fixed; 
    top: 20px; 
    right: 20px; 
    cursor: pointer; 
    z-index: 10000; 
    background: none;
    border: none;
    padding: 8px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    opacity: 1;
    visibility: visible;
}

.navbar__menu-button span {
    display: block;
    width: 30px;
    height: 3px;
    background: gold;
    margin: 4px 0;
    transition: 0.4s;
    opacity: 1;
}

.navbar__menu-button.active span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}

.navbar__menu-button.active span:nth-child(2) {
    opacity: 0;
}

.navbar__menu-button.active span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
}

.home__nav { 
    position: absolute; 
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%); 
    display: flex; 
    gap: 2.5rem; 
    align-items: center;
    justify-content: center;
    width: auto;
}

.home__nav a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.home__nav a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: gold;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.home__nav a:hover {
    color: gold;
}

.home__nav a:hover::after {
    width: 100%;
} 

.overlay-menu { 
    position: fixed; 
    top: 0; 
    right: 0; 
    width: min(340px, 88vw);
    height: 100vh;
    padding: 0;
    box-sizing: border-box;
    background: rgba(10, 10, 10, 0.9);
    border-left: 1px solid rgba(var(--fc-gold-rgb), 0.18);
    backdrop-filter: blur(16px);
    transform: translate3d(105%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9001;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
} 

.overlay-menu.active { 
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
} 

.overlay-menu > * {
    position: relative;
    z-index: 1;
}

.menu-container { 
    display: grid;
    gap: 12px;
    padding: 100px 22px 24px;
    margin-top: 0;
    margin-bottom: 0;
} 

.overlay-menu__btn { 
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--fc-text);
    cursor: pointer;
    transition: var(--fc-transition);
    width: 100%;
    margin: 0;
    display: block;
    text-align: left;
} 

.overlay-menu__btn:hover { 
    transform: translateY(-2px) scale(1.03);
    border-color: var(--fc-gold);
} 

body.overlay-stars #starCanvas { 
    opacity: 1; 
} 

/* OVERLAYS */ 
.single-card-overlay .card { 
    max-width: 500px; 
    width: 90%; 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
} 

.close-overlay { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: rgba(10,10,10,0.9); 
    border: 1px solid gold; 
    border-radius: 999px; 
    color: white; 
    padding: 0.4rem 0.8rem; 
    cursor: pointer; 
    z-index: 5003; 
    transition: all 0.3s ease; 
} 

.close-overlay:hover { 
    transform: translateY(-2px) scale(1.05); 
    background: rgba(255, 215, 0, 0.1); 
} 

.product__viewer { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 2rem; 
    max-width: 90%; 
} 

/* OVERLAY MODALS */
.auth,
.product,
.cart,
.settings,
.age-gate,
.parent-consent {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 5001;
}

.auth.active,
.product.active,
.cart.active,
.settings.active,
.age-gate.active,
.parent-consent.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.auth::before,
.product::before,
.cart::before,
.settings::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fc-black);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    opacity: 0;
    z-index: 1;
}

.auth .card,
.product .card,
.cart .card,
.settings .card {
    position: relative;
    z-index: 5002;
    background: rgba(20, 20, 20, 0.65);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--fc-gold-rgb), 0.08);
    transition: backdrop-filter 0.5s ease, transform 0.4s ease;
}

.auth > *,
.product > *,
.cart > *,
.settings > * {
    position: relative;
    z-index: 5002;
    background: black;
    opacity: 1;
}

.auth.active ~ #planetCanvas,
.product.active ~ #starCanvas,
.cart.active ~ #starCanvas,
.settings.active ~ #starCanvas {
    opacity: 1;
} 
    
/* HOME CARD */ 
.home .card, 
.glow-container .card.glow-card, 
.home .card__title, 
.home .card__text { 
    position: relative; 
    z-index: 1000; 
} 

.glow-container .card.glow-card::before, 
.glow-container .card.glow-card::after { 
    z-index: 2;
} 

.home .card { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    align-items: flex-start; 
    padding: 2rem; 
    border-radius: 20px; 
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(0, 0, 0, 0.1); 
    width: 70%; 
    max-width: 700px; 
    height: auto;
    margin: auto; 
    position: relative; 
    justify-content: flex-start; 
    z-index: 10; 
} 

.home .card__title { 
    font-size: 3rem; 
    font-weight: 700; 
    background: linear-gradient(to right, #6b4b00, gold, #6b4b00); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: transparent; 
} 

.home .card__text { 
    font-size: 1.1rem; 
    color: white; 
} 

.home .card__actions { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
} 

.action-container { 
    display: flex; 
    gap: 15px; 
} 

/* CARD TEST */ 

.glow-container { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 50px; 
    flex-wrap: wrap; 
    position: relative; 
    z-index: 2;
    width: 100%;
} 

.card.glow-card { 
    position: relative; 
    padding: 2rem; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    overflow: hidden; 
    transition: 0.3s ease; 
    pointer-events: auto; 
} 

.card.glow-card::before { 
    content: ''; 
    position: absolute; 
    top: var(--y, 50%); 
    left: var(--x, 50%); 
    transform: translate(-50%, -50%); 
    width: 400px; 
    height: 400px; 
    background: radial-gradient(gold, transparent 35%); 
    mix-blend-mode: screen;
    border-radius: 20px; 
    opacity: 0; 
    filter: blur(60px); 
    transition: opacity 0.5s; 
    z-index: 1;
} 

.card.glow-card:hover::before { 
    opacity: 1; 
} 

.card.glow-card::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    border-radius: 18px; 
    backdrop-filter: blur(10px); 
    z-index: 2; 
} 

.card.glow-card > * { 
    position: relative; 
    z-index: 10; 
} 

.glow-card { 
    position: relative; 
    z-index: 3;
} 

/* LOGO */ 
.navbar__logo { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: gold; 
    font-size: 1.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    flex: 0 0 auto;
    height: 100%;
}

/* INFO */ 
.info { 
    text-align: center; 
    z-index: 3;
    backdrop-filter: none; 
    display: flex; 
    flex-direction: column; 
    padding: 120px 20px; 
    gap: 20px; 
    justify-content: center; 
} 

.info__top { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
} 

.info__title { 
    font-size: 3rem; 
    font-weight: 700; 
    background: linear-gradient(to right, #6b4b00, gold, #6b4b00); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 0.5rem; 
} 

.info__text { 
    font-size: 1.2rem; 
    color: white; 
    margin-bottom: 1.5rem; 
    max-width: 700px; 
    justify-self: center;
} 

.info__container { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
    margin-top: 2rem; 
    width: 100%; 
    max-width: 900px; 
} 

.info__container .card:hover { 
    transform: translateY(-8px); 
} 

.info__item { 
    display: flex; 
    align-items: center; 
    flex-direction: column; 
    justify-content: center; 
    text-align: center; 
    min-height: 260px; 
    height: 100%; 
    padding: 2rem; 
    gap: 1rem; 
} 

.info__icon { 
    width: 60px; 
    height: 60px; 
    object-fit: contain; 
    opacity: 0.8; 
} 

.info_description { 
    font-size: 1.05rem; 
    color: rgba(255, 255, 255, 0.85); 
} 

.info__item-container {
    display: grid;
    grid: repeat(2, auto) / auto-flow auto;
}

/* ABOUT */ 
.about { 
    backdrop-filter: none; 
    margin-bottom: 0.5rem; 
    padding: 120px 20px; 
    text-align: center; 
    gap: 20px; 
} 

.about__title { 
    font-size: 3rem; 
    font-weight: 700; 
    background: linear-gradient(to right, #6b4b00, gold, #6b4b00); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent; 
} 

.about__text { 
    font-size: 1.2rem; 
    color: rgba(255, 255, 255, 0.6); 
    margin-bottom: 1.5rem; 
    max-width: 700px; 
    justify-self: center;
} 

.about__item { 
    display: flex; 
    align-items: center; 
    flex-direction: row; 
    justify-content: center; 
    text-align: center; 
    min-height: 260px; 
    height: 100%; 
    padding: 2rem; 
    gap: 1rem; 
} 

.about__slideshow {
    position: relative;
    width: 170px;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
}

.about__slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.about__slide {
    width: 170px;
    height: 170px;
    object-fit: cover;
    flex-shrink: 0;
}

.about__item.reverse {
    flex-direction: row-reverse;
}

.about__item-text {
    width: 50%;
}

.about__image { 
    width: 170px; 
    height: auto; 
    object-fit: contain; 
    opacity: 0.8; 
    border-radius: 12px;
} 

.about__item, 
.settings__item { 
    position: relative; 
    overflow: hidden; 
} 

.about--two { 
    display: flex; 
    flex-direction: column; 
    gap: 4rem; 
    margin-top: 3rem; 
} 

.about__row { 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center; 
    gap: 2rem; 
} 

.about__row.reverse { 
    direction: rtl; 
} 

.about__row.reverse * { 
    direction: ltr; 
} 

.about__content { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
} 

.about__item { 
    min-height: 250px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

@media (max-width: 700px) { 
    .info__container { 
    grid-template-columns: 1fr; 
    } 
    .about__row { 
    grid-template-columns: 1fr; 
    } 
    .about__row.reverse { 
    direction: ltr; 
    } 
} 

/* CONTACT */ 
.contact { 
    display: flex; 
    align-items: center; 
    flex-direction: column; 
    padding: 120px 20px; 
    gap: 2rem; 
} 

.contact__header { 
    text-align: center; 
    max-width: 600px; 
} 

.contact__title { 
    font-size: 3rem; 
    font-weight: 700; 
    background: linear-gradient(to right, #6b4b00, gold, #6b4b00); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 1rem; 
} 

.contact__text { 
    font-size: 1.2rem; 
    color: rgba(255, 255, 255, 0.6); 
    max-width: 700px; 
} 

.contact__card { 
    max-width: 500px; 
    width: 100%;
    overflow: hidden;
} 

.contact__form { 
    display: flex; 
    flex-direction: row; 
    gap: 1.5rem; 
    margin-top: 25px;
} 

/* AUTHENTICATION */ 
#auth-link { 
    position: fixed; 
    inset: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    pointer-events: none; 
    visibility: hidden; 
    opacity: 0; 
    z-index: 9999; 
    transition: opacity 0.3s ease; 
    background: rgba(0, 0, 0, 0.6); 
} 

#auth-link.active { 
    pointer-events: all; 
    visibility: visible; 
    opacity: 1; 
} 

#authCard { 
    width: 90%; 
    max-width: 800px; 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px); 
    border-radius: 1rem; 
    overflow: hidden; 
    position: relative; 
    transition: transform 0.3s ease; 
} 

#loginForm, #registerForm { 
    display: none; 
    flex: 1; 
    padding: 2rem; 
} 

#loginForm.active, 
#registerForm.active { 
    display: block; 
} 

.auth { 
    position: fixed; 
    inset: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    pointer-events: none; 
    visibility: hidden; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    z-index: 5000; 
    background: rgba(0, 0, 0, 0.6); 
} 

.auth.active { 
    opacity: 1; 
    pointer-events: all; 
    visibility: visible; 
} 

.auth__wrapper { 
    display: flex; 
    width: 90%; 
    max-width: 1000px; 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px); 
    border-radius: 1rem; 
    overflow: hidden; 
} 

.auth__left, 
.auth__right { 
    flex: 1; 
    padding: 2rem; 
}

/* PRODUCTS */ 
.product { 
    background: linear-gradient( to bottom, #6b4b00, gold, #fff8dc, gold, #6b4b00 ); 
    }

.product__viewer { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    }

.product__display { 
    text-align: center; 
    }

.product__item { 
    width: 300px; 
    height: 300px; 
    object-fit: contain; 
    }

.product__info { 
    margin-top: 1rem; 
    }

.arrow { 
    font-size: 2rem; 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: black; 
}

/* CART */ 
.cart{ 
    margin: 0 auto; 
}

.cart__title { 
    font-size: 48px; 
}

.cart__items { 
    display: flex; 
    justify-content: space-around; 
    border-radius: 20px; 
    background: #aaa; 
}

.cart__header { 
    display: flex; 
}

/* SETTINGS */ 
.settings__title { 
    font-size: 48px; 
}

.settings__grid{ 
    gap: 1.5rem; 
    margin-top: 2rem; 
}

.settings__item{ 
    padding: 1.5rem; 
    border-radius: 12px; 
    background: rgba(255,255,255,0.03); 
}

.settings { 
    opacity: 0;
}

.settings.active { 
    opacity: 1;
}

/* FOOTER */
.footer {
    background: #000;
    min-height: 18vh;
    display: grid;
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px 28px;
    box-sizing: border-box;
    border-top: 1px solid rgba(var(--fc-gold-rgb), 0.08);
    position: relative;
    z-index: 1;
}

.footer__left,
.footer__right {
    display: flex;
    flex-direction: column;
}

.footer__left {
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
}

.footer__image-slot {
    width: 100%;
    max-width: 160px;
    min-height: 120px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px dashed rgba(var(--fc-gold-rgb), 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.footer__left img,
.footer__image {
    width: 100%;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.8;
}

.footer__image:not([src]),
.footer__image[src=""] {
    display: none;
}

.footer__right {
    gap: 10px;
    align-items: flex-start;
}

.footer__name {
    font-size: 1.45rem;
    color: var(--fc-gold);
}

.footer__description,
.footer__text {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.footer__bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.footer__bottom-spacer {
    flex: 1 1 auto;
}

.footer__policy-links {
    text-align: right;
}

.footer__link {
    color: var(--fc-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--fc-gold);
}

@media (max-width: 768px) { 
    .footer-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        text-align: center; 
        gap: 1.5rem; 
    }

    .footer-image,
    .footer-copy, 
    .footer-links, 
    .footer-brand { 
        justify-content: center; 
        align-items: center; 
        text-align: center; 
    }
}

.footer__contact {
    display: flex;
    flex-direction: row;
    gap: 2rem; 
    flex-wrap: wrap;
    padding: 10px;
}

.fc_icon-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.fc_icon-logo {
    border: goldenrod 2px solid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    background-color: #000;
    flex-shrink: 0;
}

.fc_icon-logo img {
    width: 28px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(88%) 
            sepia(16%) saturate(6222%) hue-rotate(357deg) 
            brightness(104%) contrast(108%);
}

.fc_icon-text {
    color: white;
    padding: 6px 15px 6px 30px;
    margin-left: -25px; 
    border-radius: 0 30px 30px 0;
    border: 2px solid goldenrod;
    border-left: none;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
    white-space: nowrap;
}

.fc_icon-btn:hover {
    transform: scale(1.05);
}

/* LOGO */ 
.logo-section{ 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.logo-container{ 
    position: absolute; 
    width: 100%; 
    height: 100%; 
}

@keyframes rotateHalo{ 
    0%{ 
        transform: translate(-50%,-50%) rotate(0deg); 
    }
    100%{ 
        transform: translate(-50%,-50%) rotate(360deg); 
    }
}

/* AGE GATE */ 
.age-gate {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 6000;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.age-gate.active {
    opacity: 1;
    pointer-events: all;
}

.age-gate__card {
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.age-gate__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: gold;
}

.age-gate__actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.age-gate__card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(90deg, transparent, gold, transparent);
    z-index: 1;
    opacity: 0.6;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.age-gate__card > * {
    position: relative;
    z-index: 2;
}

.age-gate__confirm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.age-gate__confirm input {
    accent-color: gold;
}

#age-error {
    color: red;
}

/*PARENT OVERLAY*/
.parent-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 6000;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.parent-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.parent-card {
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.parent-title {
    font-size: 1.5rem;
    color: gold;
    margin-bottom: 1rem;
}

.parent-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.parent-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

#parent-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* PUBLIC LAUNCH OVERRIDES */
.content,
.footer {
    position: relative;
    z-index: 1;
}

.content {
    min-height: 0;
    overflow: clip;
}

.content::before {
    display: none;
}

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

.content > .overlay:not(.fc-overlay),
body > .overlay:not(.fc-overlay) {
    display: none;
}

.overlay.fc-overlay {
    position: fixed;
    inset: 0;
    display: block;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8000;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.84));
    backdrop-filter: blur(18px);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.overlay.fc-overlay.is-active,
.overlay.fc-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fc-overlay.fc-cart-overlay {
    display: flex;
    justify-content: center;
}

.overlay.fc-overlay > .fc-overlay-shell {
    position: relative;
    z-index: 1;
}

.overlay.fc-overlay > .fc-overlay-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.fc-overlay-canvas--constellation {
    opacity: 0.74;
}

.fc-overlay-canvas--planet {
    opacity: 0.96;
}

.site-main {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 52px);
    padding: 108px 0 48px;
}

.content section:not(.overlay) {
    position: relative;
    height: auto;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.content section:not(.overlay) > * {
    width: auto;
    max-width: min(100%, 1100px);
}

.header {
    position: relative;
    z-index: 5000;
}

.footer {
    min-height: 18vh;
    display: grid;
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px 28px;
    box-sizing: border-box;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__left,
.footer__right {
    display: flex;
    flex-direction: column;
}

.footer__left {
    align-items: flex-start;
    justify-content: center;
    gap: 0.8rem;
}

.footer__image-slot {
    width: 100%;
    max-width: 160px;
    min-height: 120px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px dashed rgba(255, 215, 0, 0.28);
    background: rgba(255, 255, 255, 0.03);
}

.footer__left img,
.footer__image {
    width: 100%;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.8;
}

.footer__image:not([src]),
.footer__image[src=""] {
    display: none;
}

.footer__right {
    gap: 10px;
    align-items: flex-start;
}

.footer__name {
    font-size: 1.45rem;
    color: gold;
}

.footer__description,
.footer__text {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.footer__bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.footer__bottom-spacer {
    flex: 1 1 auto;
}

.footer__policy-links {
    text-align: right;
}

.footer__link {
    color: white;
    text-decoration: none;
}

.footer__link:hover {
    color: gold;
}

.fc-overlay-shell {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-centered-shell {
    align-items: center;
    justify-content: center;
}

.fc-product-shell,
.fc-cart-shell {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* GLASS & GLOW EFFECTS */
.fc-glass-card,
.fc-product-tile,
.fc-cart-row,
.fc-settings-row {
    --fc-glow-alpha: 0;
    --x: 50%;
    --y: 50%;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(var(--fc-border-gray), 0.08);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    color: #f7f7f7;
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.fc-glass-card {
    will-change: transform;
}

.fc-glass-card::before,
.fc-product-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.18);
    pointer-events: none;
}



.fc-glass-card::after,
.fc-product-tile::after,
.fc-cart-row::after,
.fc-settings-row::after {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--fc-gold-rgb), 0.58) 0%, rgba(var(--fc-gold-rgb), 0.2) 26%, rgba(var(--fc-gold-rgb), 0) 64%);
    filter: blur(54px);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.fc-glass-card > *,
.fc-product-tile > *,
.fc-cart-row > *,
.fc-settings-row > * {
    position: relative;
    z-index: 1;
}

.fc-glass-card:hover,
.fc-product-tile:hover,
.fc-cart-row:hover,
.fc-settings-row:hover {
    --fc-glow-alpha: 0.16;
}

.fc-glass-card:hover::after,
.fc-product-tile:hover::after,
.fc-cart-row:hover::after,
.fc-settings-row:hover::after {
    opacity: 1;
}

.fc-product-tile:hover {
    transform: translateY(-6px) scale(1.01);
}

.fc-overlay__close,
.fc-button,
.fc-pill-button {
    font: inherit;
}

.fc-button:active {
    transform: translateY(1px) scale(0.98);
}

.fc-overlay__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    min-height: 0;
    padding: 0.2rem 0.45rem;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: #f4d469;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.fc-button {
    min-height: 46px;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.34);
    background: rgba(255, 215, 0, 0.08);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.fc-button:hover:not(:disabled),
.fc-pill-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.76);
}

.fc-button--primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.08));
    color: #fff4bf;
}

.fc-button--ghost,
.fc-pill-button {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
}

.fc-pill-button {
    min-height: 40px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.fc-pill-button.is-active {
    background: rgba(255, 215, 0, 0.14);
    color: #fff;
    border-color: rgba(255, 215, 0, 0.54);
}

.fc-eyebrow {
    margin: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 215, 0, 0.78);
}

.fc-section-title,
.fc-auth-heading,
.fc-visual-title {
    margin: 0;
    line-height: 1.05;
}

.fc-section-title,
.fc-visual-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.fc-auth-heading {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.fc-section-copy,
.fc-auth-copy,
.fc-auth-form__subtitle,
.fc-product-tile__copy,
.fc-cart-row__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

/* STATUS MESSAGES */
.fc-status-message,
.contact__status {
    min-height: 24px;
    margin: 0;
}

.fc-status-message[data-state="success"],
.contact__status[data-state="success"] {
    color: #a8f0bc;
}

.fc-status-message[data-state="pending"],
.contact__status[data-state="pending"] {
    color: #f9d878;
}

.fc-status-message[data-state="error"],
.contact__status[data-state="error"] {
    color: #ff9a9a;
}

.fc-inline-actions,
.fc-panel-header,
.fc-chip-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fc-inline-actions {
    flex-wrap: wrap;
    justify-content: space-between;
}

.fc-panel-header {
    justify-content: space-between;
    align-items: flex-start;
}

.fc-chip-group {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.fc-chip,
.fc-visual-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    background: rgba(255, 215, 0, 0.08);
    color: #f4d469;
    font-size: 0.85rem;
}

.fc-quantity-input {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    outline: none;
}

.fc-stack-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fc-check-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
}

.fc-check-row input {
    margin-top: 0.25rem;
    accent-color: gold;
}

.fc-empty-state {
    padding: 1rem 1.15rem;
    border-radius: 20px;
    border: 1px dashed rgba(255, 215, 0, 0.24);
    color: rgba(255, 255, 255, 0.68);
}

.fc-auth-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: clamp(0px, 3vw, 26px);
}

.fc-auth-layout {
    width: 100%;
    min-height: min(760px, calc(100vh - 48px));
    display: grid;
    grid-template-columns: minmax(320px, 480px) 1fr;
    gap: clamp(24px, 4vw, 72px);
    align-items: center;
}

.fc-auth-overlay {
    background:
        linear-gradient(110deg, rgba(4, 4, 4, 0.86) 0%, rgba(4, 4, 4, 0.58) 42%, rgba(4, 4, 4, 0.76) 100%);
    backdrop-filter: blur(12px);
}

.fc-auth-panel {
    display: flex;
    flex-direction: column;
    gap: 0.68rem;
    width: min(100%, 500px);
    min-height: 700px;
    padding: 30px 30px 50px;
    overflow: hidden;
    margin-right: auto;
}

.fc-auth-switcher {
    display: inline-flex;
    gap: 0.75rem;
    padding: 0.4rem;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.fc-auth-form-host {
    position: relative;
    flex: 1;
    min-height: 420px;
}

.fc-auth-form {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.fc-auth-form.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fc-auth-form__heading {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fc-auth-form__title {
    margin: 0;
    font-size: 1.04rem;
}

.fc-auth-visual-spacer {
    min-height: clamp(320px, 58vh, 720px);
}

.fc-auth-panel .fc-field {
    height: auto;
    min-height: 64px;
}

.fc-auth-copy,
.fc-auth-form__subtitle {
    line-height: 1.45;
}

.fc-auth-panel .fc-status-message {
    min-height: 20px;
}

.fc-auth-panel .fc-field__input {
    min-height: 60px;
    padding: 1.55rem 1rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.72);
}

.fc-auth-panel .fc-field__label {
    top: 1.1rem;
    left: 1rem;
    transform: none;
    font-size: 0.96rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(100%) sepia(100%) grayscale(100%) brightness(150%);

}

.fc-auth-panel .fc-field:focus-within .fc-field__input,
.fc-auth-panel .fc-field[data-filled="true"] .fc-field__input {
    border-color: rgba(243, 209, 101, 0.88);
}

.fc-auth-panel .fc-auth-submit {
    margin-top: 0.22rem;
}

.fc-auth-form__actions {
    margin-top: auto;
    display: grid;
    gap: 0.8rem;
    padding-top: 0.35rem;
}

.fc-auth-legal {
    display: grid;
    gap: 0.65rem;
}

.fc-auth-legal__copy,
.contact__consent {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.55;
}

.fc-auth-legal__check {
    font-size: 0.9rem;
}

.fc-legal-link,
.fc-auth-legal__link {
    color: #f4d469;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.fc-legal-link:hover,
.fc-legal-link:focus-visible,
.fc-auth-legal__link:hover,
.fc-auth-legal__link:focus-visible {
    color: #fff2b0;
}

.fc-product-card,
.fc-cart-card {
    width: min(1180px, 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 100%; 
}

.fc-product-type-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.fc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.2rem;
    overflow: auto;
}

.fc-product-tile {
    --fc-glow-alpha: 0;
    --x: 50%;
    --y: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle 220px at var(--x) var(--y), rgba(255, 215, 0, var(--fc-glow-alpha)), rgba(255, 215, 0, 0.025) 18%, transparent 56%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.fc-product-tile.is-added {
    border-color: rgba(255, 215, 0, 0.7);
    transform: translateY(-4px);
}

.fc-product-tile__image-frame {
    display: grid;
    place-items: center;
    min-height: 220px;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 42%);
}

.fc-product-tile__image {
    width: min(100%, 240px);
    max-height: 220px;
    object-fit: contain;
}

.fc-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fc-product-tile__title,
.fc-cart-row__title {
    margin: 0;
}

.fc-product-tile__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.fc-product-tile__price,
.fc-cart-row__price,
.fc-total-value {
    font-weight: 700;
    color: #fff0af;
}

.fc-cart-list {
    display: grid;
    gap: 1rem;
    overflow: auto;
}

.fc-cart-row {
    --fc-glow-alpha: 0;
    --x: 50%;
    --y: 50%;
    display: grid;
    grid-template-columns: 88px minmax(0, 2fr) auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 22px;
    background:
        radial-gradient(circle 220px at var(--x) var(--y), rgba(255, 215, 0, var(--fc-glow-alpha)), rgba(255, 215, 0, 0.025) 18%, transparent 56%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.fc-cart-image {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    object-fit: cover;
}

.fc-cart-row__details {
    display: grid;
    gap: 0.35rem;
}

.fc-cart-footer {
    display: grid;
    gap: 1rem;
}

.fc-cart-totals {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: end;
    gap: 0.8rem 1.4rem;
}

.fc-total-label {
    color: rgba(255, 255, 255, 0.68);
}

.fc-quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.fc-quantity-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background: rgba(255, 215, 0, 0.08);
    color: #fff;
    cursor: pointer;
}

.fc-settings-card,
.fc-age-card,
.fc-parent-card {
    width: min(720px, 100%);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fc-settings-grid {
    display: grid;
    gap: 0.75rem;
}

.fc-settings-row {
    --fc-glow-alpha: 0;
    --x: 50%;
    --y: 50%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background:
        radial-gradient(circle 220px at var(--x) var(--y), rgba(255, 215, 0, var(--fc-glow-alpha)), rgba(255, 215, 0, 0.025) 18%, transparent 56%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.fc-settings-row__label {
    color: rgba(255, 255, 255, 0.68);
}

.fc-settings-row__value {
    text-align: right;
}

.fc-settings-card:has(.fc-settings-row:hover)::after {
    opacity: 0;
}

@media (max-width: 980px) {
    .fc-auth-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .fc-auth-panel {
        min-height: 676px;
    }

    .fc-auth-visual-spacer {
        display: none;
    }

    .fc-cart-row {
        grid-template-columns: 72px 1fr;
    }

    .fc-quantity-control,
    .fc-cart-row__price,
    .fc-cart-row__remove {
        grid-column: 2;
    }

    .fc-cart-totals {
        justify-content: start;
        grid-template-columns: repeat(2, auto);
    }
}

@media (max-width: 768px) {
    .site-main {
        padding-top: 92px;
    }

    .navbar {
        padding: 0 1rem;
    }

    .home .card,
    .info .card,
    .about .card,
    .contact__card,
    .fc-product-card,
    .fc-cart-card,
    .fc-settings-card,
    .fc-age-card,
    .fc-parent-card,
    .fc-auth-panel {
        padding: 22px 18px 25px;
    }

    .fc-auth-panel {
        min-height: 652px;
    }

    .fc-auth-form-host {
        min-height: 404px;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: 0;
    }

    .footer__left {
        align-items: center;
    }

    .footer__bottom,
    .fc-panel-header,
    .fc-inline-actions {
        justify-content: center;
    }

    .footer__right {
        align-items: center;
    }

    .footer__policy-links {
        text-align: center;
    }
}

/* EXTRA */
body.fc-overlay-open {
    overflow: hidden;
}

/* FINAL RESPONSIVE + INTEGRATION OVERRIDES */
section.info,
section.about,
section.contact,
section.compliance-notice {
    min-height: clamp(680px, 100vh, 980px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fc-auth-panel {
    min-height: 0;
    max-height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(22px, 4vw, 34px);
}

.fc-auth-form-host {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
}

.fc-auth-form {
    position: relative;
    inset: auto;
    display: none;
    min-height: 0;
}

.fc-auth-form.is-active {
    display: flex;
}

.fc-auth-form__actions {
    margin-top: 0;
}

.fc-auth-layout {
    min-height: 0;
}

.overlay.fc-overlay {
    overflow-y: auto;
}

.footer {
    min-height: 160px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    gap: clamp(18px, 4vw, 40px);
    align-items: end;
    padding: clamp(24px, 4vw, 42px);
}

.footer__brand {
    display: grid;
    gap: 0.55rem;
    align-self: start;
    justify-self: start;
}


.footer__right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
    align-items: center;
    justify-content: flex-end;
    align-self: end;
    justify-self: end;
    text-align: right;
}

.footer__description {
    max-width: 36rem;
}

.fc-payment-status {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: min(420px, calc(100vw - 36px));
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.92);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
    color: rgba(255, 255, 255, 0.86);
}

.fc-payment-status[hidden] {
    display: none;
}

.fc-payment-status__dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #f9d878;
    box-shadow: 0 0 18px rgba(249, 216, 120, 0.72);
}

.fc-payment-status[data-state="success"] {
    border-color: rgba(98, 230, 142, 0.42);
}

.fc-payment-status[data-state="success"] .fc-payment-status__dot {
    background: #62e68e;
    box-shadow: 0 0 18px rgba(98, 230, 142, 0.72);
}

.fc-payment-status[data-state="cancelled"] {
    border-color: rgba(255, 204, 102, 0.42);
}

.fc-payment-status[data-state="cancelled"] .fc-payment-status__dot {
    background: #ffcc66;
}

.fc-payment-status[data-state="failed"],
.fc-payment-status[data-state="error"] {
    border-color: rgba(255, 126, 126, 0.42);
}

.fc-payment-status[data-state="failed"] .fc-payment-status__dot,
.fc-payment-status[data-state="error"] .fc-payment-status__dot {
    background: #ff7e7e;
    box-shadow: 0 0 18px rgba(255, 126, 126, 0.72);
}

@media (max-width: 980px) {
    .fc-auth-panel {
        width: min(100%, 520px);
        max-height: calc(100vh - 32px);
    }
}

@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        align-items: start;
        text-align: left;
    }

    .footer__brand,
    .footer__contact,
    .footer__right {
        justify-self: stretch;
    }

    .footer__contact {
        text-align: center;
        white-space: normal;
    }

    .footer__right {
        justify-content: flex-start;
        text-align: left;
    }

    .about__item,
    .about__item.reverse {
        flex-direction: column;
    }

    .about__item-text {
        width: 100%;
    }

    section.info,
    section.about,
    section.contact,
    section.compliance-notice {
        min-height: auto;
        padding-block: 72px;
    }
}

.fc-login-page {
    min-height: 100vh;
    background: #050505;
}

#starCanvas,
#planetCanvas {
    position: fixed;
    top: 0;
    pointer-events: none;
    opacity: 0;
    background: transparent;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 7900;
}

#starCanvas {
    inset: 0;
    width: 100vw;
    height: 100vh;
}

#planetCanvas {
    right: 0;
    left: auto;
    width: min(44vw, 640px);
    height: 100vh;
    transform: translateX(36px);
}

body.overlay-stars #starCanvas {
    opacity: 0.74;
}

body.overlay-planet #planetCanvas {
    opacity: 0.94;
    transform: translateX(0);
}

.overlay.fc-overlay {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.overlay.fc-overlay::before,
.overlay.fc-overlay::after {
    content: none;
    display: none;
}

.overlay.fc-overlay > * {
    background: transparent;
}

.fc-auth-overlay {
    background:
        linear-gradient(90deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.84) 46%, rgba(4, 4, 4, 0.44) 78%, rgba(4, 4, 4, 0.14) 100%);
}

.fc-auth-visual-spacer {
    pointer-events: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: gold;
    text-decoration: none;
    background: transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    backface-visibility: hidden;
    transform-origin: center center;
    image-rendering: auto;
    display: block;
}

.logo--spinning {
    animation: fcLogoSpin 4.8s linear infinite;
}

@keyframes fcLogoSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fc-quantity-control {
    display: inline-flex;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.5rem;
    border-radius: 22px;
}

.fc-quantity-buttons {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.35rem;
}

.fc-quantity-button {
    width: 34px;
    height: 34px;
}

.fc-quantity-input {
    width: 76px;
    min-height: 72px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    outline: none;
    text-align: center;
    font-size: 1rem;
    appearance: textfield;
    -moz-appearance: textfield;
}

.fc-quantity-input::-webkit-outer-spin-button,
.fc-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 1220px) {
    body.overlay-planet {
        --fc-auth-planet-top: clamp(18px, 4vh, 38px);
        --fc-auth-planet-width: min(100vw, 420px);
        --fc-auth-planet-height: min(30vh, 250px);
    }

    body.overlay-planet #planetCanvas {
        top: var(--fc-auth-planet-top);
        left: 50%;
        right: auto;
        width: var(--fc-auth-planet-width);
        height: var(--fc-auth-planet-height);
        transform: translateX(-50%) !important;
    }

    body.overlay-planet .fc-auth-shell {
        padding-top: calc(var(--fc-auth-planet-top) + (var(--fc-auth-planet-height) * 0.72));
    }

    .fc-auth-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
    }

    .fc-auth-panel {
        margin: 0 auto;
    }

    .fc-auth-visual-spacer {
        display: none;
    }
}

@media (max-width: 980px) {
    #planetCanvas {
        width: min(100vw, 420px);
    }

    .fc-auth-overlay {
        background:
            linear-gradient(180deg, rgba(4, 4, 4, 0.9) 0%, rgba(4, 4, 4, 0.78) 58%, rgba(4, 4, 4, 0.52) 100%);
    }
}

@media (max-width: 768px) {
    .overlay-menu {
        width: min(300px, 88vw);
    }

    #planetCanvas {
        width: min(100vw, 360px);
        /* opacity: 0.72; */
    }
}

.footer {
    background: #050505;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
.fc-field__input:-webkit-autofill,
.fc-quantity-input:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-font-smoothing: antialiased;
    caret-color: #fff;
    box-shadow: 0 0 0 10000px transparent inset;
    -webkit-box-shadow: 0 0 0 10000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus,
.fc-field__input:-webkit-autofill:focus,
.fc-quantity-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    box-shadow: 0 0 0 10000px transparent inset;
    -webkit-box-shadow: 0 0 0 10000px transparent inset;
}

input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill,
.fc-field__input:-moz-autofill,
.fc-quantity-input:-moz-autofill {
    background-color: transparent;
    color: #fff;
}

.fc-chip--soft {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.1);
}

.fc-product-size-label {
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.76);
}

.fc-product-size-select {
    width: 100%;
    min-height: 46px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 0.85rem 1rem;
    outline: none;
}

.fc-product-size-select:focus {
    border-color: rgba(255, 215, 0, 0.6);
}

.fc-cart-row__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.fc-checkout-card,
.fc-invoice-card {
    width: min(1180px, 100%);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 100%;
}

.fc-checkout-layout,
.fc-invoice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
    gap: 1.4rem;
    min-height: 0;
}

.fc-checkout-form,
.fc-checkout-summary,
.fc-invoice-preview,
.fc-invoice-sidebar {
    min-height: 0;
}

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

.fc-checkout-summary,
.fc-invoice-sidebar,
.fc-invoice-preview__surface {
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-checkout-summary {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.fc-checkout-summary__title,
.fc-invoice-sidebar__title {
    margin: 0;
}

.fc-checkout-summary__list,
.fc-invoice-session-list,
.fc-invoice-preview {
    display: grid;
    gap: 0.8rem;
    overflow: auto;
}

.fc-checkout-summary__row,
.fc-checkout-summary-row,
.fc-invoice-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.fc-checkout-summary-row__copy,
.fc-invoice-item__copy {
    display: grid;
    gap: 0.25rem;
}

.fc-checkout-summary-row__copy span,
.fc-invoice-item__copy span,
.fc-invoice-preview__meta,
.fc-invoice-preview__address span {
    color: rgba(255, 255, 255, 0.68);
}

.fc-checkout-summary__totals,
.fc-invoice-preview__totals {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: end;
    gap: 0.7rem 1.2rem;
}

.fc-checkout-summary__saved {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.fc-invoice-sidebar {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.fc-invoice-preview__surface {
    display: grid;
    gap: 1rem;
}

.fc-invoice-preview__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fc-invoice-preview__header h3,
.fc-invoice-preview__header p {
    margin: 0;
}

.fc-invoice-preview__meta,
.fc-invoice-preview__address {
    display: grid;
    gap: 0.3rem;
}

.fc-invoice-session-button {
    justify-content: flex-start;
    text-align: left;
}

@media (max-width: 1080px) {
    .fc-checkout-layout,
    .fc-invoice-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .fc-checkout-grid {
        grid-template-columns: 1fr;
    }
}

.content,
.footer {
    position: relative;
    z-index: 1;
    background: transparent;
}


.navbar__menu-button:focus-visible {
    outline: none;
}

.card.glow-card:hover::before {
    opacity: 0;
}

.card.glow-card.is-glow-active::before,
.fc-glass-card.is-glow-active::after,
.fc-product-tile.is-glow-active::after,
.fc-cart-row.is-glow-active::after,
.fc-settings-row.is-glow-active::after {
    opacity: 1;
}

.fc-glass-card.is-glow-active,
.fc-product-tile.is-glow-active,
.fc-cart-row.is-glow-active,
.fc-settings-row.is-glow-active {
    --fc-glow-alpha: 0.16;
}

html,
.content,
.site-main,
.footer {
    position: relative;
    z-index: 1;
}

.content {
    background: transparent;
}

.footer {
    background: #000;
}

body {
    background: #050505;
}

#home {
    background: url('/public/uploads/background.webp') center top / cover no-repeat;
    position: static;
    background-size: 100vw 100vh;
}

/* TEST */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(460deg);
  }
}

.o {
    position: absolute;
    --size: 750px;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 4));
    background-image: linear-gradient(#ffb520, #b77f07c9);
    animation: rotate var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    z-index: -1;
}

.o.info {
    left: 37%;
    top: 30%;
}

.o.about {
    right: 30%;
    top: 60%;
}

.o.notice {
    left: 50%;
    top: 50%;
}

.o.notice2 {
    left: -40%;
    top: 20%;
}

@media (min-width: 720px) {
  .gradient {
    --size: 500px;
  }
}

*:not(.fc-field__icon) {
  transition: all 0.5s ease-out;
}

/* TEST END */

.footer {
    position: relative;
    z-index: 0;
}

.site-main {
    position: relative;
}

.info > *,
.about > *,
.contact > * {
    position: relative;
    z-index: 1;
}

.overlay.fc-overlay {
    z-index: 9000;
}

.site-main {
    gap: 0;
    padding: 0;
}

.site-main > section:not(.overlay) {
    min-height: 100vh;
    padding: calc(var(--fc-header-height) + 20px) 20px 28px;
    box-sizing: border-box;
}

.site-main .card,
.site-main .contact__card {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.site-main .card.glow-card::before,
.site-main .card.glow-card::after,
.site-main .card.glow-card.is-glow-active::before,
.site-main .card.glow-card.is-glow-active::after {
    opacity: 0 !important;
}

#planetCanvas {
    display: block !important;
}

body.overlay-planet #planetCanvas {
    opacity: 0.94 !important;
}

.overlay.fc-overlay {
    overflow-y: auto;
    overscroll-behavior: contain;
}

.overlay.fc-overlay > .fc-overlay-shell {
    min-height: calc(100vh - 48px);
    height: auto;
}

.fc-auth-shell {
    padding-inline: clamp(16px, 3vw, 30px);
    padding-block: clamp(18px, 4vh, 36px);
}

.fc-auth-layout {
    gap: clamp(28px, 5vw, 76px);
    align-items: stretch;
    min-height: auto;
}

.fc-auth-form-host {
    min-height: 520px;
}

.fc-auth-form {
    gap: 0.95rem;
    padding-bottom: 1rem;
}

.fc-auth-form__heading {
    gap: 0.45rem;
    margin-bottom: 0.15rem;
}

.fc-auth-form__title {
    font-size: 1.2rem;
}

.fc-auth-form__subtitle,
.fc-auth-copy {
    line-height: 1.6;
}

.fc-auth-panel .fc-status-message {
    min-height: 26px;
    margin-top: 0.2rem;
}

.fc-auth-panel .fc-field__input {
    min-height: 60px;
    padding: 1.35rem 1.4rem 0.55rem 0;
    border: none;
    border-bottom: 2px solid var(--fc-border-gray);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.fc-auth-panel .fc-field__icon.fc-field__icon--end {
    top: 50%;
    right: 0;
    transform: translateY(0%);
}

.fc-auth-panel .fc-field__label {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 0.96rem;
}

.fc-auth-panel .fc-field:focus-within .fc-field__input,
.fc-auth-panel .fc-field[data-filled="true"] .fc-field__input {
    border-color: var(--fc-gold);
    box-shadow: none;
    background: transparent;
}

.fc-auth-panel .fc-auth-submit {
    min-height: 52px;
    margin-top: 0.22rem;
}

.fc-parent-card .fc-stack-form,
.contact__form {
    gap: 0.95rem;
}

.contact__form > .fc-field:last-of-type {
    margin-top: 0.75rem;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(var(--fc-gold-rgb), 0.92);
    outline-offset: 3px;
}

.fc-consent-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 12000;
    width: min(420px, calc(100vw - 32px));
}

.fc-consent-banner__panel {
    padding: 22px;
    background: rgba(5, 5, 5, 0.94);
    left: 50%;
}

.fc-consent-banner__title {
    margin: 0 0 0.45rem;
    font-size: 1.3rem;
    color: var(--fc-gold-light);
}

.fc-consent-banner__policy {
    margin: 0;
    color: var(--fc-text-light);
    line-height: 1.5;
}

.fc-consent-banner__preferences {
    display: none;
    margin-top: 1rem;
    gap: 0.85rem;
}

.fc-consent-banner[data-expanded="true"] .fc-consent-banner__preferences {
    display: grid;
}

.fc-consent-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    color: var(--fc-text);
}

.fc-consent-option input {
    margin-top: 0.2rem;
}

.fc-consent-option__copy {
    display: grid;
    gap: 0.22rem;
}

.fc-consent-option__copy span {
    color: var(--fc-text-muted);
    line-height: 1.45;
}

.fc-consent-banner__status {
    min-height: 24px;
    margin: 1rem 0 0;
}

.fc-consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.fc-consent-manage {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 11950;
    background: rgba(8, 8, 8, 0.88);
}

.compliance-notice .info__item {
    align-items: flex-start;
}

@media (max-width: 980px) {
    .fc-auth-panel {
        min-height: 0;
    }

    .fc-auth-form-host {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    body {
        background-size: auto;
    }

    .content {
        background-size: 100% auto;
    }

    .fc-auth-panel,
    .contact__card,
    .fc-parent-card,
    .fc-age-card,
    .fc-settings-card,
    .fc-product-card,
    .fc-cart-card {
        padding: 26px 18px 25px;
    }

    .fc-auth-form-host {
        min-height: 500px;
    }

    .overlay.fc-overlay {
        padding: 16px;
    }

    .info::before,
    .about::before,
    .contact::before {
        inset: 14px 12px;
        border-radius: 24px;
    }

    .site-main > section:not(.overlay) {
        min-height: 100vh;
        padding: calc(var(--fc-header-height) + 18px) 16px 22px;
    }

    .fc-consent-banner,
    .fc-consent-manage {
        left: 16px;
        right: 16px;
        width: auto;
    }

    .fc-consent-manage {
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fc-glass-card,
    .fc-product-tile {
        backdrop-filter: none;
    }
}

@keyframes goldpulse {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.fc-chip,
.fc-button--primary {
    animation: goldPulse 3s infinite ease-in-out;
}
