/* دکمه سبد خرید */
.cart-btn {
    position: relative;
    font-size: 20px;
    color: #fff !important;
    padding: 10px;
    transition: color 0.3s;
}

.cart-btn:hover {
    color: #D4AF37 !important; /* رنگ طلایی در هاور */
}

.cart-btn::after {
    display: none; /* مخفی کردن فلش پیش فرض دراپ داون بوت استرپ */
}

/* بج (عدد) سبد خرید */
.cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #D4AF37;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1a1a1a;
}

/* منوی دراپ داون سبد خرید */
.cart-menu {
    width: 320px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-top: 15px !important;
}

/* هدر سبد خرید */
.cart-header {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: #D4AF37;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}

/* لیست آیتم ها */
.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #2a2a2a;
    gap: 10px;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #444;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h6 {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #fff;
}

.cart-item-info span {
    color: #D4AF37;
    font-size: 14px;
    font-weight: bold;
}

/* دکمه حذف آیتم */
.cart-item-remove {
    background: transparent;
    border: none;
    color: #888;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #dc3545; /* رنگ قرمز برای هشدار حذف */
}

/* فوتر و جمع کل */
.cart-footer {
    padding: 15px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

/* اسکرول بار اختصاصی برای لیست سبد خرید */
.cart-items::-webkit-scrollbar {
    width: 5px;
}
.cart-items::-webkit-scrollbar-track {
    background: #1a1a1a;
}
.cart-items::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}
