/**
 * Smart Category View - Styles
 * Responsive Grid-Layout für Unterkategorien
 */

/* Container */
.scv-container {
    width: 100%;
    margin: 30px 0;
}

/* Grid Layout */
.scv-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}

/* Spalten-Varianten */
.scv-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.scv-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.scv-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Kategorie Item */
.scv-category-item {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.scv-category-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Link */
.scv-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Bild-Wrapper */
.scv-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.76%; /* 340:227 Aspect Ratio (227/340 = 0.6676) */
    overflow: hidden;
    background: #f5f5f5;
}

.scv-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.scv-category-item:hover .scv-category-image {
    transform: scale(1.05);
}

/* Overlay beim Hover */
.scv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scv-category-item:hover .scv-overlay {
    opacity: 1;
}

.scv-view-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kategorie Info */
.scv-category-info {
    padding: 20px;
    text-align: center;
}

.scv-category-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.scv-product-count {
    display: inline-block;
    font-size: 14px;
    color: #666;
}

/* Fehlermeldungen und Info */
.scv-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

.scv-info {
    padding: 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    color: #0c5460;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .scv-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .scv-grid {
        gap: 20px;
    }
    
    .scv-columns-3,
    .scv-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scv-category-name {
        font-size: 16px;
    }
    
    .scv-category-info {
        padding: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .scv-container {
        margin: 20px 0;
    }
    
    .scv-grid {
        gap: 15px;
    }
    
    .scv-columns-2,
    .scv-columns-3,
    .scv-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .scv-category-name {
        font-size: 16px;
    }
    
    .scv-view-text {
        font-size: 14px;
    }
}
