/* =========================================================
   AvSouq Styled Mini Cart Drawer
   ========================================================= */

.avsouq-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  font-family: var(--font-primary, 'Inter', sans-serif);
}

.avsouq-mini-cart.open {
  display: block;
}

/* Overlay */
.avsouq-cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.avsouq-mini-cart.open .avsouq-cart-overlay {
  opacity: 1;
}

/* Drawer panel */
.avsouq-cart-panel {
  position: absolute;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 92%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 14px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
}

.avsouq-mini-cart.open .avsouq-cart-panel {
  right: 0;
}

/* Header */
.avsouq-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.avsouq-cart-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.avsouq-cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}
.avsouq-cart-close:hover {
  color: #111827;
}

/* Cart Content */
.avsouq-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

ul.avsouq-mini-cart-items {
    list-style: none;
    margin: 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.avsouq-mini-cart-subtotal {
    padding-top: 20px;
}

.avsouq-cart-content ul.woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.avsouq-cart-content .empty-cart {
    text-align: center;
    color: #6b7280;
    padding: 2rem 0;
    margin: 0;
}

.avsouq-cart-content li.avsouq-mini-cart-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: opacity 0.2s ease;
}

.avsouq-cart-content li.avsouq-mini-cart-item:last-child {
  border-bottom: none;
}

.avsouq-mini-cart-item .thumb {
    flex-shrink: 0;
}

.avsouq-mini-cart-item .details {
    flex: 1;
    min-width: 0;
}

.avsouq-mini-cart-item .name {
    display: block;
    margin-bottom: 0.25rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.avsouq-mini-cart-item .name:hover {
    color: var(--avsouq-primary, #1d4ed8);
}

.avsouq-mini-cart-item .qty {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
}

/* Product image */
.avsouq-cart-content img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f9fafb;
}

/* Product details */
.avsouq-cart-content .woocommerce-mini-cart-item a {
  color: #1f2937;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.avsouq-cart-content .woocommerce-mini-cart-item a:hover {
  color: var(--avsouq-primary, #1d4ed8);
}

.avsouq-cart-content .quantity {
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Subtotal area (WooCommerce output) */
.avsouq-cart-content .woocommerce-mini-cart__total {
  margin-top: 1rem;
  font-weight: 600;
  color: #111827;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
}

/* Remove duplicate footer buttons from Woo default */
.woocommerce-mini-cart__buttons {
  display: none !important;
}

/* Footer */
.avsouq-cart-footer {
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
}



.view-cart-btn {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111827;
}

.view-cart-btn:hover {
  background: #f3f4f6;
}

.checkout-btn {
 width: 100%;
;
}



/* Scrollbar */
.avsouq-cart-content::-webkit-scrollbar {
  width: 6px;
}
.avsouq-cart-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

button.remove.remove_from_cart_button {
    background: #2c6eaa;
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.remove.remove_from_cart_button:hover {
    background: #dc2626;
}

button.remove.remove_from_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .avsouq-cart-panel {
    width: 90%;
  }
  .avsouq-cart-content img {
    width: 50px;
    height: 50px;
  }
}

#cart-count-mobile {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#cart-count-mobile:empty::before {
    content: "0";
}

#cart-count-mobile {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}


