/* shop package styles
 * Extracted from streuobstland theme.css during package migration.
 * Loaded via VeloQuill BundleAssetProvider (/bundles/shop/css/shop.css).
 */

/* ============================================================
   META-NAV
   ============================================================ */

.vq-metanav {
  background: var(--col-secondary-dark, var(--col-primary-dark));
  color: rgba(255 255 255 / 0.8);
  font-size: .875rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 31;
}
.vq-metanav .container {
  display: flex;
  justify-content: flex-end;
}
.vq-metanav__items {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.vq-metanav__item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255 255 255 / 0.75);
  padding: .5rem .9rem;
  text-decoration: none !important;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.vq-metanav__item:hover {
  color: #fff;
  background: rgba(255 255 255 / 0.12);
}
.vq-metanav__cart-icon {
  position: relative;
  display: inline-flex;
}
.vq-metanav__cart-badge {
  position: absolute;
  top: -.55rem;
  right: -.65rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 .25rem;
  border-radius: 999px;
  background: var(--col-primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
  pointer-events: none;
}
.vq-metanav__cart {
  position: relative;
  padding: 0 !important;
  background: none !important;
  color: inherit !important;
}
.vq-metanav__cart-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255 255 255 / 0.75);
  padding: .5rem .9rem;
  text-decoration: none !important;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.vq-metanav__cart-link:hover {
  color: #fff;
  background: rgba(255 255 255 / 0.12);
}

/* Navbar + Body-Offset wenn Meta-Nav vorhanden */
.vq-site {
  padding-top: calc(var(--bulma-navbar-height, 3.25rem) + var(--vq-metanav-height, 2rem));
}
.navbar.is-fixed-top {
  top: var(--vq-metanav-height, 2rem);
}

/* ── Hover-Dropdown ─────────────────────────────────────── */
.vq-cart-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md, 0.75rem);
  box-shadow: 0 8px 24px oklch(0% 0 0deg / 15%);
  z-index: 200;
  overflow: hidden;
}

.vq-metanav__cart:hover .vq-cart-dropdown {
  display: block;
}

.vq-cart-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.vq-cart-dropdown__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--col-border);
}

.vq-cart-dropdown__item:last-child {
  border-bottom: none;
}

.vq-cart-dropdown__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm, 0.375rem);
  object-fit: cover;
  flex-shrink: 0;
}

.vq-cart-dropdown__img-ph {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm, 0.375rem);
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-muted);
  flex-shrink: 0;
}

.vq-cart-dropdown__info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}

.vq-cart-dropdown__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--col-text-strong, var(--col-text));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vq-cart-dropdown__name em {
  font-weight: 400;
  color: var(--col-text-muted);
}

.vq-cart-dropdown__qty {
  font-size: .78rem;
  color: var(--col-text-muted);
}

.vq-cart-dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--col-surface-alt, #f8f8f8);
  border-top: 1px solid var(--col-border);
}

.vq-cart-dropdown__total {
  font-size: .9rem;
  color: var(--col-text);
}

.vq-cart-dropdown__btn {
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--col-primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s;
}
.vq-cart-dropdown__btn:hover {
  background: var(--col-primary-dark);
  color: #fff;
}

/* ── "In den Warenkorb"-Overlay (CSS-only) ─────────────── */
.vq-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.vq-cart-overlay.is-open {
  display: flex;
}

.vq-cart-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0% 0 0deg / 55%);
  backdrop-filter: blur(2px);
}

.vq-cart-overlay__card {
  position: relative;
  z-index: 1;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border-radius: var(--radius-lg, 1rem);
  box-shadow: 0 20px 60px oklch(0% 0 0deg / 25%);
  padding: 2rem;
  width: min(480px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vq-cart-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--col-text-muted);
  text-decoration: none !important;
  transition: background .15s, color .15s;
}
.vq-cart-overlay__close:hover {
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  color: var(--col-text);
}

.vq-cart-overlay__header {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.vq-cart-overlay__check {
  font-size: 1.6rem;
  color: var(--col-primary);
}

.vq-cart-overlay__headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--col-text-strong, var(--col-text));
  margin: 0;
}

.vq-cart-overlay__product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md, 0.75rem);
  background: var(--col-surface-alt, #f8f8f8);
}

.vq-cart-overlay__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm, 0.375rem);
  object-fit: cover;
  flex-shrink: 0;
}

.vq-cart-overlay__img-ph {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm, 0.375rem);
  background: var(--col-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-muted);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.vq-cart-overlay__product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--col-text-strong, var(--col-text));
  margin: 0;
}

