/* ===== Mini Cart (Offcanvas) ===== */
.idl-mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

.idl-mini-cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: Geist, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.idl-mini-cart.is-open {
  right: 0;
}

/* Header + Footer */
.idl-mini-cart__header,
.idl-mini-cart__footer {
  padding: 1rem;
  border-bottom: 2px solid #BEBEBE;
  font-weight: 600;
}

.idl-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #BEBEBE;
}

.idl-mini-cart__header h3 {
  margin: 0;
  font-weight: 600;
}

.idl-mini-cart__footer {
  border-top: 2px solid #BEBEBE;
  border-bottom: none;
  background: #fafafa;
}

/* Body */
.idl-mini-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Item */
.idl-mini-cart__items .idl-item {
  display: flex;
  gap: 1rem;
  padding: .75rem 0;
}

.idl-mini-cart__items img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #BEBEBE;
}

.idl-mini-cart__items .idl-item-info {
  flex: 1;
  font-size: .9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.idl-mini-cart__items .title {
  font-weight: 600;
  margin-bottom: .25rem;
  color: #000;
}

/* Meta pills (Size/Color) */
.idl-mini-cart__items .meta {
  display: flex;
  gap: .5rem;
}

.idl-mini-cart__items .meta .idl-pill {
  padding: 0.25rem 0.6rem;
  border: 2px solid #BEBEBE;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 500;
  background: #fff;
}

/* Price & Qty */
.idl-mini-cart__items .qty,
.idl-mini-cart__items .price {
  font-size: .85rem;
  margin-top: .25rem;
}

.idl-mini-cart__items .price {
  font-weight: 600;
}

/* Footer buttons */
.idl-btn-view-cart,
.idl-btn-checkout {
  display: block;
  text-align: center;
  margin: .5rem 0;
  padding: .75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.idl-btn-view-cart {
  border: 2px solid #BEBEBE;
  background: #fff;
  color: #000;
}

.idl-btn-checkout {
  background: #000;
  color: #fff;
}

/* Close button */
.idl-mini-cart__close {
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  background: transparent;
}

/* Animation */
.idl-mini-cart__items {
  animation: fadeInLeft 0.6s ease-out;
}
.idl-mini-cart__footer {
  animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-20px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(20px);}
  to {opacity: 1; transform: translateX(0);}
}
