/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Main Container */
.main-section {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Section */
/* Image Section */
.image-section {
    position: relative;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire section */
    display: block;
    border-radius: 8px;
}


/* Overlay Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.overlay h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.browse-button {
    padding: 8px 16px;
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

/* Right Section */
.right-section {
    width: 70%;
}

/* Featured Suppliers and Products */
.featured-suppliers, .featured-products {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Featured Header */
.featured-suppliers h3, .featured-products h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Horizontal List Styling */
.featured-suppliers ul, .featured-products ul {
    display: flex;
    gap: 20px; /* Adds spacing between items */
    padding: 0;
    list-style: none;
    align-items: center;
}

/* Supplier/Product Item Styling */
.featured-suppliers li, .featured-products li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image and Text Styling */
.featured-suppliers img, .featured-products img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.featured-suppliers span, .featured-products span {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}
