/* ══════════════════════════════════════
   ВИПРАВЛЕННЯ: Футер внизу на WC сторінках
══════════════════════════════════════ */

/* Футер внизу через body flex — не чіпаємо .page */
body.woocommerce-cart,
body.woocommerce-account {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.woocommerce-cart .page,
body.woocommerce-account .page {
  flex: 1;
}

/* Прибираємо горизонтальний скрол */
body { overflow-x: hidden; }

/* ══════════════════════════════════════
   Сповіщення "Товар додано в кошик"
══════════════════════════════════════ */

#eb-cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-left: 4px solid #217161;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  max-width: 360px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#eb-cart-toast.show { transform: translateY(0); opacity: 1; }

.eb-toast-icon {
  width: 36px; height: 36px;
  background: #e8f0ee; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #217161;
}

.eb-toast-body { flex: 1; min-width: 0; }

.eb-toast-title { font-size: 13px; font-weight: 600; color: #303030; margin-bottom: 2px; }

.eb-toast-name {
  font-size: 12px; color: #6b6b6b; font-weight: 300;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.eb-toast-link {
  font-size: 11px; font-weight: 500; color: #217161;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: .08em; white-space: nowrap; flex-shrink: 0;
}
.eb-toast-link:hover { text-decoration: underline; }

.eb-toast-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 18px;
  color: #aaa; cursor: pointer; line-height: 1; padding: 0;
}

@media (max-width: 480px) {
  #eb-cart-toast { bottom: 16px; right: 16px; left: 16px; min-width: 0; }
}