/* shop.cosic.eu – identisch mit cosic.eu Layout */

:root {
  --primary: #1a1a2e;
  --accent: #7c3aed;
  --accent-light: #ede9fe;
  --text: #2d2d2d;
  --text-light: #555b66;
  --bg: #faf8ff;
  --bg-alt: #f3f0ff;
  --border: #e2ddf5;
  --radius: 12px;
  --max-width: 1100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--primary); line-height: 1.2; }
h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-light); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
main { padding-bottom: 4rem; }
section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { margin-top: 0.8rem; font-size: 1.05rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

*:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ── Navigation (exakt cosic.eu) ── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(55, 33, 122, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}
.logo-img { height: 36px; width: auto; }
.shop-badge {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── Hero (cosic.eu Stil) ── */

.hero {
  padding: 7rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, #ebe5ff 100%);
}
.hero-logo {
  width: 60px;
  height: auto;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 0.5rem; }
.hero .subtitle {
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.initial {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3em;
}

/* ── Products (wie service-cards) ── */

.products { background: var(--bg-alt); padding-top: 7rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
.product-icon {
  width: 96px;
  height: 96px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.product-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.product-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.product-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.price-option { text-align: center; }
.price {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.price-label { font-size: 0.8rem; color: var(--text-light); }
.price-divider { width: 1px; height: 40px; background: var(--border); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-soon { background: #fef3c7; color: #92400e; }
.badge-dev { background: #e0e7ff; color: #3730a3; }

.product-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

/* ── Buttons (cosic.eu cta-btn Stil) ── */

.btn {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.btn-primary:disabled {
  background: #c4b5fd;
  cursor: not-allowed;
}
.btn-secondary {
  background: var(--accent-light);
  color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Trust Bar (wie usp-bar) ── */

.trust {
  padding: 1.5rem 0;
  padding_OLD: 4rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  text-align: center;
  padding: 0.5rem 1rem;
}
.trust-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.trust-item span:last-child {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Details Popup (exakt cosic.eu) ── */

.details-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 2rem;
}
.details-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.details-popup {
  background: var(--bg);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.details-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}
.details-close:hover { color: var(--text); }
.details-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}
.details-content .details-lead {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.details-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.details-content h4 {
  font-size: 0.95rem;
  margin: 1.5rem 0 0.8rem;
}
.details-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.details-content ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.details-content ul li:last-child { border-bottom: none; }
.details-content ul li strong { color: var(--text); }
.details-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.5rem;
  font-size: 0.85rem;
}
.details-content th, .details-content td {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}
.details-content th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--primary);
}
.details-status {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ── Footer (exakt cosic.eu) ── */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #2d1b69;
  color: rgba(255,255,255,0.7);
  padding: 1.2rem 0;
}
footer p { color: rgba(255,255,255,0.7); }
.footer-copyright {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}
.footer-logo { order: 0; }
.footer-logo-img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  border-radius: 8px;
  margin: -12px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-social { display: inline-flex; align-items: center; }
.footer-social svg { vertical-align: middle; transition: opacity 0.2s; opacity: 0.7; }
.footer-social:hover svg { opacity: 1; }

/* ── Legal Pages ── */
.legal-page { padding: 7rem 0 4rem; }
.legal-page h1 { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.legal-updated { color: var(--text-light); font-size: 0.85rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 2rem 0 0.5rem; }
.legal-page p, .legal-page li { color: var(--text); line-height: 1.7; margin-bottom: 0.5rem; }
.legal-page ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

/* ── Responsive ── */

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 7rem 0 3.5rem; }
  .hero .subtitle { white-space: normal; font-size: 0.8rem; letter-spacing: 1.5px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(55, 33, 122, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-links a { font-size: 1.05rem; padding: 0.3rem 0; }

  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .trust-items { grid-template-columns: 1fr; }


  footer .container {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.75rem; }
  .container { padding: 0 1rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero .subtitle { font-size: 0.7rem; letter-spacing: 1px; }
}

/* ── Product Logos ── */
.product-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

/* ── Cart Button ── */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.cart-btn:hover {
  background: rgba(255,255,255,0.15);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.has-items {
  display: flex;
}

/* ── Language Dropdown (identisch mit cosic.eu) ── */

.lang-dropdown {
  position: relative;
  margin-left: 1rem;
}
.lang-current {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
}
.lang-current:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}
.lang-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }
.lang-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #37217a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.3rem;
  min-width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 200;
}
.lang-dropdown.open .lang-options {
  display: flex;
  flex-direction: column;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.15s;
  cursor: pointer;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.flag { font-size: 1rem; line-height: 1; }
.lang-label { font-size: 0.75rem; }

.details-product-img { display: block; max-width: 240px; margin: 0 auto 1.2rem; border-radius: 16px; }

/* ── Release Notes (NEATit changelog) ── */
.changelog-loading, .muted {
  text-align: center;
  color: #888;
  padding: 1.5rem;
  font-size: 0.9rem;
}
.release {
  background: #fff;
  border: 1px solid var(--border, #e2ddf5);
  border-radius: var(--radius, 12px);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.release-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border, #e2ddf5);
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.release-version {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent, #7c3aed);
}
.release-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
.release-date {
  margin-left: auto;
  font-size: 0.8rem;
  color: #888;
}
.release h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0.8rem 0 0.3rem;
}
.release ul { list-style: none; padding: 0; margin: 0; }
.release li {
  font-size: 0.88rem;
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
  color: #333;
  line-height: 1.45;
}
.release li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent, #7c3aed);
}

/* ── Multi-row buy buttons with price + label ── */
.product-actions-stack {
  flex-direction: column;
  gap: 0.6rem;
}
.product-actions-stack .btn {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  text-align: left;
  text-decoration: none;
}
.product-actions-stack .btn .btn-price {
  font-weight: 800;
  font-size: 1.05rem;
}
.product-actions-stack .btn .btn-label {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.85;
}
.product-actions-stack .btn-secondary {
  justify-content: center;
}
.btn-trial {
  background: transparent;
  color: var(--accent, #7c3aed);
  border: 1px dashed var(--accent, #7c3aed);
}
.btn-trial:hover {
  background: var(--accent-light, #f3f0ff);
}

/* Product pack-shot rendered directly above the buy buttons on
   the NEATIT card. 256x256 source, displayed at 160px max. */
.product-pack {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.8rem;
}
.product-pack img {
  max-width: 160px;
  height: auto;
}

/* VAT disclaimer below price sections */
.price-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
}
.price-note-center { text-align: center; }
.prelaunch-note {
  background: #e8f5e9;
  border-left: 3px solid #43a047;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  color: #1b5e20;
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 1rem 0;
}
.prelaunch-note strong { color: #0d3c12; }
.win-note {
  margin-top: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  border-radius: 4px;
  color: #713f12;
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.5;
}
.win-note strong { color: #92400e; }
.win-note em { font-style: normal; font-weight: 600; }

/* ── Product subpage layout (/product/neatit/ etc.) ── */
.product-hero {
  background: linear-gradient(180deg, var(--bg-alt, #f3f0ff) 0%, var(--bg, #faf8ff) 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.product-hero-img img { max-width: 100%; height: auto; }
.product-hero-text .eyebrow {
  font-size: 0.85rem;
  color: var(--accent, #7c3aed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}
.product-hero-text h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.product-hero-text .lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.8rem;
  max-width: 52ch;
}
.product-hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-section { padding: 3rem 0; }
.product-section h2 { font-size: 1.6rem; margin-bottom: 1.8rem; text-align: center; }
.product-section-alt { background: #f8f6ff; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border, #e2ddf5);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
}
.benefit-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: #555; line-height: 1.55; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step-card { text-align: center; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent, #7c3aed);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: #555; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border, #e2ddf5);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card-featured {
  border-color: var(--accent, #7c3aed);
  box-shadow: 0 0 0 2px var(--accent, #7c3aed);
}
.pricing-head h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pricing-price { font-size: 1.8rem; font-weight: 800; color: var(--accent, #7c3aed); }
.pricing-unit { font-size: 0.8rem; font-weight: 400; color: #888; margin-left: 0.3rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1rem; flex: 1; }
.pricing-features li {
  font-size: 0.88rem;
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  color: #333;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent, #7c3aed);
  font-weight: 700;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--border, #e2ddf5);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  margin-bottom: 0.8rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-list details p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
}

.product-cta { text-align: center; }
.product-cta a { color: var(--accent, #7c3aed); text-decoration: none; font-weight: 600; }

@media (max-width: 720px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .product-hero-text h1 { font-size: 1.7rem; }
}

/* Clickable product title (leads to /product/<slug>/) */
.product-title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.product-title-link:hover {
  border-bottom-color: var(--accent, #7c3aed);
}
a.product-icon { display: inline-block; }
a.product-icon:hover img {
  transform: scale(1.03);
  transition: transform 0.2s;
}
