/* ThinkHub360 Shop – Design angelehnt an thinkhub360.de */

:root {
  --th360-dark: #0f1923;
  --th360-accent: #0d9488;
  --th360-cyan: #0891b2;
  --th360-shop-orange: #e85d2c;
  --th360-shop-orange-light: #f9733d;
  --th360-bg: #f8fafc;
  --th360-surface: #ffffff;
  --th360-text: #1e293b;
  --th360-text-muted: #64748b;
  --th360-on-dark: #f1f5f9;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(15, 25, 35, 0.06);
  --shadow-card: 0 4px 24px rgba(15, 25, 35, 0.06);
  --shadow-hover: 0 12px 40px rgba(15, 25, 35, 0.12);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--th360-text);
  background: var(--th360-bg);
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 25, 35, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--th360-dark);
  font-weight: 700;
  font-size: 1.15rem;
  transition: opacity var(--transition);
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
}

.logo-text {
  color: var(--th360-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--th360-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--th360-dark);
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--th360-shop-orange) 0%, var(--th360-shop-orange-light) 100%);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.cart-link:hover {
  opacity: 0.9;
  color: #fff !important;
}

.cart-count {
  background: rgba(255,255,255,0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Hero Shop */
.hero-shop {
  background: linear-gradient(160deg, #fff7ed 0%, #f8fafc 45%, #f1f5f9 100%);
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  min-height: 280px;
}

.hero-shop::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 93, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Animierte „Geld ausgeben“-Szene im Hero */
.hero-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animation { display: none; }
}

.hero-coin {
  position: absolute;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--th360-shop-orange);
  opacity: 0.6;
  animation: hero-coin-float 4s ease-in-out infinite;
}
.hero-coin-1 { left: 12%; top: 85%; animation-delay: 0s; }
.hero-coin-2 { left: 78%; top: 80%; animation-delay: 1.2s; }
.hero-coin-3 { left: 45%; top: 88%; animation-delay: 2.4s; }

@keyframes hero-coin-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.5; }
  50% { transform: translateY(-18px) rotate(5deg); opacity: 0.85; }
}

.hero-card {
  position: absolute;
  left: -60px;
  top: 50%;
  width: 52px;
  height: 34px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: hero-card-swipe 5s ease-in-out infinite;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

@keyframes hero-card-swipe {
  0%, 20% { left: -60px; transform: translateY(-50%) rotate(-12deg); opacity: 0; }
  25% { opacity: 1; }
  45%, 55% { left: 42%; transform: translateY(-50%) rotate(2deg); opacity: 1; }
  75% { left: 85%; transform: translateY(-50%) rotate(8deg); opacity: 0.8; }
  85%, 100% { left: 95%; transform: translateY(-50%) rotate(12deg); opacity: 0; }
}

.hero-cart {
  position: absolute;
  right: 25%;
  top: 55%;
  width: 36px;
  height: 32px;
  border: 3px solid var(--th360-shop-orange);
  border-radius: 8px 8px 4px 4px;
  animation: hero-cart-fill 5s ease-in-out infinite;
}
.hero-cart::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  border: 3px solid var(--th360-shop-orange);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}

@keyframes hero-cart-fill {
  0%, 35% { box-shadow: inset 0 0 0 0 var(--th360-shop-orange); }
  50%, 65% { box-shadow: inset 0 -20px 0 0 rgba(232, 93, 44, 0.4); }
  80%, 100% { box-shadow: inset 0 -28px 0 0 rgba(232, 93, 44, 0.5); }
}

.hero-check {
  position: absolute;
  right: 22%;
  top: 48%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--th360-accent);
  animation: hero-check-pop 5s ease-in-out infinite;
}
.hero-check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  animation: hero-check-tick 5s ease-in-out infinite;
}

@keyframes hero-check-pop {
  0%, 55% { transform: scale(0); opacity: 0; }
  65% { transform: scale(1.1); opacity: 1; }
  75% { transform: scale(1); opacity: 1; }
  85%, 100% { transform: scale(1); opacity: 1; }
}

@keyframes hero-check-tick {
  0%, 60% { transform: rotate(45deg) scale(0); }
  72% { transform: rotate(45deg) scale(1); }
  100% { transform: rotate(45deg) scale(1); }
}

.hero-shop h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--th360-dark);
  letter-spacing: -0.03em;
}

