.featured-product-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 10px auto;
    overflow: visible; /* allow card to overflow bottom */
    border: 2px solid #fff;
    border-radius: 14px;
    /* extra bottom space for card */
    padding-bottom: 80px;
}

.featured-product-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ── NEW PRODUCT CARD ── */
.fp-card {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 11px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    box-sizing: border-box;
    transition: box-shadow 0.3s;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.fp-card:hover {
    box-shadow: 0 8px 32px rgba(0, 112, 192, 0.22);
}

.fp-card-row {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    width: 100%;
}

.fp-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 9px;
    flex-shrink: 0;
    background: #f0f0f0;
    border: 1px solid rgba(0,0,0,0.07);
}

.fp-meta {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.fp-name {
    font-size: 12px;
    font-weight: 600;
    color: #0d0d0d;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* Price — blue */
.fp-price .price {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.2;
}
.fp-price .price > .woocommerce-Price-amount {
    font-size: 13px; font-weight: 700; color: #0070c0;
}
.fp-price .price ins { text-decoration: none; }
.fp-price .price ins .woocommerce-Price-amount {
    font-size: 13px; font-weight: 700; color: #0070c0;
}
.fp-price .price del { color: #bbb; }
.fp-price .price del .woocommerce-Price-amount {
    font-size: 11px; font-weight: 400; color: #bbb;
}

/* Arrow button */
.fp-arrow {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border: 1.5px solid #0d0d0d;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0d0d0d;
    text-decoration: none !important;
    transition: all 0.2s;
}
.fp-arrow svg { width: 12px; height: 12px; }
.fp-arrow:hover {
    background: #0070c0;
    border-color: #0070c0;
    color: #fff;
}

/* Add to Cart */
.fp-atc {
    display: block;
    width: 100%;
    background: #0d0d0d;
    color: #fff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    box-sizing: border-box;
    white-space: nowrap;
}
.fp-atc:hover {
    background: #0070c0;
    color: #fff !important;
}

