/* ===== 🎨 CSS منو و افکت بازشو ===== */
.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.cart-icon strong {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff3b30;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
}
.headbox {
    position: relative;
}
.menu-sub-dropdown {
    position: absolute;
    top: 50px;
    left: 0; /* از چپ باز شود */
    right: auto; /* غیرفعال کردن موقعیت راست */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 320px;
    z-index: 999;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    overflow: hidden;
}
.menu-sub-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.menu-header {
    background: rgb(31, 210, 154);
    color: #fff;
    text-align: center;
    padding: 15px 10px;
}
.menu-header .menu-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}
.menu-header .menu-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
}

/* Body */
.menu-body {
    max-height: 260px;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}
.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}
.cart-info h4 {
    margin: 0;
    font-size: 14px;
}
.cart-info span {
    font-size: 13px;
    color: #666;
}

/* Footer */
.menu-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}
.menu-footer .cart-total {
    font-size: 14px;
    margin-bottom: 10px;
}
.btn-view-cart, .btn-checkout {
    display: inline-block;
    margin: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}
.btn-view-cart {
    background: #f1f1f1;
    color: #333;
}
.btn-checkout {
    background: #5d60ed;
    color: #fff;
}

/* === سبد خرید بازشونده === */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 340px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 15px;
    display: none; /* پنهان در حالت عادی */
    z-index: 9999;
}

.cart-dropdown .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.cart-dropdown .cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.cart-dropdown .cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-dropdown .cart-info h4 {
    font-size: 14px;
    margin: 0;
}