/* ===========================
   SKUF PANTIES MARKET — CSS
   Brutalist Meme Edition 2026
   =========================== */

:root {
    --black: #0a0a0a;
    --white: #f5f0e8;
    --yellow: #FFE14D;
    --red: #FF2D2D;
    --blue: #1a1aff;
    --green: #00FF87;
    --gray: #1c1c1c;
    --gray-mid: #2e2e2e;
    --gray-light: #e8e4dc;
    --border: 3px solid var(--black);
    --shadow: 5px 5px 0 var(--black);
    --shadow-lg: 8px 8px 0 var(--black);
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Space Mono', monospace;
    --font-accent: 'Unbounded', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    cursor: none;
    overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── CURSOR ── */
.cursor-dot {
    width: 20px; height: 20px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 50%;
    position: fixed;
    top: -10px; left: -10px;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--yellow);
    border-bottom: var(--border);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
    gap: 0;
}

.ticker-track span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0 40px;
    text-transform: uppercase;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.header {
    background: var(--black);
    color: var(--white);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid var(--yellow);
    position: relative;
    z-index: 50;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-skuf {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--yellow);
    letter-spacing: 0.05em;
}

.logo-panties {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.12em;
}

.logo-market {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.3em;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 2px solid transparent;
    transition: all 0.15s;
    cursor: none;
}

.nav a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.header-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--black);
    background: var(--green);
    padding: 6px 10px;
    border: 2px solid var(--black);
}

/* ── HERO ── */
.hero {
    background: var(--black);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--yellow);
}

.hero-bg-text {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(200px, 28vw, 420px);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,225,77,0.08);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-bg-text.glitch {
    animation: glitch-anim 0.3s steps(2) forwards;
}

@keyframes glitch-anim {
    0%   { transform: translateY(-50%) translateX(0); -webkit-text-stroke-color: rgba(255,45,45,0.12); }
    25%  { transform: translateY(-52%) translateX(8px); }
    50%  { transform: translateY(-48%) translateX(-8px); -webkit-text-stroke-color: rgba(0,255,135,0.12); }
    75%  { transform: translateY(-51%) translateX(4px); }
    100% { transform: translateY(-50%) translateX(0); -webkit-text-stroke-color: rgba(255,225,77,0.08); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    margin-bottom: 30px;
    border: 2px solid var(--white);
    animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
}

.hero-title .line1 {
    font-family: var(--font-display);
    font-size: clamp(60px, 9vw, 120px);
    color: var(--white);
    line-height: 0.9;
    display: block;
}

.hero-title .line2 {
    font-family: var(--font-display);
    font-size: clamp(60px, 9vw, 120px);
    color: var(--yellow);
    line-height: 0.9;
    display: block;
    margin-left: 30px;
}

.hero-title .line3 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    color: var(--white);
    line-height: 0.95;
    display: block;
    background: var(--red);
    padding: 6px 16px;
    margin-top: 10px;
    display: inline-block;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(245,240,232,0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-sub em {
    color: var(--yellow);
    font-style: italic;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-main {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 16px 32px;
    background: var(--yellow);
    color: var(--black);
    border: 3px solid var(--white);
    cursor: none;
    transition: all 0.15s;
    box-shadow: 5px 5px 0 var(--white);
}

.btn-main:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--white);
    background: var(--green);
}

.btn-main:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--white);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--red);
    line-height: 1;
    animation: blink-num 1.5s step-end infinite;
}

@keyframes blink-num {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(245,240,232,0.5);
    text-transform: uppercase;
}

.hero-emoji-float {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,225,77,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ── STOCK ── */
.stock {
    background: var(--yellow);
    border-bottom: var(--border);
    padding: 50px 60px;
}

.stock-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.stock-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 8px;
}

.stock-number {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 1;
    color: var(--black);
    text-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}

.stock-unit {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.6;
}

.stock-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.stock-meta {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

.progress-bar-wrap {}
.progress-bar-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: rgba(0,0,0,0.15);
    border: 2px solid var(--black);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--red);
    position: relative;
    animation: progress-anim 3s ease-out forwards;
}

