/**
 * Balance2Life - Optimized Stylesheet
 * Version: 2.0 (POC)
 * Description: Centralized, maintainable CSS with improved organization
 */

/* ============================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  /* Colors */
  --bg: #fbfbff;
  --surface: #ffffff;
  --surface-2: #f6f7ff;
  --text: #1f2430;
  --muted: #5a6477;
  --accent: #9bbcff;
  --accent-2: #b8f2e6;
  --accent-3: #ffd6e8;
  --border: rgba(31, 36, 48, 0.10);
  --line: rgba(31, 36, 48, 0.11);
  
  /* Shadows */
  --shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
  --shadow-sm: 0 8px 18px rgba(31, 36, 48, 0.04);
  --shadow-lg: 0 18px 42px rgba(31, 36, 48, 0.08);
  
  /* Border Radius */
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-round: 999px;
  
  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 1060px;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 24px;
  --space-xl: 42px;
  
  /* Typography */
  --font-system: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#kieferbalance,
#preise,
#kontakt,
#weitere-angebote {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-system);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, var(--accent-2), transparent 55%),
    radial-gradient(1000px 500px at 95% 10%, var(--accent-3), transparent 50%),
    radial-gradient(900px 500px at 60% 105%, var(--accent), transparent 50%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

/* ============================================
   3. LAYOUT COMPONENTS
   ============================================ */

/* Main Container */
.wrap {
  width: min(100% - 28px, var(--maxw));
  max-width: min(1240px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

/* Page Container (for legal pages) */
.page {
  width: min(100% - 32px, var(--maxw));
  margin: 0 auto;
  padding: 24px 0 56px;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
header,
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 12px;
  z-index: 10;
}

.site-header {
  gap: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  top: 14px;
  backdrop-filter: blur(10px);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0.2px;
  min-width: 210px;
  text-decoration: none;
}

.site-header .brand {
  gap: 13px;
  font-weight: 800;
  letter-spacing: 0.1px;
  min-width: max-content;
}

.logo,
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.logo img,
.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.site-header .brand small {
  font-weight: 700;
}

/* Navigation */
nav,
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.main-nav {
  gap: 7px;
  font-size: 15px;
}

nav a,
.main-nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: var(--radius-round);
}

.main-nav a {
  padding: 8px 11px;
}

nav a:hover,
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px var(--border);
}

.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, rgba(155, 188, 255, 0.35), rgba(184, 242, 230, 0.35));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Intro Panel (for about page) */
.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   6. TYPOGRAPHY
   ============================================ */
h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.9px;
}

.intro-panel h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -1.4px;
}

.practice-card h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.03;
  letter-spacing: -1.1px;
}

.card h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.about-card h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.card h2 {
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.25px;
}
.card > h2:first-child {
  margin-top: 5px;
}

.mini-offers-head h2 {
  margin: 5px;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card > h3:first-child {
  margin-top: 5px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.intro-panel .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  background: #fff;
  font-weight: 750;
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 68ch;
}

.intro-text {
  margin-top: 18px;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.disclaimer {
  color: var(--muted);
  font-size: 13px;
}

.muted {
  color: var(--muted);
}

/* ============================================
   7. BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */
.btn,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.1px;
  box-shadow: 0 10px 22px rgba(31, 36, 48, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 15px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.06);
}

.btn-primary,
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(31, 36, 48, 0.10);
}

.btn:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31, 36, 48, 0.09);
}

.btn:active,
.button:active {
  transform: translateY(0);
}

.cta,
.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}

.action-row {
  gap: 13px;
  margin-top: 28px;
}

/* Tooltip */
.booking-wrap {
  position: relative;
}

.tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: 260px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(31, 36, 48, 0.94);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 12px 22px rgba(31, 36, 48, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  text-align: center;
  z-index: 20;
}

.booking-wrap:hover .tooltip,
.booking-wrap:focus-within .tooltip,
.tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   8. CARDS & CONTAINERS
   ============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.06);
}

.about-card,
.practice-card {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(31, 36, 48, 0.06);
}

.practice-card {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

body.legal-page .card {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.mini-offers-card {
  background: rgba(255, 255, 255, 0.84);
}

.product-teaser {
  background: rgba(255, 255, 255, 0.86);
}

/* ============================================
   9. GRID LAYOUTS
   ============================================ */
main {
  margin-top: 18px;
}

body.legal-page main {
  margin-top: 18px;
  display: block;
}

.main-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wide {
  grid-column: 1 / -1;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

/* ============================================
   10. LISTS
   ============================================ */
.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
}

.list strong {
  display: block;
}

.list span {
  color: var(--muted);
  font-size: 14px;
}

/* ============================================
   11. TABLES
   ============================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.price-table th,
.price-table td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.price-table thead th {
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 750;
}

.price-table tbody tr:nth-child(odd) {
  background: rgba(246, 247, 255, 0.65);
}

.price {
  text-align: right !important;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 800;
}

/* ============================================
   12. OFFERS & PRODUCTS
   ============================================ */
.mini-offers-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mini-offers-head h2 {
  margin-bottom: 0;
  font-size: 19px;
}

.mini-offers-head p {
  color: var(--muted);
  font-size: 14px;
  max-width: 58ch;
}

.mini-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(246, 247, 255, 0.68);
  border: 1px solid var(--border);
}

.mini-offer strong {
  display: block;
}

.mini-offer span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.mini-offer-price {
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.side-offers {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.side-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border-radius: var(--radius-sm);
  background: rgba(246, 247, 255, 0.65);
  border: 1px solid var(--border);
}

.side-offer strong {
  display: block;
}

.side-offer span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.side-offer .side-price {
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.product-teaser-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(246, 247, 255, 0.68);
  border: 1px solid var(--border);
}

.product-teaser-box strong {
  display: block;
  font-size: 16px;
}

.product-teaser-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(246, 247, 255, 0.65);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.product-card strong {
  display: block;
  font-size: 16px;
}

.product-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.shop-callout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 3vw, 24px);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.06);
}

