﻿
.mini-cart-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: var(--bs-bg-gray-color);
    border-radius: 8px;
    padding: 20px;
    z-index: 9999;
    border-top: 4px solid var(--bs-orange-custom);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mini-cart-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--bs-orange-custom) transparent;
}

.mini-cart-wrapper:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.mini-cart-items::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.mini-cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--bs-orange-custom);
}

.cart-item-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.text-orange {
    color: var(--bs-orange-custom);
}

.btn-modern-orange {
    background-color: var(--bs-orange-custom);
    color: white;
    border: none;
}

.btn-modern-orange:hover {
    background-color: #e36a09;
    color: white;
}


/* Mini Cart Adet Seçici Stilleri */
.mini-cart-qty-group {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6; /* İnce gri çerçeve */
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.mini-cart-qty-btn {
    border: none;
    background: #fff;
    width: 26px; /* Kare buton */
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-cart-qty-btn:hover {
    background-color: #f8f9fa;
    color: #000;
}

.mini-cart-qty-input {
    border: none; /* Kendi çerçevesi yok */
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    width: 35px; /* Sabit dar genişlik */
    height: 26px;
    text-align: center;
    font-size: 13px;
    padding: 0;
    color: #333;
    background-color: #fff;
}

    /* Chrome/Safari'deki sayı arttırma oklarını gizle */
    .mini-cart-qty-input::-webkit-outer-spin-button,
    .mini-cart-qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }


@media (max-width: 991px) {
    .mini-cart-dropdown {
        display: none;
    }
}
