/* ============================================
   OTTO WIED – Hauptstylesheet
   ============================================ */

:root {
  --blue:       #1a3a8f;
  --blue-dark:  #122a6e;
  --blue-light: #e8edf8;
  --yellow:     #ffd166;
  --yellow-dark:#e8a020;
  --white:      #ffffff;
  --gray-bg:    #f5f6f9;
  --text:       #111111;
  --text-muted: #555555;
  --border:     #dde2f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- UTILS ---- */
.ow-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.ow-section { padding: 70px 0; }
.ow-bg-gray { background: var(--gray-bg); }
.ow-bg-blue { background: var(--blue); }
.ow-section-head { margin-bottom: 40px; }
.ow-section-head h2 { font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ow-section-sub { font-size: 15px; color: var(--text-muted); }
.ow-white h2 { color: #fff; }
.ow-dim { color: rgba(255,255,255,0.65) !important; }

/* ---- LABEL ---- */
.ow-label {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 6px;
}
.ow-label-dim { color: rgba(255,255,255,0.55); }

/* ---- BUTTONS ---- */
.ow-btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.ow-btn-yellow:hover { background: var(--yellow-dark); color: #fff; }

.ow-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.ow-btn-outline:hover { background: rgba(255,255,255,0.1); }

.ow-btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.ow-btn-primary:hover { background: var(--yellow-dark); color: #fff; }

/* ---- HEADER / NAV ---- */
.ow-header { position: sticky; top: 0; z-index: 100; }
.ow-nav {
  background: #fff;
  border-bottom: 3px solid var(--blue);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.ow-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}
.ow-logo-text span { display: block; font-size: 11px; font-weight: 400; color: #666; }
.ow-nav .custom-logo { height: 50px; width: auto; }

.ow-nav-links { display: flex; gap: 28px; list-style: none; }
.ow-nav-links a { color: var(--blue); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.ow-nav-links a:hover { color: var(--yellow-dark); }

.ow-nav-menu { display: flex; align-items: center; gap: 24px; }
.ow-nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.ow-nav-cta:hover { background: var(--blue-dark); }

.ow-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ow-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }

/* ---- HERO ---- */
.ow-hero {
  background: var(--blue);
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 100%;
}
.ow-hero-text { flex: 1 1 440px; max-width: 520px; }
.ow-hero-eyebrow {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.ow-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}
.ow-hero h1 span { color: var(--yellow); }
.ow-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 30px;
}
.ow-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ow-hero-chips { flex: 0 0 230px; display: flex; flex-direction: column; gap: 10px; }
.ow-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  padding: 11px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ow-chip:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--yellow);
  color: #fff;
}
}
.ow-chip-icon { color: var(--yellow); font-size: 16px; }

/* ---- USP BAR ---- */
.ow-usp-bar {
  background: var(--blue-dark);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ow-usp-bar span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }

/* ---- GRIDS ---- */
.ow-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ow-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---- PRODUCT CARDS ---- */
.ow-prod-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.ow-prod-card:hover { box-shadow: 0 4px 20px rgba(26,58,143,0.1); }
.ow-prod-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ow-prod-icon.blue { background: var(--blue-light); }
.ow-prod-icon.warm { background: #fdf4e3; }
.ow-prod-icon.green { background: #e6f5ef; }
.ow-prod-body { padding: 22px; }
.ow-prod-body h3 { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.ow-prod-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.ow-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.ow-tag {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 3px 9px;
  border-radius: 3px;
  font-weight: 600;
}
.ow-prod-link { font-size: 13px; color: var(--blue); font-weight: 700; transition: color 0.2s; }
.ow-prod-link:hover { color: var(--yellow-dark); }

/* ---- INDUSTRY CARDS ---- */
.ow-ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ow-ind-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,58,143,0.12);
}
.ow-ind-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blue-light);
}
.ow-ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.ow-ind-card:hover .ow-ind-img img { transform: scale(1.05); }
.ow-ind-body { padding: 16px 14px 20px; }
.ow-ind-icon { display: flex; justify-content: center; margin-bottom: 12px; }
.ow-ind-name { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 5px; }
.ow-ind-note { font-size: 12px; color: #777; line-height: 1.55; }
.ow-ind-grid { row-gap: 22px; }

/* ---- STRENGTH CARDS ---- */
.ow-str-card {
  background: var(--blue-light);
  border-radius: 8px;
  padding: 26px;
  border-bottom: 3px solid var(--blue);
}
.ow-str-num { font-size: 38px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.ow-str-label { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ow-str-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ---- CONTACT SECTION ---- */
.ow-kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 50px;
  align-items: start;
}
.ow-kontakt-info { display: flex; flex-direction: column; gap: 28px; }
.ow-kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.75);
}
.ow-kontakt-item svg { flex-shrink: 0; margin-top: 2px; }
.ow-kontakt-item strong { display: block; color: #fff; font-size: 13px; margin-bottom: 3px; }
.ow-kontakt-item a, .ow-kontakt-item span { font-size: 15px; color: rgba(255,255,255,0.75); }
.ow-kontakt-item a:hover { color: var(--yellow); }

/* ---- FORM ---- */
.ow-form { display: flex; flex-direction: column; gap: 16px; }
.ow-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ow-form-group { display: flex; flex-direction: column; gap: 6px; }
.ow-form-group label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.ow-form-group input,
.ow-form-group select,
.ow-form-group textarea {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.ow-form-group input::placeholder,
.ow-form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.ow-form-group input:focus,
.ow-form-group select:focus,
.ow-form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.ow-form-group select option { background: var(--blue); }
.ow-form-success {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--yellow);
  border-radius: 6px;
  padding: 20px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

/* ---- FOOTER ---- */
.ow-footer { background: #0e1e52; padding: 55px 40px 30px; }
.ow-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1140px;
  margin: 0 auto 40px;
}
.ow-footer-logo { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.ow-footer-logo span { color: var(--yellow); }
.ow-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; }
.ow-footer-brand .custom-logo { height: 44px; width: auto; background: #fff; padding: 6px 10px; border-radius: 6px; margin-bottom: 12px; }
.ow-footer-col h4 {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 700;
}
.ow-footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 9px; transition: color 0.2s; }
.ow-footer-col a:hover { color: var(--yellow); }
.ow-footer-bottom {
  background: #091540;
  margin: 0 -40px -30px;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ow-footer-bottom span, .ow-footer-bottom a { font-size: 11px; color: rgba(255,255,255,0.25); }
.ow-footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ow-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ow-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ow-hero { flex-direction: column; padding: 50px 24px; gap: 30px; }
  .ow-hero h1 { font-size: 28px; }
  .ow-hero-chips { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; }
  .ow-chip { flex: 1 1 45%; }
  .ow-grid-3 { grid-template-columns: 1fr 1fr; }
  .ow-nav { padding: 0 20px; }
  .ow-nav-links { display: none; }
  .ow-nav-toggle { display: flex; }
  .ow-nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .ow-nav-menu.open { display: flex; }
  .ow-nav-menu .ow-nav-links { display: flex; flex-direction: column; gap: 12px; }
  .ow-kontakt-layout { grid-template-columns: 1fr; }
  .ow-usp-bar { gap: 16px; padding: 14px 20px; }
  .ow-section { padding: 50px 0; }
}

@media (max-width: 600px) {
  .ow-grid-3, .ow-grid-4 { grid-template-columns: 1fr; }
  .ow-footer-inner { grid-template-columns: 1fr; }
  .ow-form-row { grid-template-columns: 1fr; }
  .ow-hero h1 { font-size: 24px; }
  .ow-footer { padding: 40px 20px 20px; }
  .ow-footer-bottom { margin: 0 -20px -20px; padding: 14px 20px; }
}

/* ---- INHALTSSEITEN (Impressum, Datenschutz etc.) ---- */
.ow-page-content {
  max-width: 780px;
}
.ow-page-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue-light);
}
.ow-page-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 36px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--yellow);
}
.ow-page-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}
.ow-page-content a {
  color: var(--blue);
  text-decoration: underline;
}
.ow-page-content a:hover {
  color: var(--yellow-dark);
}

