/**
 * FCM Marketplace - Storefront Styles
 */

/* Marketplace */
.fcm-marketplace {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fcm-marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.fcm-marketplace-header h1 {
    margin: 0;
}

.fcm-search-form {
    display: flex;
    gap: 10px;
}

.fcm-search-form input {
    padding: 10px 15px;
    border: 1px solid var(--fcm-border, #E5E7EB);
    border-radius: var(--fcm-radius, 8px);
    font-size: 14px;
    width: 250px;
}

.fcm-search-results {
    margin-bottom: 20px;
    color: var(--fcm-text-muted, #6B7280);
}

.fcm-search-results a {
    margin-left: 10px;
}

/* Product Grid */
.fcm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Product Card */
.fcm-product-card {
    background: #fff;
    border-radius: var(--fcm-radius, 8px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fcm-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fcm-product-image {
    position: relative;
    height: 180px;
    background: #F3F4F6;
    overflow: hidden;
}

.fcm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcm-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.fcm-product-placeholder span {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
}

.fcm-badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #EF4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.fcm-product-content {
    padding: 20px;
}

.fcm-product-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.fcm-product-seller {
    font-size: 13px;
    color: var(--fcm-text-muted, #6B7280);
    margin: 0 0 15px;
}

.fcm-product-seller a {
    color: var(--fcm-primary, #4F46E5);
    text-decoration: none;
}

.fcm-product-price {
    margin-bottom: 15px;
}

.fcm-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--fcm-text, #111827);
}

.fcm-price-original {
    font-size: 16px;
    color: var(--fcm-text-muted, #6B7280);
    text-decoration: line-through;
    margin-right: 10px;
}

.fcm-price-sale {
    font-size: 20px;
    font-weight: 700;
    color: #EF4444;
}

.fcm-product-actions {
    display: flex;
    gap: 10px;
}

.fcm-product-actions .fcm-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 14px;
}

/* Storefront */
.fcm-storefront {
    max-width: 1200px;
    margin: 0 auto;
}

.fcm-storefront-header {
    position: relative;
    margin-bottom: 30px;
}

.fcm-storefront-banner {
    height: 200px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 0 0 var(--fcm-radius, 8px) var(--fcm-radius, 8px);
    background-size: cover;
    background-position: center;
}

.fcm-storefront-info {
    display: flex;
    gap: 20px;
    padding: 0 30px;
    margin-top: -50px;
    position: relative;
}

.fcm-storefront-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.fcm-storefront-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcm-storefront-avatar span {
    font-size: 36px;
    font-weight: 700;
    color: var(--fcm-primary, #4F46E5);
}

.fcm-storefront-details {
    padding-top: 55px;
}

.fcm-storefront-details h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.fcm-storefront-description {
    color: var(--fcm-text-muted, #6B7280);
    margin: 0 0 15px;
}

.fcm-storefront-stats {
    display: flex;
    gap: 20px;
}

.fcm-storefront-stats span {
    font-size: 14px;
    color: var(--fcm-text-muted, #6B7280);
}

.fcm-storefront-stats strong {
    color: var(--fcm-text, #111827);
}

.fcm-storefront-content {
    padding: 0 20px;
}

.fcm-storefront-content h2 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--fcm-border, #E5E7EB);
}

/* Pagination */
.fcm-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.fcm-pagination a,
.fcm-pagination span {
    padding: 8px 14px;
    border: 1px solid var(--fcm-border, #E5E7EB);
    border-radius: var(--fcm-radius, 8px);
    text-decoration: none;
    color: var(--fcm-text, #111827);
}

.fcm-pagination a:hover {
    background: var(--fcm-bg, #F9FAFB);
}

.fcm-pagination .current {
    background: var(--fcm-primary, #4F46E5);
    border-color: var(--fcm-primary, #4F46E5);
    color: #fff;
}

/* Seller Badge */
.fcm-seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fcm-seller-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.fcm-seller-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fcm-primary, #4F46E5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .fcm-marketplace-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .fcm-search-form input {
        width: 100%;
    }

    .fcm-product-grid {
        grid-template-columns: 1fr;
    }

    .fcm-storefront-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .fcm-storefront-avatar {
        margin-top: -50px;
    }

    .fcm-storefront-details {
        padding-top: 15px;
    }

    .fcm-storefront-stats {
        justify-content: center;
    }
}
