/* Marketplace Logo Styles */
.mp-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.mp-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

/* Marketplace specific logo backgrounds */
.mp-logo.trendyol {
    background: linear-gradient(135deg, #F27A1A 0%, #FF9F50 100%);
}

.mp-logo.hepsiburada {
    background: linear-gradient(135deg, #FF6000 0%, #FF8C3A 100%);
}

.mp-logo.n11 {
    background: linear-gradient(135deg, #6633CC 0%, #8855DD 100%);
}

.mp-logo.amazon {
    background: linear-gradient(135deg, #FF9900 0%, #FFBB44 100%);
}

.mp-logo.temu {
    background: linear-gradient(135deg, #FF5A00 0%, #FF7B33 100%);
}

.mp-logo.epttavm {
    background: linear-gradient(135deg, #FFCC00 0%, #FFD633 100%);
}

.mp-logo.getir {
    background: linear-gradient(135deg, #5d3ebc 0%, #7d5ee0 100%);
}

.mp-logo.shopify {
    background: linear-gradient(135deg, #96bf48 0%, #aed264 100%);
}

/* Alternative: Text-based logos with brand colors */
.mp-logo-text {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mp-logo-text.trendyol {
    background: linear-gradient(135deg, #F27A1A 0%, #FF9F50 100%);
}

.mp-logo-text.hepsiburada {
    background: linear-gradient(135deg, #FF6000 0%, #FF8C3A 100%);
}

.mp-logo-text.n11 {
    background: linear-gradient(135deg, #6633CC 0%, #8855DD 100%);
}

.mp-logo-text.amazon {
    background: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
}

.mp-logo-text.temu {
    background: linear-gradient(135deg, #FF5A00 0%, #FF7B33 100%);
}

.mp-logo-text.epttavm {
    background: linear-gradient(135deg, #E30A17 0%, #FF3B46 100%);
}

.mp-logo-text.getir {
    background: linear-gradient(135deg, #5d3ebc 0%, #7d5ee0 100%);
}

.mp-logo-text.shopify {
    background: linear-gradient(135deg, #96bf48 0%, #aed264 100%);
}

/* Marketplace card için logo stili */
.marketplace-card .mp-logo,
.marketplace-card .mp-logo-text {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.marketplace-card:hover .mp-logo,
.marketplace-card:hover .mp-logo-text {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Index page için büyük logolar */
.marketplace-box .mp-logo-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.marketplace-box .mp-logo-large img {
    padding: 8px;
}
