/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .seofy-direct-feed {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.pr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.pr-row a {
    color: inherit;
    text-decoration: none;
}

.pr-row img {
    max-width: 100%;
    height: auto;
}

.naMe {
    flex-grow: 1;
    margin-left: 20px;
    font-size: 22px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}
.naMe span {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.stoCk {
    margin-right: 20px;
}

.stockStatus {
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}

.in-stock {
    background-color: #5cb85c;
}

.out-of-stock {
    background-color: #d9534f;
}

.priCe {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    margin: 20px;
}

.offer-btn {
    margin-left: auto;
    margin-right: 20px;
}

.offer-btn .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn:focus, .btn:hover {
    background-color: #0056b3;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .pr-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5px;
    }

    .naMe {
        margin: 10px 0;
        font-size: 18px; /* Smaller font size for smaller screens */
    }

    .priCe, .stoCk {
        margin: 10px 0;
    }

    .offer-btn .btn {
        width: 100%; /* Full-width buttons on smaller screens */
        padding: 12px;
    }
}