/* ===== ADULTOS +18 CYBERPUNK THEME ===== */

/* Importar fuentes futuristas */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* Variables CSS para tema cyberpunk */
:root {
    --cyber-primary: #00ffff;
    --cyber-secondary: #ff0080;
    --cyber-accent: #ffff00;
    --cyber-dark: #0a0a0a;
    --cyber-darker: #050505;
    --cyber-purple: #8a2be2;
    --cyber-green: #00ff41;
    --cyber-red: #ff073a;
    --cyber-gradient: linear-gradient(135deg, #00ffff 0%, #ff0080 50%, #ffff00 100%);
    --cyber-glow: 0 0 20px currentColor;
    --cyber-text-glow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}

/* ===== BODY Y LAYOUT GENERAL ===== */
body.adult-mode {
    background: var(--cyber-darker);
    color: var(--cyber-primary);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body.adult-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 0, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: cyberBackground 20s ease-in-out infinite;
}

@keyframes cyberBackground {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== MODAL DE VERIFICACIÓN DE EDAD ===== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
}

.age-modal-content {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden !important;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 50px rgba(255, 0, 128, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cyber-gradient);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.age-modal-header h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--cyber-red);
    text-shadow: var(--cyber-text-glow);
    margin-bottom: 1rem;
    animation: glitchText 2s ease-in-out infinite;
}

@keyframes glitchText {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px) skew(-1deg); }
    20% { transform: translateX(2px) skew(1deg); }
    30% { transform: translateX(-1px) skew(-0.5deg); }
    40% { transform: translateX(1px) skew(0.5deg); }
    50% { transform: translateX(0); }
}

.age-modal-body p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--cyber-primary);
    font-weight: 500;
}

.age-verification-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.age-verification-buttons .btn {
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    touch-action: manipulation;
    user-select: none;
}

.age-verification-buttons .btn:active {
    transform: scale(0.98);
}

.age-verification-buttons .btn-primary {
    background: var(--cyber-gradient);
    color: var(--cyber-dark);
    box-shadow: var(--cyber-glow);
}

.age-verification-buttons .btn-primary:hover,
.age-verification-buttons .btn-primary:focus {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--cyber-primary);
    outline: none;
}

.age-verification-buttons .btn-outline {
    background: transparent;
    color: var(--cyber-red);
    border: 2px solid var(--cyber-red);
}

.age-verification-buttons .btn-outline:hover,
.age-verification-buttons .btn-outline:focus {
    background: var(--cyber-red);
    color: white;
    transform: scale(1.05);
    outline: none;
}

/* ===== HEADER CYBERPUNK ===== */
.header.adult-theme {
    background: linear-gradient(135deg, var(--cyber-darker) 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--cyber-primary);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    position: relative;
}

.header.adult-theme::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-gradient);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header.adult-theme .logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--cyber-primary);
    text-shadow: var(--cyber-text-glow);
}

.header.adult-theme .nav-menu a {
    color: var(--cyber-primary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.header.adult-theme .nav-menu a:hover,
.header.adult-theme .nav-menu a.active {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
}

.header.adult-theme .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-gradient);
    transition: width 0.3s ease;
}

.header.adult-theme .nav-menu a:hover::after {
    width: 100%;
}

/* ===== ANIMACIÓN DE ACCESO RESTRINGIDO ===== */
.access-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gate-scanner {
    width: 300px;
    height: 300px;
    border: 3px solid var(--cyber-primary);
    border-radius: 50%;
    position: relative;
    animation: scannerRotate 2s linear infinite;
}

.gate-scanner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    background: var(--cyber-primary);
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(0deg);
    animation: scannerBeam 2s linear infinite;
    box-shadow: 0 0 20px var(--cyber-primary);
}

@keyframes scannerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scannerBeam {
    0% { transform: translate(-50%, -100%) rotate(0deg); opacity: 1; }
    100% { transform: translate(-50%, -100%) rotate(360deg); opacity: 0.3; }
}

.access-text {
    margin-top: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    color: var(--cyber-primary);
    text-align: center;
    animation: typewriter 3s steps(30) infinite;
}

