#sticky-price-bar {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sticky-price-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── Sticky Bottom Bar ── */
#sticky-price-bar {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 50;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
}

.sticky-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 9px;
}

.sticky-breakdown {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    overflow-x: auto;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.sticky-breakdown::-webkit-scrollbar {
    display: none;
}

.sticky-breakdown {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sticky-item {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

/* .sticky-label {
    color: #9ca3af;
    font-weight: 400;
    font-style: italic;
    font-size: 10px;
} */

.sticky-plus {
    font-size: 17px;
    transform: translateY(-2px);
}

.sticky-val {
    color: #666565;
    display: flex;
    gap: 4px;
}

.sticky-saree-price {
    color: #666565;
    font-weight: 700;
}

.sticky-bottom-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: space-between;
    border-top: 0.5px solid #acacac;
    padding-top: 0.875rem;
}

.sticky-total-block {
    text-align: left;
    flex: 1;
}

.sticky-total-label {
    font-size: 8px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.sticky-total-price {
    font-size: 1.125rem;
    font-weight: 750;
    color: #666565;
    line-height: 1.25;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* .sticky-icon-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
} */

.sticky-icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    background-color: #f9fafb;
    border-radius: 0.125rem;
    border: 1px solid #f3f4f6;
    transition: background-color 150ms;
    position: relative;
}

/* .sticky-icon-btns .wishlist,
.shoppingicon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
    background: #f9fafb;
    border: 1px solid #8B9332;
}

.sticky-icon-btns .wishlist svg,
.shoppingicon svg {
    width: 20px;
}

.sticky-icon-btns .wishlist.active svg path {
    fill: #8B9332;
    stroke: #8B9332;
} */

.sticky-icon-btn:active {
    background-color: #f3f4f6;
}

/* .cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background-color: #000;
    color: #fff;
    font-size: 7px;
    width: 0.875rem;
    height: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
} */

.sticky-buy-btn {
    background-color: #D8060E;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(254, 226, 226, 1);
    transition: all 150ms;
    cursor: pointer;
}

.sticky-buy-btn:hover {
    background-color: #b91c1c;
}

.sticky-buy-btn:active {
    transform: scale(0.95);
}

@media (min-width: 640px) {
    #sticky-price-bar {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        bottom: 0;
    }

    .sticky-total-price {
        font-size: 1.25rem;
    }

    .sticky-total-label {
        font-size: 9px;
    }

    .sticky-buy-btn {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        letter-spacing: 0.2em;
    }

    .sticky-label {
        display: inline;
    }

    .sticky-breakdown {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .sticky-inner {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .sticky-bottom-row {
        border-top: none;
        padding-top: 0;
        width: auto;
        justify-content: flex-end;
    }

    .sticky-total-block {
        text-align: right;
        flex: none;
    }

    .sticky-breakdown {
        padding-bottom: 0;
    }
}