@keyframes progress-anim {
    0% { width: 0%; }
    60% { width: 7%; }
    80% { width: 4%; }
    100% { width: 0%; }
}

.progress-pct {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    text-align: right;
}

/* ── WHY ── */
.why {
    padding: 80px 60px;
    background: var(--white);
    border-bottom: var(--border);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.why-title-col h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    color: var(--black);
    position: sticky;
    top: 80px;
}

.why-lead {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 5px solid var(--yellow);
    padding-left: 20px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 18px;
    background: var(--gray-light);
    border: 2px solid var(--black);
    transition: all 0.15s;
}

.why-list li:hover {
    background: var(--yellow);
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.why-icon {
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

/* ── SKUFS CATALOG ── */
.skufs {
    padding: 80px 60px;
    background: var(--gray);
    border-bottom: var(--border);
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    color: var(--white);
    line-height: 1;
}

.section-count {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
}

.skuf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.skuf-card {
    background: var(--black);
    border: 3px solid var(--gray-mid);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
}

.skuf-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 10px 0 var(--yellow);
}

.skuf-img {
    background: var(--gray-mid);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gray-mid);
}

.skuf-card:hover .skuf-img {
    border-bottom-color: var(--yellow);
}

.skuf-emoji {
    font-size: 72px;
    filter: grayscale(0.3);
    transition: all 0.3s;
}

.skuf-card:hover .skuf-emoji {
    transform: scale(1.15) rotate(-5deg);
    filter: grayscale(0);
}

.skuf-rarity-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 8px;
    background: var(--gray);
    color: var(--white);
    border: 1px solid var(--white);
}

.skuf-rarity-tag.epic { background: #7b2fff; border-color: #c080ff; color: #f0d0ff; }
.skuf-rarity-tag.legendary { background: var(--red); border-color: #ff8888; color: #fff; }
.skuf-rarity-tag.common { background: var(--gray); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }

.skuf-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.skuf-body h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 16px;
}

.skuf-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--gray-mid);
    font-family: var(--font-body);
    font-size: 11px;
}

.s-key {
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.s-val {
    color: var(--white);
    text-align: right;
}

.s-val.italic { font-style: italic; color: var(--yellow); }

.wear-dots {
    display: inline-flex;
    gap: 3px;
    margin-right: 4px;
    vertical-align: middle;
}

.dot {
    width: 8px; height: 8px;
    border: 1.5px solid rgba(245,240,232,0.3);
    border-radius: 50%;
}

.dot.filled {
    background: var(--yellow);
    border-color: var(--yellow);
}

.skuf-feature {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(245,240,232,0.5);
    font-style: italic;
    margin-bottom: 16px;
    margin-top: auto;
    padding-top: 12px;
}

.btn-buy {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 12px 20px;
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
    cursor: none;
    transition: all 0.15s;
    width: 100%;
    text-align: center;
}

.btn-buy:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ── REVIEWS ── */
.reviews {
    padding: 80px 60px;
    background: var(--white);
    border-bottom: var(--border);
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 100px);
    line-height: 0.9;
    margin-bottom: 4px;
}

.reviews-title span {
    color: var(--red);
    display: block;
}

.reviews-asterisk {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(10,10,10,0.4);
    text-transform: uppercase;
}

/* slider nav */
.reviews-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.rev-btn {
    font-family: var(--font-display);
    font-size: 28px;
    width: 52px; height: 52px;
    background: var(--black);
    color: var(--white);
    border: 3px solid var(--black);
    cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    line-height: 1;
}

.rev-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.rev-btn:disabled {
    opacity: 0.25;
    pointer-events: none;
}

.rev-counter {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(10,10,10,0.5);
    min-width: 40px;
    text-align: center;
}

.review-slider { position: relative; }

.review-page {
    display: none;
    animation: slide-in 0.35s ease forwards;
}

.review-page.active { display: block; }

@keyframes slide-in {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.review {
    background: var(--white);
    padding: 28px;
    border: 3px solid var(--black);
    box-shadow: var(--shadow);
    transition: all 0.2s;
    position: relative;
}

.review:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 var(--black);
}

.review-featured {
    background: var(--black);
    color: var(--white);
}

