.maeru-marketplace-block-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.maeru-marketplace-title {
    text-align: center;
    color: #5c3713;
    margin-bottom: 30px;
    font-size: 28px;
}

.maeru-marketplace-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.maeru-product-block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maeru-product-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.maeru-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.maeru-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.maeru-product-block:hover .maeru-product-image img {
    transform: scale(1.05);
}

.maeru-product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.maeru-product-name {
    color: #5c3713;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.maeru-product-description {
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.maeru-product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.maeru-product-price {
    color: #7e4c2b;
    font-weight: bold;
    font-size: 18px;
}

.maeru-product-weight {
    color: #9d9d9d;
    font-size: 14px;
}

.maeru-product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.maeru-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-grow: 1;
    justify-content: center;
}

.maeru-btn-tiktok {
    background: #000;
    color: white;
}

.maeru-btn-tokopedia {
    background: #42b549;
    color: white;
}

.maeru-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.maeru-btn-icon {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .maeru-product-block {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .maeru-marketplace-block-container {
        padding: 15px;
    }
    
    .maeru-product-block {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .maeru-product-buttons {
        flex-direction: column;
    }
    
    .maeru-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .maeru-marketplace-title {
        font-size: 24px;
    }
    
    .maeru-product-info {
        padding: 15px;
    }
    
    .maeru-product-name {
        font-size: 16px;
    }
}