@keyframes typewriter {
    0%, 50% { width: 0; }
    100% { width: 100%; }
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-content.adult-content {
    background: var(--cyber-darker);
    min-height: 100vh;
    position: relative;
}

.category-header.adult-header {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #2a2a2a 100%);
    color: var(--cyber-primary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.category-header.adult-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.category-hero h1 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 3.5rem;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.adult-warning {
    background: linear-gradient(135deg, var(--cyber-red) 0%, #ff4757 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 7, 58, 0.5);
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== PRODUCTOS CON EFECTO BLUR ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card.adult-product {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a1a 100%);
    border: 1px solid var(--cyber-primary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    filter: blur(5px);
    opacity: 0.7;
}

.product-card.adult-product.authenticated {
    filter: none;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.product-card.adult-product:hover.authenticated {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
    border-color: var(--cyber-accent);
}

.product-card.adult-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cyber-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-card.adult-product:hover.authenticated::before {
    opacity: 0.1;
}

.badge.adult {
    background: var(--cyber-gradient);
    color: var(--cyber-dark);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--cyber-glow);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px var(--cyber-primary); }
    50% { box-shadow: 0 0 20px var(--cyber-primary), 0 0 30px var(--cyber-secondary); }
}

/* ===== FILTROS CYBERPUNK ===== */
.filters-section {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a1a 100%);
    padding: 2rem 0;
    border-top: 1px solid var(--cyber-primary);
    border-bottom: 1px solid var(--cyber-primary);
}

.filter-btn {
    background: transparent;
    color: var(--cyber-primary);
    border: 2px solid var(--cyber-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--cyber-dark);
    border-color: var(--cyber-accent);
    transform: scale(1.05);
}

/* ===== SECCIÓN DE PRIVACIDAD ===== */
.privacy-section {
    background: var(--cyber-darker);
    padding: 4rem 0;
    position: relative;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-feature {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a1a 100%);
    padding: 2rem;
    border: 1px solid var(--cyber-primary);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--cyber-primary), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-feature:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.privacy-feature .feature-icon {
    font-size: 3rem;
    color: var(--cyber-primary);
    margin-bottom: 1rem;
    text-shadow: var(--cyber-glow);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.privacy-feature h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--cyber-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== FOOTER CYBERPUNK MEJORADO ===== */
.footer.adult-theme {
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 100%);
    border-top: 2px solid var(--cyber-primary);
    color: var(--cyber-primary);
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.footer.adult-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-gradient);
    animation: scanLine 3s linear infinite reverse;
}

/* Footer Principal */
.footer.adult-theme .footer-main {
    padding: 3rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    position: relative;
}

/* Marca y Contacto */
.footer.adult-theme .footer-brand {
    max-width: 400px;
}

.footer.adult-theme .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer.adult-theme .footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--cyber-primary));
}

.footer.adult-theme .footer-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cyber-primary);
    text-shadow: var(--cyber-text-glow);
}

.footer.adult-theme .footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--cyber-primary);
    opacity: 0.9;
}

.footer.adult-theme .footer-description strong {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
}

.footer.adult-theme .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer.adult-theme .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--cyber-primary);
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer.adult-theme .contact-item:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
    transform: translateX(5px);
}

.footer.adult-theme .contact-item i {
    width: 16px;
    color: var(--cyber-accent);
    text-shadow: 0 0 5px currentColor;
}

/* Grid de Enlaces */
.footer.adult-theme .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer.adult-theme .footer-section {
    display: flex;
    flex-direction: column;
}

.footer.adult-theme .footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cyber-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px currentColor;
}

.footer.adult-theme .footer-title i {
    font-size: 1rem;
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
}

.footer.adult-theme .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer.adult-theme .footer-links a {
    color: var(--cyber-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
}

.footer.adult-theme .footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--cyber-accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px currentColor;
}

.footer.adult-theme .footer-links a:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
    transform: translateX(10px);
}

.footer.adult-theme .footer-links a:hover::before {
    width: 8px;
}

.footer.adult-theme .footer-links a i {
    width: 14px;
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--cyber-accent);
}

/* Contacto Seguro */
.footer.adult-theme .secure-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer.adult-theme .secure-contact p {
    font-size: 0.9rem;
    color: var(--cyber-primary);
    margin: 0;
    opacity: 0.9;
}

.footer.adult-theme .secure-channels {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer.adult-theme .secure-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--cyber-primary);
    padding: 0.3rem 0;
}

.footer.adult-theme .secure-item i {
    color: var(--cyber-accent);
    text-shadow: 0 0 5px currentColor;
    width: 14px;
}

.footer.adult-theme .btn-secure-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--cyber-gradient);
    color: var(--cyber-dark);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-top: 0.5rem;
    align-self: flex-start;
}

.footer.adult-theme .btn-secure-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Redes Sociales Cyberpunk */
.footer.adult-theme .footer-social p {
    font-size: 0.9rem;
    color: var(--cyber-primary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer.adult-theme .social-links-cyber {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.footer.adult-theme .social-cyber {
    position: relative;
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyber-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.footer.adult-theme .social-cyber::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--cyber-primary), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer.adult-theme .social-cyber:hover::before {
    opacity: 0.3;
}

.footer.adult-theme .social-cyber img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.footer.adult-theme .social-cyber:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
    border-color: var(--cyber-accent);
}

.footer.adult-theme .social-cyber:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--cyber-accent));
}

