*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f5f7;
  color: #333;
}

a { text-decoration: none; color: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: #d5342a;
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}

/* ── HEADER ── */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 96px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.logo img:hover {
  opacity: 0.85;
}

.search-wrap {
  flex: 1;
  max-width: 520px;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.search-wrap input {
  flex: 1;
  padding: 9px 14px;
  background: #f9f9f9;
  border: none;
  color: #333;
  font-size: 0.9rem;
  outline: none;
}

.search-wrap button {
  background: #d5342a;
  border: none;
  padding: 9px 16px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}

.header-tagline {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.header-tagline span {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

.header-tagline strong {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: #1a1a2e;
  font-weight: 700;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header-icons a {
  color: #444;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.header-icons a:hover { color: #d5342a; }

.icon-svg { width: 22px; height: 22px; fill: currentColor; }

.account-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}

.account-label-top {
  font-size: 0.65rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-label-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-link:hover .account-label-name { color: #d5342a; }

.cart-badge {
  background: #d5342a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px; right: -8px;
}

.cart-icon-wrap { position: relative; }

/* Warenkorb aktiv */

/* ── NAV ── */
nav {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 3px solid #d5342a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  display: block;
  padding: 13px 15px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  background: #d5342a;
  color: #fff;
}

/* ── HERO BANNER ── */
.hero {
  background: linear-gradient(135deg, #fceeed 0%, #fff 50%, #fbeeed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(213,52,42,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(213,52,42,0.07) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-content h1 {
  font-family: 'Lora', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero-content h1 span { color: #d5342a; }

.hero-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── PAGE HERO (smaller, for inner pages) ── */
.page-hero {
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #d5342a;
}

.page-hero::before {
  content: none;
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(213,52,42,0.10) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-content h1 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.page-hero-content h1 span { color: #d5342a; }

.page-hero-content p {
  font-size: 0.95rem;
  color: #666;
}

.breadcrumb {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 10px;
}

.breadcrumb a { color: #d5342a; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: #d5342a;
  color: #fff;
  padding: 13px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #b52c23; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 2px solid #d5342a;
  color: #d5342a;
  padding: 11px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-left: 12px;
  transition: all 0.2s;
  background: none;
  cursor: pointer;
}

.btn-outline:hover { background: #d5342a; color: #fff; }

/* ── NOTICE BANNER ── */
.notice-banner {
  background: #fceeed;
  border: 1px solid #f0c3bf;
  border-left: 4px solid #d5342a;
  margin: 24px auto;
  max-width: 960px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: #a33320;
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}

.notice-banner strong { color: #a33320; }

/* ── SECTION GENERIC ── */
section { padding: 60px 40px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.divider {
  width: 60px; height: 3px;
  background: #d5342a;
  margin: 12px auto 36px;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #d5342a99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(145deg, #f0f2f8, #e8eaf0);
}

.product-info { padding: 14px; }

.product-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #d5342a;
}

.product-price-old {
  font-size: 0.78rem;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 6px;
}

.badge-new {
  display: inline-block;
  background: #d5342a;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── CATEGORY CARDS ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.cat-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cat-card:hover { transform: scale(1.03); }

.cat-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}

.cat-label {
  position: relative; z-index: 1;
  padding: 16px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ── SECTION VARIANTS ── */
.section-dark  { background: #fff; }
.section-mid   { background: #f4f5f7; }
.section-light { background: #fafafa; }

/* ── IDEAS GRID ── */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.idea-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.idea-card:hover {
  border-color: #d5342a;
  box-shadow: 0 4px 20px rgba(213,52,42,0.14);
}

.idea-icon { font-size: 3rem; margin-bottom: 14px; }

.idea-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.idea-card h3 {
  font-family: 'Lora', serif;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.idea-card p { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* ── WELCOME ── */
.welcome-section {
  background: linear-gradient(135deg, #fbeeed 0%, #fff 100%);
  border-top: 1px solid #f3d6d3;
  border-bottom: 1px solid #f3d6d3;
}

.welcome-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.welcome-inner h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.welcome-inner p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-highlight {
  background: #fceeed;
  border: 1px solid #d5342a55;
  border-radius: 8px;
  padding: 20px 28px;
  margin-top: 28px;
  font-size: 0.92rem;
  color: #333;
  line-height: 1.7;
}

.contact-highlight a { color: #d5342a; font-weight: 600; }

/* ── SERVICE CHIPS ── */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.service-chip {
  background: #fff;
  border: 1px solid #e0e4ee;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.82rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.service-chip:hover { background: #fceeed; border-color: #d5342a; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: #f0f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid #e0e4ee;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* Ohne das laeuft das 400px breite Bild aus der ~200px-Kachel und wird beschnitten.
   contain statt cover, damit das ganze Motiv sichtbar bleibt. */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-item:hover {
  transform: scale(1.04);
  border-color: #d5342a;
}

.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(213,52,42,0.0);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.gallery-item:hover .overlay {
  background: rgba(213,52,42,0.10);
}

/* ── KONTO TABS ── */
.konto-tabbar {
  background: #fff;
  border-bottom: 1px solid #e8eaf0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.konto-tabbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.konto-tab {
  padding: 16px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.konto-tab:hover { color: #d5342a; background: #fdf4f3; }

.konto-tab-active {
  color: #d5342a;
  border-bottom-color: #d5342a;
}

.konto-tab-form { margin: 0 0 0 auto; }

.konto-tab-button {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

/* ── USP BAR ── */
.usp-bar {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 24px 40px;
}

.usp-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  align-items: center;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #555;
}

.usp-item span:first-child { font-size: 1.6rem; }
.usp-item strong { display: block; color: #222; font-size: 0.9rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 11px 14px;
  color: #333;
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d5342a;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: #fff;
  border: 1px solid #e0e4ee;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
  font-family: 'Lora', serif;
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.contact-row .ci { font-size: 1.4rem; flex-shrink: 0; }
.contact-row a { color: #d5342a; }

/* ── OPENING HOURS TABLE ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr { border-bottom: 1px solid #e8eaf0; }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 12px 16px; color: #555; }
.hours-table td:first-child { font-weight: 500; color: #333; width: 160px; }
.hours-table tr.closed td { color: #bbb; }
.hours-table tr.today td { background: #fceeed; }
.hours-table tr.today td:first-child { color: #d5342a; }

.hours-card {
  background: #fff;
  border: 1px solid #e0e4ee;
  border-radius: 10px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ── INFO / LEGAL TEXT ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

.legal-content h2 {
  font-family: 'Lora', serif;
  color: #1a1a2e;
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p { margin-bottom: 14px; }

.legal-content ul {
  margin: 10px 0 14px 20px;
}

.legal-content ul li { margin-bottom: 6px; }

.legal-content a { color: #d5342a; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.legal-content table th,
.legal-content table td {
  border: 1px solid #e0e4ee;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
}

.legal-content table th {
  background: #f0f5fa;
  color: #333;
  font-weight: 600;
}

/* ── TECHNIQUE CARDS (Stick & Druck) ── */
.technique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.technique-card {
  background: #fff;
  border: 1px solid #e0e4ee;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.technique-card h3 {
  font-family: 'Lora', serif;
  color: #1a1a2e;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.technique-card .tc-icon { font-size: 2.5rem; margin-bottom: 16px; }

.technique-card .tc-sub {
  font-size: 0.8rem;
  color: #d5342a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.technique-card p { font-size: 0.88rem; color: #666; line-height: 1.7; margin-bottom: 16px; }

.tc-list { list-style: none; }
.tc-list li {
  font-size: 0.85rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #e8eaf080;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-list li::before { content: '✓'; color: #d5342a; font-weight: 700; }

/* ── VERSAND TABLE ── */
.versand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.versand-grid-3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.versand-card {
  background: #fff;
  border: 1px solid #e0e4ee;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.versand-card h3 {
  font-family: 'Lora', serif;
  color: #1a1a2e;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.versand-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #000;
  padding: 40px 40px 20px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a40;
}

.footer-logo { font-family: 'Lora', serif; font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 0.82rem; color: #aaa; line-height: 1.7; }

.footer-col h4 {
  color: #d5342a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.82rem; color: #aaa; transition: color 0.2s; }
.footer-col ul li a:hover { color: #d5342a; }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #2a2a40;
  padding-top: 20px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { font-size: 0.78rem; color: #888; transition: color 0.2s; }
.footer-links a:hover { color: #d5342a; }

.payment-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pay-badge {
  background: #2a2a40;
  border: 1px solid #3a3a55;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 600;
}

.copyright {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  padding-top: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SLIDER DOTS ── */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active { background: #d5342a; }

/* ── SVG-ICONS (ersetzen die frueheren Emojis) ── */
.svg-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  stroke: currentColor;
  fill: none;
}

.icon-xs { width: 0.95rem; height: 0.95rem; flex-shrink: 0; }

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 22px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

a.topbar-item:hover { text-decoration: underline; }

.usp-item .svg-icon { color: #d5342a; }
.idea-icon .svg-icon { width: 2.1rem; height: 2.1rem; margin: 0 auto; color: #d5342a; }
.tc-icon .svg-icon { width: 2.4rem; height: 2.4rem; color: #d5342a; }

/* ── PRODUKTBILDER ── */
.product-img img,
.product-img-el {
  width: 95%;
  height: 95%;
  object-fit: contain;
  margin: auto;
  display: block;
}

.product-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6bccd;
}

.product-img-empty svg { width: 40%; height: 40%; fill: none; stroke: currentColor; }

.product-variants {
  font-size: 0.74rem;
  color: #8a8a8a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.grid-empty {
  grid-column: 1 / -1;
  color: #8a8a8a;
  line-height: 1.7;
  max-width: 640px;
}

.grid-empty a { color: #d5342a; }

.link-accent { color: #d5342a; font-weight: 600; }

/* ── PRODUKTDETAIL ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.product-detail-image {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.product-detail-image img { max-width: 100%; max-height: 420px; object-fit: contain; }

.product-detail-info {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  padding: 24px;
}

.product-sku { font-size: 0.85rem; color: #888; margin-bottom: 4px; }
.product-price-lg { font-size: 1.6rem; margin-bottom: 16px; }
.product-description { margin-bottom: 24px; line-height: 1.7; }

.product-hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.82rem;
  color: #777;
}

.product-hint a { color: #d5342a; }

.add-to-cart-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.quantity-group { margin-bottom: 0; max-width: 110px; }

.notice-warn { border-left-color: #c0392b; color: #c0392b; }

/* ── WARENKORB ── */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
}

.cart-table thead tr { border-bottom: 2px solid #d5342a; }
.cart-table thead td { font-weight: 700; color: #1a1a2e; }
.cart-table td { padding: 12px 10px; border-bottom: 1px solid #eee; vertical-align: middle; }
.cart-table .num { text-align: right; white-space: nowrap; }

.cart-product { display: flex; align-items: center; gap: 12px; }

.cart-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #f4f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-product-name { color: #1a1a2e; font-weight: 500; text-decoration: none; }
.cart-product-name:hover { color: #d5342a; }

.cart-options { font-size: 0.78rem; color: #888; margin-top: 3px; line-height: 1.5; }

.qty-form { display: flex; gap: 6px; align-items: center; }
.qty-form input { width: 66px; padding: 6px 8px; }

.btn-link {
  background: none;
  border: none;
  color: #d5342a;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0;
  text-decoration: underline;
}

.btn-sm { padding: 6px 14px; font-size: 0.78rem; margin-left: 0; }

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-total { text-align: right; margin-left: auto; }
.cart-total-hint { font-size: 0.78rem; color: #888; margin-bottom: 10px; }

/* ── ADMIN ── */
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-toolbar-group { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-toolbar .btn-outline { margin-left: 0; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; margin-bottom: 28px; }
.admin-table thead tr { border-bottom: 2px solid #d5342a; }
.admin-table thead td { font-weight: 700; color: #1a1a2e; }
.admin-table td { padding: 10px; border-bottom: 1px solid #eee; vertical-align: middle; }
.admin-table input, .admin-table select { padding: 6px 8px; font-size: 0.85rem; }

.admin-row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-item-options { font-size: 0.78rem; color: #d5342a; font-weight: 600; margin-top: 3px; }

.input-narrow { max-width: 90px; }

.admin-image-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  padding: 10px;
  background: #f4f5f9;
  border-radius: 6px;
}

.admin-image-preview img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.85rem;
}

.checkbox-label input { width: auto; }

.field-hint {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 5px;
  line-height: 1.6;
}

.form-section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: #1a1a2e;
  margin: 32px 0 6px;
  padding-top: 20px;
  border-top: 1px solid #e4e6ee;
}

.inline-form {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #e8eaf0;
}

.inline-form .form-group { margin-bottom: 0; }

/* Optisch abgesetzter Bereich fuer unwiderrufliche Aktionen. */
.danger-zone-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: #c0392b;
  margin: 36px 0 10px;
  padding-top: 22px;
  border-top: 1px solid #e4e6ee;
}

.danger-zone {
  border: 1px solid #e6b3ad;
  background: #fdf3f2;
  border-radius: 8px;
  padding: 18px;
}

.danger-zone p {
  font-size: 0.85rem;
  color: #7a3630;
  line-height: 1.7;
  margin-bottom: 14px;
}

.btn-danger {
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-danger:hover { background: #a33326; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ideas-grid { grid-template-columns: 1fr 1fr; }
  .technique-grid { grid-template-columns: 1fr; }
  .versand-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  header { padding: 14px 16px; }
  section { padding: 40px 16px; }
  nav a { padding: 11px 10px; font-size: 0.72rem; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 1.8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .ideas-grid { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .topbar { font-size: 0.72rem; gap: 4px 14px; }

  /* Warenkorbtabelle als Karten stapeln - sonst quetscht sie sich am Handy. */
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { border-bottom: 2px solid #eee; padding: 10px 0; }
  .cart-table td { border: none; padding: 5px 0; }
  .cart-table .num { text-align: left; }
  .cart-footer { flex-direction: column; align-items: stretch; }
  .cart-total { text-align: left; margin-left: 0; }

  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}
