/* Advanced Cart Page Styles */
.tasario-advanced-cart {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 15px;
    font-family: var(--font-main);
}
.woocommerce-cart .woocommerce {
    margin-top: 5px !important;
    margin-bottom: 20px !important;
}

/* Free Shipping Bar */
.tasario-free-shipping-bar {
    background-color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.tfs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.tfs-message {
    color: #E95902;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tfs-link {
    color: #E95902;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
.tfs-progress-wrap {
    background-color: #fcece3;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}
.tfs-progress-fill {
    background-color: #E95902;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Layout */
.tasario-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

/* Left: Items */
.tasario-cart-items-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.tci-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.tci-back {
    color: #333;
    font-size: 18px;
}
.tci-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Item List */
.tasario-cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 10px 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.tasario-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.tci-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
}
.tci-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.tci-details {
    display: contents; /* makes title and price direct grid items */
}
.tci-title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.tci-title a {
    color: inherit;
    text-decoration: none;
}
.tci-title {
    align-self: flex-start;
    line-height: 1.4;
}
.tci-price-wrap {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.tci-regular-price {
    text-decoration: line-through;
    color: #b0b0b0;
    font-size: 13px;
}
.tci-sale-price {
    font-weight: 700;
    font-size: 17px;
    color: #000;
}
.tci-actions {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.tci-quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    padding: 2px 4px;
}
.tasario-qty-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 6px;
}
.tasario-qty-btn:hover {
    background: #f9f9f9;
}
.tci-remove-btn {
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}
.tci-remove-btn:hover {
    color: #ef4444;
}
.tasario-qty-minus {
    color: #666;
}
.tasario-qty-plus {
    color: #E95902;
    font-weight: 600;
}
.tci-quantity-wrapper .qty {
    width: 32px;
    height: 32px;
    border: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 0;
    -moz-appearance: textfield;
}
.tci-quantity-wrapper .qty::-webkit-outer-spin-button,
.tci-quantity-wrapper .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Gift Note */
.tasario-gift-note-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.tasario-gift-note-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.tgn-buttons {
    display: flex;
    gap: 12px;
}
.tgn-btn {
    background: transparent;
    border: 1px solid #fcece3;
    color: #E95902;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff9f6;
    transition: all 0.2s;
}
.tgn-btn:hover {
    background-color: #fcece3;
}

/* Cart Surprise */
.tasario-cart-surprise {
    text-align: center;
    margin-bottom: 30px;
}
.tcs-line {
    height: 2px;
    background: linear-gradient(to right, #E95902 50%, #f0f0f0 50%);
    margin-bottom: 20px;
}
.tasario-cart-surprise h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 8px;
}
.tasario-cart-surprise p {
    color: #666;
    font-size: 14px;
}

/* Cross Sells (Swiper inside cart) */
.tasario-cart-cross-sells h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tasario-cross-sells-swiper {
    padding-bottom: 20px;
}

/* Equal height slides */
.tasario-cross-sells-swiper .swiper-wrapper {
    align-items: stretch;
}
.tasario-cross-sells-swiper .swiper-slide {
    height: auto;
    display: flex;
}

@media (min-width: 992px) {
    .tasario-cross-sells-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        transform: none !important;
    }
    .tasario-cross-sells-swiper .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

.tasario-cross-sells-swiper .tasario-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.tasario-cross-sells-swiper .tasario-product-image {
    position: relative;
}
.tasario-cross-sells-swiper .tasario-discount-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #E95902;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}
.tasario-cross-sells-swiper .tasario-product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}
.tasario-cross-sells-swiper .tasario-product-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.tasario-cross-sells-swiper .tasario-product-title {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tasario-cross-sells-swiper .tasario-product-title a {
    color: #333;
    text-decoration: none;
}
.tasario-cross-sells-swiper .tasario-product-price {
    font-size: 14px;
    margin-bottom: 12px;
}
.tasario-cross-sells-swiper .tasario-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-right: 5px;
}
.tasario-cross-sells-swiper .tasario-current-price {
    font-weight: 700;
    color: #111;
    font-size: 14px;
}
.tasario-cross-sells-swiper .tasario-add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    background-color: #E95902 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    line-height: normal !important;
    border: none !important;
    margin-top: auto !important;
    transition: background 0.2s;
}

/* Sidebar Totals */
.tasario-cart-totals-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}
.tasario-cart-totals-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tct-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #333;
}
.tct-row span {
    color: #666;
    line-height: 1.4;
}
.tct-row strong {
    font-weight: 600;
    font-size: 15px;
}
.tct-savings {
    background: #f0fdf4;
    padding: 10px 12px;
    border-radius: 6px;
    color: #16a34a !important;
}
.tct-savings span, .tct-savings strong {
    color: #16a34a !important;
}
.tct-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}
.tct-grand-total {
    font-size: 16px;
}
.tct-grand-total strong {
    font-size: 20px;
}
.tct-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #84cc16; /* Green */
    color: #fff;
    padding: 15px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.2s;
}
.tct-checkout-btn:hover {
    background: #65a30d;
}

