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

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-2: #1b1b1b;
    --text: #f0f0f0;
    --muted: #a9a9a9;
    --green: #16923c;
    --yellow: #f3b731;
    --line: rgba(255, 255, 255, 0.12);
    --radius: 18px;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

img {
    width: 100%;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.eyebrow {
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--yellow);
    color: #111;
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(243, 183, 49, 0.45);
    color: var(--yellow);
    background: transparent;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(10, 10, 10, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-fallback {
    font-weight: 800;
    color: var(--yellow);
    font-size: 1.05rem;
}

.is-hidden {
    display: none;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.language-btn {
    min-width: 46px;
    min-height: 36px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-btn.is-active,
.language-btn:hover {
    background: var(--yellow);
    color: #111;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
    border-color: var(--yellow);
}

.cart-button {
    background: var(--green);
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.cart-count {
    margin-left: 6px;
    background: var(--yellow);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.78rem;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
    text-align: left;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.hero-text {
    color: #e2e2e2;
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 1.03rem;
}

.featured-edit {
    padding: 34px 0 78px;
}

.compact-head {
    margin-bottom: 18px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.featured-main,
.featured-side {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 260px;
}

.featured-main {
    grid-row: 1 / span 2;
    min-height: 540px;
}

.featured-main img,
.featured-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050505;
    padding: 20px;
    transition: transform 0.45s ease;
}

.featured-main::after,
.featured-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
}

.featured-main:hover img,
.featured-side:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.56);
    border: 1px solid rgba(243, 183, 49, 0.5);
    color: var(--yellow);
    padding: 7px 11px;
    border-radius: 999px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    min-height: 48px;
}

.highlights {
    padding: 64px 0;
}

.story-banner {
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid rgba(243, 183, 49, 0.22);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(243, 183, 49, 0.12), rgba(22, 146, 60, 0.08));
    box-shadow: var(--shadow);
}

.story-banner h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    margin-bottom: 8px;
}

.story-banner p:last-child {
    color: #e2e2e2;
    max-width: 760px;
}

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

.highlight-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 183, 49, 0.35);
}

.highlight-card img {
    height: 340px;
    object-fit: cover;
    object-position: center top;
}

.highlight-content {
    padding: 18px;
}

.highlight-content h3 {
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--muted);
    font-size: 0.95rem;
}

.collection {
    padding: 72px 0;
    background: linear-gradient(180deg, #0d0d0d, #121212);
}

.story-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #121212, #0d0d0d);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.story-copy,
.story-panel,
.english-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.story-copy {
    padding: 28px;
}

.story-copy h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 14px;
}

.story-copy p + p {
    margin-top: 14px;
}

.story-points {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.story-points span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ededed;
    font-weight: 600;
}

.story-panel {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.story-panel h3 {
    font-size: 1.5rem;
}

.story-panel p,
.story-note,
.english-card p {
    color: var(--muted);
}

.story-actions,
.english-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.story-note {
    font-size: 0.92rem;
}

.section-head {
    max-width: 740px;
    margin-bottom: 26px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin-bottom: 10px;
}

.section-head p {
    color: var(--muted);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hoodie-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: var(--shadow);
}

.hoodie-preview-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f2f2f2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hoodie-preview-image {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: contain;
    padding: 26px;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.hoodie-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hoodie-preview-info h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    margin-bottom: 10px;
}

.hoodie-preview-copy p {
    color: var(--muted);
}

.hoodie-preview-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
}

.hoodie-preview-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
}

