
:root {
  --bg: #041415;
  --bg-2: #071f20;
  --panel: rgba(255,255,255,.065);
  --panel-2: rgba(255,255,255,.095);
  --line: rgba(127,255,229,.16);
  --line-2: rgba(127,255,229,.28);
  --text: #f7fffd;
  --muted: rgba(247,255,253,.72);
  --accent: #7fffe5;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}
[data-theme="light"] {
  --bg: #f8fffd;
  --bg-2: #edf8f6;
  --panel: rgba(255,255,255,.88);
  --panel-2: rgba(255,255,255,.96);
  --line: rgba(6,77,73,.13);
  --line-2: rgba(6,77,73,.26);
  --text: #073432;
  --muted: rgba(7,52,50,.68);
  --accent: #087069;
  --shadow: 0 22px 54px rgba(6,23,22,.10);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; scroll-behavior: auto; scroll-snap-type: none; overflow-x: hidden; }
a, button { font: inherit; }
button { cursor: pointer; }

.loading-screen { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; background: var(--bg); transition: opacity .25s ease, visibility .25s ease; }
.loading-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { color: var(--accent); font-weight: 950; letter-spacing: .2em; font-size: 24px; }

.weather-canvas { position: fixed; inset: 0; z-index: 40; pointer-events: none; display: none; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 5000; height: 78px; padding: 0 clamp(14px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; background: color-mix(in srgb, var(--bg) 78%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-left { display: flex; align-items: center; gap: 14px; min-width: 0; position: relative; z-index: 5010; }
.brand { display: inline-flex; align-items: center; color: inherit; text-decoration: none; min-width: 0; }
.brand-logo { max-height: 42px; width: auto; display: block; }
.brand-text { font-weight: 950; letter-spacing: .16em; }

.language-selector { position: relative; z-index: 7000; display: block; pointer-events: auto; }
.language-button { height: 42px; min-width: 72px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); color: var(--text); font-weight: 900; letter-spacing: .04em; box-shadow: 0 10px 22px rgba(0,0,0,.10); pointer-events: auto; }
.language-dropdown { position: absolute; top: calc(100% + 10px); left: 0; width: 190px; padding: 8px; display: grid; gap: 5px; border-radius: 16px; border: 1px solid var(--line); background: var(--bg-2); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; }
.language-dropdown.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.language-option { min-height: 38px; padding: 0 10px; border: 0; border-radius: 10px; background: transparent; color: var(--text); display: flex; align-items: center; justify-content: flex-start; font-weight: 800; text-align: left; }
.language-option:hover, .language-option.active { background: color-mix(in srgb, var(--accent) 13%, transparent); }

.header-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 5010; }
.theme-toggle, .menu-toggle, .menu-close { border: 1px solid var(--line); background: var(--panel); color: var(--text); border-radius: 14px; box-shadow: none; }
.theme-toggle { width: 44px; height: 42px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.menu-toggle { width: 46px; height: 42px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { width: 20px; height: 2px; background: currentColor; border-radius: 99px; transition: transform .18s ease, opacity .18s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-panel { position: fixed; top: 90px; right: clamp(14px, 4vw, 48px); z-index: 7000; width: min(330px, calc(100vw - 28px)); padding: 14px; display: grid; gap: 10px; border-radius: 22px; border: 1px solid var(--line); background: var(--bg-2); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.menu-panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.menu-panel a, .menu-close { min-height: 48px; display: flex; align-items: center; justify-content: center; color: var(--text); text-decoration: none; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); font-weight: 850; }
.menu-close { font-size: 24px; }

.hero { position: relative; min-height: 100svh; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,20,21,.10) 0%, rgba(4,20,21,.34) 55%, rgba(4,20,21,.78) 100%); pointer-events: none; }
.hero-caption { position: absolute; left: 50%; bottom: 178px; transform: translateX(-50%); z-index: 2; width: min(760px, calc(100vw - 32px)); color: rgba(247,255,253,.82); text-align: center; font-size: clamp(13px, 1.6vw, 17px); line-height: 1.45; pointer-events: none; }
.hero-brands-cta, .product-cta { appearance: none; -webkit-appearance: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid rgba(127,255,229,.20); background: rgba(7,27,29,.96); color: #f7fffd; -webkit-text-fill-color: #f7fffd; text-decoration: none; text-align: center; text-shadow: none; font-weight: 900; box-shadow: 0 18px 44px rgba(0,0,0,.32); transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; cursor: pointer; }
.hero-brands-cta { position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 110; width: min(360px, calc(100vw - 32px)); min-height: 58px; padding: 0 26px; font-size: 15px; letter-spacing: .02em; white-space: nowrap; }
.hero-brands-cta:hover, .hero-brands-cta:focus-visible { transform: translateX(-50%) translateY(-2px); background: rgba(9,35,38,.98); border-color: rgba(127,255,229,.34); outline: none; }
.product-cta { width: min(292px, 100%); min-height: 52px; margin-top: 18px; padding: 0 22px; font-size: 13px; letter-spacing: .04em; }
.product-cta:hover, .product-cta:focus-visible { transform: translateY(-2px); background: rgba(9,35,38,.98); border-color: rgba(127,255,229,.34); outline: none; }
[data-theme="light"] .hero-brands-cta, [data-theme="light"] .product-cta { background: rgba(255,255,255,.96); color: #073432; -webkit-text-fill-color: #073432; border-color: rgba(6,77,73,.18); box-shadow: 0 16px 38px rgba(6,23,22,.14); }

body.menu-open .hero-brands-cta { opacity: 0; visibility: hidden; pointer-events: none; }

.brands { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); padding: clamp(88px, 10vh, 124px) 20px clamp(76px, 9vh, 112px); scroll-margin-top: 0; }
.section-inner { width: min(1120px, 100%); margin: 0 auto; }
.section-heading { text-align: center; margin-bottom: clamp(32px, 5vw, 54px); }
.section-heading h1 { margin: 0 0 12px; font-size: clamp(42px, 6vw, 76px); line-height: .92; letter-spacing: .045em; font-weight: 950; }
.section-heading p { margin: 0 auto; max-width: 720px; color: var(--muted); font-size: clamp(15px, 1.6vw, 19px); }

.brand-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 34px); }
.brand-card { min-height: 370px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: var(--shadow); }
.logo-wrap { width: min(245px, 82%); margin-bottom: 22px; }
.swissdent-logo { display: block; width: 100%; height: auto; background: transparent; border: 0; box-shadow: none; filter: none; }
.swissdent-wordmark { font-size: 34px; font-weight: 950; letter-spacing: .08em; }
.brand-card h2 { margin: 0 0 12px; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: .04em; }
.brand-card p { margin: 0; color: var(--muted); line-height: 1.65; max-width: 430px; }
.soon-badge { width: 84px; height: 84px; border-radius: 24px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid var(--line); background: var(--panel-2); color: var(--accent); font-size: 34px; font-weight: 900; }

.floating-actions { position: fixed; right: 18px; bottom: max(22px, env(safe-area-inset-bottom)); z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.floating-action { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); color: var(--text); box-shadow: 0 12px 30px rgba(0,0,0,.18); }

.footer { padding: clamp(44px, 6vw, 72px) 20px 28px; background: radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-top: 1px solid var(--line); color: var(--text); }
.footer-inner { width: min(1180px, 100%); margin: 0 auto; display: grid; gap: 24px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.footer-label { display: block; margin-bottom: 8px; color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.footer h2 { margin: 0; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.1; }
.social-media { display: flex; flex-direction: row; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 10px; }
.social-media a { width: 42px; height: 42px; min-width: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); color: var(--text); fill: currentColor; box-shadow: 0 10px 22px rgba(0,0,0,.12); text-decoration: none; transition: transform .18s ease, background .18s ease; }
.social-media a:hover { transform: translateY(-2px); background: var(--panel-2); }
.social-media svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.contact-grid { display: grid; grid-template-columns: minmax(320px,2fr) minmax(150px,.75fr) minmax(150px,.75fr) minmax(220px,1fr); gap: 12px; }
.contact-grid a { min-height: 50px; padding: 12px 14px; display: flex; align-items: center; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); text-decoration: none; line-height: 1.35; overflow-wrap: anywhere; }
.copyright { margin: 0; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.45; }

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 12px; }
  .brand-logo { max-height: 36px; }
  .header-left { gap: 10px; }
  .language-button { height: 40px; min-width: 64px; padding: 0 11px; }
  .language-dropdown { width: 182px; }
  .menu-panel { top: 80px; right: 12px; }
  .hero-caption { bottom: 194px; font-size: 13px; width: min(560px, calc(100vw - 32px)); }
  .hero-brands-cta { bottom: max(122px, env(safe-area-inset-bottom)); width: min(330px, calc(100vw - 28px)); min-height: 54px; padding: 0 18px; white-space: normal; font-size: 14px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: 310px; border-radius: 22px; }
  .floating-actions { right: 14px; bottom: max(22px, env(safe-area-inset-bottom)); }
  .floating-action { width: 42px; height: 42px; border-radius: 14px; }
  .footer { padding: 40px 14px 24px; text-align: center; }
  .social-media { justify-content: center; flex-wrap: nowrap; gap: 7px; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 2px 2px 8px; }
  .social-media::-webkit-scrollbar { display: none; }
  .social-media a { width: 39px; height: 39px; min-width: 39px; border-radius: 13px; }
  .social-media svg { width: 16px; height: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
}

.hero-caption{display:none!important;}


/* === OVEY BEST FINAL READ ALL === */

/* Hero açıklama yazısı yok */
.hero-caption {
  display: none !important;
}

/* Temel tıklama katmanları */
#rainCanvas,
#snowCanvas,
.weather-canvas,
.hero-video {
  pointer-events: none !important;
}

/* Dil eski sol üst buton olarak kalır ve her zaman tıklanır */
.language-selector {
  display: block !important;
  position: relative !important;
  z-index: 9000 !important;
  pointer-events: auto !important;
}

#languageButton,
.language-button,
.language-option {
  pointer-events: auto !important;
  cursor: pointer !important;
}

#languageDropdown,
.language-dropdown {
  z-index: 9010 !important;
}

#languageDropdown.is-open,
.language-dropdown.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Menü: tüm ekranı kaplayan, sağdan sola kayan eski tarz overlay */
.menu-panel,
#menuPanel {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  padding: clamp(84px, 12vh, 132px) clamp(20px, 7vw, 96px) clamp(34px, 7vh, 72px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: clamp(18px, 2.6vh, 30px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 20% 10%, rgba(127,255,229,.10), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(127,255,229,.07), transparent 36%),
    linear-gradient(135deg, rgba(2,13,15,.985) 0%, rgba(5,30,32,.985) 54%, rgba(3,18,20,.985) 100%) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  transform: translateX(100%) !important;
  transition: transform .45s cubic-bezier(.22,.8,.24,1) !important;
  overflow-y: auto !important;
  z-index: 8000 !important;
  box-shadow: none !important;
}