/* ============================================
   13. CONTACT & INFO
   ============================================ */
.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(246, 247, 255, 0.65);
  border: 1px solid var(--border);
}

.icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  flex: 0 0 auto;
  font-size: 14px;
}

.info-box {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(246, 247, 255, 0.65);
}

body.legal-page .info-box {
  margin: 12px 0 0;
  padding: 18px;
  background: rgba(246, 247, 255, 0.70);
}

/* ============================================
   14. IMAGES & MEDIA
   ============================================ */
.photo-frame {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 36, 48, 0.09);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  border: 0;
  background: #fff;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.practice-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.practice-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}


.practice-section {
  margin: 0;
}

.practice-section h2 {
  margin: 0 0 14px;
}

.practice-section + .practice-section {
  margin-top: 30px;
}

.map-box {
  margin-top: 22px;
}

.image-box {
  margin: 0;
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 36, 48, 0.07);
  text-align: center;
  overflow: visible;
}

.image-box img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 760px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
}

/* ============================================
   15. FOOTER
   ============================================ */
footer {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header ~ main ~ footer {
  box-shadow: var(--shadow-sm);
}

body.legal-page footer {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
}

footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   16. UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   17. PAGE-SPECIFIC STYLES
   ============================================ */

/* Legal Pages */
body.legal-page {
  min-height: 100vh;
}

body.legal-page .wrap {
  width: min(100% - 28px, 860px);
}

body.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.7px;
}

body.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 20px;
  letter-spacing: -0.2px;
}

body.legal-page h2:first-of-type {
  margin-top: 0;
}

body.legal-page p {
  margin: 0 0 12px;
  font-size: 17px;
}

.about-text {
  display: grid;
  gap: 16px;
  color: #2d3445;
  font-size: 17px;
  line-height: 1.7;
}

.about-text p {
  margin: 0;
}

/* ============================================
   18. RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max-width: 960px) */
@media (max-width: 960px) {
  header,
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .site-header {
    position: static;
  }
  
  nav,
  .main-nav {
    justify-content: flex-start;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-panel {
    grid-template-columns: 1fr;
  }
  
  .photo-frame {
    max-width: 460px;
  }
  
  .main-grid {
    grid-template-columns: 1fr;
  }
  
  .wide {
    grid-column: auto;
  }
  
  .practice-head {
    display: block;
  }
  
  .practice-note {
    margin-top: 8px;
    text-align: left;
    white-space: normal;
  }
}

/* Large Tablet (max-width: 860px) */
@media (max-width: 860px) {
  header {
    position: static;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .product-teaser-box,
  .shop-callout {
    grid-template-columns: 1fr;
  }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
  body.legal-page .wrap {
    width: min(100% - 24px, var(--maxw));
    padding-top: 12px;
  }
  
  body.legal-page .card {
    padding: 24px 18px;
  }
  
  body.legal-page p {
    font-size: 16px;
  }
}

/* Small Mobile (max-width: 560px) */
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 20px, var(--maxw));
    max-width: none;
    padding-top: 10px;
  }
  
  .page {
    width: min(100% - 20px, var(--maxw));
    padding-top: 10px;
  }
  
  .site-header,
  .intro-panel,
  .about-card,
  .practice-card {
    border-radius: 18px;
  }
  
  .hero {
    padding: 22px 16px;
  }
  
  .intro-panel {
    padding: 24px 18px;
  }
  
  .card {
    padding: 16px;
  }
  
  .practice-card {
    padding: 20px 14px;
  }
  
  .photo-frame {
    padding: 10px;
  }
  
  .image-box {
    padding: 8px;
    border-radius: 18px;
  }
  
  .cta,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }
  
  .btn,
  .button {
    width: 100%;
  }
  
  .two-col {
    grid-template-columns: 1fr;
  }
  
  .mini-offers-grid {
    grid-template-columns: 1fr;
  }
  
  .mini-offer {
    grid-template-columns: 1fr;
  }
  
  .mini-offer-price {
    white-space: normal;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .price-table th,
  .price-table td {
    padding: 10px 9px;
    font-size: 13px;
  }
  
  .price {
    white-space: normal;
  }
  
  .side-offer {
    grid-template-columns: 1fr;
  }
  
  .side-offer .side-price {
    white-space: normal;
  }
  
  footer {
    display: block;
  }
  
  footer div + div {
    margin-top: 8px;
  }
}

/* ============================================
   19. PRINT STYLES
   ============================================ */
@media print {
  header,
  .site-header,
  nav,
  .main-nav,
  footer,
  .cta,
  .action-row {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .card,
  .hero {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Made with Bob */