/* ---- WORDPRESS MENÜS ---- */

/* Hauptnavigation */
.ow-nav-links { display: flex; gap: 28px; list-style: none; }
.ow-nav-links li a { color: #1a3a8f; font-size: 14px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.ow-nav-links li a:hover { color: #e8a020; }
.ow-nav-links li.current-menu-item > a { color: #e8a020; }

/* Footer Menüs */
.ow-footer-menu { list-style: none; }
.ow-footer-menu li a { display: block; color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.ow-footer-menu li a:hover { color: #ffd166; }
.ow-footer-menu li.current-menu-item > a { color: rgba(255,255,255,0.7); }

/* Footer Legal Menü (Impressum · Datenschutz · AGB) */
.ow-footer-legal { display: flex; align-items: center; }
.ow-footer-legal-menu { list-style: none; display: flex; gap: 0; }
.ow-footer-legal-menu li { display: flex; align-items: center; }
.ow-footer-legal-menu li::after { content: '·'; color: rgba(255,255,255,0.2); margin: 0 8px; }
.ow-footer-legal-menu li:last-child::after { display: none; }
.ow-footer-legal-menu li a { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.ow-footer-legal-menu li a:hover { color: rgba(255,255,255,0.5); }

/* ---- PRODUKTSEITEN ---- */
.ow-prod-hero {
  background: var(--blue);
  padding: 50px 0 60px;
}
.ow-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.ow-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.ow-breadcrumb a:hover { color: #ffd166; }
.ow-breadcrumb span { color: rgba(255,255,255,0.3); }
.ow-prod-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ow-prod-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 28px;
}

/* Produkt Layout */
.ow-prod-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.ow-prod-main h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.ow-prod-main h2:first-child { margin-top: 0; }
.ow-prod-main h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin: 24px 0 8px;
}
.ow-prod-main p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 14px;
}
.ow-prod-main ul {
  margin: 0 0 16px 20px;
}
.ow-prod-main ul li {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 4px;
}
.ow-prod-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.ow-prod-main table th {
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.ow-prod-main table td {
  padding: 9px 14px;
  border-bottom: 0.5px solid var(--border);
  color: #333;
}
.ow-prod-main table tr:nth-child(even) td { background: var(--blue-light); }

/* Sidebar */
.ow-sidebar-card {
  background: var(--blue-light);
  border-radius: 10px;
  padding: 22px;
  border-top: 3px solid var(--blue);
}
.ow-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.ow-sidebar-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}
.ow-sidebar-links { list-style: none; }
.ow-sidebar-links li { margin-bottom: 8px; }
.ow-sidebar-links li a {
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.ow-sidebar-links li a:hover { color: var(--yellow-dark); }

.ow-back-link {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.ow-back-link:hover { color: var(--yellow-dark); }

@media (max-width: 900px) {
  .ow-prod-layout { grid-template-columns: 1fr; }
  .ow-prod-hero h1 { font-size: 26px; }
}

/* ---- CAPTCHA HINWEIS ---- */
.ow-recaptcha-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 4px;
}
.ow-recaptcha-note a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}
.ow-recaptcha-note a:hover { color: #ffd166; }

/* reCAPTCHA Badge dezenter positionieren */
.grecaptcha-badge { opacity: 0.85; }

/* ---- INHALTSSEITE: Bild & erweiterte Typografie ---- */
.ow-page-featured-img {
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
}
.ow-page-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}
.ow-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.ow-page-content .wp-block-image {
  margin: 24px 0;
}
.ow-page-content .wp-block-columns {
  gap: 24px;
  margin: 24px 0;
}
.ow-page-content blockquote {
  border-left: 3px solid #ffd166;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #555;
}
.ow-page-content strong { color: #111; }

/* ---- KLICKBARER PRODUKTTITEL ---- */
.ow-prod-title-link {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.ow-prod-title-link:hover {
  color: var(--yellow-dark);
  text-decoration: underline;
}

/* ---- DROPDOWN-MENÜ (Produkte) ---- */
.ow-nav-links li {
  position: relative;
}
.ow-nav-links li.menu-item-has-children > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.ow-nav-links .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 8px 8px;
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.ow-nav-links li.menu-item-has-children:hover .sub-menu,
.ow-nav-links li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ow-nav-links .sub-menu li {
  width: 100%;
}
.ow-nav-links .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}
.ow-nav-links .sub-menu li a:hover {
  background: var(--blue-light);
  color: var(--yellow-dark);
}

/* Mobile: Untermenü als ausklappbare Liste statt Hover-Dropdown */
@media (max-width: 900px) {
  .ow-nav-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--blue-light);
    border-radius: 0;
    margin: 4px 0 4px 12px;
    padding: 0;
    display: none;
  }
  .ow-nav-links li.menu-item-has-children.ow-submenu-open .sub-menu {
    display: block;
  }
  .ow-nav-links li.menu-item-has-children > a::after {
    float: right;
  }
}

/* ---- PRODUKT-SLIDER ---- */
.ow-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--blue-light);
  aspect-ratio: 16 / 9;
}
.ow-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.ow-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.ow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.ow-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.ow-slider-arrow:hover {
  background: #fff;
  color: var(--yellow-dark);
}
.ow-slider-prev { left: 14px; }
.ow-slider-next { right: 14px; }
.ow-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.ow-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ow-slider-dot:hover { background: rgba(255,255,255,0.8); }
.ow-slider-dot.is-active {
  background: var(--yellow);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .ow-slider { aspect-ratio: 4 / 3; }
  .ow-slider-arrow { width: 34px; height: 34px; font-size: 18px; }
}

/* ---- HERO FOTO-SLIDER (automatisch) ---- */
.ow-hero-slider {
  position: relative;
  flex: 1 1 360px;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}
.ow-hero-slider .ow-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.ow-hero-slider .ow-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.ow-hero-slider .ow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}
.ow-slider-dots-light {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

@media (max-width: 900px) {
  .ow-hero-slider {
    max-width: 100%;
    flex: 1 1 100%;
    order: 2;
  }
  .ow-hero-chips { order: 3; }
}