[data-theme="light"] .menu-panel,
body[data-theme="light"] .menu-panel,
[data-theme="light"] #menuPanel,
body[data-theme="light"] #menuPanel {
  background:
    radial-gradient(circle at 20% 10%, rgba(8,112,105,.10), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(8,112,105,.06), transparent 36%),
    linear-gradient(135deg, rgba(248,255,253,.985) 0%, rgba(236,248,246,.985) 100%) !important;
}

.menu-panel.is-open,
#menuPanel.is-open,
.menu-panel.active,
#menuPanel.active {
  transform: translateX(0) !important;
  pointer-events: auto !important;
}

/* Menü bağlantıları: eski büyük tam ekran hissi; kutu hissi çok ağır değil */
.menu-panel a,
#menuPanel a {
  width: min(760px, 100%) !important;
  min-height: clamp(58px, 8vh, 86px) !important;
  margin: 0 auto !important;
  padding: 0 clamp(18px, 4vw, 44px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px !important;
  border: 1px solid rgba(127,255,229,.13) !important;
  background: rgba(255,255,255,.052) !important;
  color: #f7fffd !important;
  -webkit-text-fill-color: #f7fffd !important;
  text-decoration: none !important;
  text-align: center !important;
  font-size: clamp(22px, 5.2vw, 54px) !important;
  font-weight: 950 !important;
  letter-spacing: .055em !important;
  line-height: 1 !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.12) !important;
  transform: translateX(38px) !important;
  opacity: 0 !important;
  transition:
    transform .44s cubic-bezier(.22,.8,.24,1),
    opacity .34s ease,
    background .18s ease,
    border-color .18s ease !important;
}

