﻿/* SOMNO-REST MANUFAKTUR DEUTSCHLAND - Design System */
:root {
  --primary-shield: #312E81;
  --primary-amber: #06B6D4;
  --accent-teal: #312E81;
  --accent-green: #10B981;
  --bg-body: #EEF2FF;
  --bg-card: #FFFFFF;
  --bg-dark: #1E1B4B;
  --text-dark: #1E1B4B;
  --text-muted: #475569;
  --text-dim: #94A3B8;
  --border: #E2E8F0;
  --border-shield: #C7D2FE;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06); --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: var(--text-dark); line-height: 1.6; }
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.top-bar { background: var(--bg-dark); color: #FFFFFF; padding: 0.6rem 0; font-size: 0.85rem; font-weight: 600; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.header { background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.1); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: #FFFFFF; }
.logo-badge { width: 42px; height: 42px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); border: 1px solid var(--primary-shield); display: flex; align-items: center; justify-content: center; color: var(--primary-shield); font-size: 1.3rem; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link { color: #CBD5E1; font-size: 0.95rem; font-weight: 600; }
.nav-link:hover { color: var(--primary-shield); }
.cart-btn { background: rgba(255,255,255,0.1); border: 1px solid var(--primary-shield); color: #FFFFFF; padding: 0.6rem 1.2rem; border-radius: var(--radius-full); font-weight: 700; display: flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.cart-badge { background: var(--primary-amber); color: #FFFFFF; width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.85rem 1.8rem; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: var(--primary-shield); color: #FFFFFF; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-outline { background: #FFFFFF; border: 1px solid var(--border); color: var(--text-dark); }
.shield-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.badge-pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.9rem; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.badge-shield { background: var(--bgColor); border: 1px solid var(--border-shield); color: var(--primary-shield); }
.badge-green { background: #D1FAE5; border: 1px solid #6EE7B7; color: #047857; }
.footer { background: var(--bg-dark); color: #94A3B8; padding: 5rem 0 2rem; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.toast-container { position: fixed; bottom: 30px; left: 30px; z-index: 99999; }
.toast { background: var(--bg-dark); color: #FFFFFF; border: 1px solid var(--primary-shield); padding: 1rem 1.5rem; border-radius: var(--radius-md); display: flex; align-items: center; gap: 0.8rem; margin-top: 0.5rem; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
