.atom-slider-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.atom-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.atom-slide {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.atom-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.atom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.atom-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.atom-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.atom-card:hover img {
    transform: scale(1.05);
}

.atom-card h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    flex-grow: 1;
}

.atom-card .price {
    margin: 15px 0 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    background: #fff5f5;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.atom-slider-controls {
    text-align: center;
    margin-top: 20px;
}

.atom-load-more {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

.atom-load-more:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.4);
}

.atom-load-more:active {
    transform: translateY(0);
}

/* Loading state */
.atom-loading {
    opacity: 0.6;
    pointer-events: none;
}

.atom-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .atom-slider {
        flex-direction: column;
        gap: 15px;
    }
    
    .atom-slide {
        max-width: 100%;
    }
    
    .atom-card {
        padding: 15px;
    }
    
    .atom-card h3 {
        font-size: 18px;
    }
    
    .atom-card .price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .atom-slider-container {
        margin: 15px 0;
    }
    
    .atom-card {
        padding: 12px;
    }
    
    .atom-card img {
        height: 120px;
    }
    
    .atom-card h3 {
        font-size: 16px;
    }
    
    .atom-card .price {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .atom-card {
        background: #2c3e50;
        border-color: #34495e;
        color: #ecf0f1;
    }
    
    .atom-card h3 {
        color: #ecf0f1;
    }
    
    .atom-card .price {
        background: #c0392b;
        color: #ecf0f1;
    }
}
