/**
 * Vendor Storefront Styles
 */

.uvendors-store-container {
    min-height: 100vh;
}

/* Store Header */
.uvendors-store-header {
    background: #f5f5f5;
    margin-bottom: 40px;
}

.store-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #2271b1;
}

.store-info-wrapper {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.store-main-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.store-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-details {
    flex: 1;
}

.store-name {
    font-size: 32px;
    margin: 0 0 15px 0;
    color: #1d2327;
}

.store-description {
    font-size: 16px;
    line-height: 1.6;
    color: #646970;
    margin-bottom: 20px;
}

.store-contact {
    margin-bottom: 20px;
}

.contact-item {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
}

.contact-item i {
    margin-left: 5px;
    color: #2271b1;
}

.store-social {
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s;
    color: #fff;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Store Products */
.store-products {
    padding: 40px 0;
}

.store-products h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #1d2327;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 18px;
}

.product-card .price {
    padding: 0 15px 15px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #2271b1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* RTL Support */
.rtl .contact-item {
    margin-left: 0;
    margin-right: 20px;
}

.rtl .social-link {
    margin-left: 0;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .store-main-info {
        flex-direction: column;
        text-align: center;
    }
    
    .store-logo img {
        width: 120px;
        height: 120px;
    }
    
    .store-name {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

