/* Mini Cart Container */
.ajax-mini-cart {
    position: relative;
    display: inline-block;
}

/* Cart Toggle Button */
.ajax-mini-cart-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ajax-mini-cart-toggle:hover {
    opacity: 0.7;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    font-size: 24px;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f37a1f;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    padding: 2px;
}

/* Dropdown Container */
.ajax-mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 400px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
	padding: 15px;
}

.ajax-mini-cart-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Content */
.ajax-mini-cart-content {
    max-height: 421px;
    overflow-y: auto;
}

/* Mini Cart List */
body .product_list_widget li::before, body .product_list_widget li::after {
    display: none;
}
a.mini-cart-img {
    max-width: 42px;
}
a.mini-cart-title {
    font-size: 14px;
    font-weight: 500;
}

.mini-cart-info .amount {
    color: #f37a1f;
    font-weight: 500;
}
.woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product_list_widget .woocommerce-mini-cart-item {
    display: flex;
    gap: 10px;
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.woocommerce-mini-cart-item:first-child {
    padding-top: 0;
}

.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
    padding-bottom: unset;
}

/* Remove Button */
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 15px;
    right: 0;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.woocommerce-mini-cart-item .remove:hover {
    background: #c0392b;
}

.woocommerce-mini-cart-item .remove::before {
    line-height: 1;
    color: white;
}

/* Product Thumbnail */
.woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

/* Product Info */
.woocommerce-mini-cart-item a {
    color: #333;
    text-decoration: none;
    flex: 1;
}

.woocommerce-mini-cart-item a:hover {
    color: #0073aa;
}

.quantity {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Removing State */
.woocommerce-mini-cart-item.removing {
    opacity: 0.5;
    pointer-events: none;
}

/* Empty Cart Message */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 20px;
    color: #666;
    margin: 0;
}

/* Cart Total */
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 15px 0 0;
	color: #18202e;
    border-top: 2px solid #eee;
    font-size: 16px;
    font-weight: 500;
}

/* Buttons */
.woocommerce-mini-cart__buttons {
    display: flex;
    gap: 10px;
    margin: unset;
}

.woocommerce-mini-cart__buttons .button {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
}

.woocommerce-mini-cart__buttons .button:first-child {
    background-color: white;
    color: #18202e;
    border: 1px solid #18202e;
}

.woocommerce-mini-cart__buttons .button:first-child:hover {
    background: #f37a1f;
    color: white;
	border-color: #f37a1f;
}

.woocommerce-mini-cart__buttons .button.checkout {
    background: #f37a1f;
    color: #fff;
    border: none;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
    background: #18202e;
}

.ajax-mini-cart .wc-forward::after, .ajax-mini-cart .woocommerce-Button--next::after {
	display: none;
}
/* Scrollbar Styling */
.ajax-mini-cart-content::-webkit-scrollbar {
    width: 6px;
}

.ajax-mini-cart-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.ajax-mini-cart-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.ajax-mini-cart-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 480px) {
    .ajax-mini-cart-dropdown {
        width: 300px;
        right: -10px;
    }
    
    .ajax-mini-cart-content {
        padding: 15px;
    }
    
    .woocommerce-mini-cart-item img {
        width: 50px;
        height: 50px;
    }
}