/* Botón flotante/inline (ajústalo a tu header) */
.areality-cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem .75rem;
  text-decoration: none;
  border: none;
  background: transparent;
}
.areality-cart-button .areality-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 12px;
  line-height: 1;
  border-radius: 999px;
  background: #111827; /* badge */
  color: #fff;
}

/* Overlay */
.areality-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1000;
}

/* Drawer */
.areality-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform .25s ease-in-out;
  z-index: 1001;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: -8px 0 24px rgba(0,0,0,.12);
}
.areality-cart-drawer.is-open { transform: translateX(0); }

.acd-header { display: flex; align-items: center; justify-content: space-between; padding: 3em 1rem 1rem; border-bottom: 1px solid #eee; }
.acd-header h3 { margin: 0; font-size: 1.125rem; }
.acd-close { border: 0; background: transparent; font-size: 1.5rem; line-height: 1; cursor: pointer; }

.acd-body { overflow: auto; padding: 1rem; }
.acd-body .woocommerce-mini-cart { list-style: none; padding: 0; margin: 0; }
.acd-body .woocommerce-mini-cart__empty-message { padding: .75rem; color: #6b7280; }

.acd-footer { padding: 1rem; border-top: 1px solid #eee; display: grid; gap: .5rem; }
.acd-btn { display: inline-block; text-align: center; padding: .75rem 1rem; border-radius: .6rem; text-decoration: none; }
.acd-btn-cart { border: 1px solid #e5e7eb; background: #f9fafb; color: #111827; }
.acd-btn-checkout { background: #111827; color: #fff; }
