/* Contenedor Full Width con Desvanecimiento */
    .ink-selector-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2607/03/photo/FONDOELECCION-2eb9.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-blend-mode: overlay;
        background-color: rgba(0,0,0,0.6);
        
        /* Efecto de desvanecimiento (fusión con el fondo de la página) */
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        
        padding: 100px 20px;
        box-sizing: border-box;
    }

    .ink-selector-section { 
        max-width: 1200px;
        margin: 0 auto;
        text-align: center; 
        font-family: 'Montserrat', sans-serif; 
    }
    
    .section-title { 
        font-family: 'Playfair Display', serif; 
        font-size: 1.8rem; /* Título estilizado y más chico */
        color: #ffffff; 
        letter-spacing: 2px; 
        margin-bottom: 40px; 
        font-weight: 600; 
        font-style: italic;
    }

    .ink-row { 
        display: flex; 
        flex-direction: row; 
        justify-content: center; 
        gap: 20px; 
        flex-wrap: wrap; 
    }
    
    /* Animación de latido (Respiración) */
    @keyframes inkPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .ink-option { 
        text-decoration: none; 
        width: 100px; 
        height: 100px; 
        border-radius: 15px; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        font-weight: 800; 
        font-size: 0.8rem; 
        text-transform: uppercase;
        transition: all 0.4s ease;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.1);
        
        /* Animación activa al cargar */
        animation: inkPulse 3s ease-in-out infinite;
        animation-play-state: running;
    }
    
    .ink-option:hover { 
        animation-play-state: paused; /* Se detiene al pasar el mouse */
        transform: scale(1.1) !important; 
        box-shadow: 0 15px 25px rgba(0,0,0,0.5);
    }

    /* Adaptación a celulares */
    @media (max-width: 600px) {
        .section-title { font-size: 1.4rem; margin-bottom: 20px; }
        .ink-option { width: 80px; height: 80px; font-size: 0.7rem; }
        .ink-row { gap: 10px; }
    }

    /* Colores */
    .black      { background: #1a1a1a; color: #fff; box-shadow: 5px 5px 15px rgba(255,255,255,0.1); }
    .white      { background: #ffffff; color: #333; box-shadow: 5px 5px 15px rgba(255,255,255,0.2); }
    .red-fixed  { background: #b71c1c; color: #fff; }
    .blue       { background: #0d47a1; color: #fff; }
    .yellow     { background: #fbc02d; color: #fff; }
    .green      { background: #2e7d32; color: #fff; }
    .purple     { background: #4a148c; color: #fff; }
    .orange     { background: #e65100; color: #fff; }
    .pink       { background: #ec407a; color: #fff; }
    .brown      { background: #5d4037; color: #fff; }