.hoodie-color-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hoodie-color-btn,
.cap-color-btn,
.tshirt-color-btn {
    min-height: 46px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #141414;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hoodie-color-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #efefef);
    padding: 6px;
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.color-swatch[data-color="negro"] {
    background: linear-gradient(135deg, #1f1f1f, #000);
}

.color-swatch[data-color="verde"] {
    background: linear-gradient(135deg, #2aa552, #0e5124);
}

.color-swatch[data-color="azul"] {
    background: linear-gradient(135deg, #448fff, #123b88);
}

.color-swatch[data-color="naranja"] {
    background: linear-gradient(135deg, #ff9f2f, #b85400);
}

.color-swatch[data-color="morado"] {
    background: linear-gradient(135deg, #9a5cff, #4a1f84);
}

.color-swatch[data-color="amarillo"] {
    background: linear-gradient(135deg, #ffd84d, #c28b00);
}

.color-swatch[data-color="rosado"] {
    background: linear-gradient(135deg, #ff87c5, #c13b7a);
}

.color-swatch[data-color="gris"] {
    background: linear-gradient(135deg, #b6b6b6, #666);
}

.color-swatch[data-color="blanco"] {
    background: linear-gradient(135deg, #fff, #d9d9d9);
}

.color-swatch[data-color="rojo"] {
    background: linear-gradient(135deg, #ff5c5c, #8b1111);
}

.color-swatch[data-color="beige"] {
    background: linear-gradient(135deg, #d9c2a1, #a7835b);
}

.hoodie-color-btn.active,
.hoodie-color-btn:hover,
.cap-color-btn.active,
.cap-color-btn:hover,
.tshirt-color-btn.active,
.tshirt-color-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-1px) scale(1.01);
    background: rgba(243, 183, 49, 0.08);
    box-shadow: 0 0 0 2px rgba(243, 183, 49, 0.14);
}

.purchase-panel {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-color {
    color: var(--text);
    font-weight: 600;
}

.purchase-color strong {
    color: var(--yellow);
}

.purchase-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.purchase-select {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #0f0f0f;
    color: var(--text);
    padding: 0 14px;
    font: inherit;
}

.purchase-select:focus {
    outline: 2px solid rgba(243, 183, 49, 0.28);
    border-color: var(--yellow);
}

.purchase-btn {
    width: 100%;
}

.hoodie-preview-note {
    margin-top: 12px;
    font-size: 0.9rem;
}

.filter-btn {
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 600;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

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

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 183, 49, 0.45);
}

.product-image {
    height: 320px;
    object-fit: contain;
    background: radial-gradient(circle at center, #1d1d1d 0%, #0b0b0b 78%);
    padding: 18px;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder span {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card.product-negro .product-image {
    background: radial-gradient(circle at center, #313131 0%, #161616 58%, #0b0b0b 100%);
}

.product-card.product-verde .product-image {
    background: radial-gradient(circle at center, rgba(22, 146, 60, 0.45) 0%, #112319 48%, #090909 100%);
}

.product-card.product-amarillo .product-image {
    background: radial-gradient(circle at center, rgba(243, 183, 49, 0.38) 0%, #2b2413 48%, #0a0a0a 100%);
}

.product-card.product-rojo .product-image {
    background: radial-gradient(circle at center, rgba(195, 54, 60, 0.42) 0%, #251114 48%, #090909 100%);
}

.highlight-card img[src*="assets/products"],
.lookbook-item img[src*="assets/products"] {
    object-fit: contain;
    background: #050505;
    padding: 18px;
}

.product-body {
    padding: 16px;
}

.product-category {
    font-size: 0.72rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.product-card.product-negro .product-category {
    color: #d6d6d6;
}

.product-card.product-verde .product-category {
    color: #4dd27c;
}

.product-card.product-amarillo .product-category {
    color: #f3c750;
}

.product-card.product-rojo .product-category {
    color: #ff6b6b;
}

.product-title {
    font-size: 1.06rem;
    margin-bottom: 6px;
}

.product-desc {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.size-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(243, 183, 49, 0.28);
    background: rgba(243, 183, 49, 0.08);
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price {
    color: var(--yellow);
    font-weight: 800;
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.envio-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4dd27c;
    letter-spacing: 0.02em;
}

.add-btn {
    background: var(--green);
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
}

.lookbook {
    padding: 72px 0;
}

.english-gateway {
    padding: 0 0 72px;
    background: linear-gradient(180deg, #0f0f0f, #111);
}

.english-card {
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 18px;
    align-items: center;
}

.english-card h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    margin-bottom: 10px;
}

.social-share {
    padding: 72px 0;
    background: linear-gradient(180deg, #101010, #151515);
}

.social-share-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: stretch;
}

.social-links-panel,
.qr-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.social-links-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 183, 49, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.social-card strong,
.social-card small {
    display: block;
}

.social-card small {
    color: var(--muted);
    margin-top: 4px;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-instagram .social-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
}

.social-tiktok .social-icon {
    background: linear-gradient(135deg, #25f4ee, #111, #fe2c55);
    color: #fff;
}

.social-facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0f59c8);
    color: #fff;
}

.social-youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
}

.qr-card {
    display: grid;
    gap: 18px;
    grid-template-columns: 240px 1fr;
    padding: 20px;
    align-items: center;
}

.qr-image {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    background: white;
    padding: 12px;
    border-radius: 20px;
}

.qr-copy p {
    color: var(--muted);
    margin: 10px 0 18px;
}

.qr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-socials a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.footer-socials a:hover {
    color: var(--yellow);
}

.video-showcase {
    padding: 72px 0;
    background: linear-gradient(180deg, #111, #0c0c0c);
}

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

.video-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    display: block;
    object-fit: cover;
}

.video-meta {
    padding: 16px;
}

.video-meta h3 {
    margin-bottom: 8px;
}

.video-meta p {
    color: var(--muted);
    font-size: 0.92rem;
}

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

.lookbook-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 220px;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lookbook-item:hover img {
    transform: scale(1.04);
}

.lookbook-item img[src*="tahial-tees-lineup"],
.lookbook-item img[src*="hoodie-yellow-medal"],
.lookbook-item img[src*="medal-yellow-shirt"] {
    object-position: center top;
}

.js-gallery-image {
    cursor: zoom-in;
}

.lookbook-item.tall {
    grid-row: span 2;
    min-height: 452px;
}

.lookbook-item.wide {
    grid-column: span 2;
}

.contact {
    padding: 72px 0;
    background: #0f0f0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact h2 {
    margin-bottom: 10px;
}

.contact p {
    color: var(--muted);
}

.contact-list {
    margin-top: 18px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--yellow);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #111;
    color: var(--text);
    border-radius: 10px;
    padding: 12px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid rgba(243, 183, 49, 0.5);
}

.contact-form button {
    min-height: 48px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 90vh;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}

.modal.show {
    display: flex;
}

.modal-content {
    width: min(560px, 94%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
}

.modal-header,
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header {
    margin-bottom: 14px;
}

.close-modal {
    background: transparent;
    color: var(--text);
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 14px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
}

.remove-btn {
    border: none;
    background: #882d2d;
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
}

.empty-cart {
    color: var(--muted);
    text-align: center;
    padding: 24px 0;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-main {
        grid-row: auto;
        min-height: 340px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .english-card {
        grid-template-columns: 1fr;
    }

    .social-share-grid,
    .qr-card {
        grid-template-columns: 1fr;
    }

    .qr-card {
        justify-items: center;
        text-align: center;
    }

    .qr-actions {
        justify-content: center;
    }

    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lookbook-item.tall,
    .lookbook-item.wide {
        grid-row: auto;
        grid-column: auto;
        min-height: 220px;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 12px 0;
    }

    .brand-logo {
        height: 42px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        width: 100%;
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 12px;
    }

    .nav.is-open {
        display: flex;
    }

    .nav-link,
    .language-switcher,
    .cart-button {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.02);
    }

    .nav-link,
    .cart-button {
        border: 1px solid var(--line);
    }

    .language-switcher {
        padding: 6px;
    }

    .hero {
        min-height: 62vh;
    }

    .hero-content {
        padding: 88px 0 52px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .featured-edit,
    .highlights,
    .story-section,
    .collection,
    .video-showcase,
    .lookbook,
    .english-gateway,
    .social-share,
    .contact {
        padding: 56px 0;
    }

    .featured-main {
        min-height: 300px;
    }

    .featured-main img,
    .featured-side img,
    .product-image {
        padding: 12px;
    }

    .hoodie-showcase {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .hoodie-preview-frame {
        min-height: 360px;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .add-btn,
    .btn,
    .contact-form button {
        width: 100%;
    }

    .social-card {
        padding: 16px;
    }

    .social-icon {
        width: 52px;
        height: 52px;
    }

    .qr-actions {
        width: 100%;
        flex-direction: column;
    }

    .modal-content {
        width: min(560px, 96%);
        padding: 16px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .remove-btn {
        width: 100%;
        min-height: 44px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(1200px, 94%);
    }

    .hero-content {
        padding: 82px 0 44px;
    }

    .section-head h2 {
        font-size: 1.55rem;
    }

    .hoodie-preview-image {
        padding: 14px;
    }

    .hoodie-color-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hoodie-color-btn,
    .cap-color-btn,
    .tshirt-color-btn {
        width: 100%;
    }

    .highlight-content,
    .product-body,
    .video-meta,
    .story-copy,
    .story-panel,
    .english-card,
    .contact-form,
    .social-links-panel,
    .qr-card {
        padding: 14px;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }
}