.hero-shop .container {
  position: relative;
  z-index: 1;
}

.hero-shop p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--th360-text-muted);
}

.btn-hero {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--th360-shop-orange) 0%, var(--th360-shop-orange-light) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(232, 93, 44, 0.35);
}

.btn-hero:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #fff;
}

/* Promo Benefits */
.promo-benefits {
  padding: 3.5rem 0;
  background: var(--th360-surface);
  border-top: 1px solid rgba(15, 25, 35, 0.06);
}

.promo-benefits .section-label {
  text-align: center;
}

.promo-benefits h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--th360-dark);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  padding: 1.5rem;
  background: var(--th360-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 25, 35, 0.06);
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(232, 93, 44, 0.2);
}

.benefit-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--th360-dark);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--th360-text-muted);
}

/* Toolbar (Suche + Kategorien) immer sichtbar */
.catalog-toolbar {
  display: flex;
}

.show-all-wrap {
  text-align: center;
  margin-top: 2rem;
}

.show-all-wrap.js-full-catalog-only {
  display: none !important;
}

.btn-outline {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--th360-shop-orange);
  background: transparent;
  border: 2px solid var(--th360-shop-orange);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--th360-shop-orange);
  color: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Produktkatalog */
.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--th360-cyan);
  margin-bottom: 0.75rem;
  text-align: center;
}

.produkte {
  padding: 3rem 0 5rem;
  background: var(--th360-bg);
}

.produkte h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--th360-dark);
  text-align: center;
}

.section-intro {
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--th360-text-muted);
  max-width: 580px;
}

.catalog-toolbar {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-end;
}

.search-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  min-width: 200px;
}

.search-input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(15, 25, 35, 0.12);
  border-radius: var(--radius-sm);
  background: var(--th360-surface);
}

.search-input:focus {
  outline: none;
  border-color: var(--th360-cyan);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.category-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--th360-text-muted);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-pill {
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  border: 1px solid rgba(15, 25, 35, 0.15);
  border-radius: 999px;
  background: var(--th360-surface);
  color: var(--th360-text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.category-pill:hover {
  background: var(--th360-bg);
  color: var(--th360-text);
}

.category-pill.active {
  background: var(--th360-shop-orange);
  color: #fff;
  border-color: var(--th360-shop-orange);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Skip-Link (Barrierefreiheit) */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--th360-shop-orange);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--th360-dark);
  outline-offset: 2px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--th360-text-muted);
}
.breadcrumbs a {
  color: var(--th360-cyan);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 0.35rem; }

/* Cookie-Hinweis */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 1.5rem;
  background: var(--th360-dark);
  color: var(--th360-on-dark);
  font-size: 0.95rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--th360-cyan); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; }

/* Trust-Footer */
.trust-line {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  opacity: 0.9;
}
.trust-line span { margin-right: 1rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--th360-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 25, 35, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-card-image-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.product-card-image {
  aspect-ratio: 4/3;
  background: var(--th360-bg);
  object-fit: cover;
  width: 100%;
  display: block;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
}

.product-card-title a:hover {
  text-decoration: underline;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--th360-dark);
  line-height: 1.3;
}

.product-card-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--th360-text-muted);
  line-height: 1.5;
  flex: 1;
}

.product-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--th360-shop-orange);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--th360-shop-orange) 0%, var(--th360-shop-orange-light) 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(232, 93, 44, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 44, 0.4);
}

.btn-secondary {
  background: var(--th360-dark);
  color: var(--th360-on-dark);
}

.btn-secondary:hover {
  background: #0a141c;
  transform: translateY(-2px);
}

/* Produktdetail */
.product-detail {
  padding: 3rem 0 5rem;
}

.product-detail-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--th360-bg);
}

.product-detail-info h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--th360-dark);
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--th360-shop-orange);
  margin-bottom: 1rem;
}

.product-detail-desc {
  color: var(--th360-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Warenkorb */
.cart-page {
  padding: 3rem 0 5rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--th360-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.cart-table th,
.cart-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 25, 35, 0.06);
}

.cart-table th {
  background: var(--th360-bg);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--th360-text-muted);
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--th360-bg);
}

.cart-total {
  margin-top: 1.5rem;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--th360-dark);
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--th360-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.cart-empty p {
  margin: 0 0 1rem;
  color: var(--th360-text-muted);
}