.vq-cart-overlay__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.vq-cart-overlay__btn {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}

.vq-cart-overlay__btn--secondary {
  border: 2px solid var(--col-border);
  color: var(--col-text);
  background: transparent;
}
.vq-cart-overlay__btn--secondary:hover {
  border-color: var(--col-primary);
  color: var(--col-primary);
}

.vq-cart-overlay__btn--primary {
  background: var(--col-primary-gradient);
  color: #fff;
  border: 2px solid transparent;
}
.vq-cart-overlay__btn--primary:hover {
  background: var(--col-primary-dark);
}

/* ============================================================
   SHOP
   ============================================================ */

/* ── Produktgrid (2-spaltig) ─────────────────────────────── */
/* ── Grid ─────────────────────────────────────────────────── */
.vq-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .vq-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vq-shop-grid { grid-template-columns: 1fr; } }

/* ── Produktkarte ─────────────────────────────────────────── */
.vq-shop-card {
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.vq-shop-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.vq-shop-card__link,
.vq-shop-card__link:hover,
.vq-shop-card__link:focus {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}
.vq-shop-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--col-surface);
}
.vq-shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.vq-shop-card:hover .vq-shop-card__image img { transform: scale(1.06); }
.vq-shop-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: var(--col-text-muted);
  opacity: .3;
}
.vq-shop-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.vq-shop-card__badge--sold-out {
  background: rgba(0,0,0,.65);
  color: #fff;
}
.vq-shop-card__badge--reservation {
  background: var(--col-primary);
  color: #fff;
}
.vq-shop-card__body {
  padding: 1rem 1.1rem .6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.vq-shop-card__title {
  font-size: .98rem;
  font-weight: 600;
  color: var(--col-text);
  margin: 0;
  line-height: 1.35;
  text-decoration: none;
}
.vq-shop-card__teaser {
  font-size: .82rem;
  color: var(--col-text-muted);
  line-height: 1.45;
  margin: 0;
  flex: 1;
  text-decoration: none;
}
.vq-shop-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-text);
  margin: .4rem 0 0;
  text-align: right;
}
.vq-shop-card__price small {
  font-size: .78rem;
  font-weight: 400;
  color: var(--col-text-muted);
}
.vq-shop-card__cta {
  padding: .6rem 1rem .9rem;
}
.vq-shop-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1rem;
  background: var(--col-primary);
  color: #fff;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s;
}
.vq-shop-card:hover .vq-shop-card__btn {
  background: var(--col-primary-dark);
}

