/* ============================================================
   exstase Shop – Premium Design
   ============================================================ */

.shop-page { background: var(--unique-bg); color: var(--unique-text); }

/* ── Header ───────────────────────────────────────────── */

.shop-header .logo img { height: clamp(2.4rem, 7vw, 3.6rem) !important; }
@media (min-width: 768px) { .shop-header .logo img { height: 5rem !important; } }

.shop-cart-trigger {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  background: rgba(168,230,82,0.1); border: 1px solid rgba(168,230,82,0.25);
  border-radius: 10px; color: var(--unique-accent);
  cursor: pointer; font-family: var(--unique-font-body);
  transition: background 0.2s, border-color 0.2s;
}
.shop-cart-trigger:hover { background: rgba(168,230,82,0.2); border-color: var(--unique-accent); }
.shop-cart-icon { display: flex; align-items: center; justify-content: center; }
.shop-cart-count { font-weight: 700; font-size: 0.85rem; min-width: 1.2rem; text-align: center; }

.shop-account-link {
  font-weight: 600;
  color: var(--unique-text);
  text-decoration: none;
}
.shop-account-link:hover { color: var(--unique-accent); }

/* ============================================================
   HERO
   ============================================================ */

.shop-hero {
  position: relative; padding: 7.5rem 0 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--unique-bg-soft) 0%, var(--unique-bg) 100%);
  overflow: hidden;
}

.shop-hero-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,230,82,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: shop-glow-pulse 4s ease-in-out infinite;
}
.shop-hero-glow--right {
  left: auto; right: -20%; top: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,230,82,0.08) 0%, transparent 65%);
  animation-delay: 2s;
}

@keyframes shop-glow-pulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.shop-hero-content { position: relative; z-index: 1; }

.shop-hero-kicker { display: inline-block; margin-bottom: 0.75rem; animation: shop-fade-up 0.7s ease-out both; }

.shop-hero-title {
  font-family: var(--unique-font-display); font-weight: 900;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  margin: 0 0 0.75rem; color: var(--unique-text);
  animation: shop-fade-up 0.7s 0.1s ease-out both;
}

.shop-hero-lead {
  font-family: var(--unique-font-body); color: var(--unique-muted);
  font-size: 1.05rem; margin: 0 0 1.75rem;
  max-width: 560px; margin-left: auto; margin-right: auto;
  animation: shop-fade-up 0.7s 0.2s ease-out both;
}

.shop-hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin-bottom: 2rem;
  animation: shop-fade-up 0.7s 0.3s ease-out both;
}

.shop-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-family: var(--unique-font-body); font-size: 0.76rem; font-weight: 500;
  color: var(--unique-muted);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
}
.shop-badge svg { color: var(--unique-accent); flex-shrink: 0; }

.shop-hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  animation: shop-fade-up 0.7s 0.45s ease-out both;
  text-decoration: none;
}

@media (max-width: 600px) {
  .shop-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .shop-hero-cta {
    align-self: center;
  }
}

@keyframes shop-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   USP BAR
   ============================================================ */

.shop-usp-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shop-usp-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2.5rem;
}

.shop-usp-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--unique-font-body); font-size: 0.82rem;
  text-align: center;
}
.shop-usp-item strong { display: block; color: var(--unique-text); font-weight: 700; margin-bottom: 0.1rem; }
.shop-usp-item span { color: var(--unique-muted); font-size: 0.76rem; }

.shop-usp-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,230,82,0.08); border: 1px solid rgba(168,230,82,0.12);
  border-radius: 12px; color: var(--unique-accent);
}

