/* ═══════════════════════════════════════════════════════════
   VAAZHA — polish.css v3.12
   404, loading skeleton, toast tweaks, misc polish.
═══════════════════════════════════════════════════════════ */

/* ── Custom 404 ──────────────────────────────────────────── */
.vzh-404 {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(180deg, #faf8f3, #ece7dc);
  position: relative;
  overflow: hidden;
}
.vzh-404::before,
.vzh-404::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,245,90,0.18), transparent 65%);
  pointer-events: none;
}
.vzh-404::before { left: -80px; top: -80px; }
.vzh-404::after  { right: -80px; bottom: -80px; }
.vzh-404 .vzh-404-leaf {
  position: relative;
  z-index: 1;
  animation: vzh-leaf-sway 4s ease-in-out infinite;
}
@keyframes vzh-leaf-sway {
  0%,100% { transform: rotate(-6deg); }
  50%     { transform: rotate(6deg); }
}
.vzh-404 h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 15vw, 160px);
  letter-spacing: 4px;
  color: var(--clr-forest, #0d1a0f);
  line-height: 1;
  margin: 8px 0 0;
  position: relative;
  z-index: 1;
}
.vzh-404 h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 3px;
  color: var(--clr-forest, #0d1a0f);
  margin: 8px 0 12px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.vzh-404 p {
  color: #4a4d3e;
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.vzh-404 .vzh-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.vzh-404 .vzh-404-quote {
  margin-top: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(13,26,15,0.4);
  position: relative;
  z-index: 1;
}

/* ── Loading skeleton (grey shimmer for AJAX products) ─── */
.vzh-skeleton {
  background: linear-gradient(90deg, #ece7dc 25%, #f7f4ec 50%, #ece7dc 75%);
  background-size: 200% 100%;
  animation: vzh-shimmer 1.4s linear infinite;
  border-radius: 8px;
  color: transparent !important;
}
@keyframes vzh-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.vzh-skeleton-card {
  border: 1px solid #ece7dc;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 12px;
}
.vzh-skeleton-card .vzh-sk-img { width: 100%; aspect-ratio: 4/5; margin-bottom: 12px; }
.vzh-skeleton-card .vzh-sk-title { height: 14px; width: 70%; margin-bottom: 8px; }
.vzh-skeleton-card .vzh-sk-price { height: 12px; width: 40%; }

/* ── Toast (verify style consistency) ────────────────────── */
.vzh-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--clr-forest, #0d1a0f);
  color: var(--clr-lime, #c8f55a);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px rgba(13,26,15,0.25);
  max-width: 90vw;
  text-align: center;
}
.vzh-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.vzh-toast.error { background: var(--clr-sale, #c0392b); color: #fff; }
@media (max-width: 900px) {
  .vzh-toast { bottom: 84px; }
}

/* ── Nice-to-haves for shop empty state ─────────────────── */
.woocommerce-no-products-found,
.woocommerce-info {
  text-align: center;
  padding: 40px 20px;
  font-size: 15px;
  color: #6b6f5b;
}

/* ── Global buttons refinement ──────────────────────────── */
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; }
.btn-primary,
.btn-dark {
  background: var(--clr-forest, #0d1a0f) !important;
  color: var(--clr-lime, #c8f55a) !important;
}
.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,26,15,0.28);
}
.btn-outline {
  border: 1.5px solid var(--clr-forest, #0d1a0f);
  background: transparent;
  color: var(--clr-forest, #0d1a0f) !important;
}
.btn-outline:hover {
  background: var(--clr-forest, #0d1a0f);
  color: var(--clr-lime, #c8f55a) !important;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff !important;
  background: transparent;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--clr-forest, #0d1a0f) !important;
}