/* ── Shop-Seitentitel ─────────────────────────────────────── */
.vq-shop-page {
  padding: 3rem 1.5rem 4rem;
}
.vq-shop-page__header {
  margin-bottom: 2.5rem;
}
.vq-shop-page__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--col-primary);
  margin: 0 0 .4rem;
  line-height: 1.2;
}
.vq-shop-page__subtitle {
  font-size: 1.05rem;
  color: var(--col-text-muted);
  margin: 0;
}
.vq-shop-page__empty {
  color: var(--col-text-muted);
  font-size: 1.05rem;
  text-align: center;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.vq-shop-page__empty i { font-size: 2rem; opacity: .35; }

/* ── Filter-Bar ──────────────────────────────────────────── */
.vq-shop-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  border: 1px solid var(--col-border);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  margin-bottom: 2rem;
}
.vq-shop-filter__search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border: 1.5px solid var(--col-border);
  border-radius: 8px;
  padding: .38rem .75rem;
  flex: 1 1 200px;
  min-width: 160px;
}
.vq-shop-filter__search i { color: var(--col-text-muted); font-size: .85rem; flex-shrink: 0; }
.vq-shop-filter__input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .9rem;
  width: 100%;
  color: var(--col-text);
}
.vq-shop-filter__cats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}
.vq-shop-filter__cat {
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  border: 1.5px solid var(--col-border);
  color: var(--col-text-muted);
  background: var(--col-surface-card, oklch(100% 0 0deg));
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.vq-shop-filter__cat:hover,
.vq-shop-filter__cat.is-active {
  border-color: var(--col-primary);
  color: var(--col-primary);
  background: var(--col-primary-soft, oklch(95% 0.03 260deg));
}
.vq-shop-filter__price {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.vq-shop-filter__price-label { font-size: .82rem; color: var(--col-text-muted); white-space: nowrap; }
.vq-shop-filter__price-sep { color: var(--col-text-muted); font-size: .85rem; }
.vq-shop-filter__price-input {
  width: 72px;
  padding: .35rem .5rem;
  border: 1.5px solid var(--col-border);
  border-radius: 8px;
  font-size: .85rem;
  text-align: center;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  color: var(--col-text);
  outline: none;
}
.vq-shop-filter__price-input:focus { border-color: var(--col-primary); }
.vq-shop-filter__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  background: var(--col-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.vq-shop-filter__btn:hover { background: var(--col-primary-dark, #2d6a4f); }
.vq-shop-filter__reset {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--col-text-muted);
  text-decoration: none;
  padding: .3rem .5rem;
  border-radius: 6px;
  transition: color .15s;
  white-space: nowrap;
}
.vq-shop-filter__reset:hover { color: #ef4444; }

@media screen and (max-width: 640px) {
  .vq-shop-filter { flex-direction: column; align-items: stretch; }
  .vq-shop-filter__price { justify-content: center; }
  .vq-shop-filter__btn { width: 100%; justify-content: center; }
  .vq-shop-filter__reset { justify-content: center; }
}

/* ── ContentBlock-Wrapper ─────────────────────────────────── */
.vq-shop-block { margin: 2rem 0; }
.vq-shop-block__header { margin-bottom: 1.5rem; }
.vq-shop-block__headline {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--col-primary);
  margin-bottom: .25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.vq-shop-block__subtitle {
  font-size: 1rem;
  color: var(--col-text-muted);
  margin: 0;
}
.vq-shop-block__empty { color: var(--col-text-muted); }

/* ── Detailseite ─────────────────────────────────────────── */
.vq-shop-detail {
  padding: 3rem 1.5rem 4rem;
}
.vq-shop-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .vq-shop-detail__layout { grid-template-columns: 1fr; gap: 2rem; }
}
.vq-shop-detail__sticky {
  position: sticky;
  top: calc(var(--bulma-navbar-height, 3.25rem) + var(--vq-metanav-height, 2rem) + 1.5rem);
}
.vq-shop-detail__image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--col-surface);
  aspect-ratio: 1/1;
}
.vq-shop-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vq-shop-detail__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  font-size: 5rem;
  color: var(--col-text-muted);
  opacity: .2;
  border-radius: 18px;
  background: var(--col-surface);
}
.vq-shop-detail__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--col-text);
  line-height: 1.25;
  margin: 0 0 .75rem;
}
.vq-shop-detail__teaser {
  font-size: 1rem;
  color: var(--col-text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.vq-shop-detail__price-row {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: 1rem;
}
.vq-shop-detail__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--col-text);
}
.vq-shop-detail__unit {
  font-size: .95rem;
  color: var(--col-text-muted);
}
.vq-shop-detail__status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.vq-shop-detail__status--in {
  background: oklch(95% 0.06 151deg);
  color: var(--col-primary-dark);
}
.vq-shop-detail__status--out {
  background: oklch(96% 0.03 28deg);
  color: oklch(45% 0.15 28deg);
}
.vq-shop-detail__status--low {
  background: oklch(97% 0.07 75deg);
  color: oklch(45% 0.13 60deg);
}
.vq-shop-detail__notice {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  background: var(--col-surface);
  border-left: 3px solid var(--col-primary);
  border-radius: 0 8px 8px 0;
  padding: .75rem 1rem;
  font-size: .88rem;
  color: var(--col-text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.vq-shop-detail__notice i { color: var(--col-primary); margin-top: .15rem; flex-shrink: 0; }
.vq-shop-detail__form { display: flex; flex-direction: column; gap: 1rem; }
.vq-variant-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.vq-variant-option {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .9rem;
  border: 2px solid var(--col-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--col-surface-card, oklch(100% 0 0deg));
}
.vq-variant-option input[type="radio"] { accent-color: var(--col-primary); flex-shrink: 0; }
.vq-variant-option.is-selected { border-color: var(--col-primary); background: var(--col-primary-soft, oklch(95% 0.03 260deg)); }
.vq-variant-option:has(input:disabled) { opacity: .5; cursor: not-allowed; }
.vq-variant-option__title { flex: 1; font-weight: 500; font-size: .92rem; }
.vq-variant-option__price { font-weight: 700; color: var(--col-primary); font-size: .92rem; }
.vq-variant-option__out { font-size: .75rem; color: #9ca3af; }
.vq-shop-detail__field { display: flex; flex-direction: column; gap: .4rem; }
.vq-shop-detail__label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--col-text);
}
.vq-shop-detail__help {
  font-size: .8rem;
  color: var(--col-text-muted);
}
.vq-shop-detail__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--col-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.vq-shop-detail__buy-btn:hover {
  background: var(--col-primary-dark);
  transform: translateY(-1px);
}
.vq-shop-detail__body {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--col-border);
  font-size: .95rem;
  line-height: 1.7;
  color: var(--col-text);
}
.vq-stock-notify {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: #f8f8f5;
  border: 1px solid var(--col-border);
  border-radius: 8px;
}
.vq-stock-notify__text {
  margin: 0 0 .9rem;
  font-size: .9rem;
  color: var(--col-text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.vq-stock-notify__text .fa {
  color: var(--col-primary);
}
.vq-stock-notify__form {
  display: flex;
  gap: .5rem;
}
.vq-stock-notify__form .input {
  flex: 1;
}
@media (max-width: 480px) {
  .vq-stock-notify__form {
    flex-direction: column;
  }
}
.vq-shop-detail__related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--col-border);
}
.vq-shop-detail__related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: 1.5rem;
}

