/* eBay Showcase Styles */

.ebay-showcase-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.ebay-showcase-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.ebay-showcase-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

/* Layout Griglia */
.ebay-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Layout Lista */
.ebay-layout-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.ebay-layout-list .ebay-product-card {
    display: flex;
    flex-direction: row;
}

.ebay-layout-list .ebay-product-image {
    width: 200px;
    flex-shrink: 0;
}

.ebay-layout-list .ebay-product-info {
    flex: 1;
    padding-left: 20px;
}

/* Layout Slider */
.ebay-layout-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    margin-bottom: 30px;
}

.ebay-layout-slider .ebay-product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.ebay-layout-slider::-webkit-scrollbar {
    height: 8px;
}

.ebay-layout-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.ebay-layout-slider::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.ebay-layout-slider::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Product Card */
.ebay-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebay-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ebay-product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ebay-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.ebay-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ebay-product-card:hover .ebay-product-image img {
    transform: scale(1.05);
}

.ebay-product-info {
    padding: 15px;
}

.ebay-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ebay-product-price {
    font-size: 20px;
    font-weight: bold;
    color: #e53935;
    margin: 10px 0 5px 0;
}

.ebay-product-shipping {
    font-size: 13px;
    color: #4caf50;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Footer */
.ebay-showcase-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.ebay-view-store-btn {
    display: inline-block;
    background: #3665f3;
    color: white !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ebay-view-store-btn:hover {
    background: #2851d9;
    transform: scale(1.05);
}

/* Loading */
.ebay-showcase-loading {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .ebay-layout-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .ebay-showcase-title {
        font-size: 24px;
    }
    
    .ebay-product-title {
        font-size: 14px;
        height: 40px;
    }
    
    .ebay-product-price {
        font-size: 18px;
    }
    
    .ebay-layout-list .ebay-product-card {
        flex-direction: column;
    }
    
    .ebay-layout-list .ebay-product-image {
        width: 100%;
    }
    
    .ebay-layout-list .ebay-product-info {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .ebay-layout-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ebay-layout-slider .ebay-product-card {
        flex: 0 0 220px;
    }
}