/* Roller Mouse Specific Styles */
.roller-mouse .color-blue {
    color: #007bff !important;
}

.roller-mouse .color-yellow {
    color: #ffc107 !important;
}

.roller-mouse .color-red {
    color: #dc3545 !important;
}

.roller-mouse .color-green {
    color: #28a745 !important;
}

.roller-mouse .color-black {
    color: #343a40 !important;
}

/* Additional Roller Mouse Styles */
.roller-mouse .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roller-mouse .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.roller-mouse .highlight-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(238, 90, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 90, 36, 0);
    }
}

/* Roller Mouse Hero Section */
.roller-mouse .product-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.roller-mouse .product-hero::before {
    background-image: url('../images/banners/tecnologia assistiva.png');
}

/* Key Colors Table */
.roller-mouse .specs-table tbody tr:nth-child(1) td:first-child {
    background-color: rgba(0, 123, 255, 0.1);
}

.roller-mouse .specs-table tbody tr:nth-child(2) td:first-child {
    background-color: rgba(255, 193, 7, 0.1);
}

.roller-mouse .specs-table tbody tr:nth-child(3) td:first-child {
    background-color: rgba(220, 53, 69, 0.1);
}

.roller-mouse .specs-table tbody tr:nth-child(4) td:first-child {
    background-color: rgba(40, 167, 69, 0.1);
}

.roller-mouse .specs-table tbody tr:nth-child(5) td:first-child {
    background-color: rgba(52, 58, 64, 0.1);
}

/* Button Animations */
.roller-mouse .btn-purchase,
.roller-mouse .btn-quote {
    position: relative;
    overflow: hidden;
}

.roller-mouse .btn-purchase::after,
.roller-mouse .btn-quote::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.roller-mouse .btn-purchase:active::after,
.roller-mouse .btn-quote:active::after {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .roller-mouse .product-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .roller-mouse .features-grid {
        grid-template-columns: 1fr;
    }
    
    .roller-mouse .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .roller-mouse .product-info h1 {
        font-size: 2rem;
    }
    
    .roller-mouse .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .roller-mouse .specs-table {
        font-size: 0.9rem;
    }
}

/* Accessibility Improvements */
.roller-mouse .feature-card:focus-within,
.roller-mouse .benefit-item:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation */
.roller-mouse .product-image img {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}