/* 
.elementor-widget-icon.elementor-view-default .elementor-icon svg {
  fill: rgb(201, 168, 76) !important;
} */

/* CONTAINER */
.fcart-container {
    overflow: visible;
    max-width: 1440px;
    background-color: #f6f6f6;
    margin: auto;
    padding: 40px;
}

.fcart-wrapper {
    overflow: visible;
    align-items: flex-start;
    /* important fix */
    display: flex;
    gap: 30px;
}

/* LEFT */
.fcart-box {
    flex: 2;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
}

/* HEADER */
.fcart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fcart-clear {
    color: #e63946;
    font-size: 13px;
    cursor: pointer;
}

/* HEAD */
.fcart-head {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 40px;
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

/* ITEM */
.fcart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 40px;
    align-items: center;
    background: #fafafa;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 12px;
}

/* PRODUCT */
.fcart-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fcart-product img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}

.fcart-product-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.fcart-product-info span {
    font-size: 12px;
    color: #777;
}

/* COUNTER */
.fcart-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.fcart-counter button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}

.fcart-counter button:hover {
    background: #ddd;
}

.fcart-counter svg {
    width: 14px;
    height: 14px;
}

/* PRICE */
.fcart-price {
    text-align: center;
    font-weight: 500;
}

/* DELETE */
.fcart-delete {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.fcart-delete svg {
    width: 18px;
    height: 18px;
    opacity: .6;
    transition: .2s;
}

.fcart-delete:hover svg {
    stroke: #e63946;
    opacity: 1;
}

/* RIGHT */
.fcart-right {
    position: sticky;
    transition: top 0.3s ease;
    top: 20px;
    flex: 1;
}

/* PROMO */
.fcart-promo-card {
    display: flex;
    flex-direction: column;

    background: #fff;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    gap: 8px;
}

/* TITLE */
.fcart-promo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.fcart-promo-title h4 {
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ICON */
.fcart-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcart-icon svg {
    width: 15px;
    height: 15px;
}

.fcart-shipping {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #b6e8cc;
    border-radius: 10px;
    font-size: 14px;
    color: #1a7a4a;
}

/* INPUT */
.fcart-input {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.fcart-input input {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
}

/* BUTTON */
.fcart-apply-btn {
    padding: 0 20px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* SUMMARY */
.fcart-summary {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
}

.fcart-row {
    display: flex;
    justify-content: space-between;
    margin: 14px 0;
    font-size: 14px;
    color: #555;
}

.fcart-discount-val {
    color: #1a7a4a;
    font-weight: 600;
}

.fcart-free-tag {
    background: #111;
    color: #fff;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fcart-total {
    font-weight: 700;
    color: #111;
    font-size: 18px;
    border-top: 1.5px solid #eee;
    padding-top: 18px;
    margin-top: 18px;
}

.fcart-checkout {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.fcart-checkout a {
    display: block;
    padding: 14px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.fcart-checkout:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px);
}

.fcart-checkout:hover a {
    color: #111;
}

.fcart-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fcart-price-delete {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media(max-width:768px) {
    .fcart-container {
        padding: 15px;
    }

    .fcart-box,
    .fcart-right {
        flex: none;
        width: auto;
    }

    .fcart-box {
        padding: 15px;
    }

    .fcart-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .fcart-head {
        display: none;
    }

    .fcart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .fcart-product img {
        width: 60px;
        height: 60px;
    }

    .fcart-mobile {
        padding-top: 12px;
        border-top: 1px dashed #eaeaea;
    }

    .fcart-promo-card,
    .fcart-summary {
        padding: 15px;
    }
}

/* COUPON LIST */
.fcart-coupon-list {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* COUPON TAG */
.fcart-coupon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f4;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* HOVER EFFECT */
.fcart-coupon-item:hover {
    background: #ececec;
}

/* COUPON TEXT */
.fcart-coupon-name {
    color: #111;
    letter-spacing: 0.5px;
}

/* REMOVE BUTTON */
.fcart-coupon-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* SVG ICON */
.fcart-coupon-remove svg {
    width: 12px;
    height: 12px;
    stroke: #888;
    transition: 0.2s;
}

/* HOVER REMOVE */
.fcart-coupon-remove:hover {
    background: #ffeaea;
}

.fcart-coupon-remove:hover svg {
    stroke: #e63946;
}


/* ── Free Shipping Bar ── */
.free-shipping-bar {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #f0faf5;
    border: 1px solid #b6e8cc;
    font-size: 14px;
    font-weight: 500;
    color: #1a7a4a;
}

.fs-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #1a7a4a;
}

.fs-icon--success {
    color: #0f5132;
}

/* SUCCESS STATE */
.free-shipping-bar--achieved {
    background: #edfaf3;
    border-color: #6fcf9a;
}

/* TEXT */
.free-shipping-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

#fs-loading-lottie {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#fs-loading-lottie svg {
    width: 100%;
    height: 100%;
}

/* REMOVE GAP WHEN SUCCESS */
.free-shipping-bar--achieved .free-shipping-inner {
    margin-bottom: 0;
}

/* PROGRESS TRACK */
.free-shipping-progress {
    height: 5px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

/* PROGRESS FILL */
.free-shipping-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a7a4a, #28a36a);
    border-radius: 6px;
    transition: width 0.5s ease;
}

/* ============================= */
/* SHIPPING ROW (SAFE WRAPPER)  */
/* ============================= */
.fcart-shipping {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #333;

    margin-top: 10px;
}

/* ============================= */
/* LOTTIE CONTAINER             */
/* ============================= */
#fcart-truck-lottie {
    width: 42px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

/* ============================= */
/* LOTTIE SVG CONTROL           */
/* ============================= */
#fcart-truck-lottie svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================= */
/* FORCE YOUR BRAND COLOR       */
/* ============================= */
#fcart-truck-lottie svg path,
#fcart-truck-lottie svg rect,
#fcart-truck-lottie svg circle,
#fcart-truck-lottie svg polygon {
    stroke: rgb(26, 122, 74) !important;
    fill: rgb(26, 122, 74) !important;
}

/* ============================= */
/* TEXT ALIGNMENT FIX           */
/* ============================= */
.fcart-shipping span,
.fcart-shipping bdi {
    display: inline-flex;
    align-items: center;
}

/* ============================= */
/* OPTIONAL MICRO POLISH        */
/* ============================= */
#fcart-truck-lottie {
    transform: translateY(1px);
    /* perfect vertical alignment */
}

/* ============================= */
/* RESPONSIVE (MOBILE)          */
/* ============================= */


/* ============================= */
/* LOTTIE SUCCESS CONTAINER       */
/* ============================= */
#free-ship-lottie {
    width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-2px);
    /* visual alignment tweak */
}

#free-ship-lottie svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Force brand green color */
#free-ship-lottie svg path,
#free-ship-lottie svg rect,
#free-ship-lottie svg circle,
#free-ship-lottie svg polygon {
    stroke: rgb(26, 122, 74) !important;
    fill: rgb(26, 122, 74) !important;
}

.free-ship-text {
    font-size: 15px;
    font-weight: 600;
    color: #0f5132;
}