.footer.adult-theme .cyber-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, var(--cyber-accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.footer.adult-theme .social-cyber:hover .cyber-glow {
    opacity: 0.2;
}

/* Footer Bottom */
.footer.adult-theme .footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.footer.adult-theme .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--cyber-gradient);
    animation: scanLine 4s linear infinite;
}

.footer.adult-theme .footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.footer.adult-theme .footer-copyright {
    text-align: left;
}

.footer.adult-theme .footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cyber-primary);
    font-family: 'Rajdhani', sans-serif;
}

.footer.adult-theme .footer-copyright strong {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
}

.footer.adult-theme .footer-tagline {
    font-size: 0.8rem !important;
    color: rgba(0, 255, 255, 0.7) !important;
    font-style: italic;
    margin-top: 0.3rem !important;
    font-family: 'Share Tech Mono', monospace !important;
}

/* Certificaciones */
.footer.adult-theme .footer-certifications {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer.adult-theme .cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--cyber-primary);
    text-align: center;
    padding: 0.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer.adult-theme .cert-item:hover {
    border-color: var(--cyber-accent);
    background: rgba(255, 255, 0, 0.1);
    transform: translateY(-2px);
}

.footer.adult-theme .cert-item i {
    font-size: 1.2rem;
    color: var(--cyber-accent);
    text-shadow: 0 0 10px currentColor;
}