/* ── Produktgalerie ──────────────────────────────────────── */
.vq-gallery-main {
  cursor: zoom-in;
}
.vq-gallery-thumbs {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.vq-gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: border-color .15s;
  flex-shrink: 0;
}
.vq-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vq-gallery-thumb.is-active,
.vq-gallery-thumb:hover {
  border-color: var(--col-primary);
}
@media (max-width: 480px) {
  .vq-gallery-thumb { width: 58px; height: 58px; }
}

/* ── Warenkorb & Checkout ─────────────────────────────────── */
.vq-shop-cart {
  padding: 3rem 1.5rem 4rem;
}
.vq-shop-cart__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--col-primary);
  margin-bottom: 1.5rem;
}
.vq-shop-cart__empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--col-text-muted);
}
.vq-shop-cart__empty i {
  font-size: 3rem;
  color: var(--col-surface-alt, oklch(91% 0.01 85deg));
  display: block;
  margin-bottom: 1rem;
}
.vq-shop-cart__empty p { margin-bottom: 1.5rem; font-size: 1.1rem; }

/* Layout */
.vq-cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

/* Item rows */
.vq-cart-items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.vq-cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding: 1rem;
}
.vq-cart-row__image {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--col-surface);
}
.vq-cart-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vq-cart-row__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-muted);
  font-size: 1.5rem;
}
.vq-cart-row__info {
  min-width: 0;
}
.vq-cart-row__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--col-text);
  text-decoration: none;
  display: block;
  margin-bottom: .25rem;
}
.vq-cart-row__name:hover { color: var(--col-primary); }
.vq-cart-row__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.vq-cart-row__badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 20px;
  background: #fef3c7;
  color: #92400e;
}
.vq-cart-row__badge--reservation { background: #fef3c7; color: #92400e; }
.vq-cart-row__badge--saved { background: #f0f4ff; color: #3b5bdb; display: inline-flex; align-items: center; gap: .3rem; }
.vq-cart-row__variant {
  font-size: .8rem;
  font-weight: 600;
  color: var(--col-primary);
  background: #f0fdf4;
  border-radius: 5px;
  padding: .1rem .4rem;
}
.vq-cart-row__date {
  font-size: .8rem;
  color: var(--col-text-muted);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.vq-cart-row__unit {
  font-size: .8rem;
  color: var(--col-text-muted);
}

/* Quantity control */
.vq-cart-row__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 8px;
  overflow: hidden;
}
.vq-cart-qty-btn {
  background: var(--col-surface);
  border: none;
  width: 2rem;
  height: 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  color: var(--col-text);
  transition: background .15s;
}
.vq-cart-qty-btn:hover { background: var(--col-primary-soft, oklch(95% 0.03 260deg)); color: var(--col-primary); }
.vq-cart-qty-input {
  border: none;
  width: 3.2rem;
  height: 2.2rem;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  outline: none;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  color: var(--col-text);
  -moz-appearance: textfield;
}
.vq-cart-qty-input::-webkit-inner-spin-button,
.vq-cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Line total */
.vq-cart-row__total {
  font-weight: 700;
  font-size: .95rem;
  color: var(--col-text);
  white-space: nowrap;
  min-width: 5rem;
  text-align: right;
}

/* Remove */
.vq-cart-row__remove { display: flex; }
.vq-cart-remove-btn {
  background: none;
  border: none;
  color: var(--col-text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: .4rem;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.vq-cart-remove-btn:hover { color: #ef4444; background: #fef2f2; }

/* Summary sidebar */
.vq-cart-summary {
  position: sticky;
  top: calc(var(--bulma-navbar-height, 3.25rem) + var(--vq-metanav-height, 2rem) + 1.5rem);
}
.vq-cart-summary__inner {
  background: var(--col-surface-card, oklch(100% 0 0deg));
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.09);
  padding: 1.5rem;
}
.vq-cart-summary__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: 1rem;
}
.vq-cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--col-text-muted);
  margin-bottom: .5rem;
}
.vq-cart-summary__divider {
  border-top: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  margin: 1rem 0;
}
.vq-cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: .5rem;
}
.vq-cart-summary__vat {
  font-size: .78rem;
  color: var(--col-text-muted);
  margin-bottom: 1rem;
}
.vq-cart-summary__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background: var(--col-primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: background .2s;
}
.vq-cart-summary__btn:hover { background: var(--col-primary-dark); color: #fff; }
.vq-cart-summary__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--col-text-muted);
  text-decoration: none;
  text-align: center;
}
.vq-cart-summary__back:hover { color: var(--col-primary); }
.vq-cart-summary__row--discount {
  color: var(--col-primary);
  font-weight: 600;
}
.vq-cart-summary__row--discount em {
  font-style: normal;
  font-weight: 700;
}
.vq-cart-summary__min-notice {
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: 6px;
  padding: .6rem .8rem;
  font-size: .85rem;
  color: #7a5c00;
  margin-bottom: .75rem;
}
.vq-cart-summary__or {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 1rem 0 .75rem;
  color: #999;
  font-size: .8rem;
}
.vq-cart-summary__or::before,
.vq-cart-summary__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}
.vq-cart-summary__paypal-hint {
  margin-top: .4rem;
  font-size: .75rem;
  color: #999;
  text-align: center;
}
.vq-reservation-notice {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--col-primary-soft, oklch(95% 0.03 260deg));
  border: 1px solid var(--col-primary);
  border-radius: var(--radius-md, 0.75rem);
  padding: .6rem 1rem;
  font-size: .9rem;
  color: var(--col-primary-dark);
  margin-bottom: 1.25rem;
}

