/* ==========================================================================
   Free Shipping Promotion Elements — Fhemistry
   ========================================================================== */

/* -----------------------------------------------
   1. Announcement Bar (top of every page)
   ----------------------------------------------- */
.fc-announcement-bar {
    background: #53242C;
    color: #fff;
    text-align: center;
    font-family: "Spartan", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1;
    padding: 10px 15px;
    position: relative;
    z-index: 9999;
}
.fc-announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.fc-announcement-bar__icon {
    flex-shrink: 0;
    opacity: 0.85;
}
@media screen and (max-width: 576px) {
    .fc-announcement-bar {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 9px 10px;
    }
}

/* -----------------------------------------------
   2. Shop Page — Banner above product grid
   ----------------------------------------------- */
.fc-shop-shipping-banner {
    max-width: 1140px;
    margin: 0 auto 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #faf2f3;
    border: 1px solid #f0d6d8;
    border-radius: 8px;
    font-family: "Spartan", sans-serif;
    font-size: 13px;
    color: #53242C;
    letter-spacing: 0.5px;
}
.fc-shop-shipping-banner svg {
    flex-shrink: 0;
    color: #53242C;
}
@media screen and (max-width: 576px) {
    .fc-shop-shipping-banner {
        font-size: 11px;
        padding: 10px 14px;
        margin: 0 15px 10px;
    }
}

/* -----------------------------------------------
   2b. Shop Page — Product card shipping badge
   ----------------------------------------------- */
.fc-shipping-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(250, 242, 243, 0.92);
    color: #53242C;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    border: 1px solid #f0d6d8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
@media screen and (max-width: 576px) {
    .fc-shipping-badge {
        font-size: 8px;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }
}

/* -----------------------------------------------
   3. Single Product — Free shipping notice
   ----------------------------------------------- */
.fc-free-shipping-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin: 16px 0 20px;
    background: #faf2f3;
    border: 1px solid #f0d6d8;
    border-radius: 8px;
}
.fc-free-shipping-notice svg {
    flex-shrink: 0;
}
.fc-free-shipping-notice__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fc-free-shipping-notice__text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #53242C;
    letter-spacing: 0.5px;
}
.fc-free-shipping-notice__text span {
    font-family: "Spartan", sans-serif;
    font-size: 11px;
    color: #7a3a44;
}
@media screen and (max-width: 576px) {
    .fc-free-shipping-notice {
        padding: 12px 14px;
        gap: 10px;
    }
    .fc-free-shipping-notice__text strong {
        font-size: 12px;
    }
    .fc-free-shipping-notice__text span {
        font-size: 10px;
    }
}

/* -----------------------------------------------
   4. Cart Drawer — Free shipping message
   ----------------------------------------------- */
.fc-cart-shipping-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: #faf2f3;
    border: 1px solid #f0d6d8;
    border-radius: 6px;
    font-family: "Spartan", sans-serif;
    font-size: 12px;
    color: #53242C;
}
.fc-cart-shipping-msg svg {
    flex-shrink: 0;
    color: #53242C;
}
.fc-cart-shipping-msg strong {
    font-weight: 700;
}