.review-featured p { color: var(--white) !important; }
.review-featured .review-stars { color: var(--yellow); }
.review-featured .review-name { color: var(--yellow); }
.review-featured .review-age { color: rgba(245,240,232,0.5); }

.review-stars {
    color: var(--yellow);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: var(--black);
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-age {
    font-family: var(--font-body);
    font-size: 11px;
    opacity: 0.5;
}

.review-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border: 2px solid var(--black);
}

/* ── SKUF PHOTO ── */
.skuf-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.skuf-card:hover .skuf-photo {
    transform: scale(1.06);
}

/* ── GIFT SETS ── */
.giftsets {
    padding: 80px 60px;
    background: var(--gray);
    border-bottom: var(--border);
}

.giftsets .section-header h2 { color: var(--white); }

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gift-card {
    background: var(--gray-mid);
    padding: 32px 28px;
    border: 3px solid var(--gray-mid);
    position: relative;
    transition: all 0.2s;
}

.gift-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.gift-featured {
    background: var(--yellow);
    border-color: var(--yellow);
}

.gift-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 5px 14px;
    border: 2px solid var(--black);
    white-space: nowrap;
}

.gift-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.gift-card h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
}

.gift-featured h3 { color: var(--black); }

.gift-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.gift-card ul li {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(245,240,232,0.6);
    padding-left: 14px;
    position: relative;
}

.gift-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    opacity: 0.4;
}

.gift-featured ul li { color: var(--black); opacity: 0.7; }
.gift-featured ul li::before { color: var(--black); }

.gift-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--yellow);
    letter-spacing: 0.05em;
}

.gift-featured .gift-price { color: var(--black); }

/* ── FAQ ── */
.faq {
    padding: 80px 60px;
    background: var(--white);
    border-bottom: var(--border);
}

.faq h2 {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 100px);
    line-height: 1;
    margin-bottom: 8px;
}

.faq-sub {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.15em;
    color: rgba(10,10,10,0.4);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 3px solid var(--black);
    margin-bottom: -3px;
    transition: all 0.2s;
}

.faq-item.open {
    background: var(--yellow);
    z-index: 1;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    user-select: none;
}

.faq-q:hover { background: rgba(255,225,77,0.2); }
.faq-item.open .faq-q:hover { background: transparent; }

.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

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

.modal-box {
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 10px 10px 0 var(--yellow);
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modal-in 0.3s ease forwards;
}

@keyframes modal-in {
    from { transform: scale(0.8) rotate(-3deg); }
    to { transform: scale(1) rotate(0deg); }
}

.modal-emoji { font-size: 64px; margin-bottom: 16px; }

.modal-box h3 {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 12px;
}

.modal-box p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(10,10,10,0.7);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── FOOTER ── */
.footer {
    background: var(--black);
    border-top: 4px solid var(--yellow);
    padding: 50px 60px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--yellow);
    line-height: 1.1;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(245,240,232,0.5);
    line-height: 1.8;
    text-align: center;
}

.footer-text em { color: rgba(245,240,232,0.3); }

.footer-emoji {
    font-size: 48px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s;
}

.footer-emoji:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: rotate(20deg);
}

/* ── CURSOR JS ── */

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .header { padding: 14px 20px; }
    .nav { display: none; }
    .hero { padding: 50px 24px; min-height: auto; }
    .hero-emoji-float { display: none; }
    .stock { padding: 40px 24px; }
    .stock-inner { grid-template-columns: 1fr; }
    .stock-number { font-size: 80px; }
    .why { padding: 50px 24px; }
    .why-inner { grid-template-columns: 1fr; }
    .skufs, .reviews, .giftsets, .faq { padding: 50px 24px; }
    .footer { padding: 40px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
    body { cursor: auto; }
    .cursor-dot { display: none; }
    .nav a, .btn-main, .btn-buy, .faq-q { cursor: pointer; }
}

@media (max-width: 480px) {
    .hero-title .line1, .hero-title .line2 { font-size: 52px; }
    .hero-title .line3 { font-size: 36px; }
    .reviews-title { font-size: 48px; }
    .faq h2 { font-size: 52px; }
}
