/* body {
    background-color: #ecf0f1; /* Solid, light background 
    color: #4a4a4a;
    font-family: 'Roboto', sans-serif;
} */

.vendor-details-page {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Vendor Header */
.vendor-header-card {
    background: linear-gradient(to right, #ffffff, #f0f4f7); /* Subtle gradient for card */
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    margin-bottom: 1.5rem;
}

.vendor-logo {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.vendor-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dcdcdc; /* Lighter border */
}

.vendor-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #2c3e50;
}

.vendor-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.vendor-info p i {
    color: #3498db;
    margin-right: 0.6rem;
    width: 18px;
    text-align: center;
}

.vendor-actions {
    margin-top: 1rem;
}

.vendor-actions .btn {
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.vendor-actions .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.vendor-actions .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
}

.vendor-actions .btn-outline-primary {
    color: #3498db;
    border-color: #3498db;
}

.vendor-actions .btn-outline-primary:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-1px);
}


/* Tabs */
.vendor-tabs .nav-tabs {
    border-bottom: none;
    margin-bottom: 1.5rem;
    justify-content: start;
}

.vendor-tabs .nav-link {
    border: none;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    color: #7f8c8d;
    border-radius: 6px;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
}

.vendor-tabs .nav-link.active {
    background-color: #3498db;
    color: #fff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.vendor-tabs .tab-content {
    background: linear-gradient(to right, #ffffff, #f0f4f7); /* Subtle gradient for tab content */
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #3498db;
}

/* Right Sidebar Cards */
.sidebar-card {
    background: linear-gradient(to right, #ffffff, #f0f4f7); /* Subtle gradient for sidebar cards */
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    margin-bottom: 1.5rem;
}

.sidebar-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.seller-details-card p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.seller-details-card p i {
    font-size: 1rem;
    color: #3498db;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

/* Inquiry Form */
.get-price-card .form-control {
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    border: 1px solid #dcdcdc;
    font-size: 0.9rem;
}

.get-price-card .form-check-label {
    font-weight: 400;
    font-size: 0.9rem;
}

.get-price-card .btn-success {
    background-color: #27ae60;
    border-color: #27ae60;
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    width: 100%;
    font-size: 0.9rem;
}
.get-price-card .btn-success:hover {
    background-color: #229954;
    border-color: #229954;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

/* FAQ Accordion */
.vendor-faqs {
    /* background: linear-gradient(to right, #ffffff, #f0f4f7); Subtle gradient for FAQs */
    border-radius: 10px;
    padding: 1.5rem;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); More pronounced shadow */
    margin-bottom: 1.5rem;
}

.vendor-faqs .accordion-item {
    border: none;
    margin-bottom: 0.8rem;
}
.vendor-faqs .accordion-button {
    background-color: #ecf0f1;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 6px !important;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}
.vendor-faqs .accordion-button:not(.collapsed) {
    background-color: #3498db;
    color: #fff;
}
.vendor-faqs .accordion-body {
    background-color: #fcfdfe;
    padding: 1.2rem 1.5rem;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    font-size: 0.9rem;
    color: #5a5a5a;
}

/* Popular Products Section */
.popular-products-section {
    padding: 2rem 0;
    /* background-color: #ecf0f1; Solid background to match body */
}

.shadow-box {
    background: linear-gradient(to right, #ffffff, #f0f4f7); /* Subtle gradient for shadow box */
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
}
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}
