/* General Styling */
.content-sections {
    display: flex;
    gap: 20px;
    margin: 20px;
}

.section {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow: hidden;
    flex: 2;
}

.latest-products {
    flex: 1; /* Smaller section */
}

.section-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.show-all-link {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
}

.section-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* First Section Styling */
.latest-buy-offers .buy-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buy-offer-flag {
    width: 20px;
    height: 14px;
    margin-right: 10px;
}

.buy-offer-description {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.buy-offer-time {
    font-size: 12px;
    color: #999;
}

/* Second Section Styling */
.latest-products .product-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.product-details {
    flex-direction: column;
    font-size: 14px;
}

.product-title {
    font-weight: bold;
}

.manufacturer {
    font-size: 12px;
    color: #666;
}

.details-link {
    font-size: 12px;
    color: #0073e6;
    text-decoration: underline;
    cursor: pointer;
}
