﻿/* ==========================================================================
   NATURAVITA - German Premium Wellness & Nutrition E-Commerce Stylesheet
   Modern European Design System: Warm Off-White, Forest Green, Sage
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --nv-bg: #faf8f5;
  --nv-bg-alt: #f2eee8;
  --nv-white: #ffffff;
  --nv-card-bg: #ffffff;
  --nv-forest: #1c3832;
  --nv-forest-dark: #122521;
  --nv-forest-light: #254a42;
  --nv-sage: #e8f0eb;
  --nv-sage-dark: #7a9c8b;
  --nv-sand: #f4ede4;
  --nv-border: #e6e0d5;
  --nv-border-light: #f0ebe2;
  --nv-text-main: #1f2a28;
  --nv-text-muted: #647571;
  --nv-gold: #eab308;

  /* Typography */
  --nv-font-heading: 'Outfit', sans-serif;
  --nv-font-body: 'Plus Jakarta Sans', sans-serif;

  /* Geometry & Shadows */
  --nv-radius-pill: 50px;
  --nv-radius-lg: 20px;
  --nv-radius-md: 14px;
  --nv-radius-sm: 8px;
  --nv-shadow-sm: 0 4px 12px rgba(28, 56, 50, 0.04);
  --nv-shadow-md: 0 10px 25px -5px rgba(28, 56, 50, 0.06);
  --nv-shadow-hover: 0 20px 35px -8px rgba(28, 56, 50, 0.12);
}

body {
  font-family: var(--nv-font-body) !important;
  background-color: var(--nv-bg) !important;
  color: var(--nv-text-main) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nv-font-heading) !important;
  color: var(--nv-forest);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Announcement Bar (Rechtskonform & sachlich)
   ========================================================================== */