.menu-panel.is-open a,
#menuPanel.is-open a,
.menu-panel.active a,
#menuPanel.active a {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.menu-panel.is-open a:nth-of-type(2),
#menuPanel.is-open a:nth-of-type(2) {
  transition-delay: .05s !important;
}

.menu-panel.is-open a:nth-of-type(3),
#menuPanel.is-open a:nth-of-type(3) {
  transition-delay: .10s !important;
}

.menu-panel a:hover,
#menuPanel a:hover {
  background: rgba(255,255,255,.085) !important;
  border-color: rgba(127,255,229,.28) !important;
}

[data-theme="light"] .menu-panel a,
body[data-theme="light"] .menu-panel a,
[data-theme="light"] #menuPanel a,
body[data-theme="light"] #menuPanel a {
  background: rgba(255,255,255,.76) !important;
  color: #073432 !important;
  -webkit-text-fill-color: #073432 !important;
  border-color: rgba(6,77,73,.12) !important;
  box-shadow: 0 18px 44px rgba(6,23,22,.08) !important;
}

/* Menü kapatma sağ üstte, sade */
.menu-close,
#menuClose {
  position: fixed !important;
  top: max(18px, env(safe-area-inset-top)) !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 18px !important;
  border: 1px solid rgba(127,255,229,.18) !important;
  background: rgba(255,255,255,.070) !important;
  color: #f7fffd !important;
  -webkit-text-fill-color: #f7fffd !important;
  font-size: 32px !important;
  line-height: 1 !important;
  z-index: 8010 !important;
}

