@font-face {
    font-family: 'XXIITotalDeath';
    src: url('XXIITotalDeath.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Bloquear selección de texto en todo el sitio */
    user-select: none;
    -webkit-user-select: none;
}

img {
    /* Evitar que las imágenes se puedan arrastrar (drag & drop accidental) */
    -webkit-user-drag: none;
}

input, textarea {
    /* Permitir selección dentro de los campos de texto como la contraseña */
    user-select: auto;
    -webkit-user-select: auto;
}

/* --- Capa Profunda: Texto de Fondo --- */
.background-text {
    position: absolute;
    top: 42%; /* Ajustado para centrar visualmente con el footer */
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'XXIITotalDeath', sans-serif;
    font-size: 28vw; /* Massive size */
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
    text-align: center;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    /* Efecto de brillo sutil */
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
    letter-spacing: -0.02em;
    will-change: opacity;
}

.background-text.bg-medium { font-size: 25vw; }
.background-text.bg-long { font-size: 21vw; }

/* --- Sistema de Partículas --- */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* --- Interfaz de Navegación (Header) --- */
vesania-header {
    display: contents;
}

.ui-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left {
    display: flex;
    gap: 1rem;
}

/* Botones estilo píldora (Glassmorphism) */
.btn-pill, .btn-highlight {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 0.75rem 2rem;
    border-radius: 50px; /* Estilo cápsula */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.btn-pill:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-highlight {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 0.5rem;
    font-weight: 500;
}

.btn-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-highlight svg {
    transition: transform 0.3s ease;
}

.btn-highlight:hover svg {
    transform: translate(2px, -2px);
}

/* --- Capa Media: Contenido Central --- */
.center-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allows interacting with particles if enabled */
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
    /* Iluminación tipo estudio (rim lighting) simulada en el contenedor */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1)) 
            drop-shadow(0 -10px 40px rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

.main-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
    mask-image: radial-gradient(ellipse, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
}

.slogan {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    letter-spacing: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-left: 0.8em; /* Offset for letter-spacing to truly center */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.copyright-line {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

/* --- Animaciones --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .background-text { font-size: 35vw; }
    .main-logo { max-width: 400px; }
    .ui-header { padding: 2rem; }
}

@media (max-width: 768px) {
    .ui-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .nav-left { flex-wrap: wrap; justify-content: center; }
    .background-text { font-size: 40vw; }
    .main-logo { max-width: 300px; }
    .slogan { font-size: 0.9rem; letter-spacing: 0.5em; }
}

/* --- Páginas Internas Específicas --- */
body.internal-page {
    overflow-y: auto !important; /* Force enable vertical scroll */
    height: auto;
    min-height: 100vh;
}

body.internal-page .center-content {
    pointer-events: auto; /* Enable clicks and interactions */
}

.background-text {
    position: fixed; /* Keep background text fixed while scrolling */
}

#tsparticles {
    position: fixed; /* Keep particles fixed */
}

/* --- Password Gate --- */
.password-gate {
    pointer-events: auto; /* Fix input not clickable */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 4px; 
    z-index: 20;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.password-gate::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.password-gate h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: 0.3em;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.password-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 1rem 1.5rem;
    text-align: center;
    outline: none;
    margin-bottom: 2rem;
    width: 320px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.password-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* --- Countdown Timer Styles --- */
.drop-countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.countdown-item label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* --- Animations para los Productos (Optimizado para fluidez total) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.reveal-staggered {
    animation: fadeInUp 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.error-msg {
    color: #ff4444;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s;
}

/* --- Área del Botón Submit con Tribales --- */
.submit-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tribal-img {
    position: absolute;
    width: 80px; /* Si eran horizontales, al rotar esto define su "altura" visual */
    opacity: 0.5;
    pointer-events: none; /* Evita bloquear clicks en el botón */
    transition: all 0.5s ease;
    /* Fuerza el color a blanco puro con resplandor para integrarse perfectamente */
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.tribal-left {
    right: 50%;
    margin-right: 95px; /* Distancia al botón central */
    transform: rotate(-90deg); /* Las coloca en vertical */
}

.tribal-right {
    left: 50%;
    margin-left: 95px;
    transform: rotate(-90deg) scaleY(-1); /* Modo espejo perfecto */
}

/* --- Page Transitions & Animations --- */
.fade-in-page {
    animation: pageFadeIn 0.8s ease-out forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Catalog & Drop Layout (No Scroll) --- */
body.internal-page.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

.catalog-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical perfecto */
    flex: 1; 
    padding: 1rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.catalog-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.catalog-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* --- Redesigned Product Card (Image Style) --- */
.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: fit-content;
    width: 380px; /* Tamaño fijo para asegurar que quepan 3 en paralelo */
    will-change: transform, box-shadow;
    opacity: 0; /* Invisibles por defecto para evitar el "flash" antes de la animación */
}

.product-visual {
    width: 100%;
    aspect-ratio: 1/1;
    background: #111; /* Simulating the dark area in the image */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Or contain depending on 001.png proportions */
}

.product-details-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-text {
    text-align: left;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.price-tag {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}


.controls-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.size-select-wrapper {
    flex: 2; /* Takes more space */
}

.size-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    border-radius: 2px;
}

.qty-selector {
    flex: 1; /* More compact */
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 42px; /* Fixed height to match select */
    border-radius: 2px;
    justify-content: space-between;
}

/* --- Size Guide Styles --- */
.btn-size-guide {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-align: left;
    width: fit-content;
    display: block;
}

.btn-size-guide:hover {
    color: white;
}

.size-guide-wrapper {
    position: relative;
    width: 100%;
}

.size-guide-content {
    position: absolute;
    bottom: calc(100% + 5px); 
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
}

.size-guide-content.active {
    max-height: 500px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.size-table th {
    text-align: left;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    padding: 0 1rem 0.3rem 1rem; /* Sin padding arriba */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.size-table td {
    padding: 0.3rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.size-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0; /* Sin padding abajo */
}

.qty-selector button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 30px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector button:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.qty-selector input {
    width: 30px;
    background: none;
    border: none;
    color: white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.btn-add-cart-solid {
    background: white;
    color: black;
    border: none;
    padding: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-add-cart-solid:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-add-cart-solid.added {
    background: #00ff41 !important; /* Verde vibrante éxito */
    color: black !important;
    transform: scale(0.98);
}


/* Responsive */
@media (max-width: 1200px) {
    .catalog-grid { gap: 1.5rem; }
    .catalog-container { padding: 1rem 2rem; }
}

@media (max-width: 600px) {
    body.internal-page.no-scroll { overflow-y: auto !important; height: auto; }
    .catalog-grid { flex-direction: column; }
    .catalog-container { height: auto; padding: 2rem; }
}



/* Bloque antiguo de Sobre Nosotros eliminado para evitar conflictos con el nuevo diseño */

/* --- Contact Page Styles --- */
.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    pointer-events: auto;
}

.contact-title-simple {
    font-size: 3rem !important;
    text-align: center;
    color: white;
    font-weight: 200;
    letter-spacing: 0.5em !important;
    margin-left: 0.5em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: fadeInDown 1s ease-out;
}

.contact-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* --- Cart Styles --- */
.cart-counter {
    background: white;
    color: black;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    font-weight: 800;
}

.btn-add-cart {
    margin-top: 1.5rem;
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-add-cart:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin-top: 0.5rem;
    display: block;
}

.product-options {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 4px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-group label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.size-selector {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.size-btn.active {
    background: white;
    color: black;
    border-color: white;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    border-radius: 2px;
}

.qty-selector button {
    background: transparent;
    border: none;
    color: white;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

.qty-selector input {
    background: transparent;
    border: none;
    color: white;
    width: 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
}

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

/* Checkout Page */
.cart-page-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    z-index: 10;
    display: flex;
    gap: 3rem;
}

.cart-items-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar for Cart */
.cart-items-list::-webkit-scrollbar {
    width: 4px;
}
.cart-items-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.cart-items-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.cart-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-weight: 800;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.cart-item-info .item-meta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.qty-btn:hover {
    opacity: 1;
}

.item-qty-val {
    font-family: 'Outfit', sans-serif;
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.cart-summary {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}



.summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.btn-checkout {
    background: white;
    color: black;
    border: none;
    padding: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.empty-cart-msg {
    text-align: center;
    padding: 4rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    border-bottom: none; /* Removed since it's in header */
    padding-bottom: 0;
}

.btn-clear-cart {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    text-transform: uppercase;
}

.btn-clear-cart:hover {
    color: #ff4444; /* Give it a subtle danger color on hover */
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.contact-username {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--card-accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Hover Effects */
.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--card-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card:hover .card-glow {
    opacity: 0.15;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-card:hover .contact-label {
    opacity: 1;
}

/* Instagram Styles */
.instagram {
    --card-accent: #ff007a;
}
.instagram:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1) 0%, rgba(253, 29, 29, 0.1) 50%, rgba(252, 176, 69, 0.1) 100%);
}

/* TikTok Glitch Effect */
.tiktok {
    --card-accent: #00f2ea;
}

.glitch-wrapper {
    position: relative;
}

.tiktok:hover .glitch-target {
    animation: glitch-icon-smooth 2s cubic-bezier(.25,.46,.45,.94) both infinite,
               glitch-shadow-jitter 0.4s steps(2, start) infinite;
}

.tiktok:hover .contact-label {
    opacity: 1;
    color: white;
}

/* Discord Styles */
.discord {
    --card-accent: #5865F2;
}

/* Email Section */
.email-container {
    text-align: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff4b2b;
    box-shadow: 0 0 30px rgba(255, 75, 43, 0.2);
    transform: scale(1.05);
}

.email-icon {
    color: #ff4b2b;
    transition: transform 0.3s ease;
}

.email-link:hover .email-icon {
    transform: rotate(10deg) scale(1.2);
}

.email-subtext {
    margin-top: 1.5rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* --- Responsive & Mobile Optimization --- */

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 15px;
    pointer-events: auto !important; /* Ensure it's clickable */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.menu-toggle span {
    display: block; /* Required for transforms to work well */
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .background-text { font-size: 35vw; }
    .main-logo { max-width: 400px; }
    .ui-header { padding: 1rem 2rem; }
    
    .cart-page-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body { overflow-y: auto; height: auto; }
    
    /* Header & Nav */
    .menu-toggle { display: flex; }
    
    .nav-left {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
    }
    
    .nav-left.active {
        right: 0;
    }
    
    .btn-pill {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        width: auto;
    }

    .ui-header {
        padding: 0 1.5rem;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        position: fixed; /* Header fixed to top in mobile for better UX */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

    .nav-right {
        display: flex;
        justify-content: flex-end;
        flex: 1; /* Pushes to the right */
    }

    .menu-toggle {
        display: flex;
        flex: 1; /* Pushes to the left */
        justify-content: flex-start;
    }

    .btn-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-left: auto; /* Absolute right anchor */
    }

    /* Landing */
    .background-text { font-size: 45vw; }
    .main-logo { max-width: 280px; }
    .slogan { 
        font-size: 0.8rem; 
        letter-spacing: 0.4em;
        text-align: center;
        width: 80%;
    }

    /* Drop / Catalog */
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-card {
        min-height: 500px;
        padding: 1.5rem;
    }

    /* Cart / Checkout */
    .cart-items-list {
        max-height: none;
        overflow: visible;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.2rem;
    }
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
    .cart-item-price {
        width: 100%;
        text-align: right;
    }
    .cart-summary {
        padding: 1.5rem;
        position: relative;
        top: 0;
    }

    /* About Us */
    .founders .name {
        font-size: 2.5rem;
    }
    .about-text-primary {
        font-size: 1.5rem;
    }
    .about-container {
        padding: 0 1.5rem;
    }

    /* Contact */
    .contact-title-simple {
        font-size: 2.5rem !important;
        letter-spacing: 0.3em !important;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes glitch-shadow-jitter {
    0% { filter: drop-shadow(2px 0 #ff0050) drop-shadow(-2px 0 #00f2ea); }
    33% { filter: drop-shadow(-2px 1px #ff0050) drop-shadow(2px -1px rgba(255,255,255,0.5)); }
    66% { filter: drop-shadow(1px -2px #00f2ea) drop-shadow(-1px 2px #ff0050); }
    100% { filter: drop-shadow(2px 0 #ff0050) drop-shadow(-2px 0 #00f2ea); }
}

@keyframes glitch-icon-smooth {
    0% { transform: scale(1.1) translate(0); }
    25% { transform: scale(1.1) translate(-2px, 1px); }
    50% { transform: scale(1.1) translate(1px, -2px); }
    75% { transform: scale(1.1) translate(2px, 2px); }
    100% { transform: scale(1.1) translate(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Sobre Nosotros Styles --- */
.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; 
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Barra separadora central estática */
.about-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-50%);
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.6em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

.founders {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.founders .name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 6.5rem;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
}

.founders .name:hover {
    color: white;
    -webkit-text-stroke: 0px;
    transform: none;
    text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.5);
}

.highlight-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
    border-left: 2px solid white;
    padding-left: 1.5rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 4rem;
}

.about-text-primary {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-text-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.about-footer {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.signature {
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .about-container::after {
        display: none; /* Ocultar barra en móviles */
    }
    .about-container {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 4rem;
    }
    .founders .name {
        font-size: 4.5rem;
    }
    .about-text-primary {
        font-size: 1.5rem;
    }
}

/* --- Footer Global Component --- */
.vesania-footer {
    width: 100%;
    padding: 1rem 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-align: right;
}

/* --- Cookies Banner --- */
.cookies-banner {
    position: fixed;
    bottom: 4.8rem;
    right: 1.5rem;
    left: auto;
    transform: translateY(150%);
    width: 420px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.cookies-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cookies-btn.accept {
    background: white;
    color: black;
    font-weight: 700;
}

.cookies-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Sombreado en todas direcciones */
}
.cookies-btn.accept:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); /* Sombreado en todas direcciones más intenso */
}

@media (max-width: 768px) {
    .cookies-banner {
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 2rem;
    }
}

/* --- Legal Pages Refined (Internal Scroll) --- */
body.legal-page {
    overflow: hidden !important;
    height: 100vh;
}

.legal-page .ui-header {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(15px) !important;
}

.legal-container {
    max-width: 1000px;
    height: calc(100vh - 120px);
    margin: 1rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.legal-container h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-align: center;
    margin: 2rem 0;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.legal-content {
    background: rgba(10, 10, 10, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    overflow-y: auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Custom scrollbar for webkit */
.legal-content::-webkit-scrollbar {
    width: 3px;
}
.legal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: white;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin-bottom: 1.2rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    body.legal-page {
        overflow-y: auto !important;
        height: auto;
    }
    .legal-container {
        height: auto;
        margin: 6rem auto 2rem auto;
    }
    .legal-content {
        padding: 2rem;
        overflow-y: visible;
    }
    .legal-container h1 {
        font-size: 1.5rem;
        letter-spacing: 0.3em;
    }
}

/* --- Footer Ultra-Compacto (Refinado) --- */
.vesania-footer.ultra-compact {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 4rem;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.footer-compact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 2rem;
}

/* Redes Sociales Izquierda */
.compact-socials {
    display: flex;
    gap: 1.2rem;
}

.mini-icon {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mini-icon svg {
    width: 22px;
    height: 22px;
}

.mini-icon:hover {
    color: white;
    transform: translateY(-2px);
}

/* Área de Soporte Central */
.compact-nav-area {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.compact-links {
    display: flex;
    gap: 3rem;
}

.compact-links a {
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.compact-links a:hover {
    color: white;
}

/* Área Derecha: Newsletter y Copyright */
.compact-info-area {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mini-newsletter {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 2px;
    width: 280px;
}

.mini-newsletter input {
    background: none;
    border: none;
    color: white;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    outline: none;
    flex: 1;
}

.mini-newsletter button {
    background: white;
    border: none;
    color: black;
    font-size: 0.6rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mini-newsletter button:hover {
    background: #e0e0e0;
}

.copy-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .compact-info-area { gap: 1.5rem; }
    .compact-links { gap: 1rem; }
}

@media (max-width: 992px) {
    .vesania-footer.ultra-compact { padding: 2rem; }
    .footer-compact-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .compact-nav-area { order: 2; }
    .compact-info-area { 
        order: 1;
        flex-direction: column;
        gap: 1.5rem;
    }
    .compact-socials { order: 3; }
}

/* --- FAQ Page Styles --- */
.faq-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

.faq-title {
    font-size: 2.5rem !important;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.3em !important;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }
    .faq-question {
        padding: 1.2rem;
        font-size: 0.75rem;
    }
}
/* --- Size Guide Table --- */
.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    font-family: 'Inter', sans-serif;
}

.size-table th {
    text-align: left;
    padding: 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.size-table td {
    padding: 1.2rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.size-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.size-table td:first-child {
    font-weight: 700;
    color: white;
}

.measure-tips {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid white;
}

.measure-tips h3 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.measure-tips ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.measure-tips li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
}