.nv-topbar {
  background-color: var(--nv-forest);
  color: #f1f7f5;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.nv-topbar a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.nv-navbar {
  background-color: var(--nv-white);
  padding: 18px 0;
  border-bottom: 1px solid var(--nv-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nv-logo {
  font-family: var(--nv-font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--nv-forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}
.nv-logo:hover {
  color: var(--nv-forest-light);
}
.nv-logo-badge {
  font-size: 0.65rem;
  background: var(--nv-sage);
  color: var(--nv-forest);
  padding: 3px 8px;
  border-radius: var(--nv-radius-pill);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nv-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nv-nav-link {
  color: var(--nv-text-main);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}
.nv-nav-link:hover, .nv-nav-link.active {
  color: var(--nv-forest);
}
.nv-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--nv-forest);
  border-radius: 2px;
}

.nv-icon-btn {
  background: transparent;
  border: 1px solid var(--nv-border);
  color: var(--nv-forest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.nv-icon-btn:hover {
  background: var(--nv-forest);
  color: #fff;
  border-color: var(--nv-forest);
}
.nv-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--nv-forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Buttons (Clean European Aesthetic)
   ========================================================================== */
.nv-btn {
  font-family: var(--nv-font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 32px;
  border-radius: var(--nv-radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}
.nv-btn-primary {
  background-color: var(--nv-forest);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(28, 56, 50, 0.2);
}
.nv-btn-primary:hover {
  background-color: var(--nv-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 56, 50, 0.25);
}
.nv-btn-secondary {
  background-color: var(--nv-sand);
  color: var(--nv-forest) !important;
}
.nv-btn-secondary:hover {
  background-color: #ebdccf;
}
.nv-btn-outline {
  background-color: transparent;
  color: var(--nv-forest) !important;
  border: 1.5px solid var(--nv-forest);
}
.nv-btn-outline:hover {
  background-color: var(--nv-forest);
  color: #ffffff !important;
}
.nv-btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ==========================================================================
   Product Cards (Catalog & Bestsellers)
   ========================================================================== */
.nv-product-card {
  background: var(--nv-card-bg);
  border: 1px solid var(--nv-border-light);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: var(--nv-shadow-sm);
}
.nv-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nv-shadow-hover);
  border-color: var(--nv-border);
}

.nv-product-img-wrap {
  background-color: #f7f5f0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: auto;
  border-bottom: 1px solid var(--nv-border-light);
  text-decoration: none;
}
.nv-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nv-product-card:hover .nv-product-img {
  transform: scale(1.04);
}

.nv-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.06);
}
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-orange { background: #ffedd5; color: #9a3412; }
.badge-red { background: #ffe4e6; color: #9f1239; }
.badge-lavender { background: #ede9fe; color: #5b21b6; }
.badge-sage { background: #e0f2fe; color: #075985; }
.badge-cyan { background: #cffafe; color: #155e75; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-teal { background: #ccfbf1; color: #115e59; }
.badge-sand { background: #f5f5f4; color: #44403c; }
.badge-rose { background: #fce7f3; color: #9d174d; }
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-indigo { background: #e0e7ff; color: #3730a3; }

.nv-product-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.nv-product-cat {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nv-sage-dark);
  margin-bottom: 6px;
}
.nv-product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nv-forest);
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.nv-product-title:hover {
  color: var(--nv-forest-light);
}
.nv-product-subtitle {
  font-size: 0.84rem;
  color: var(--nv-text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
  flex-grow: 1;
}

.nv-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--nv-border-light);
  margin-top: auto;
}
.nv-product-price {
  font-family: var(--nv-font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--nv-forest);
}
.nv-tax-hint {
  font-size: 0.68rem;
  color: var(--nv-text-muted);
  display: block;
  line-height: 1.2;
}

/* ==========================================================================
   Category Cards
   ========================================================================== */
.nv-cat-card {
  background: var(--nv-white);
  border: 1px solid var(--nv-border-light);
  border-radius: var(--nv-radius-md);
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 100%;
}
.nv-cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--nv-forest);
  box-shadow: var(--nv-shadow-md);
}
.nv-cat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--nv-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.nv-cat-name {
  font-family: var(--nv-font-heading);
  font-weight: 700;
  color: var(--nv-forest);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.nv-cat-count {
  font-size: 0.78rem;
  color: var(--nv-text-muted);
}

/* ==========================================================================
   Trust / Value Props Bar
   ========================================================================== */
.nv-trust-section {
  padding: 50px 0;
  background: var(--nv-white);
  border-top: 1px solid var(--nv-border-light);
  border-bottom: 1px solid var(--nv-border-light);
}
.nv-trust-item {
  text-align: center;
  padding: 10px 20px;
}
.nv-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nv-sand);
  color: var(--nv-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.nv-trust-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.nv-trust-desc {
  font-size: 0.84rem;
  color: var(--nv-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.nv-hero {
  background: radial-gradient(circle at 80% 20%, #f4eee6 0%, #faf8f5 70%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.nv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nv-sand);
  color: var(--nv-forest);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--nv-radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nv-hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--nv-forest);
  margin-bottom: 20px;
}
.nv-hero-subtitle {
  font-size: 1.15rem;
  color: var(--nv-text-muted);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 520px;
}

/* ==========================================================================
   Product Detail Page (product.html)
   ========================================================================== */
.nv-pdp-gallery-box {
  background: #f7f5f0;
  border: 1px solid var(--nv-border-light);
  border-radius: var(--nv-radius-lg);
  padding: 0;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--nv-shadow-sm);
  position: sticky;
  top: 100px;
}
.nv-pdp-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.nv-pdp-img:hover {
  transform: scale(1.02);
}
.nv-pdp-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}
.nv-pdp-thumb {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f7f5f0;
  transition: all 0.2s ease;
}
.nv-pdp-thumb:hover, .nv-pdp-thumb.active {
  border-color: var(--nv-forest);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nv-nutrition-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-size: 0.88rem;
}
.nv-nutrition-table th {
  background: var(--nv-sand);
  color: var(--nv-forest);
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid var(--nv-border);
}
.nv-nutrition-table th:first-child { border-radius: 8px 0 0 0; }
.nv-nutrition-table th:last-child { border-radius: 0 8px 0 0; }
.nv-nutrition-table td {
  padding: 12px 16px;
  border: 1px solid var(--nv-border-light);
  background: #fff;
}
.nv-nutrition-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.nv-nutrition-table tr:last-child td:last-child { border-radius: 0 0 8px 0; }

.nv-qty-picker {
  display: inline-flex;
  align-items: center;
  background: var(--nv-sand);
  border-radius: var(--nv-radius-pill);
  padding: 4px 10px;
}
.nv-qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nv-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nv-qty-val {
  min-width: 34px;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}

/* ==========================================================================
   Checkout & Cart Elements
   ========================================================================== */
.nv-checkout-box {
  background: var(--nv-white);
  border: 1px solid var(--nv-border-light);
  border-radius: var(--nv-radius-lg);
  padding: 30px;
  box-shadow: var(--nv-shadow-sm);
  margin-bottom: 24px;
}
.nv-checkout-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nv-forest);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nv-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--nv-forest);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Magazin / Articles Cards
   ========================================================================== */
.nv-mag-card {
  background: var(--nv-white);
  border: 1px solid var(--nv-border-light);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nv-mag-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nv-shadow-hover);
}
.nv-mag-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.nv-mag-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.nv-mag-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nv-sage-dark);
  margin-bottom: 8px;
}
.nv-mag-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nv-forest);
  margin-bottom: 10px;
  line-height: 1.35;
}
.nv-mag-desc {
  font-size: 0.88rem;
  color: var(--nv-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DSGVO Cookie Consent Banner
   ========================================================================== */
.nv-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: #ffffff;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
}
.nv-cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease forwards;
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.nv-footer {
  background-color: var(--nv-forest);
  color: #e5edea;
  padding: 70px 0 35px;
  margin-top: 80px;
}
.nv-footer h6 {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.nv-footer a {
  color: #b7cfc7;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.nv-footer a:hover {
  color: #ffffff;
}

/* Toast */
.bio-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--nv-forest);
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 25px rgba(28, 56, 50, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.bio-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Product photography: preserve the full square frame at every viewport. */
.nv-product-img, .nv-pdp-img { object-fit: contain; }
.nv-pdp-img { max-height: none; }
.nv-hero-photo { display:block; width:100%; height:auto; border-radius:28px; }
.nv-image-dialog { width:min(94vw,1000px); max-height:94vh; padding:12px; border:0; border-radius:18px; background:#faf8f4; }
.nv-image-dialog::backdrop { background:rgba(15,35,28,.7); }
.nv-image-dialog form { display:flex; justify-content:flex-end; margin-bottom:8px; }
.nv-image-dialog img { display:block; width:100%; height:auto; max-height:78vh; object-fit:contain; }
.nv-product-img-wrap:focus-visible, .nv-btn:focus-visible { outline:3px solid #245b49; outline-offset:4px; }
@media (max-width:575px) { .nv-product-footer { flex-wrap:wrap; gap:12px; } .nv-hero-photo { border-radius:18px; } }
@media (prefers-reduced-motion:reduce) { .nv-product-card,.nv-product-img,.nv-pdp-img { transition:none; } }

@media (max-width: 1280px) {
  .nv-nav-links { gap: 14px; }
  .nv-nav-link { font-size: 0.86rem; }
}


/* ==========================================================================
   Luxury Product Cards - NaturaVita Design System
   ========================================================================== */
.nv-product-card {
  background: #ffffff;
  border: 1px solid #e7eee9;
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  box-shadow: 0 4px 18px rgba(24, 46, 38, 0.04);
}

.nv-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px -10px rgba(24, 46, 38, 0.14);
  border-color: #c7d8ce;
}

.nv-product-img-wrap {
  background: #f7f6f2;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.nv-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nv-product-card:hover .nv-product-img {
  transform: scale(1.05);
}

.nv-card-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.nv-card-badge {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(24, 46, 38, 0.08);
  color: #182e26;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nv-card-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(24, 46, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7c73;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  padding: 0;
}

.nv-card-wish-btn:hover {
  background: #ffffff;
  color: #e11d48;
  transform: scale(1.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nv-product-body {
  padding: 4px 6px 6px 6px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nv-product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3b7054;
}

.nv-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nv-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: -1px;
}

.nv-rating-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b5563;
}

.nv-product-title {
  font-family: var(--nv-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #142821;
  text-decoration: none;
  line-height: 1.35;
  margin-top: 4px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
  transition: color 0.2s ease;
}

.nv-product-title:hover {
  color: #2b5c46;
}

.nv-product-subtitle {
  font-size: 0.83rem;
  color: #63756c;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4rem;
}

.nv-card-meta-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: #f7faf8;
  border: 1px solid #e7eee9;
  border-radius: 10px;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.nv-meta-size {
  color: #4b5b53;
  font-weight: 500;
}

.nv-meta-stock {
  color: #166534;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nv-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  display: inline-block;
}

.nv-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #eef3ee;
  margin-top: auto;
}

.nv-price-block {
  display: flex;
  flex-direction: column;
}

.nv-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nv-product-price {
  font-family: var(--nv-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #142821;
  line-height: 1.1;
}

.nv-tax-hint {
  font-size: 0.68rem;
  color: #83938b;
  margin-top: 2px;
  white-space: nowrap;
}

.nv-add-cart-btn {
  background: #182e26;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(24, 46, 38, 0.15);
}

.nv-add-cart-btn:hover {
  background: #264b3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 46, 38, 0.25);
  color: #ffffff;
}

.nv-add-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(24, 46, 38, 0.15);
}



/* ==========================================================================
   Luxury Product Cards - NaturaVita Design System (Refined & Rock Solid)
   ========================================================================== */
.nv-product-card {
  background: #ffffff;
  border: 1px solid #e7eee9;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  box-shadow: 0 4px 18px rgba(24, 46, 38, 0.04);
  overflow: visible !important;
}

.nv-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px -10px rgba(24, 46, 38, 0.14);
  border-color: #c7d8ce;
}

.nv-product-img-wrap {
  background: #f7f6f2;
  border-radius: 16px;
  overflow: hidden !important;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.nv-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nv-product-card:hover .nv-product-img {
  transform: scale(1.05);
}

.nv-card-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.nv-card-badge {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(24, 46, 38, 0.08);
  color: #182e26;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nv-card-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(24, 46, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7c73;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  padding: 0;
}

.nv-card-wish-btn:hover {
  background: #ffffff;
  color: #e11d48;
  transform: scale(1.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nv-product-body {
  padding: 2px 4px 4px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nv-product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3b7054;
}

.nv-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nv-stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: -1px;
}

.nv-rating-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b5563;
}

.nv-product-title {
  font-family: var(--nv-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #142821;
  text-decoration: none;
  line-height: 1.35;
  margin-top: 4px;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
  transition: color 0.2s ease;
}

.nv-product-title:hover {
  color: #2b5c46;
}

.nv-product-subtitle {
  font-size: 0.83rem;
  color: #63756c;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4rem;
}

.nv-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 10px;
  background: #f8faf8;
  border: 1px solid #e7eee9;
  border-radius: 10px;
  font-size: 0.78rem;
  margin-bottom: 12px;
  min-height: 32px;
}

.nv-meta-size {
  color: #4b5b53;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nv-meta-stock {
  color: #166534;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nv-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  display: inline-block;
}

.nv-product-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #eef3ee;
  margin-top: auto;
}

.nv-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.nv-product-price {
  font-family: var(--nv-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #142821;
  line-height: 1;
}

.nv-tax-hint {
  font-size: 0.7rem;
  color: #7a8b83;
}

.nv-add-cart-btn {
  width: 100% !important;
  background: #182e26;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(24, 46, 38, 0.12);
  text-decoration: none;
  white-space: nowrap;
}

.nv-add-cart-btn:hover {
  background: #274c3e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 46, 38, 0.22);
  color: #ffffff !important;
}

.nv-add-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(24, 46, 38, 0.15);
}

