/**
 * DinnUP – Loja: carrinho lateral (drawer) e itens do carrinho
 * Layout da loja está em Tailwind no store/index.php
 */

/* Drawer do carrinho (estilo Shopify) */
.store-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 28rem;
  height: 100%;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.store-cart-sidebar.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.store-cart-sidebar.is-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}
.store-cart-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
  width: 100%;
  max-width: 28rem;
}
.store-cart-sidebar-list {
  flex: 1;
  min-height: 0;
}
.store-cart-empty {
  color: #737373;
  font-size: 0.875rem;
}
.store-cart-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #262626;
  font-size: 0.875rem;
  color: #e5e5e5;
}
.store-cart-item-name {
  flex: 1;
}
.store-cart-item-qty {
  color: #22c55e;
}
.store-cart-item-remove {
  background: none;
  border: none;
  color: #737373;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0 0.25rem;
  line-height: 1;
}
.store-cart-item-remove:hover {
  color: #22c55e;
}