@media (max-width: 480px) { .shop-usp-grid { flex-direction: column; align-items: center; gap: 1rem; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */

.shop-section-header { text-align: center; margin-bottom: 2rem; }
.shop-section-header h2 {
  font-family: var(--unique-font-display); font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem); margin: 0 0 0.4rem;
  color: var(--unique-text);
}
.shop-section-header p { color: var(--unique-muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   TOOLBAR – Filter + Suche
   ============================================================ */

.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1; }

.shop-filter {
  padding: 0.5rem 1rem;
  font-family: var(--unique-font-display); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--unique-muted);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.shop-filter:hover { color: var(--unique-text); border-color: rgba(168,230,82,0.2); }
.shop-filter.active { color: var(--unique-accent); background: rgba(168,230,82,0.1); border-color: rgba(168,230,82,0.3); }

.shop-search-wrap { position: relative; flex: 0 1 260px; }

.shop-search-icon {
  position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%);
  color: var(--unique-muted); pointer-events: none; transition: color 0.2s;
}

.shop-search-input {
  width: 100%; padding: 0.6rem 1rem 0.6rem 2.6rem;
  font-family: var(--unique-font-body); font-size: 0.9rem;
  color: var(--unique-text);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search-input::placeholder { color: var(--unique-muted); opacity: 0.7; }
.shop-search-input:focus {
  outline: none; border-color: var(--unique-accent);
  box-shadow: 0 0 0 3px rgba(168,230,82,0.12);
}
.shop-search-wrap:focus-within .shop-search-icon { color: var(--unique-accent); }

.shop-no-results { text-align: center; color: var(--unique-muted); padding: 3rem 0; font-size: 1rem; }

@media (max-width: 600px) {
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-search-wrap { flex: 1 1 100%; }
}

/* ============================================================
   PRODUKT-GRID & KATEGORIEN
   ============================================================ */

.shop-products { padding: 2rem 0 3rem; }

#product-grid {
  display: flex; flex-direction: column; gap: 2.5rem;
}

.shop-category-section {
  display: flex; flex-direction: column; gap: 1.25rem;
}

.shop-category-heading {
  font-family: var(--unique-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--unique-text);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(168,230,82,0.2);
}

.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.shop-card-animate { opacity: 0; transform: translateY(24px); animation: shop-card-in 0.5s ease-out forwards; }
@keyframes shop-card-in { to { opacity: 1; transform: translateY(0); } }

.shop-product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; overflow: hidden;
  transition: border-color 0.35s, transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.shop-product-card:hover {
  border-color: rgba(168,230,82,0.3);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 40px rgba(168,230,82,0.07);
}

.shop-product-img-wrap {
  position: relative; aspect-ratio: 1; padding: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2); overflow: hidden;
}

.shop-product-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(168,230,82,0.08) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.shop-product-card:hover .shop-product-glow { opacity: 1; }

.shop-product-in-cart {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-family: var(--unique-font-display); font-size: 0.65rem; font-weight: 700;
  color: var(--unique-bg); background: var(--unique-accent);
  border-radius: 100px; z-index: 2;
}

.shop-product-img-wrap img {
  max-height: 100%; width: auto; object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.shop-product-card:hover .shop-product-img-wrap img { transform: scale(1.08) rotate(-2deg); }

.shop-product-body { padding: 1.25rem 1.25rem 1.5rem; }

.shop-product-cat {
  font-family: var(--unique-font-display); font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--unique-accent); display: block; margin-bottom: 0.35rem;
}

.shop-product-name {
  font-family: var(--unique-font-display); font-weight: 700;
  font-size: 1.1rem; margin: 0 0 0.2rem; color: var(--unique-text);
}

.shop-product-taste {
  font-family: var(--unique-font-body); font-size: 0.8rem;
  color: var(--unique-muted); margin: 0 0 0.65rem;
}

.shop-product-price-row {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.shop-product-price {
  font-family: var(--unique-font-display); font-weight: 800;
  font-size: 1.3rem; color: var(--unique-accent);
}

.shop-product-unit {
  font-family: var(--unique-font-body); font-weight: 400;
  font-size: 0.75rem; color: var(--unique-muted);
}

.shop-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; }

.shop-product-qty-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
}

.shop-qty-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600;
  color: var(--unique-accent); background: none; border: none;
  cursor: pointer; transition: background 0.15s;
}
.shop-qty-btn:hover { background: rgba(168,230,82,0.12); }

