@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: hidden; /* Prevent scrolling for the landing */
    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;
    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: 50%;
    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;
}

/* --- 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) --- */
.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);
}

/* --- 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);
}

.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;
    height: calc(100vh - 80px); /* Adjust based on header height */
    padding: 1rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: center;
}

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

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    flex: 1;
}

/* --- 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;
}

.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: 1.5rem;
}

.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);
}

.btn-3d {
    width: fit-content;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    margin-bottom: -1rem;
    transition: all 0.3s ease;
}

.btn-3d:hover {
    background: white;
    color: black;
}

.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;
}

.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);
}

/* --- Expositor Modal --- */
.expositor-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* No scroll */
}

.expositor-modal.active {
    display: flex;
}

.expositor-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(15px);
}

.expositor-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.expositor-title {
    position: absolute;
    top: 5rem;
    font-family: 'XXIITotalDeath', sans-serif;
    font-size: 6rem;
    color: white;
    letter-spacing: 0.2em;
    opacity: 0.1;
    pointer-events: none;
}

.expositor-render-container {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#expositor-video {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 100px rgba(255,255,255,0.1));
}

.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.spotlight-left { left: 10%; top: 20%; }
.spotlight-right { right: 10%; top: 20%; }

.close-expositor {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
}

.close-expositor:hover { opacity: 1; }

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

@media (max-width: 768px) {
    body.internal-page.no-scroll { overflow-y: auto !important; height: auto; }
    .catalog-grid { grid-template-columns: 1fr; }
    .catalog-container { height: auto; padding: 2rem; }
}



/* --- About Us (Sobre Nosotros) --- */
.about-container {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6rem;
    z-index: 10;
    flex: 1;
    gap: 12rem;
    height: calc(100vh - 80px);
    font-family: 'Outfit', sans-serif; /* Switching to Outfit for the whole section */
}

.about-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-right: 8rem;
}

.about-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 450px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent); /* Brighter line */
}

.about-left h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1em; /* Much wider as per photo */
    color: white; /* Standing out more */
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

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

.founders .name {
    font-size: 5.8rem;
    font-weight: 800;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    width: fit-content;
}

.founders .name:hover {
    color: white;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 50px white;
    transform: scale(1.02);
}

.highlight-quote {
    margin-top: 6rem;
    font-weight: 200;
    font-size: 1.1rem;
    color: white; /* Clear and highlighted */
    padding-left: 2.5rem;
    border-left: 2px solid white; /* Thicker bar */
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

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

.about-text-primary {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.1;
    color: white;
    margin-bottom: 0.5rem;
}

.about-text-primary strong {
    font-weight: 600;
}

.about-text-secondary {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6); /* Brighter */
    font-weight: 300;
    max-width: 650px; /* Wider block */
}

.about-footer {
    margin-top: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-footer p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.signature {
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.year {
    font-weight: 800;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* Glowing 2K26 */
}

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

.contact-title-simple {
    font-size: 4rem !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: 1.1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -3.5rem;
    margin-bottom: 2rem;
    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: 3rem 2rem;
    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; }
    
    .about-container {
        flex-direction: column;
        height: auto;
        padding-top: 5rem;
        gap: 3rem;
    }
    .about-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 3rem;
    }
    .about-left::after { display: none; }
    
    .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); }
}