/* Legal */
.footer.adult-theme .footer-legal {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer.adult-theme .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer.adult-theme .legal-links a {
    font-size: 0.8rem;
    color: var(--cyber-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer.adult-theme .legal-links a:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 5px currentColor;
    opacity: 1;
}

.footer.adult-theme .age-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--cyber-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    justify-content: flex-end;
}

.footer.adult-theme .age-warning i {
    color: var(--cyber-red);
    text-shadow: 0 0 10px currentColor;
    animation: warningPulse 2s ease-in-out infinite;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1024px) {
    .footer.adult-theme .footer-main {
        padding: 2rem 0;
    }
    
    .footer.adult-theme .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer.adult-theme .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer.adult-theme .footer-legal {
        justify-content: center;
    }

    .footer.adult-theme .footer-certifications {
        justify-content: center;
    }

    .footer.adult-theme .age-warning {
        text-align: center;
    }
    
    /* Modal responsive para tablet */
    .age-modal-content {
        max-width: 500px;
        padding: 2.5rem;
        margin: 2rem;
    }
    
    .age-modal-header h2 {
        font-size: 2.2rem;
    }
    
    .age-modal-body p {
        font-size: 1.1rem;
    }
    
    .age-verification-buttons {
        gap: 1.5rem;
    }
    
    .age-verification-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer.adult-theme .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer.adult-theme .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer.adult-theme .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer.adult-theme .footer-certifications {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer.adult-theme .cert-item {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer.adult-theme .social-links-cyber {
        grid-template-columns: repeat(5, 1fr);
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .footer.adult-theme .footer-brand {
        text-align: center;
    }
    
    .footer.adult-theme .footer-contact {
        align-items: center;
    }
    
    .footer.adult-theme .btn-secure-contact {
        align-self: center;
    }
    
    .footer.adult-theme .social-links-cyber {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .footer.adult-theme .legal-links {
        align-items: center;
    }
}

/* ===== EFECTOS DE GLITCH ===== */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--cyber-red);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--cyber-primary);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(2px, 2px); }
    20% { transform: translate(-2px, -2px); }
    30% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .age-modal-content {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 15px;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
    
    .age-modal-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .age-modal-body p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .age-verification-buttons .btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .age-modal-footer {
        margin-top: 1rem;
    }
    
    .age-modal-footer p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .age-modal-footer strong {
        font-size: 1.1rem;
        color: var(--cyber-accent);
        text-shadow: 0 0 10px var(--cyber-accent);
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .privacy-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .gate-scanner {
        width: 80px;
        height: 80px;
    }
    
    .access-text {
        font-size: 1rem;
    }
    
    .age-modal-content {
        padding: 1rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 10px;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    .age-modal-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        word-break: break-word;
    }
    
    .age-modal-body p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .age-verification-buttons {
        gap: 0.8rem;
        margin: 1rem 0;
    }
    
    .age-verification-buttons .btn {
        padding: 0.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .age-modal-footer {
        margin-top: 0.8rem;
    }
    
    .age-modal-footer p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .age-modal-footer small {
        font-size: 0.7rem;
    }
    
    .age-modal-footer strong {
        font-size: 1rem;
        display: block;
        margin-top: 0.3rem;
    }
}

/* ===== ANIMACIONES DE ENTRADA ===== */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== EFECTOS DE PARTÍCULAS ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyber-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 6px currentColor;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.5;
    }
}

/* ===== MODO AUTENTICADO ===== */
.authenticated-mode .product-card.adult-product {
    filter: none !important;
    opacity: 1 !important;
}

.authenticated-mode .blur-overlay {
    display: none !important;
}

/* ===== OVERLAY DE BLUR PARA NO AUTENTICADOS ===== */
.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.blur-overlay .lock-icon {
    font-size: 3rem;
    color: var(--cyber-red);
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== RESPONSIVE LANDSCAPE MÓVIL ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .age-modal {
        align-items: flex-start;
        padding: 0.5rem;
        padding-top: 0.5rem;
        overflow-y: auto;
    }
    
    .age-modal-content {
        margin: 0;
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 1rem);
        overflow-y: auto;
        padding: 1rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .age-modal-body p {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .age-verification-buttons {
        flex-direction: row;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .age-verification-buttons .btn {
        flex: 1;
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .age-modal-footer {
        margin-top: 0.8rem;
    }
    
    .age-modal-footer p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
}

/* ===== RESPONSIVE PARA PANTALLAS MUY PEQUEÑAS ===== */
@media (max-width: 320px) {
    .age-modal {
        padding: 0.25rem;
        padding-top: 0.5rem;
    }
    
    .age-modal-content {
        padding: 0.8rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 8px;
        max-height: calc(100vh - 1rem);
        overflow-y: auto;
    }
    
    .age-modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .age-modal-body p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .age-verification-buttons .btn {
        padding: 0.7rem;
        font-size: 0.75rem;
    }
    
    .age-modal-footer p {
        font-size: 0.7rem;
    }
    
    .age-modal-footer strong {
        font-size: 0.9rem;
    }
}

/* Responsive para móvil - cambiar alineación */
@media (max-width: 768px) {
    .age-modal {
        align-items: flex-start;
        padding: 1rem 0.5rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .age-modal {
        align-items: flex-start;
        padding: 0.5rem 0.25rem;
        padding-top: 1rem;
    }
}

/* ===== IMÁGENES RESPONSIVAS EN PRODUCT CARDS ===== */
.product-card.adult-product .product-image img {
    width: 100%;
    height: auto;
    max-width: 220px;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .product-card.adult-product .product-image img {
        max-width: 160px;
        max-height: 220px;
    }
}

@media (max-width: 600px) {
    .product-card.adult-product .product-image img {
        max-width: 120px;
        max-height: 160px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .product-card.adult-product .product-image img {
        max-width: 90px;
        max-height: 120px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== IMÁGENES RESPONSIVAS EN SECCIÓN CUSTOM IMAGE ===== */
.custom-image img {
    width: 100%;
    height: auto;
    max-width: 320px;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .custom-image img {
        max-width: 220px;
        max-height: 220px;
    }
}

@media (max-width: 600px) {
    .custom-image img {
        max-width: 140px;
        max-height: 140px;
    }
    .custom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .custom-image {
        margin-top: 1rem;
    }
}

@media (max-width: 400px) {
    .custom-image img {
        max-width: 90px;
        max-height: 90px;
    }
}

/* ===== IMÁGENES RESPONSIVAS EN SECCIÓN CATEGORY HERO ===== */
.category-hero-image {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    border: 4px solid #00ffff;
    background: linear-gradient(135deg, #0ff 0%, #222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hero-image img {
    width: 100%;
    height: auto;
    max-width: 420px;
    max-height: 420px;
    object-fit: contain;
    border-radius: 14px;
    background: #181c1f;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    box-shadow: 0 2px 16px rgba(0,255,255,0.08);
    display: block;
}

@media (max-width: 900px) {
    .category-hero-image, .category-hero-image img {
        max-width: 300px;
        max-height: 300px;
    }
}
@media (max-width: 600px) {
    .category-hero-image, .category-hero-image img {
        max-width: 180px;
        max-height: 180px;
    }
}
@media (max-width: 400px) {
    .category-hero-image, .category-hero-image img {
        max-width: 120px;
        max-height: 120px;
    }
}

/* Carrusel básico para la imagen principal */
.category-hero-image {
    overflow: hidden;
}
.category-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-carousel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    background: #181c1f;
    transition: opacity 0.4s;
}
.category-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.category-carousel-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #00ffff;
    font-size: 2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-carousel-btn:hover {
    background: #00ffff;
    color: #181c1f;
}