#bkf-mini-cart-wrapper {
    position: relative;
    display: inline-block;
    z-index: 5000;
}

#bkf-mini-cart-icon {
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
}

.bkf-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffbe2e;
    color: #000;
    border-radius: 50%;
    font-size: 13px;
    min-width: 21px;
    height: 21px;
    line-height: 21px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

#bkf-mini-cart-dropdown {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 98vw;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.14);
    border-radius: 18px 0 0 18px;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    z-index: 99999;
    padding: 0;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}
#bkf-mini-cart-dropdown.active {
    transform: translateX(0);
    display: flex;
}

.bkf-cart-panel { height: 100%; display: flex; flex-direction: column; }
.bkf-cart-header { padding: 22px 32px 10px 32px; display: flex; justify-content: space-between; align-items: center; font-size: 20px; font-weight: 600; }
.bkf-cart-close { background: none; border: none; font-size: 30px; line-height: 1; cursor: pointer; color: #999; }
.bkf-cart-items { flex: 1 1 auto; overflow-y: auto; padding: 0 32px 20px 32px; }
.bkf-cart-item { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #eee; padding: 18px 0; }
.bkf-cart-thumb img { width: 58px; height: 58px; border-radius: 8px; object-fit: cover; }
.bkf-cart-info { flex: 1 1 auto; }
.bkf-cart-title { font-size: 16px; font-weight: 600; color: #222; }
.bkf-cart-qty { font-size: 15px; color: #555; }
.bkf-cart-remove { background: none; border: none; color: #cc0000; font-size: 24px; cursor: pointer; }
.bkf-cart-empty { text-align: center; color: #aaa; margin-top: 38px; font-size: 18px; }
.bkf-cart-footer { padding: 24px 32px; border-top: 1px solid #eee; }
.bkf-cart-subtotal { display: flex; justify-content: space-between; font-size: 17px; font-weight: 600; margin-bottom: 20px; }
.bkf-cart-view, .bkf-cart-checkout {
    display: block; width: 100%; padding: 13px 0; border-radius: 8px;
    margin-bottom: 12px; text-align: center; font-size: 16px; font-weight: 700;
    text-decoration: none; transition: background 0.15s; 
}
.bkf-cart-view { background: #f3f3f3; color: #222; }
.bkf-cart-checkout { background: #000; color: #fff; margin-bottom: 0; }
.bkf-cart-checkout:hover { background: #ffbe2e; color: #000; }
