/* ── Post featured product block ─────────────────────────────────────── */

.sv2-post-product {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin: 40px 0;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    text-decoration: none;
}

/* Image column */
.sv2-pp-image {
    flex: 0 0 200px;
    width: 200px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.sv2-pp-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sv2-pp-image:hover img {
    transform: scale(1.03);
}

/* Text column */
.sv2-pp-body {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.sv2-pp-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.sv2-pp-cat a {
    color: inherit;
    text-decoration: none;
}

.sv2-pp-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.sv2-pp-name a {
    color: inherit;
    text-decoration: none;
}

.sv2-pp-name a:hover {
    text-decoration: underline;
}

.sv2-pp-price {
    font-size: 18px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 22px;
}

.sv2-pp-price .woocommerce-Price-amount {
    color: inherit;
}

.sv2-pp-price del {
    color: #aaa;
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}

/* Buttons */
.sv2-pp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sv2-pp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sv2-pp-btn--primary {
    background: #1a1a1a;
    color: #fff !important;
    border: 1.5px solid #1a1a1a;
}

.sv2-pp-btn--primary:hover {
    background: #333;
    border-color: #333;
    color: #fff !important;
}

.sv2-pp-btn--locate {
    background: #fff;
    color: #1a1a1a !important;
    border: 1.5px solid #1a1a1a;
}

.sv2-pp-btn--locate:hover {
    background: #1a1a1a;
    color: #fff !important;
}

.sv2-pp-btn--locate svg {
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .sv2-post-product {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .sv2-pp-image {
        width: 100%;
        flex: none;
        max-width: 260px;
    }

    .sv2-pp-name {
        font-size: 18px;
    }

    .sv2-pp-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}