.shop-product-qty {
  width: 2.5rem; padding: 0.3rem 0; font-size: 0.9rem;
  text-align: center; background: none; border: none;
  color: var(--unique-text); font-family: var(--unique-font-body);
  -moz-appearance: textfield;
}
.shop-product-qty::-webkit-inner-spin-button,
.shop-product-qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.shop-product-add {
  flex: 1; min-width: 130px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  font-size: 0.82rem;
}
.shop-product-add svg { flex-shrink: 0; }

/* ── Mobile Produktkarten ────────────────────────────── */

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .shop-product-card {
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }

  .shop-product-img-wrap {
    aspect-ratio: auto;
    width: 110px;
    min-height: 110px;
    flex-shrink: 0;
    padding: 0.5rem;
  }

  .shop-product-body {
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .shop-product-cat { font-size: 0.55rem; margin-bottom: 0.15rem; }
  .shop-product-name { font-size: 0.88rem; margin-bottom: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .shop-product-taste { font-size: 0.7rem; margin-bottom: 0.35rem; }

  .shop-product-price { font-size: 1rem; }
  .shop-product-unit { font-size: 0.6rem; }
  .shop-product-price-row { margin-bottom: 0.4rem; gap: 0.2rem; }

  .shop-product-actions { flex-direction: row; gap: 0.4rem; align-items: center; }

  .shop-product-qty-wrap { width: auto; }
  .shop-qty-btn { width: 28px; height: 28px; font-size: 0.9rem; }
  .shop-product-qty { width: 1.8rem; font-size: 0.78rem; }

  .shop-product-add {
    min-width: unset; flex: 1;
    font-size: 0.72rem; padding: 0.45rem 0.6rem;
    gap: 0.25rem;
  }
  .shop-product-add svg { width: 13px; height: 13px; }

  .shop-product-in-cart {
    top: 0.3rem; right: auto; left: 0.3rem;
    padding: 0.15rem 0.4rem; font-size: 0.5rem;
  }

  .shop-product-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@keyframes shop-flash {
  0%   { box-shadow: 0 0 0 0 rgba(168,230,82,0.5); }
  50%  { box-shadow: 0 0 24px 6px rgba(168,230,82,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(168,230,82,0); }
}
.shop-product-add--flash { animation: shop-flash 0.6s ease-out; }

/* ============================================================
   VERSANDRECHNER
   ============================================================ */

.shop-shipping-section { padding: 2rem 0 3rem; }

.shop-shipping-card {
  max-width: 520px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(168,230,82,0.04));
  border: 1px solid rgba(168,230,82,0.12); border-radius: 20px; padding: 2rem;
}

.shop-shipping-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.shop-shipping-header svg { color: var(--unique-accent); flex-shrink: 0; }
.shop-shipping-header h3 {
  font-family: var(--unique-font-display); font-size: 1.15rem; font-weight: 800;
  margin: 0; color: var(--unique-text);
}

.shop-shipping-table { display: flex; flex-direction: column; }

.shop-shipping-row {
  display: flex; justify-content: space-between;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem; color: var(--unique-text);
}
.shop-shipping-row:last-child { border-bottom: none; }
.shop-shipping-row span:last-child { font-weight: 700; color: var(--unique-accent); }
.shop-shipping-row--note span:last-child { color: var(--unique-muted); font-weight: 400; font-style: italic; }

.shop-shipping-calculator {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: rgba(168,230,82,0.06); border: 1px solid rgba(168,230,82,0.15);
  border-radius: 12px;
}
.shop-shipping-calc-label {
  margin: 0 0 0.5rem; font-size: 0.9rem; color: var(--unique-text);
}
.shop-shipping-calc-inputs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 0.75rem;
}
.shop-shipping-calc-inputs input {
  width: 5rem; padding: 0.5rem 0.65rem;
  background: rgba(0,0,0,0.2); border: 1px solid rgba(168,230,82,0.2);
  border-radius: 10px; color: var(--unique-text); font-family: var(--unique-font-body);
  font-size: 1rem; font-weight: 600; text-align: center;
  -moz-appearance: textfield;
}
.shop-shipping-calc-inputs input::-webkit-inner-spin-button,
.shop-shipping-calc-inputs input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.shop-shipping-calc-inputs input:focus {
  outline: none; border-color: var(--unique-accent);
}
.shop-shipping-calc-output {
  font-size: 0.95rem; color: var(--unique-text);
}
.shop-shipping-calc-output .shipping-calc-cost { color: var(--unique-accent); font-size: 1.1rem; }

.shop-shipping-result {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: rgba(168,230,82,0.06); border: 1px solid rgba(168,230,82,0.15);
  border-radius: 12px; text-align: center;
}

.shipping-calc-hint { color: var(--unique-muted); font-size: 0.85rem; }
.shipping-calc-trays { display: block; font-family: var(--unique-font-display); font-weight: 700; font-size: 0.9rem; color: var(--unique-text); margin-bottom: 0.2rem; }
.shipping-calc-cost { display: block; font-family: var(--unique-font-display); font-weight: 800; font-size: 1.3rem; color: var(--unique-accent); }
.shipping-calc-note { display: block; font-size: 0.75rem; color: var(--unique-muted); margin-top: 0.25rem; }

.shop-shipping-delivery {
  margin: 1rem 0 0; font-size: 0.8rem; color: var(--unique-muted);
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */

.shop-faq-section { padding: 2rem 0 4rem; }

.shop-faq-list { max-width: 680px; margin: 0 auto; }

.shop-faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; margin-bottom: 0.6rem;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.shop-faq-item[open] { border-color: rgba(168,230,82,0.2); }

.shop-faq-item summary {
  padding: 1rem 1.25rem; cursor: pointer;
  font-family: var(--unique-font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--unique-text);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.shop-faq-item summary::-webkit-details-marker { display: none; }
.shop-faq-item summary::after {
  content: '+'; font-size: 1.2rem; font-weight: 300;
  color: var(--unique-accent); transition: transform 0.2s;
}
.shop-faq-item[open] summary::after { content: '−'; }

.shop-faq-item p {
  padding: 0 1.25rem 1rem; margin: 0;
  font-size: 0.88rem; line-height: 1.6; color: var(--unique-muted);
}
.shop-faq-item a { color: var(--unique-accent); text-decoration: underline; }

/* ============================================================
   WARENKORB SIDEBAR
   ============================================================ */

.shop-cart-sidebar {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100vh; z-index: 1000; display: none;
}
.shop-cart-sidebar.open { display: block; }

.shop-cart-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.3s;
}
.shop-cart-sidebar.open .shop-cart-backdrop { opacity: 1; }

.shop-cart-inner {
  position: absolute; top: 0; right: 0; z-index: 1;
  width: 100%; max-width: 420px; height: 100%;
  background: var(--unique-bg);
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.shop-cart-sidebar.open .shop-cart-inner { transform: translateX(0); }

.shop-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shop-cart-head h2 {
  font-family: var(--unique-font-display); font-size: 1.25rem; font-weight: 800;
  margin: 0; color: var(--unique-text);
}

.shop-cart-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--unique-muted);
  background: none; border: none; cursor: pointer; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.shop-cart-close:hover { color: var(--unique-text); background: rgba(255,255,255,0.06); }

.shop-cart-list { flex: 1; overflow-y: auto; padding: 0.5rem 1.5rem; }

.shop-cart-empty {
  padding: 3rem 1.5rem; text-align: center; color: var(--unique-muted); font-size: 0.9rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}

.shop-cart-continue {
  margin-top: 0.75rem; padding: 0.5rem 1.2rem;
  font-family: var(--unique-font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--unique-accent);
  background: rgba(168,230,82,0.1); border: 1px solid rgba(168,230,82,0.25);
  border-radius: 10px; cursor: pointer; transition: background 0.2s;
}
.shop-cart-continue:hover { background: rgba(168,230,82,0.2); }

.shop-cart-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shop-cart-item-img {
  width: 52px; height: 52px; object-fit: contain; flex-shrink: 0;
  background: rgba(0,0,0,0.2); border-radius: 10px; padding: 4px;
}

.shop-cart-item-info { flex: 1; min-width: 0; }

.shop-cart-item-name {
  display: block; font-family: var(--unique-font-display); font-weight: 600;
  font-size: 0.88rem; color: var(--unique-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.shop-cart-item-meta { display: block; font-size: 0.72rem; color: var(--unique-muted); margin-top: 0.1rem; }

.shop-cart-item-qty { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.3rem; }

.shop-cart-qty-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--unique-accent);
  background: rgba(168,230,82,0.1); border: 1px solid rgba(168,230,82,0.2);
  border-radius: 7px; cursor: pointer; transition: background 0.15s;
}
.shop-cart-qty-btn:hover { background: rgba(168,230,82,0.2); }
.shop-cart-qty-num { font-weight: 600; min-width: 1.5rem; text-align: center; font-size: 0.88rem; }

.shop-cart-item-end {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem;
  flex-shrink: 0;
}

.shop-cart-item-row-total {
  font-family: var(--unique-font-display); font-weight: 700;
  font-size: 0.92rem; color: var(--unique-accent);
}

.shop-cart-item-remove {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--unique-muted); border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.shop-cart-item-remove:hover { color: #f87171; background: rgba(248,113,113,0.1); }

.shop-cart-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.shop-cart-summary { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.75rem; }

.shop-cart-summary-line {
  display: flex; justify-content: space-between;
  font-family: var(--unique-font-body); font-size: 0.85rem; color: var(--unique-text);
}
.shop-cart-summary-total {
  font-weight: 700; font-size: 1.05rem; color: var(--unique-accent);
  margin-top: 0.2rem; padding-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.shop-cart-checkout { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; }

.shop-cart-back {
  display: block; width: 100%; margin-top: 0.5rem;
  padding: 0.55rem; text-align: center;
  font-family: var(--unique-font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--unique-muted); background: none; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; cursor: pointer; transition: color 0.2s, border-color 0.2s;
}
.shop-cart-back:hover { color: var(--unique-text); border-color: rgba(255,255,255,0.15); }

/* ============================================================
   CHECKOUT OVERLAY
   ============================================================ */

.shop-checkout-overlay {
  position: fixed; inset: 0; z-index: 1001;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 2rem; background: rgba(0,0,0,0.88); overflow-y: auto;
}
.shop-checkout-overlay[hidden] { display: none !important; }

.shop-checkout-inner {
  width: 100%; max-width: 500px; margin: auto 0;
  background: var(--unique-bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 2rem;
}

.shop-checkout-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.shop-checkout-head h2 {
  font-family: var(--unique-font-display); font-size: 1.5rem; font-weight: 800;
  margin: 0; color: var(--unique-text);
}

.shop-checkout-steps {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.shop-checkout-step {
  font-family: var(--unique-font-display); font-size: 0.75rem; font-weight: 600;
  color: var(--unique-muted); padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.04); border-radius: 100px;
}
.shop-checkout-step.active { color: var(--unique-accent); background: rgba(168,230,82,0.1); }
.shop-checkout-step-divider {
  flex: 0 0 24px; height: 1px; background: rgba(255,255,255,0.1);
}

.shop-checkout-field-group { margin-bottom: 0.5rem; }

.shop-checkout-form label { display: block; margin-bottom: 0.85rem; }

.shop-checkout-label span {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--unique-muted); margin-bottom: 0.3rem;
}

.shop-checkout-label input,
.shop-checkout-label textarea {
  width: 100%; padding: 0.7rem 1rem;
  font-family: var(--unique-font-body); font-size: 0.95rem;
  color: var(--unique-text);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.shop-checkout-label input:focus,
.shop-checkout-label textarea:focus {
  outline: none; border-color: var(--unique-accent);
  box-shadow: 0 0 0 3px rgba(168,230,82,0.12);
}

.shop-checkout-row-wrap { display: flex; gap: 0.75rem; }
.shop-checkout-row { flex: 1; }

.shop-checkout-note {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(168,230,82,0.05); border: 1px solid rgba(168,230,82,0.12);
  border-radius: 10px; font-size: 0.8rem; color: var(--unique-muted);
  margin-bottom: 0.75rem;
}
.shop-checkout-note svg { color: var(--unique-accent); flex-shrink: 0; }

.shop-checkout-summary {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin: 1rem 0; font-size: 0.95rem; color: var(--unique-text);
}
.shop-checkout-line {
  display: flex; justify-content: space-between;
}
.shop-checkout-total {
  font-weight: 700; font-size: 1.1rem; color: var(--unique-accent);
  margin-top: 0.2rem; padding-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.shop-checkout-agb {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin: 1rem 0; font-size: 0.82rem; color: var(--unique-muted);
  cursor: pointer;
}
.shop-checkout-agb input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.1rem;
  accent-color: var(--unique-accent); cursor: pointer;
}
.shop-checkout-agb a { color: var(--unique-accent); text-decoration: underline; }

.shop-checkout-error {
  padding: 0.7rem 1rem; margin-bottom: 0.75rem;
  background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3);
  border-radius: 10px; font-size: 0.85rem; color: #f87171;
}

.shop-checkout-submit {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
}

@media (max-width: 480px) {
  .shop-checkout-row-wrap { flex-direction: column; gap: 0; }
  .shop-checkout-inner { padding: 1.5rem; }
}

/* ============================================================
   BESTELL-BESTÄTIGUNG
   ============================================================ */

.shop-success-overlay {
  position: fixed; inset: 0; z-index: 1002;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: rgba(0,0,0,0.9); overflow-y: auto;
}
.shop-success-overlay[hidden] { display: none !important; }

.shop-success-inner {
  width: 100%; max-width: 460px; text-align: center;
  background: var(--unique-bg-card);
  border: 1px solid rgba(168,230,82,0.2);
  border-radius: 24px; padding: 2.5rem 2rem;
}

.shop-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(168,230,82,0.1); color: var(--unique-accent);
  margin-bottom: 1.25rem;
  animation: shop-success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes shop-success-pop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.shop-success-inner h2 {
  font-family: var(--unique-font-display); font-weight: 800;
  font-size: 1.4rem; margin: 0 0 0.75rem; color: var(--unique-text);
}

.shop-success-inner > p {
  font-size: 0.92rem; color: var(--unique-muted); margin: 0 0 1.5rem;
  line-height: 1.6;
}

.shop-success-details {
  text-align: left; padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: var(--unique-text); line-height: 1.7;
}
.shop-success-details p { margin: 0; }
.shop-success-details strong { color: var(--unique-muted); }

.shop-success-btn { display: inline-flex; text-decoration: none; }

/* ============================================================
   ZAHLUNGSART
   ============================================================ */

.shop-checkout-payment { margin-bottom: 1rem; }

.shop-checkout-payment-title {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--unique-text); margin-bottom: 0.6rem;
}

.shop-checkout-payment-options { display: flex; flex-direction: column; gap: 0.5rem; }

.shop-payment-option {
  cursor: pointer; display: block;
}

.shop-payment-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.shop-payment-option-inner {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; transition: border-color 0.2s, background 0.2s;
}

.shop-payment-option input:checked + .shop-payment-option-inner {
  border-color: var(--unique-accent);
  background: rgba(168,230,82,0.06);
}

.shop-payment-option-inner svg { color: var(--unique-accent); flex-shrink: 0; }
.shop-payment-option-inner strong { display: block; font-size: 0.88rem; color: var(--unique-text); }
.shop-payment-option-inner span { display: block; font-size: 0.74rem; color: var(--unique-muted); margin-top: 0.1rem; }

#paypal-button-container { margin-top: 0.5rem; }

/* Loading / Spinner */
.shop-checkout-loading {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem; font-size: 0.9rem; color: var(--unique-muted);
}

.shop-spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 2.5px solid rgba(168,230,82,0.2);
  border-top-color: var(--unique-accent);
  border-radius: 50%; animation: shop-spin 0.7s linear infinite;
}

@keyframes shop-spin { to { transform: rotate(360deg); } }

/* ============================================================
   GUTSCHEINCODE
   ============================================================ */

.shop-coupon-wrap {
  margin-bottom: 1rem; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.shop-coupon-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--unique-muted); margin-bottom: 0.5rem; cursor: pointer;
}

.shop-coupon-row { display: flex; gap: 0.4rem; }

.shop-coupon-input {
  flex: 1; padding: 0.55rem 0.8rem;
  font-family: var(--unique-font-body); font-size: 0.85rem;
  text-transform: uppercase; color: var(--unique-text);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; transition: border-color 0.2s;
}
.shop-coupon-input:focus { outline: none; border-color: var(--unique-accent); }

.shop-coupon-btn {
  padding: 0.55rem 1rem; font-family: var(--unique-font-display);
  font-size: 0.78rem; font-weight: 700;
  color: #000; background: var(--unique-accent);
  border: none; border-radius: 10px; cursor: pointer;
  transition: opacity 0.2s;
}
.shop-coupon-btn:hover { opacity: 0.85; }

.shop-coupon-msg {
  margin: 0.4rem 0 0; font-size: 0.8rem;
}
.shop-coupon-msg.error { color: #f87171; }
.shop-coupon-msg.success { color: #4ade80; }

.shop-coupon-applied {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem; padding: 0.5rem 0.75rem;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px; font-size: 0.82rem; color: #4ade80; font-weight: 600;
}

.shop-coupon-remove {
  background: none; border: none; color: #4ade80;
  font-size: 1.2rem; cursor: pointer; padding: 0 0.25rem;
  transition: color 0.2s;
}
.shop-coupon-remove:hover { color: #f87171; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.shop-toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 9999; display: flex; flex-direction: column-reverse;
  gap: 0.5rem; pointer-events: none; max-width: 380px;
}

.shop-toast {
  pointer-events: all;
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: toast-in 0.35s ease-out both;
  font-family: var(--unique-font-body); font-size: 0.85rem;
  color: var(--unique-text);
}
.shop-toast.toast-out { animation: toast-out 0.3s ease-in forwards; }

.shop-toast-icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.shop-toast-icon.success { color: #4ade80; }
.shop-toast-icon.error { color: #f87171; }
.shop-toast-icon.info { color: #60a5fa; }

.shop-toast-body { flex: 1; }
.shop-toast-title { display: block; font-weight: 700; font-size: 0.82rem; margin-bottom: 0.1rem; }
.shop-toast-msg { font-size: 0.8rem; color: var(--unique-muted); }

.shop-toast-close {
  flex-shrink: 0; background: none; border: none;
  color: var(--unique-muted); font-size: 1.2rem; cursor: pointer;
  padding: 0 0.1rem; transition: color 0.15s;
}
.shop-toast-close:hover { color: var(--unique-text); }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(10px) scale(0.95); }
}

@media (max-width: 480px) {
  .shop-toast-container { left: 1rem; right: 1rem; max-width: none; }
}

/* ============================================================
   COOKIE BANNER (DSGVO)
   ============================================================ */

.shop-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9998; padding: 0;
  background: #111; border-top: 1px solid rgba(168,230,82,0.15);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
  animation: cookie-slide-up 0.4s ease-out both;
}
.shop-cookie-banner[hidden] { display: none !important; }

.shop-cookie-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

.shop-cookie-inner p {
  flex: 1; min-width: 200px;
  font-family: var(--unique-font-body); font-size: 0.82rem;
  color: var(--unique-muted); line-height: 1.55; margin: 0;
}
.shop-cookie-inner a { color: var(--unique-accent); text-decoration: underline; }

.shop-cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.shop-cookie-accept {
  padding: 0.55rem 1.2rem; font-size: 0.82rem;
}

.shop-cookie-decline {
  padding: 0.55rem 1.2rem; font-size: 0.82rem;
  background: none; border: 1px solid rgba(255,255,255,0.1);
  color: var(--unique-muted); border-radius: 12px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.shop-cookie-decline:hover { color: var(--unique-text); border-color: rgba(255,255,255,0.2); }

@keyframes cookie-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@media (max-width: 600px) {
  .shop-cookie-inner { flex-direction: column; text-align: center; }
  .shop-cookie-actions { width: 100%; justify-content: center; }
}
