/* ==========================================================================
   Shop Promo — Sidebar Widget & After-Article CTA
   Brand: burgundy #53242C, pink #faf2f3, Beautiful Bloom headings, Spartan body
   ========================================================================== */

/* ---------- Sidebar Widget ---------- */

.fc-sidebar-shop-widget {
    background: #faf2f3;
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 30px;
    text-align: center;
}

.fc-sidebar-shop-title {
    font-family: "Beautiful Bloom", serif;
    color: #53242C;
    font-size: 1.6rem;
    margin: 0 0 18px;
    letter-spacing: 0.5px;
}

.fc-sidebar-shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.fc-sidebar-product-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fc-sidebar-product-card:hover {
    box-shadow: 0 4px 16px rgba(83, 36, 44, 0.12);
    transform: translateY(-2px);
}

.fc-sidebar-product-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.fc-sidebar-product-info {
    padding: 10px 8px;
}

.fc-sidebar-product-name {
    display: block;
    font-family: "Spartan", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #53242C;
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc-sidebar-product-price {
    display: block;
    font-family: "Spartan", sans-serif;
    font-size: 0.75rem;
    color: #e97a9c;
    font-weight: 500;
}

.fc-sidebar-shop-btn {
    display: inline-block;
    font-family: "Spartan", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: #53242C;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.fc-sidebar-shop-btn:hover {
    background: #6e343e;
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- After-Article CTA ---------- */

.fc-article-shop-cta {
    margin: 40px 0 30px;
    clear: both;
}

.fc-article-shop-cta-inner {
    background: #faf2f3;
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
}

.fc-article-shop-heading {
    font-family: "Beautiful Bloom", serif;
    color: #53242C;
    font-size: 1.8rem;
    margin: 0 0 6px;
}

.fc-article-shop-subtitle {
    font-family: "Spartan", sans-serif;
    color: #7a5460;
    font-size: 0.9rem;
    margin: 0 0 24px;
}

.fc-article-shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.fc-article-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fc-article-product-card:hover {
    box-shadow: 0 6px 20px rgba(83, 36, 44, 0.12);
    transform: translateY(-3px);
}

.fc-article-product-img {
    width: 100%;
}

.fc-article-product-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.fc-article-product-name {
    display: block;
    font-family: "Spartan", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #53242C;
    padding: 10px 10px 4px;
    line-height: 1.3;
    text-align: center;
}

.fc-article-product-price {
    font-family: "Spartan", sans-serif;
    font-size: 0.82rem;
    color: #e97a9c;
    font-weight: 500;
}

.fc-article-shop-btn {
    display: inline-block;
    font-family: "Spartan", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: #53242C;
    padding: 12px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.fc-article-shop-btn:hover {
    background: #6e343e;
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- Responsive ---------- */

@media (max-width: 767px) {
    .fc-sidebar-shop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .fc-article-shop-products {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .fc-article-shop-cta-inner {
        padding: 28px 18px;
    }

    .fc-article-shop-heading {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fc-article-shop-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}