.vq-reservation-notice strong {
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  letter-spacing: .02em;
}

.vq-cart-recommendations {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--col-border, #e8e8e8);
}
.vq-cart-recommendations__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--col-text);
}
.vq-cart-coupon-remove {
  background: none;
  border: none;
  color: var(--col-text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 .2rem;
  vertical-align: middle;
}
.vq-cart-coupon-remove:hover { color: #ef4444; }
.vq-cart-coupon-form {
  display: flex;
  gap: .4rem;
  margin-top: 1rem;
}
.vq-cart-coupon-input {
  flex: 1;
  border: 1.5px solid var(--col-border);
  border-radius: 8px;
  padding: .5rem .75rem;
  font-size: .85rem;
  outline: none;
  text-transform: uppercase;
  background: var(--col-surface-card, oklch(100% 0 0deg));
  color: var(--col-text);
}
.vq-cart-coupon-input:focus { border-color: var(--col-primary); }
.vq-cart-coupon-btn {
  background: var(--col-surface);
  border: 1.5px solid var(--col-border);
  border-radius: 8px;
  padding: .5rem .85rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.vq-cart-coupon-btn:hover { background: var(--col-primary-soft, oklch(95% 0.03 260deg)); border-color: var(--col-primary); color: var(--col-primary); }

.vq-shop-cart__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.vq-cart-qty-form {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ── Schritt-Anzeige ─────────────────────────────────────── */
.vq-shop-steps {
  margin-bottom: 2rem;
}
.vq-shop-steps .steps {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.vq-shop-steps .steps::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  z-index: 0;
}
.vq-shop-steps .step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.vq-shop-steps .step-marker {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  color: var(--col-text-muted);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem;
  transition: background .2s, color .2s;
}
.vq-shop-steps .step-item.is-active .step-marker {
  background: var(--col-primary);
  color: #fff;
}
.vq-shop-steps .step-item.is-completed .step-marker {
  background: var(--col-primary-soft, oklch(95% 0.03 260deg));
  color: var(--col-primary);
}
.vq-shop-steps .step-title {
  font-size: .8rem;
  color: var(--col-text-muted);
  margin: 0;
}
.vq-shop-steps .step-item.is-active .step-title { color: var(--col-primary); font-weight: 700; }

/* ── Versand-/Zahlungsoptionen ───────────────────────────── */
.vq-shop-option {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border: 2px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: .6rem;
  transition: border-color .15s, background .15s;
}
.vq-shop-option:hover { border-color: var(--col-primary-soft, oklch(95% 0.03 260deg)); background: var(--col-surface); }
.vq-shop-option input[type="radio"] { accent-color: var(--col-primary); width: 1.1rem; height: 1.1rem; }
.vq-shop-option input[type="radio"]:checked + .vq-shop-option__label { color: var(--col-primary); font-weight: 600; }
.vq-shop-option:has(input:checked) { border-color: var(--col-primary); background: var(--col-primary-soft, oklch(95% 0.03 260deg)); }
.vq-shop-option__label { font-size: .95rem; display: flex; align-items: center; gap: .5rem; flex: 1; }
.vq-shop-option__label i { width: 1.1rem; text-align: center; color: var(--col-primary); }
.vq-shop-option__price { font-size: .88rem; font-weight: 600; color: var(--col-text-muted); white-space: nowrap; margin-left: auto; }
.vq-shop-option__distance { font-weight: 400; }

/* ── Bestellung bestätigt ─────────────────────────────────── */
.vq-shop-confirmed {
  text-align: center;
}
.vq-shop-confirmed__icon {
  font-size: 4rem;
  color: var(--col-primary);
  margin-bottom: 1rem;
}
.vq-shop-confirmed__icon--cancel {
  color: #c0392b;
}
.vq-shop-confirmed__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: .75rem;
}
.vq-shop-confirmed__number {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  color: var(--col-text-muted);
}
.vq-shop-confirmed__info {
  color: var(--col-text-muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* ── Bundle-Konfigurator ─────────────────────────────────── */
.vq-bundle__hero {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.vq-bundle__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.vq-bundle__desc {
  color: var(--col-text-muted);
  margin-bottom: 1rem;
}
.vq-bundle__constraint {
  background: oklch(from var(--col-primary) l c h / 0.08);
  border-left: 3px solid var(--col-primary);
  padding: .6rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: .9rem;
  margin-bottom: 1.5rem;
  color: var(--col-text);
}
.vq-bundle__products {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.vq-bundle__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  background: var(--col-surface);
  border: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 8px;
}
.vq-bundle__row-info {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
}
.vq-bundle__row-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.vq-bundle__row-img--placeholder {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--col-surface-alt, oklch(91% 0.01 85deg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vq-bundle__row-name {
  font-weight: 600;
  font-size: .95rem;
}
.vq-bundle__row-price {
  font-size: .85rem;
  color: var(--col-text-muted);
}
.vq-bundle__row-price--original {
  text-decoration: line-through;
  opacity: .55;
  margin-right: .25rem;
}
.vq-bundle__row-price--bundle {
  color: var(--col-primary);
  font-weight: 600;
}
.vq-bundle__row-qty {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.vq-bundle__summary {
  background: var(--col-surface);
  border: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.vq-bundle__summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
  font-size: .95rem;
}
.vq-bundle__progress-wrap {
  margin-top: .75rem;
}
.vq-bundle__progress-label {
  font-size: .8rem;
  color: var(--col-text-muted);
  text-align: right;
  margin-top: .2rem;
}

/* ── Bundle-Gruppe im Warenkorb ──────────────────────────── */
.vq-bundle-group {
  border: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.vq-bundle-group__header {
  background: oklch(from var(--col-primary) l c h / 0.08);
  padding: .6rem 1rem;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  color: var(--col-primary);
  border-bottom: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
}
.vq-cart-row--bundle {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
}
.vq-cart-row--bundle:last-child {
  border-bottom: none;
}
.vq-cart-row__qty--fixed {
  font-size: .9rem;
  color: var(--col-text-muted);
  min-width: 80px;
  text-align: center;
}

/* ── Checkout-Gate (Login / Gast / Registrierung) ───────── */
.vq-account-gate {
  max-width: 860px;
  margin: 2.5rem auto;
}
.vq-account-gate__intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--col-text-muted);
  margin-bottom: 2rem;
}
.vq-account-gate__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vq-account-gate__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  border: 2px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  border-radius: 12px;
  background: var(--col-surface);
  color: var(--col-text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .12s;
  cursor: pointer;
}
.vq-account-gate__card:hover {
  border-color: var(--col-primary);
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  transform: translateY(-2px);
  color: var(--col-text);
}
.vq-account-gate__card--primary {
  border-color: var(--col-primary);
  background: oklch(from var(--col-primary) l c h / 0.06);
}
.vq-account-gate__card--primary:hover {
  background: oklch(from var(--col-primary) l c h / 0.12);
}
.vq-account-gate__icon {
  font-size: 2rem;
  color: var(--col-primary);
  margin-bottom: 1rem;
}
.vq-account-gate__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--col-text);
}
.vq-account-gate__card-text {
  font-size: .9rem;
  color: var(--col-text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.vq-account-gate__cta {
  display: inline-block;
  padding: .5rem 1.25rem;
  border-radius: 6px;
  background: var(--col-primary);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  margin-top: auto;
}
.vq-account-gate__card--primary .vq-account-gate__cta {
  background: var(--col-primary);
}

/* ── Bestellverfolgung ───────────────────────────────────── */
.vq-shop-tracking__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: 1rem;
}
.vq-shop-tracking__status {
  border-radius: 10px;
  font-size: 1.05rem;
}
.vq-shop-tracking__meta {
  border-top: 1px solid var(--col-surface-alt, oklch(91% 0.01 85deg));
  padding-top: .75rem;
}

@media (max-width: 768px) {
  .vq-shop-detail__title { font-size: 1.45rem; }
  .vq-shop-detail__price { font-size: 1.4rem; }
  .vq-shop-cart__actions { flex-direction: column; align-items: stretch; }
  .vq-shop-cart__actions .button { width: 100%; justify-content: center; }
  .vq-cart-layout {
    grid-template-columns: 1fr;
  }
  .vq-cart-summary {
    position: static;
  }
  .vq-cart-row {
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto;
  }
  .vq-cart-row__image { width: 56px; height: 56px; }
  .vq-cart-row__info { grid-column: 2; grid-row: 1; }
  .vq-cart-row__remove { grid-column: 3; grid-row: 1; align-self: start; }
  .vq-cart-row__qty { grid-column: 2; grid-row: 2; }
  .vq-cart-row__total { grid-column: 3; grid-row: 2; }
  .vq-account-gate__cards { grid-template-columns: 1fr; }
}

@media (prefers-color-scheme: dark) {
  /* ── Produktkarte ─────────────────────────────────────────── */
  .vq-shop-card {
    box-shadow: 0 2px 12px rgba(0,0,0,.25), 0 1px 3px rgba(0,0,0,.15);
  }
  .vq-shop-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.2);
  }
  .vq-shop-detail__status--in {
    background: oklch(25% 0.06 151deg);
    color: oklch(75% 0.12 151deg);
  }

  /* ── Schritt-Anzeige: completed marker ───────────────────── */
  .vq-shop-steps .step-item.is-completed .step-marker {
    background: oklch(from var(--col-primary) l c h / 0.22);
    color: var(--col-primary);
  }

  /* ── Versand-/Zahlungsoptionen ───────────────────────────── */
  .vq-shop-option:hover {
    background: oklch(from var(--col-primary) l c h / 0.1);
  }
  .vq-shop-option:has(input:checked) {
    background: oklch(from var(--col-primary) l c h / 0.18);
    border-color: var(--col-primary);
  }

  /* ── Warenkorb-Zeilen ────────────────────────────────────── */
  .vq-cart-row {
    background: oklch(28% 0.01 85deg);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
  }
  .vq-cart-qty-input {
    background: oklch(28% 0.01 85deg);
    color: oklch(95% 0.01 85deg);
  }
  .vq-cart-remove-btn:hover {
    color: oklch(72% 0.18 28deg);
    background: oklch(28% 0.08 28deg);
  }
  .vq-cart-coupon-remove:hover { color: oklch(72% 0.18 28deg); }

  /* Badges */
  .vq-cart-row__badge,
  .vq-cart-row__badge--reservation {
    background: oklch(38% 0.09 65deg);
    color: oklch(88% 0.1 65deg);
  }
  .vq-cart-row__badge--saved {
    background: oklch(30% 0.07 260deg);
    color: oklch(82% 0.1 260deg);
  }
  .vq-cart-row__variant {
    background: oklch(25% 0.06 151deg);
    color: oklch(78% 0.13 151deg);
  }

  /* ── Warenkorb-Zusammenfassung ───────────────────────────── */
  .vq-cart-summary__inner {
    background: oklch(28% 0.01 85deg);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
  }
  .vq-cart-coupon-input {
    background: oklch(23% 0.01 85deg);
    color: oklch(95% 0.01 85deg);
    border-color: oklch(38% 0.01 85deg);
  }
  .vq-cart-coupon-input:focus { border-color: var(--col-primary); }
  .vq-cart-coupon-btn {
    background: oklch(32% 0.01 85deg);
    border-color: oklch(38% 0.01 85deg);
    color: oklch(90% 0.01 85deg);
  }
  .vq-cart-coupon-btn:hover {
    background: oklch(from var(--col-primary) l c h / 0.2);
    border-color: var(--col-primary);
    color: var(--col-primary);
  }

  /* Mindestbestellwert-Hinweis */
  .vq-cart-summary__min-notice {
    background: oklch(30% 0.08 65deg);
    border-color: oklch(55% 0.12 65deg);
    color: oklch(88% 0.1 65deg);
  }

  /* ── Bundle-Gruppe im Warenkorb ──────────────────────────── */
  .vq-cart-row--bundle {
    background: oklch(26% 0.01 85deg);
  }

  /* ── Checkout-Gate ───────────────────────────────────────── */
  .vq-account-gate__card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
  }

  /* ── Bestellverfolgung ───────────────────────────────────── */
  .vq-shop-tracking__status { }

  /* ── Bundle-Konfigurator: Preise ─────────────────────────── */
  .vq-bundle__row-price--bundle { color: var(--col-primary); }
}

/* ── Coupon Banner ───────────────────────────────────────── */
.vq-coupon-banner {
  background: #2d6a2d;
  color: #fff;
  padding: .6rem 1rem;
  position: relative;
  z-index: 100;
  width: 100%;
}
.vq-coupon-banner--bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,.2);
}
.vq-coupon-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.vq-coupon-banner__text {
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
}
.vq-coupon-banner__text a { color: #fff; text-decoration: underline; }
.vq-coupon-banner__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  font-size: 1rem;
  padding: .2rem .4rem;
  flex-shrink: 0;
  line-height: 1;
}
.vq-coupon-banner__close:hover { color: #fff; }
/* ===== Bewertungen ===== */
.vq-shop-reviews { margin-top: 3rem; }
.vq-shop-reviews__avg { font-size: 1.1rem; margin-bottom: 1.5rem; }
.vq-shop-reviews__avg .fas.fa-star { color: #f5a623; }
.vq-shop-reviews__avg .far.fa-star { color: #ccc; }
.vq-shop-reviews__empty { color: #888; font-style: italic; }

.vq-shop-review {
    border-top: 1px solid #eee;
    padding: 1rem 0;
}
.vq-shop-review__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.vq-shop-review__author { font-weight: 600; }
.vq-shop-review__stars .fas.fa-star { color: #f5a623; font-size: 0.85rem; }
.vq-shop-review__stars .far.fa-star { color: #ccc; font-size: 0.85rem; }
.vq-shop-review__date { color: #999; font-size: 0.85rem; margin-left: auto; }
.vq-shop-review__comment { line-height: 1.6; }

.vq-shop-review-form { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid #eee; }
.vq-star-rating { display: flex; flex-direction: row-reverse; gap: 0.25rem; width: fit-content; }
.vq-star-rating input { display: none; }
.vq-star-rating label { cursor: pointer; font-size: 1.5rem; color: #ccc; }
.vq-star-rating input:checked ~ label,
.vq-star-rating label:hover,
.vq-star-rating label:hover ~ label { color: #f5a623; }

/* ── Bewertungs-Badge Detailseite ────────────────────────── */
.vq-shop-detail__rating-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.75rem;
}
.vq-shop-detail__rating-link:hover { text-decoration: underline; }
.vq-shop-detail__stars .fas.fa-star,
.vq-shop-detail__stars .fas.fa-star-half-alt { color: #f5a623; }
.vq-shop-detail__stars .far.fa-star { color: #ccc; }
.vq-shop-detail__rating-count { color: #888; font-size: 0.9rem; }

/* ── Bewertungs-Badge Produktkarte ───────────────────────── */
.vq-shop-card__rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.82rem;
    margin: 0.25rem 0 0.4rem;
}
.vq-shop-card__rating .fas.fa-star { color: #f5a623; }
.vq-shop-card__rating .far.fa-star { color: #ccc; }
.vq-shop-card__rating-count { color: #999; margin-left: 0.15rem; }

.vq-shop-reviews__no-purchase { color: #888; font-style: italic; margin-top: 1.5rem; }

/* ── Wunschliste ─────────────────────────────────────────── */
.vq-wishlist-form {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    margin: 0;
}

.vq-shop-card { position: relative; }

.vq-wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #ccc;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.15s, background 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.vq-wishlist-btn:hover,
.vq-wishlist-btn.is-active {
    color: #e0314b;
    background: #fff;
    transform: scale(1.1);
}

.vq-wishlist__empty {
    color: #888;
    font-style: italic;
}
.vq-wishlist__empty a {
    margin-left: 0.5em;
    text-decoration: underline;
}

.vq-shop-detail__estimate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #3a7a3a;
    margin-top: 0.6rem;
    margin-bottom: 0.2rem;
}
.vq-shop-detail__estimate i { flex-shrink: 0; }

.vq-cart-summary__estimate {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
}