/* Checkout */
.checkout-page {
  padding: 2rem 0 4rem;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--th360-text-muted);
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.checkout-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--th360-bg);
  color: var(--th360-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
}

.checkout-step.active .checkout-step-num {
  background: var(--th360-shop-orange);
  color: #fff;
}

.checkout-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--th360-dark);
  text-align: center;
}

.wrap-checkout.checkout-grid {
  display: block;
  max-width: none;
}

@media (min-width: 768px) {
  .wrap-checkout.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
  }
  .checkout-summary-card {
    position: sticky;
    top: 6rem;
  }
}

.checkout-main {
  min-width: 0;
}

.checkout-error {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-size: 0.95rem;
}

.checkout-fieldset {
  margin: 0 0 1.5rem;
  padding: 1.25rem 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 25, 35, 0.08);
}

.checkout-fieldset:last-of-type {
  border-bottom: 0;
}

.checkout-legend {
  font-size: 1rem;
  font-weight: 600;
  color: var(--th360-dark);
  margin-bottom: 0.75rem;
  padding: 0;
}

.checkout-row {
  display: grid;
  gap: 1rem;
}

.checkout-row--half {
  grid-template-columns: 1fr 1fr;
}

.checkout-row--third {
  grid-template-columns: 100px 1fr;
}

.checkout-field {
  margin-bottom: 1rem;
}

.checkout-row .checkout-field {
  margin-bottom: 0;
}

.checkout-field--fill {
  min-width: 0;
}

.checkout-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--th360-text);
}

.checkout-form .required {
  color: var(--th360-shop-orange);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(15, 25, 35, 0.12);
  border-radius: var(--radius-sm);
  background: var(--th360-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  outline: none;
  border-color: var(--th360-cyan);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

.checkout-form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.checkout-field--checkbox {
  margin-bottom: 0.75rem;
}

.checkout-field--checkbox label {
  display: inline;
  font-weight: 400;
  font-size: 0.9rem;
}

.checkout-field--checkbox a {
  color: var(--th360-cyan);
  text-decoration: underline;
}

.checkout-fieldset--checkboxes {
  padding-top: 0.5rem;
}

.checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

/* Summary-Karte (Sidebar) */
.checkout-summary-card {
  background: var(--th360-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 25, 35, 0.06);
}

.checkout-summary-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--th360-dark);
}

.checkout-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(15, 25, 35, 0.06);
}

.checkout-summary-item-name {
  flex: 1;
  min-width: 0;
  color: var(--th360-text);
}

.checkout-summary-item-price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--th360-dark);
}

.checkout-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(15, 25, 35, 0.1);
  font-size: 1.1rem;
}

.checkout-summary-total-row strong {
  font-size: 1.25rem;
  color: var(--th360-shop-orange);
}

.checkout-trust {
  margin: 1rem 0 0;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--th360-text-muted);
  line-height: 1.5;
  border-top: 1px solid rgba(15, 25, 35, 0.06);
}

.checkout-trust-icon {
  margin-right: 0.25rem;
}

.checkout-links {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.checkout-links a {
  color: var(--th360-cyan);
  text-decoration: none;
  margin-right: 1rem;
}

.checkout-links a:hover {
  text-decoration: underline;
}

/* Legacy (falls noch verwendet) */
.checkout-summary {
  background: var(--th360-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  height: fit-content;
}

.checkout-summary h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--th360-dark);
}

.checkout-summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--th360-shop-orange);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 25, 35, 0.08);
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  background: var(--th360-dark);
  color: var(--th360-on-dark);
  text-align: center;
  font-size: 0.9rem;
}

.footer-trust {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-trust-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--th360-on-dark);
  opacity: 0.95;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity var(--transition);
}

.footer-badge:hover {
  opacity: 1;
}

.footer-badge-stripe {
  color: rgba(255, 255, 255, 0.95);
}

.footer-stripe-icon {
  display: inline-flex;
  line-height: 0;
}

.footer-stripe-icon svg {
  width: 22px;
  height: 22px;
}

.footer-badge-ssl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.footer-ssl-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer-links p {
  margin: 0;
  opacity: 0.9;
}

.footer-links nav {
  display: flex;
  gap: 1.5rem;
}

.footer-links nav a {
  color: var(--th360-on-dark);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-links nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Hilfsklassen */
.mt-1 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }
