/**
 * Feltöltők - Frontend stílusok
 */

/* [feltolto] Shortcode stílusok */
.feltolto-shortcode {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.feltolto-shortcode-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.feltolto-shortcode-link:hover {
    opacity: 0.8;
}

.feltolto-shortcode-link:hover .feltolto-shortcode-name {
    text-decoration: underline;
}

.feltolto-shortcode-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.feltolto-shortcode-name {
    font-size: 14px;
    color: #333;
}

.feltolto-shortcode-empty {
    color: #999;
    font-style: italic;
    font-size: 14px;
}

/* Feltöltő oldal stílusok (ezek inline is vannak, de itt is definiáljuk) */
.feltolto-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feltolto-header {
    text-align: center;
    margin-bottom: 40px;
}

.feltolto-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.feltolto-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px;
}

.feltolto-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.feltolto-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feltolto-product {
    text-align: center;
}

.feltolto-product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.feltolto-product:hover .feltolto-product-image {
    transform: scale(1.02);
}

.feltolto-product-name {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px;
}

.feltolto-product-name a {
    color: inherit;
    text-decoration: none;
}

.feltolto-product-name a:hover {
    color: #0073aa;
}

.feltolto-product-price {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.feltolto-no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Mobil nézet */
@media (max-width: 600px) {
    .feltolto-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feltolto-product-name {
        font-size: 14px;
    }
    
    .feltolto-product-price {
        font-size: 13px;
    }
    
    .feltolto-avatar {
        width: 80px;
        height: 80px;
    }
    
    .feltolto-name {
        font-size: 20px;
    }
}