/* Mobile Sticky Footer */
.tasario-mobile-sticky-footer {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .tasario-cart-layout {
        grid-template-columns: 1fr;
    }
    .tasario-cart-totals-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {

    /* Container ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â full-width flush, prevent horizontal overflow */
    .tasario-advanced-cart {
        padding: 0;
        margin-left: -15px;
        margin-right: -15px;
        overflow-x: hidden;
    }
    .tasario-cart-layout {
        overflow: hidden;
    }
    .tasario-cart-left {
        overflow: hidden;
        min-width: 0;
    }

    /* Free Shipping Bar */
    .tasario-free-shipping-bar {
        padding: 12px 10px;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .tfs-header {
        justify-content: center;
        text-align: center;
        gap: 4px;
        margin-bottom: 8px;
    }
    .tfs-message {
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .tfs-message i {
        margin-right: 4px;
        font-size: 13px;
    }
    .tfs-link {
        display: none;
    }

    /* Cart Items Card */
    .tasario-cart-items-card {
        padding: 12px 10px 5px;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 0;
        overflow: hidden;
    }
    .tasario-cart-item-list {
        overflow: hidden;
    }
    .woocommerce-cart-form {
        overflow: hidden;
    }
    .tci-header {
        margin-bottom: 12px;
    }
    .tci-header h2 {
        font-size: 18px;
    }

    /* Cart Item ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â 3 sÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼tun: resim | isim+fiyat | adet */
    .tasario-cart-item {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
    }
    .tci-image {
        width: 72px;
        flex-shrink: 0;
        grid-column: unset;
        grid-row: unset;
    }
    .tci-image a {
        display: block;
    }
    .tci-image img {
        width: 72px !important;
        height: 72px !important;
        object-fit: cover;
        border-radius: 8px;
    }
    .tci-details {
        display: flex !important;
        flex-direction: column;
        flex: 1;
        min-width: 0;
        gap: 3px;
        grid-column: unset;
        grid-row: unset;
    }
    .tci-title {
        font-size: 13px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
        grid-column: unset;
        grid-row: unset;
    }
    .tci-title a {
        word-break: break-word;
    }
    .tci-price-wrap {
        align-items: flex-start;
        flex-direction: row;
        gap: 5px;
        grid-column: unset;
        grid-row: unset;
    }
    .tci-regular-price {
        font-size: 11px;
    }
    .tci-sale-price {
        font-size: 14px;
    }
    /* Adet kontrolÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â saÃƒÆ’Ã¢â‚¬ÂÃƒâ€¦Ã‚Â¸ sÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼tun, dikey ortada */
    .tci-actions {
        width: auto;
        margin-left: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-shrink: 0;
        grid-column: unset;
        grid-row: unset;
    }
    .tci-quantity-wrapper {
        padding: 1px 2px;
    }
    .tasario-qty-btn {
        width: 26px;
        height: 26px;
    }
    .tci-quantity-wrapper .qty {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }


    /* Gift Note Card */
    .tasario-gift-note-card {
        padding: 15px 10px;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 0;
    }
    .tgn-header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 14px;
    }
    .tgn-header h2 {
        font-size: 16px;
    }
    .tgn-btn-select-top {
        font-size: 12px;
        padding: 6px 12px;
    }
    .tgn-buttons {
        flex-direction: column;
    }

    /* Totals Card ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â hide on mobile (use sticky footer) */
    .tasario-cart-totals-card {
        display: none;
    }

    /* Cross Sells */
    .tasario-cart-cross-sells {
        padding: 15px 10px 0;
        margin-bottom: 0;
    }
    .tasario-cart-cross-sells h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .tasario-cross-sells-swiper {
        padding-bottom: 0;
    }

    /* Native CSS Horizontal Slider for 2.2 Items on Mobile */
    .tasario-cross-sells-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 15px;
        margin-left: -10px; /* Pull into padding for edge-to-edge swipe */
        margin-right: -10px;
        padding-left: 10px; /* Push first item back to text alignment */
        padding-right: 10px;
        scrollbar-width: none;
    }
    .tasario-cross-sells-swiper .swiper-wrapper::-webkit-scrollbar {
        display: none;
    }
    .tasario-cross-sells-swiper .swiper-slide {
        /* Shows exactly 2.4 items to indicate swiping */
        width: 38vw !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start;
        height: auto !important;
    }



    /* Mobile Sticky Footer */
    .tasario-mobile-sticky-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.88);
        -webkit-backdrop-filter: blur(18px) saturate(180%);
        backdrop-filter: blur(18px) saturate(180%);
        border-top: 1px solid rgba(0,0,0,0.04);
        border-top-left-radius: var(--radius-lg, 24px);
        border-top-right-radius: var(--radius-lg, 24px);
        padding: 10px 20px calc(82px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        z-index: 990;
        gap: 12px;
    }
    .tmsf-info {
        display: flex;
        flex-direction: column;
        flex-shrink: 1;
        min-width: 0;
    }
    .tmsf-total-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .tmsf-total, .tmsf-total .woocommerce-Price-amount {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #E95902 !important;
        white-space: nowrap;
    }
    .tmsf-arrow {
        color: #E95902;
        font-size: 14px;
        flex-shrink: 0;
    }
    .tmsf-savings {
        font-size: 12px;
        color: #666;
        margin-top: -2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .tmsf-savings span {
        color: #65a30d;
        font-weight: 600;
    }
    .tmsf-checkout-btn {
        background: #84cc16;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        padding: 10px 16px;
        border-radius: 12px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        flex-shrink: 0;
        text-align: center;
    }
}

/* Gift Note UI */
.tgn-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tgn-header h2 { font-size: 18px; font-weight: 700; margin: 0; color: #111; }
.tgn-btn-select-top { background: #fff5eb; color: #f97316; border: none; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: 0.2s; }
.tgn-btn-select-top:hover { background: #ffebd6; }
.tgn-btn-add { background: #fff; border: 1px dashed #ccc; padding: 15px; width: 100%; border-radius: 8px; font-size: 15px; font-weight: 500; color: #666; cursor: pointer; }
.tgn-textarea-container { border: 1px solid #e5e7eb; border-radius: 8px; position: relative; margin-bottom: 15px; }
.tgn-textarea { width: 100%; border: none; padding: 15px; height: 120px; font-size: 14px; font-family: inherit; resize: none; background: transparent; color: #333; }
.tgn-textarea:focus { outline: none; }
.tgn-char-count { position: absolute; bottom: 15px; right: 15px; font-size: 12px; color: #9ca3af; font-weight: 500; }
.tgn-editor-actions { display: flex; justify-content: flex-end; gap: 10px; }
.tgn-btn-delete { background: #fff; border: 1px solid #f97316; color: #f97316; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
.tgn-btn-save { background: #f97316; border: 1px solid #f97316; color: #fff; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; }
.tgn-btn-save.loading { opacity: 0.7; pointer-events: none; }
/* Modal */
.tgn-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.tgn-modal { background: #fff; width: 90%; max-width: 500px; border-radius: 12px; position: relative; padding: 24px; max-height: 90vh; display: flex; flex-direction: column; }
.tgn-modal-close { position: absolute; top: 15px; right: 15px; background: #f3f4f6; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #111; }
.tgn-modal h3 { text-align: center; font-size: 20px; font-weight: 700; margin: 0 0 20px; }
.tgn-modal-content { overflow-y: auto; flex: 1; border: 1px solid #f3f4f6; border-radius: 8px; }
.tgn-accordion-item { border-bottom: 1px solid #f3f4f6; }
.tgn-accordion-item:last-child { border-bottom: none; }
.tgn-accordion-header { padding: 16px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: #374151; cursor: pointer; }
.tgn-accordion-body { display: none; padding: 0 16px 16px; }
.tgn-predefined-note-item { padding: 12px; font-size: 14px; color: #4b5563; background: #f9fafb; border-radius: 8px; margin-bottom: 8px; cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: space-between; border: 1px solid transparent; }
.tgn-predefined-note-item:hover { background: #f3f4f6; }
.tgn-note-content { flex: 1; margin-right: 12px; }
.tgn-note-check { font-size: 20px; color: #22c55e; opacity: 0; transform: scale(0.8); transition: all 0.2s; }
.tgn-predefined-note-item.selected { border-color: #22c55e; background: #f0fdf4; color: #166534; }
.tgn-predefined-note-item.selected .tgn-note-check { opacity: 1; transform: scale(1); }

.tgn-toast { position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); background: #22c55e; color: #fff; padding: 12px 24px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; box-shadow: 0 10px 25px rgba(34,197,94,0.3); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 999999; }
.tgn-toast.show { bottom: 30px; }

/* Hide default WooCommerce notices in cart, they are handled by SweetAlert2 JS */
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
    display: none !important;
}




/* Override WooCommerce Cart Block Mobile Sticky Footer (Make it look like product page) */
@media (max-width: 782px) {
    body .wc-block-cart__submit-container,
    body .wc-block-cart__submit-container--sticky,
    body .wc-block-cart .wc-block-cart__submit-container--sticky,
    body .wc-block-components-totals-wrapper.is-sticky,
    body .wc-block-components-totals-footer-item.is-sticky,
    .is-mobile.woocommerce-cart .wc-block-cart__submit-container {
        background-color: rgba(255, 255, 255, 0.88) !important;
        -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
        backdrop-filter: blur(18px) saturate(180%) !important;
        border-top: 1px solid rgba(0,0,0,0.04) !important;
        border-top-left-radius: var(--radius-lg, 24px) !important;
        border-top-right-radius: var(--radius-lg, 24px) !important;
        padding: 15px 20px calc(100px + env(safe-area-inset-bottom, 0px)) !important;
        bottom: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05) !important;
        z-index: 990 !important; /* Must be lower than .bottom-nav-bar which is 1000 */
    }
    
    /* Remove the weird drop shadow pseudoelement WC adds */
    body .wc-block-cart__submit-container::before,
    body .wc-block-cart__submit-container--sticky::before {
        display: none !important;
    }
}


