/* ===================================================================
   BEKO Technologies — Design System
   Farben: Weiße Navbar, BEKO-Blau #1E3A7F, Orange #E8500A als Akzent
   =================================================================== */

:root {
  /* Brand colors */
  --beko-blue:        #1E3A7F;   /* BEKO primary blue */
  --beko-blue-dark:   #142d66;
  --beko-blue-mid:    #2957a4;
  --beko-blue-light:  #e8edf8;   /* very light blue for backgrounds */
  --beko-orange:      #E8500A;   /* BEKOMAT accent */
  --beko-orange-dark: #C44008;
  --beko-orange-glow: rgba(232,80,10,.12);

  /* Neutrals */
  --beko-white:       #ffffff;
  --beko-grey-bg:     #f5f7fa;
  --beko-grey-bg-2:   #edf0f5;
  --beko-grey-line:   #dee3ec;
  --beko-text:        #1a1a2e;
  --beko-text-muted:  #6b7280;

  /* Shape */
  --beko-radius:      4px;
  --beko-radius-lg:   10px;
  --beko-shadow:      0 2px 10px rgba(30,58,127,.08);
  --beko-shadow-lg:   0 8px 32px rgba(30,58,127,.14);

  /* Font */
  --beko-font: 'Barlow', 'Montserrat', system-ui, sans-serif;
}

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

.beko-site {
  font-family: var(--beko-font);
  color: var(--beko-text);
  background: var(--beko-white);
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────
   NAVBAR — white, BEKO blue accents
───────────────────────────────────────────── */
.beko-nav-bar {
  background: var(--beko-white);
  border-bottom: 1px solid var(--beko-grey-line);
  box-shadow: 0 1px 8px rgba(30,58,127,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.beko-nav-bar .container-xl {
  padding-top: 12px;
  padding-bottom: 12px;
}

.beko-nav-logo:hover { opacity: .85; }

.beko-nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
}

.beko-nav-link {
  display: block;
  padding: .45rem .95rem;
  color: #3a3a4a;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: var(--beko-radius);
  transition: color .14s, background .14s;
}
.beko-nav-link:hover { color: var(--beko-blue); background: var(--beko-blue-light); }
.beko-nav-link.active { color: var(--beko-blue); background: var(--beko-blue-light); }

.btn-beko-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--beko-blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .44rem 1.1rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  transition: background .14s;
}
.btn-beko-nav:hover { background: var(--beko-blue-dark); color: #fff; }

.beko-lang-btn {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--beko-text-muted);
  text-decoration: none;
  padding: .2rem .4rem;
  border-radius: 3px;
  transition: color .14s;
}
.beko-lang-btn:hover, .beko-lang-btn.active { color: var(--beko-blue); }

.beko-burger {
  background: none;
  border: 1.5px solid var(--beko-grey-line);
  border-radius: var(--beko-radius);
  padding: .3rem .5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.beko-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--beko-text);
  border-radius: 2px;
}

.beko-mobile-nav {
  list-style: none;
  border-top: 1px solid var(--beko-grey-line);
  margin-top: 8px;
}
.beko-mobile-link {
  display: block;
  padding: .65rem 0;
  color: var(--beko-text);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--beko-grey-line);
}
.beko-mobile-link:last-child { border-bottom: none; }
.beko-mobile-link:hover { color: var(--beko-blue); }

