/* General Layout and Containers */
.products-container {
    margin: 0;
    padding: 0;
}

.product-box {
    border: 1px solid #DDD;
    padding: 45px 15px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #FFF;
}

.no-product-box {
    border: 1px solid #DDD;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #FFF;
}

.product-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.product-row:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.product-row:hover {
    background-color: #f5f5f5; /* Light gray hover effect */
}

/* Links within product row */
.product-row a,
.product-row a:visited,
.product-row a:hover,
.product-row a:active {
    text-decoration: none;
    color: inherit;
}

.product-row div {
    padding: 5px;
    flex: 1; /* Equal spacing for cells */
}

/* Product Image */
.product-image-container {
    position: relative;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 300px;
    width: auto;
    height: auto;
    margin-right: 20px;
}

/* Product Label */
.product-label {
    position: absolute;
    top: 0;
    left: 0;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Product Details */
.product-details {
    flex-grow: 1; /* Fills remaining space */
}

.product-title {
    margin: 0 0 10px;
    font-size: 24px !important;
}

.product-description-heading {
    margin: 0 0 10px;
    font-size: 20px !important;
}

.product-description {
    margin: 0 0 10px;
    font-size: 15px;
}

.product-price {
    margin: 0;
    color: #333;
    font-size: 15px;
}

.product-table-price {
    margin-right: 10px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

.original-price {
    position: relative;
    color: #777;
    font-size: 16px;
}

.original-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #777;
    transform: rotate(-8deg);
}

.discount-price {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}

.product-delivery-time {
    margin: 10px 0;
    color: #666;
}

.product-delivery {
    margin: 0;
    color: #333;
    font-size: 13px;
}

.price-text {
    margin: 0;
    color: #333;
    font-size: 17px;
    font-weight: bold;
}

/* Stock Indicators */
.stock-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
}

.stock-dot.green { background-color: green; }
.stock-dot.red { background-color: red; }
.stock-dot.gray { background-color: gray; }

.stock-text {
    margin: 0;
    color: #333;
    font-size: 13px;
}

/* Buy Now Button */
.buy-now-button {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid transparent;
    color: #ffffff;
}

.buy-now-button .button-text-desktop {
    display: block;
}

.buy-now-button .button-text-mobile {
    display: none;
}

/* Merchant Logo */
.merchant-logo img {
    max-width: 100%;
    height: auto;
}

/* Table Styling */
.products-table tr {
    border-bottom: 1px solid #333;
}

/* Additional Elements */
.fourplus {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
    color: #000;
}

.additional-row {
    display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .product-box {
        display: block; /* Switch to block layout */
    }

    .product-title {
        display: block;
    }

    .product-image-container {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .product-details {
        display: block;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-image {
        max-width: 150px;
        margin-right: 20px;
    }

    .product-image-container {
        min-width: 150px;
    }

    .buy-now-button {
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .buy-now-button .button-text-desktop {
        display: none; /* Hide desktop text */
    }

    .buy-now-button .button-text-mobile {
        display: block; /* Show mobile text (price) */
    }

    .product-table-price {
        display: none; /* Hide price column */
    }

    .desktop-price {
        display: none; /* Hide desktop price */
    }

    .stock-text {
        font-size: 12px;
    }
}