:root {
    --primary-color: #fcb700;
    --secondary-color: #333;
    --light-color: #f5f5f5;
    --dark-color: #222;
    --border-color: #e1e1e1;
    --border-radius: 4px;
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: Montserrat;
}



.supro-vendor-page {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: Montserrat;
}

/* 3-column container styles */
.vendor-info-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.vendor-info-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.vendor-about-card {
    flex: 0 0 25%;
}

.vendor-banner-card {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    position: relative;
}

.vendor-banner-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.vendor-banner-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #fff;
}

.vendor-banner-content h1 {
    font-size: 28px;
    margin: 0 0 5px;
    color: #fff;
}

.vendor-banner-content p {
    margin: 0;
    font-size: 16px;
}

.vendor-owner-card {
    flex: 0 0 25%;
}

.vendor-owner-photo {
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius:8px;
}

.store-icon-photo {
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius:8px;
}

.vendor-owner-title {
    font-size: 18px;
    margin: 0 0 15px;
    color: #333;
    font-weight: 500;
}


.about-store-name {
    font-size: 18px;
    margin: 0 0 15px;
    color: #333;
    font-weight: 500;
}

.vendor-layout {
    display: flex;
    gap: 30px;
}

.vendor-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.vendor-main {
    flex-grow: 1;
}

/* Sidebar filter styles */
.vendor-filter-widget {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 20px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-content {
    margin-top: 15px;
}

.search-store {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.sort-options {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.price-range-slider {
    width: 100%;
    margin: 15px 0;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.filter-checkbox {
    margin-bottom: 10px;
}

.filter-checkbox label {
    margin-left: 8px;
    font-size: 14px;
}

.filter-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    margin-top: 15px;
}

/* Products grid */
.vendor-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.products-count {
    color: #666;
    font-size: 14px;
}

.vendor-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
    position: relative;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wishlist-icon i {
    font-size: 16px;
    color: #666;
}

.wishlist-icon.active i {
    color: red;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.product-rating {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 18px;
}

.product-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.add-to-cart {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    flex-grow: 1;
}

.add-to-cart:hover {
    background: #e0a800;
}

.view-details {
    background: #fff;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.view-details:hover {
    background: var(--light-color);
}

@media (max-width: 992px) {
    .vendor-layout {
        flex-direction: column;
    }
    
    .vendor-sidebar {
        width: 100%;
    }
    
    .vendor-info-container {
        flex-direction: column;
    }
    
    .vendor-about-card,
    .vendor-banner-card,
    .vendor-owner-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .vendor-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}