.fv-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.fv-card {
    font-family: Montserrat;
    margin: 7px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.fv-top {
    display: flex;
    height: 100px;
    margin-bottom: 10px;
}

.fv-icon {
    width: 35%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.fv-name-rating {
    width: 65%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-name {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.fv-rating {
    color: #ffcc00;
    font-size: 13px;
    margin-bottom: 5px;
}

.fv-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
}

.fv-product-count,
.fv-price-range {
    margin: 2px 0;
}

.fv-bottom {
    display: flex;
    height: 160px;
}

.fv-bottom-left {
    width: 65%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 5px;
    border: 1px solid #eee;
}

.fv-bottom-right {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.fv-br-top,
.fv-br-bottom {
    height: 50%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 5px;
    border: 1px solid #eee;
}

.view-store-btn2 {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 4px 12px;
    background: #3C1A5B;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 300;
    font-family: Montserrat;
}

.view-store-btn2:hover {
    color: #FFF748;
}

.fv-card > div:last-child {
    text-align: center;
}

/* Filter Styles */
.fv-filters {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.fv-filter-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 15px;
}

.fv-filter-group {
    flex: 1;
    min-width: 200px;
}

.fv-filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.fv-filter-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.fv-filter-input.small {
    width: 80px;
    display: inline-block;
}

.fv-filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.fv-price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fv-price-range span {
    color: #666;
}

.fv-filter-button {
    padding: 8px 15px;
    background: #3C1A5B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 24px;
}

.fv-filter-button:hover {
    background: #4d2377;
}

/* Pagination Styles */
.fv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.fv-pagination button {
    padding: 8px 15px;
    background: #3C1A5B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.fv-pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.fv-pagination-numbers {
    display: flex;
    gap: 5px;
}

.fv-pagination-numbers button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fv-pagination-numbers button.active {
    background: #3C1A5B;
    color: white;
    border-color: #3C1A5B;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .fv-wrapper.layout-grid .fv-card {
        width: 48% !important;
    }
}

@media (max-width: 600px) {
    .fv-wrapper.layout-grid .fv-card {
        width: 100% !important;
    }
    
    .fv-filter-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .fv-filter-group {
        min-width: 100%;
    }
}