[data-theme="light"] .menu-close,
body[data-theme="light"] .menu-close,
[data-theme="light"] #menuClose,
body[data-theme="light"] #menuClose {
  background: rgba(255,255,255,.86) !important;
  color: #073432 !important;
  -webkit-text-fill-color: #073432 !important;
  border-color: rgba(6,77,73,.14) !important;
}

/* Menü açıkken arkadaki şeyler karışmasın */
body.menu-open #heroBrandsCta,
body.menu-open .floating-actions {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.menu-open .site-header {
  pointer-events: none !important;
}

body.menu-open #menuPanel,
body.menu-open #menuClose {
  pointer-events: auto !important;
}

/* Sağ alt ikonlar butonun önüne geçmesin; buton biraz yukarı */
#heroBrandsCta,
.hero-brands-cta {
  bottom: max(112px, env(safe-area-inset-bottom)) !important;
}

/* Footer: kibar ve sosyal ikonlar her zaman yan yana */
.footer {
  padding: clamp(44px, 6vw, 72px) 20px 28px !important;
}

.social-media {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: clamp(7px, 1vw, 12px) !important;
  width: 100% !important;
}

.social-media a {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  flex: 0 0 42px !important;
  border-radius: 14px !important;
}

.social-media svg {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 760px) {
  .menu-panel,
  #menuPanel {
    padding: max(82px, env(safe-area-inset-top)) 18px max(30px, env(safe-area-inset-bottom)) !important;
    gap: 14px !important;
  }

  .menu-panel a,
  #menuPanel a {
    width: 100% !important;
    min-height: 62px !important;
    font-size: clamp(22px, 8vw, 36px) !important;
    border-radius: 20px !important;
    letter-spacing: .04em !important;
  }

  #heroBrandsCta,
  .hero-brands-cta {
    bottom: max(124px, env(safe-area-inset-bottom)) !important;
  }

  .social-media {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 7px !important;
    padding-bottom: 8px !important;
  }

  .social-media::-webkit-scrollbar {
    display: none !important;
  }

  .social-media a {
    width: 39px !important;
    height: 39px !important;
    min-width: 39px !important;
    flex-basis: 39px !important;
    border-radius: 13px !important;
  }

  .social-media svg {
    width: 16px !important;
    height: 16px !important;
  }
}



