.eplw-product-list,
.eplw-product-list * {
    font-family: 'Merriweather', serif !important;
}

.eplw-product-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.eplw-product-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 14px 0;
    gap: 0;
}

.eplw-icons {
    display: flex;
    gap: 0;
    margin-right: 8px;
    min-width: 32px;
}

.eplw-icons img,
.eplw-icons svg {
    width: 32px;
    height: 32px;
    display: block;
}

.eplw-product-title {
    font-weight: 700;
    font-size: 1.22em;
    margin-left: 0;
    letter-spacing: 0.5px;
    display: block;
    white-space: nowrap;
}

.eplw-product-details {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
}

.eplw-product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.13em;
    margin-left: auto;
    margin-right: 32px;
    white-space: nowrap;
}

.eplw-product-price del {
    color: #999;
    font-weight: 400;
}

.eplw-product-sale-price {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.eplw-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0; /* Без заоблени ъгли */
    padding: 0 32px;
    font-weight: 700;
    border: none;
    background: #d0021b;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.11em;
    height: 56px;
    box-shadow: 0 2px 12px rgba(208,2,27,0.10);
    transition: background 0.18s, box-shadow 0.18s;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.2px;
}

.eplw-order-btn:hover {
    background: #a00115;
    box-shadow: 0 2px 16px rgba(208,2,27,0.15);
}

.eplw-order-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-right: 2px;
}

.eplw-product-img-wrap {
    flex-shrink: 0;
    margin-right: 12px;
}

.eplw-product-img {
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 54px;
    max-height: 54px;
}

@media (max-width: 900px) {
    .eplw-product-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .eplw-order-btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    .eplw-product-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .eplw-product-prices {
        margin-left: 0;
        margin-right: 0;
    }
}