/* ─────────────────────────────────────────────
   HERO — blue gradient (not dark/black)
───────────────────────────────────────────── */
.beko-hero {
  background: linear-gradient(135deg, var(--beko-blue) 0%, var(--beko-blue-mid) 65%, #3a70c4 100%);
  color: #fff;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.beko-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(255,255,255,.06) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.beko-hero-sub {
  background: linear-gradient(135deg, var(--beko-blue) 0%, var(--beko-blue-mid) 100%);
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.beko-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 100px;
  margin-bottom: 20px;
}
.beko-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--beko-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.beko-hero-accent {
  display: block;
  width: 44px;
  height: 4px;
  background: var(--beko-orange);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.beko-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.beko-h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--beko-text);
  letter-spacing: -.015em;
}
.beko-h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--beko-text);
}
.beko-lead {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--beko-text-muted);
}
.beko-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--beko-blue);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-beko {
  background: var(--beko-blue);
  border: 2px solid var(--beko-blue);
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .03em;
  padding: .6rem 1.6rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .14s, border-color .14s, transform .12s;
}
.btn-beko:hover { background: var(--beko-blue-dark); border-color: var(--beko-blue-dark); color: #fff; transform: translateY(-1px); }

/* Orange variant for BEKOMAT-specific CTAs */
.btn-beko-orange {
  background: var(--beko-orange);
  border: 2px solid var(--beko-orange);
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .03em;
  padding: .6rem 1.6rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .14s, transform .12s;
}
.btn-beko-orange:hover { background: var(--beko-orange-dark); color: #fff; transform: translateY(-1px); }

.btn-beko-outline {
  background: transparent;
  border: 2px solid var(--beko-blue);
  color: var(--beko-blue);
  font-weight: 700;
  font-size: .86rem;
  padding: .58rem 1.6rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .14s, color .14s;
}
.btn-beko-outline:hover { background: var(--beko-blue); color: #fff; }

.btn-beko-ghost {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  padding: .58rem 1.6rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .14s, border-color .14s;
}
.btn-beko-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-beko-navy {
  background: var(--beko-blue);
  border: 2px solid var(--beko-blue);
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
  padding: .58rem 1.6rem;
  border-radius: var(--beko-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .14s;
}
.btn-beko-navy:hover { background: var(--beko-blue-dark); color: #fff; }

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.beko-section     { padding: 76px 0; }
.beko-section-sm  { padding: 44px 0; }
.beko-section-blue {
  background: var(--beko-blue);
  color: #fff;
  padding: 76px 0;
}
.beko-section-blue .beko-h2 { color: #fff; }
.beko-section-blue .beko-lead { color: rgba(255,255,255,.75); }
.beko-section-blue .beko-label { color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.beko-stats {
  background: var(--beko-blue);
  color: #fff;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.beko-stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.beko-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   PRODUCT LINE CARD (home page)
───────────────────────────────────────────── */
.beko-line-card {
  background: var(--beko-white);
  border: 1.5px solid var(--beko-grey-line);
  border-radius: var(--beko-radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .18s, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.beko-line-card:hover {
  box-shadow: var(--beko-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--beko-blue);
  color: inherit;
}
.beko-line-card-icon {
  width: 50px; height: 50px;
  background: var(--beko-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beko-blue);
  font-size: 1.3rem;
}
.beko-line-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--beko-text);
}
.beko-line-card-text {
  font-size: .87rem;
  color: var(--beko-text-muted);
  line-height: 1.65;
  flex: 1;
}
.beko-line-card-cta {
  font-size: .8rem;
  font-weight: 700;
  color: var(--beko-blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────
   PRODUCT CARD
───────────────────────────────────────────── */
.beko-product-card {
  background: var(--beko-white);
  border-radius: var(--beko-radius-lg);
  box-shadow: var(--beko-shadow);
  border: 1.5px solid var(--beko-grey-line);
  overflow: hidden;
  transition: box-shadow .2s, transform .18s, border-color .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.beko-product-card:hover {
  box-shadow: var(--beko-shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(30,58,127,.3);
}

.beko-card-img {
  background: var(--beko-grey-bg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--beko-grey-line);
}
.beko-card-img img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  padding: 18px;
}
.beko-card-img-placeholder {
  width: 64px; height: 64px;
  background: var(--beko-grey-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0bec5;
  font-size: 1.8rem;
}
.beko-card-body {
  padding: 18px 20px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.beko-card-series {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beko-orange);
  margin-bottom: 3px;
}
.beko-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--beko-text);
  margin-bottom: 11px;
}
.beko-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  flex: 1;
}
.beko-card-specs li {
  font-size: .8rem;
  color: var(--beko-text-muted);
  padding: 3px 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.beko-card-specs li i {
  color: var(--beko-blue);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.beko-card-footer {
  padding: 11px 20px 16px;
  border-top: 1px solid var(--beko-grey-line);
}

/* ─────────────────────────────────────────────
   USP ROW
───────────────────────────────────────────── */
.beko-usp-card { text-align: center; padding: 8px 12px; }
.beko-usp-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.beko-usp-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.beko-usp-text {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   SPEC TAGS
───────────────────────────────────────────── */
.beko-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--beko-blue-light);
  color: var(--beko-blue);
  font-size: .73rem;
  font-weight: 600;
  padding: .22rem .65rem;
  border-radius: 100px;
  border: 1px solid rgba(30,58,127,.15);
}

/* ─────────────────────────────────────────────
   FILTER BAR
───────────────────────────────────────────── */
.beko-filter-bar {
  background: var(--beko-white);
  border-bottom: 2px solid var(--beko-grey-line);
  padding: 12px 0;
  position: sticky;
  top: 65px;
  z-index: 100;
}
.beko-filter-btn {
  border: 1.5px solid var(--beko-grey-line);
  background: var(--beko-white);
  color: var(--beko-text-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .14s;
}
.beko-filter-btn.active,
.beko-filter-btn:hover {
  background: var(--beko-blue);
  border-color: var(--beko-blue);
  color: #fff;
}

/* ─────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────── */
.beko-breadcrumb {
  background: none;
  padding: 10px 0;
  margin-bottom: 0;
  font-size: .82rem;
}
.beko-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.beko-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.beko-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.beko-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }

.beko-breadcrumb-light .breadcrumb-item a { color: var(--beko-text-muted); text-decoration: none; }
.beko-breadcrumb-light .breadcrumb-item.active { color: var(--beko-text); }
.beko-breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: var(--beko-grey-line); }

/* ─────────────────────────────────────────────
   DETAIL PAGE
───────────────────────────────────────────── */
.beko-detail-hero {
  background: var(--beko-grey-bg);
  padding: 44px 0;
  border-bottom: 1px solid var(--beko-grey-line);
}
.beko-detail-image {
  background: var(--beko-white);
  border-radius: var(--beko-radius-lg);
  box-shadow: var(--beko-shadow);
  border: 1.5px solid var(--beko-grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 32px;
}
.beko-detail-image img { max-width: 100%; max-height: 320px; object-fit: contain; }

/* ─────────────────────────────────────────────
   TABS
───────────────────────────────────────────── */
.beko-tabs .nav-link {
  color: var(--beko-text-muted);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-bottom: 3px solid transparent;
  padding: .65rem 1.1rem;
  background: none;
  transition: color .14s;
}
.beko-tabs .nav-link:hover { color: var(--beko-blue); }
.beko-tabs .nav-link.active {
  color: var(--beko-blue);
  border-bottom-color: var(--beko-blue);
  background: none;
}
.beko-tab-content { padding-top: 30px; }

/* ─────────────────────────────────────────────
   SPEC TABLE
───────────────────────────────────────────── */
.beko-spec-table { width: 100%; font-size: .88rem; }
.beko-spec-table tr { border-bottom: 1px solid var(--beko-grey-line); }
.beko-spec-table tr:last-child { border-bottom: none; }
.beko-spec-table th {
  font-weight: 600;
  color: var(--beko-text-muted);
  padding: 10px 14px 10px 0;
  width: 42%;
  white-space: nowrap;
}
.beko-spec-table td { font-weight: 500; color: var(--beko-text); padding: 10px 0; }
.beko-spec-value-highlight { font-weight: 800; color: var(--beko-blue); }

/* ─────────────────────────────────────────────
   WEAR PARTS / DOWNLOAD / VARIANTS
───────────────────────────────────────────── */
.beko-wear-card {
  background: var(--beko-white);
  border-radius: var(--beko-radius);
  border: 1.5px solid var(--beko-grey-line);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.beko-wear-icon {
  width: 40px; height: 40px;
  background: var(--beko-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beko-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.beko-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beko-white);
  border: 1.5px solid var(--beko-grey-line);
  border-radius: var(--beko-radius);
  padding: 13px 16px;
  color: var(--beko-text);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.beko-download-btn:hover {
  border-color: var(--beko-blue);
  box-shadow: 0 0 0 3px rgba(30,58,127,.08);
  color: var(--beko-text);
}
.beko-download-icon {
  width: 36px; height: 36px;
  background: var(--beko-blue);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.beko-variant-item {
  background: var(--beko-white);
  border: 1.5px solid var(--beko-grey-line);
  border-radius: var(--beko-radius);
  padding: 13px 16px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color .14s, box-shadow .14s;
}
.beko-variant-item:hover {
  border-color: var(--beko-blue);
  box-shadow: 0 0 0 3px rgba(30,58,127,.06);
}

/* ─────────────────────────────────────────────
   ARTICLE NUMBER
───────────────────────────────────────────── */
.beko-article-number {
  font-size: .79rem;
  color: var(--beko-text-muted);
  font-family: ui-monospace, monospace;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.beko-value-card {
  padding: 28px 24px;
  background: var(--beko-white);
  border-radius: var(--beko-radius-lg);
  border: 1.5px solid var(--beko-grey-line);
  height: 100%;
  transition: box-shadow .2s;
}
.beko-value-card:hover { box-shadow: var(--beko-shadow-lg); }
.beko-fact-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--beko-blue);
  letter-spacing: -.03em;
  line-height: 1;
}
.beko-fact-label {
  font-size: .82rem;
  color: var(--beko-text-muted);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.beko-footer {
  background: var(--beko-blue);
  padding: 60px 0 0;
}
.beko-footer-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.beko-footer-links { list-style: none; padding: 0; margin: 0; }
.beko-footer-links li { margin-bottom: 8px; }
.beko-footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  text-decoration: none;
  transition: color .13s;
}
.beko-footer-links a:hover { color: #fff; }
.beko-footer-bottom {
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   MISC
───────────────────────────────────────────── */
.beko-divider { height: 1px; background: var(--beko-grey-line); border: none; margin: 0; }
.beko-section-header { margin-bottom: 48px; }
.beko-section-header.center { text-align: center; }

@media (max-width: 767px) {
  .beko-hero { padding: 60px 0 48px; }
  .beko-section { padding: 52px 0; }
  .beko-section-blue { padding: 52px 0; }
  .beko-stat-number { font-size: 2rem; }
}