/* === OVEY LOGO CENTERED FINAL === */

/* Header üç kolon: sol dil, tam orta logo, sağ aksiyonlar */
.site-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 12px !important;
}

.header-left {
  grid-column: 1 !important;
  justify-self: start !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.site-header > .brand {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin: 0 auto !important;
  z-index: 5010 !important;
}

.header-actions {
  grid-column: 3 !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.brand-logo {
  display: block !important;
  max-height: 42px !important;
  width: auto !important;
  margin: 0 auto !important;
}

.brand-text {
  display: block !important;
  text-align: center !important;
}

/* Mobilde de logo gerçek ortada kalsın */
@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 8px !important;
  }

  .header-left {
    justify-self: start !important;
  }

  .site-header > .brand {
    justify-self: center !important;
  }

  .header-actions {
    justify-self: end !important;
    gap: 7px !important;
  }

  .brand-logo {
    max-height: 38px !important;
    max-width: min(150px, 38vw) !important;
  }

  .brand-text {
    font-size: 16px !important;
    letter-spacing: .12em !important;
  }

  .language-button {
    min-width: 58px !important;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}




/* === OVEY REQUESTED FINAL FIXES 2026-06-03 === */
.brands-heading {
  margin-bottom: clamp(34px, 5vw, 60px) !important;
}

.section-heading .brands-subtitle {
  margin: 0 auto !important;
  max-width: 900px !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  line-height: 1.14 !important;
  font-weight: 900 !important;
  letter-spacing: .01em !important;
  text-align: center !important;
  text-shadow: 0 16px 42px rgba(0,0,0,.22) !important;
}

.weather-slot {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.weather-mobile-slot {
  display: none !important;
}

.weather-widget {
  width: 44px !important;
  height: 42px !important;
  min-width: 44px !important;
  min-height: 42px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  border: 1px solid var(--line) !important;
  background: var(--panel) !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.weather-widget:hover,
.weather-widget:focus-visible,
.theme-toggle:hover,
.menu-toggle:hover {
  background: var(--panel-2) !important;
  outline: none !important;
}

.floating-actions {
  display: none !important;
}

.footer {
  padding: clamp(64px, 8vw, 108px) 22px 38px !important;
}

.footer-inner {
  gap: clamp(28px, 3.2vw, 42px) !important;
}

.footer-top {
  gap: clamp(26px, 3vw, 42px) !important;
  padding-bottom: clamp(28px, 3vw, 38px) !important;
}

.footer h2 {
  font-size: clamp(22px, 2.6vw, 36px) !important;
  line-height: 1.15 !important;
}

.social-media a {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  flex-basis: 46px !important;
  border-radius: 16px !important;
}

.social-media svg {
  width: 19px !important;
  height: 19px !important;
}

.contact-grid {
  gap: 14px !important;
}

.contact-grid a {
  min-height: 64px !important;
  padding: 16px 18px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
}

@media (max-width: 760px) {
  .header-left {
    gap: 7px !important;
  }

  .weather-mobile-slot {
    display: none !important;
  }

  .weather-desktop-slot {
    display: inline-flex !important;
  }

  .weather-widget {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }

  .section-heading .brands-subtitle {
    font-size: clamp(20px, 5.4vw, 27px) !important;
    max-width: 330px !important;
  }

  .footer {
    padding: 56px 16px 30px !important;
  }

  .footer-inner {
    gap: 28px !important;
  }

  .social-media a {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    flex-basis: 42px !important;
  }

  .contact-grid a {
    min-height: 58px !important;
    justify-content: center !important;
  }
}



/* === OVEY MOBILE WEATHER POSITION FIX === */
@media (max-width: 760px) {
  .header-left {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .weather-mobile-slot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    order: 2 !important;
  }

  .language-selector {
    order: 1 !important;
  }

  .weather-desktop-slot {
    display: none !important;
  }

  .weather-widget {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}

@media (min-width: 761px) {
  .weather-mobile-slot {
    display: none !important;
  }

  .weather-desktop-slot {
    display: inline-flex !important;
  }
}


/* === OVEY WEATHER BUTTON FINAL FIX: mobile right of language, desktop left of theme === */
.weather-slot {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}
.weather-mobile-slot { display: none !important; }
.weather-desktop-slot { display: inline-flex !important; }
.header-left { display: flex !important; align-items: center !important; }
.header-actions { display: flex !important; align-items: center !important; }
.weather-widget {
  width: 44px !important;
  height: 42px !important;
  min-width: 44px !important;
  min-height: 42px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  border: 1px solid var(--line) !important;
  background: var(--panel) !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
@media (max-width: 760px) {
  .header-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    min-width: 0 !important;
  }
  .language-selector { order: 1 !important; flex: 0 0 auto !important; }
  .weather-mobile-slot { display: inline-flex !important; order: 2 !important; flex: 0 0 auto !important; margin-left: 0 !important; }
  .weather-desktop-slot { display: none !important; }
  .weather-widget-mobile { display: inline-flex !important; }
  .weather-widget-desktop { display: none !important; }
  .weather-widget {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
}
@media (min-width: 761px) {
  .weather-mobile-slot, .weather-widget-mobile { display: none !important; }
  .weather-desktop-slot, .weather-widget-desktop { display: inline-flex !important; }
}


/* === OVEY FINAL HEADER + TEXT + CONTACT FIX === */
.hero-brands-cta {
  text-transform: uppercase !important;
  letter-spacing: .055em !important;
}

.section-heading .brands-subtitle {
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  text-transform: uppercase !important;
  font-size: clamp(20px, 2.25vw, 30px) !important;
  line-height: 1.16 !important;
  font-weight: 950 !important;
  letter-spacing: .045em !important;
}

.footer-label { display: none !important; }

.site-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
}

.header-left {
  grid-column: 1 !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  z-index: 5010 !important;
}

.site-header > .brand {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  margin: 0 auto !important;
  z-index: 5010 !important;
}

.header-actions {
  grid-column: 3 !important;
  justify-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  z-index: 5010 !important;
}

.header-actions .language-selector { order: 1 !important; }
.header-actions .menu-toggle { order: 2 !important; }
.header-left .theme-toggle { order: 1 !important; }
.header-left .weather-slot { order: 2 !important; }

.weather-mobile-slot,
.weather-desktop-slot,
.weather-widget-mobile,
.weather-widget-desktop {
  display: none !important;
}

.weather-slot,
.weather-widget,
.theme-toggle,
.menu-toggle {
  flex: 0 0 auto !important;
}

.weather-widget,
.theme-toggle {
  width: 44px !important;
  height: 42px !important;
  min-width: 44px !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.language-dropdown {
  left: auto !important;
  right: 0 !important;
}

@media (max-width: 760px) {
  .site-header {
    padding-left: 6px !important;
    padding-right: 6px !important;
    gap: 4px !important;
  }

  .header-left,
  .header-actions {
    gap: 5px !important;
  }

  .weather-widget,
  .theme-toggle,
  .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 13px !important;
  }

  .language-button {
    height: 38px !important;
    min-width: 58px !important;
    padding: 0 8px !important;
    border-radius: 13px !important;
    gap: 4px !important;
    font-size: 12px !important;
  }

  .brand-logo {
    max-height: 34px !important;
    max-width: clamp(94px, 33vw, 140px) !important;
  }

  .hero-brands-cta {
    font-size: 13px !important;
    letter-spacing: .045em !important;
  }

  .section-heading .brands-subtitle {
    font-size: clamp(18px, 4.9vw, 23px) !important;
    max-width: 350px !important;
    letter-spacing: .035em !important;
  }
}


/* === OVEY SWISSDENT RED TEXT FIX === */
.swissdent-title {
  color: #a31c25 !important;
  -webkit-text-fill-color: #a31c25 !important;
}
