@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;600;700&display=swap');

:root {
  --red: #C0202A;
  --red-dark: #9B1820;
  --red-light: #f5e8e9;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --border: #e0d5d5;
  --white: #ffffff;
  --bg-light: #faf6f6;
  --font-display: 'Marcellus', serif;
  --font-body: 'Marcellus', serif;
}

@media (max-width: 600px) {
  .home-page .home-founder-title-row h3 {
    font-size: 32px;
  }

  .home-page .home-founder-quote {
    font-size: 24px;
  }

  .home-page .home-founder-sign {
    font-size: 24px;
  }

  .home-page .home-founder-text p {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-page .home-founder-image img {
    max-height: 360px;
  }

  .home-page .home-founder-caption {
    font-size: 17px;
  }

  .home-page .home-founder-caption span {
    font-size: 24px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}


.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 16px 0;
}

.navbar-wrapper .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}


.navbar {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.15);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.nav-left a,
.nav-item {
  text-decoration: none;
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 100%;
}


.nav-left .mega-menu a,
.mega-item {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  font-size: 12.5px !important;
  white-space: normal !important;
}

.nav-left a:hover,
.nav-item:hover {
  color: var(--red);
}

.nav-item-drop {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-item-drop i {
  font-size: 14px;
  line-height: 1;
}


.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1.5px solid #ddd3d3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 60;
}

.nav-has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-dropdown a i {
  font-size: 13px;
  color: var(--red);
}

.nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--red);
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}


.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}


.orsa-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.orsa-logo-img {
  height: 44px;
  width: auto;
  display: block;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  color: #444;
  transition: color 0.2s;
}

.nav-search-btn:hover {
  color: var(--red);
}

.nav-search-btn i {
  font-size: 20px;
  line-height: 1;
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #2d2d2d;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-toggle i {
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-toggle:hover {
  border-color: var(--red);
  color: var(--red);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: background 0.25s ease;
}

.mobile-drawer-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(84vw, 360px);
  background: #fff;
  padding: 18px 16px 24px;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
  pointer-events: auto;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  background: rgba(0, 0, 0, 0.35);
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-drawer-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-drawer-head span {
  font-size: 18px;
  font-weight: 700;
}

.mobile-drawer-search {
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
}

.mobile-drawer-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #2d2d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-close i {
  font-size: 24px;
}

.mobile-drawer-links {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.mobile-drawer-link {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 2px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-group {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-group summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2e2e2e;
  padding: 10px 2px;
}

.mobile-drawer-group summary::-webkit-details-marker {
  display: none;
}

.mobile-drawer-group summary::after {
  content: '+';
  float: right;
  color: #7e7e7e;
}

.mobile-drawer-group[open] summary::after {
  content: '-';
}

.mobile-drawer-sub {
  display: grid;
  gap: 0;
  padding: 0 0 8px;
}

.mobile-drawer-sub .mobile-drawer-link {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: #505050;
  padding-left: 12px;
}

.mobile-drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mobile-drawer-actions .nav-search-btn,
.mobile-drawer-actions .btn-katalog,
.mobile-drawer-actions .btn-arge {
  width: 100%;
  justify-content: center;
}

body.mobile-menu-open {
  overflow: hidden;
}


.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.search-panel {
  width: min(820px, 90vw);
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.search-panel label {
  display: none;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-bottom: 2px solid #d9cfcf;
  background: transparent;
  padding: 12px 4px;
  justify-content: center;
}

.search-field i {
  color: var(--red);
  font-size: 20px;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--dark);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: left;
}

.search-input::placeholder {
  color: #9b8f8f;
}

.search-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--dark);
  padding: 6px;
  font-size: 20px;
  cursor: pointer;
}

.search-hint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.search-results {
  margin-top: 12px;
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #eadede;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
}

.search-result-item:hover {
  border-color: #d8bbbb;
  background: #fff8f8;
  text-decoration: none;
}

.search-result-title {
  color: #202020;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.search-result-subtitle {
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}

.search-results-empty {
  color: #6f6f6f;
  font-size: 13px;
  padding: 8px 2px;
}


.btn-katalog {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-katalog:hover {
  background: var(--red-dark);
  text-decoration: none;
}

.btn-katalog i {
  font-size: 17px;
  line-height: 1;
}


.btn-arge {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-arge:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.btn-arge i {
  font-size: 16px;
  line-height: 1;
}


.btn-lang {
  background: transparent;
  border: 1.5px solid #bbb;
  color: var(--dark);
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.btn-lang:hover {
  border-color: var(--dark);
}

.btn-lang i {
  font-size: 16px;
  line-height: 1;
}


.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}


.lang-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: auto;
  width: max-content;
  min-width: 0;
  background: var(--white);
  border: 1.5px solid #bbb;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
  border-radius: 0;
  white-space: nowrap;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lang-menu a i {
  font-size: 13px;
  color: var(--red);
  opacity: 0.9;
}

.lang-menu a:hover {
  background: var(--bg-light);
  color: var(--red);
}

.lang-menu a.is-rtl {
  font-family: 'Noto Sans Arabic', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  direction: rtl;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.search-icon {
  display: none;
}

.logo-svg {
  display: none;
}

.logo-text {
  display: none;
}



.hero-outer {

  background-image: url(/img/hakkimizdabg.png);
  background-size: cover;
  background-position: center;
  background-color: #8B1219;
  position: relative;
}


.hero-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(160, 20, 25, 0.82);
  z-index: 0;
}


.hero-outer .navbar-wrapper {
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 50px;
}

.hero .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}

.hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .sep {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 600;
}


.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 0;
}

.subnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 28px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.subnav a:hover {
  color: var(--red);
}

.subnav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}


.about-page .section {
  padding: 80px 60px;
}


.about-page .facility-section {
  display: flex;
  justify-content: center;
}

.about-page .facility-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.about-page .facility-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  background: var(--white);
}


.about-page .facility-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 2;
}

.about-page .facility-img-wrap img {
  position: relative;
  z-index: 1;
}


.about-page .intro-text {
  text-align: center;
  padding: 24px 60px 40px;
  max-width: 980px;
  margin: 0 auto;
}

.about-page .intro-text p,
.about-page .intro-text .about-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: #3b3b3b;
  font-weight: 300;
}


.about-page .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  max-width: none;
  margin: 0;
  align-items: stretch;
  background: var(--white);
}

.about-page .two-col .col-text {
  padding: 60px 70px;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.about-page .col-text p,
.about-page .col-text .about-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

.about-page .col-image {
  position: relative;
  height: 100%;
}

.about-page .col-image img,
.about-page .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .img-placeholder {
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
}


.about-page .two-col-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
  background: var(--white);
  margin-bottom: 0;
}

.about-page .two-col-reverse .col-text {
  padding: 60px 70px;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.about-page .two-col-reverse .col-text p,
.about-page .two-col-reverse .col-text .about-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}


.about-page .two-col .col-image img {
  object-position: right center;
}

.about-page .two-col-reverse .col-image img {
  object-position: left center;
}


.about-page .red-quote {
  background: var(--red);
  padding: 80px 60px;
  text-align: center;
  margin-top: 0;
}

.about-page .two-col-reverse+.red-quote {
  margin-top: 0;
}

.red-quote p,
.red-quote .about-rich-content {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}


.about-page .light-section {
  background: var(--bg-light);
  padding: 80px 60px;
}

.about-page .light-section .container {
  text-align: center;
}

.about-page .light-section p,
.about-page .light-section .about-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  max-width: 860px;
  margin: 0 auto 24px;
}

.about-page .light-section .signature {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
}


.history-page .hero-outer {
  background-image: url(/img/tarihcebg.png);
}

.arge-page .hero-outer {
  background-image: url(/img/hakkimizdabg.png);
}

.arge-page .hero {
  padding: 38px 0 46px;
}

.arge-page .hero .container {
  position: relative;
}

.arge-page .hero h1 {
  font-size: clamp(38px, 4.7vw, 56px);
  max-width: 560px;
}

.arge-page .arge-hero-brand {
  position: absolute;
  right: 60px;
  top: 0;
  width: 140px;
  height: auto;
}

.arge-page .arge-award-section {
  background: #f3f3f3;
  text-align: center;
  padding: 62px 24px 70px;
}

.arge-page .arge-award-logo {
  width: 96px;
  height: auto;
  margin-bottom: 22px;
}

.arge-page .arge-award-section p,
.arge-page .arge-award-section .arge-award-text {
  font-size: 18px;
  line-height: 1.6;
  color: #3f3f3f;
  margin-bottom: 8px;
}

.arge-page .arge-award-section h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #262626;
  margin: 0;
}

.arge-page .arge-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.arge-page .arge-card {
  min-height: 430px;
  padding: 58px 46px;
  background: #f3f3f3;
}

.arge-page .arge-text-card h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(44px, 3.7vw, 62px);
  line-height: 1.08;
  color: #2b2d32;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}

.arge-page .arge-text-card p,
.arge-page .arge-text-card .arge-rich-content {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  max-width: 560px;
  margin: 0;
  font-weight: 300;
}

.arge-page .arge-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.arge-page .arge-pink-bg {
  background: #f8eaed;
  min-height: 580px;
}

.arge-page .arge-image-card img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.arge-page .arge-red-section {
  background: #c91f2f;
  padding: 0px 0px 0px;
}

.arge-page .arge-red-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.arge-page .arge-red-col {
  color: #fff;
}

.arge-page .arge-red-topimg {
  width: 100%;
  height: 3%;
  margin-bottom: 24px;
  display: block;
  object-fit: contain;
}

.arge-page .arge-red-left h3,
.arge-page .arge-red-right h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 400;
}

.arge-page .arge-red-left p,
.arge-page .arge-red-right p,
.arge-page .arge-red-left .arge-rich-content,
.arge-page .arge-red-right .arge-rich-content {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.93);
  margin: 0;
  font-weight: 300;
}

.arge-page .arge-red-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arge-page .arge-red-center img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.arge-page .arge-red-bottomimg {
  width: 100%;
  margin: 18px auto 0;
  display: block;
  height: 300px;
  object-fit: contain;
}

.arge-page .arge-catalog-section {
  background: #f7ecef;
  text-align: center;
  padding: 86px 24px 96px;
  padding-bottom: 160px;
}

.arge-page .arge-catalog-section h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(42px, 3.5vw, 56px);
  color: #2f3136;
  margin-bottom: 14px;
  font-weight: 400;
}

.arge-page .arge-catalog-section p,
.arge-page .arge-catalog-section .arge-rich-content {
  font-size: 16px;
  color: #4e4e4e;
  margin-bottom: 20px;
}

.arge-page .arge-rich-content p {
  margin: 0 0 1em;
}

.arge-page .arge-rich-content p:last-child {
  margin-bottom: 0;
}

.arge-page .arge-rich-content ul,
.arge-page .arge-rich-content ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.arge-page .arge-catalog-btn {
  border: 0;
  background: #c91f2f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.cultural-page .hero-outer {
  background-image: url(/img/hakkimizdabg.png);
}

.cultural-page .cultural-subnav a {
  font-size: 10px;
  padding: 18px 14px;
}

.cultural-page .cultural-intro {
  background: #f3f3f3;
  padding: 58px 16px 46px;
  text-align: center;
}

.cultural-page .cultural-intro h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(40px, 3.4vw, 52px);
  color: #2f3137;
  margin-bottom: 20px;
  font-weight: 400;
}

.cultural-page .cultural-intro p {
  max-width: 1300px;
  margin: 0 auto 22px;
  font-size: 13px;
  line-height: 1.9;
  color: #363636;
  font-weight: 300;
}

.cultural-page .cultural-hero-image {
  width: 100%;
  max-width: 1320px;
  height: auto;
  margin: 14px auto 0;
  display: block;
}

.cultural-page .cultural-info-grid {
  background: #f3f3f3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  margin: 0 16px 0;
}

.cultural-page .cultural-info-grid article {
  padding: 28px 22px 24px;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  min-height: 180px;
}

.cultural-page .cultural-info-grid h3 {
  font-family: 'Marcellus', serif;
  font-size: 46px;
  color: #2d2f34;
  margin-bottom: 14px;
  font-weight: 400;
}

.cultural-page .cultural-info-grid p {
  font-size: 13px;
  line-height: 1.75;
  color: #363636;
  margin: 0;
  font-weight: 300;
}

.cultural-page .cultural-cami {
  background: #f8eaed;
  padding: 58px 0 0;
}

.cultural-page .cultural-cami-head {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 36px;
  padding: 0 16px;
}

.cultural-page .cultural-cami-head h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(44px, 3.5vw, 56px);
  color: #2f3136;
  margin-bottom: 12px;
  font-weight: 400;
}

.cultural-page .cultural-cami-head p {
  font-size: 12px;
  color: #3c3c3c;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 1280px;
  font-weight: 300;
}

.cultural-page .cultural-cami-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.cultural-page .cami-text-block {
  padding: 30px 24px;
  background: #f8eaed;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cultural-page .cami-text-block h3 {
  font-family: 'Marcellus', serif;
  font-size: 48px;
  margin: 0 0 6px;
  color: #2c2e33;
  font-weight: 400;
}

.cultural-page .cami-text-block p {
  font-size: 13px;
  color: #353535;
  line-height: 1.8;
  margin: 0 0 16px;
  font-weight: 300;
}

.cultural-page .cami-image-block {
  background: #f8eaed;
}

.cultural-page .cami-image-block img {
  width: 100%;
  height: 550px;
  min-height: 550px;
  object-fit: cover;
  display: block;
}

.cultural-page .cultural-link-strip {
  background: #2d2d2f;
  color: #fff;
  text-align: center;
  padding: 48px 16px;
  margin-bottom: 120px;
}

.cultural-page .cultural-link-strip p {
  font-size: 13px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
}

.cultural-page .cultural-link-strip a {
  font-family: 'Marcellus', serif;
  font-size: 38px;
  text-decoration: none;
  color: #fff;
}

.product-detail-page .hero-outer {
  background-image: url(/img/hakkimizdabg.png);
}

.product-detail-page .hero {
  padding: 42px 0 56px;
}

.product-detail-page .hero h1 {
  font-size: clamp(42px, 4.6vw, 62px);
}

.product-detail-page .pd-section {
  background: #f3f3f3;
  padding: 34px 60px 54px;
}

.product-detail-page .pd-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: start;
  max-width: none;
}

.product-detail-page .pd-left {
  max-width: 920px;
}

.product-detail-page .pd-right {
  margin-top: -200px;
  position: relative;
  z-index: 2;
}

.product-detail-page .pd-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.product-detail-page .pd-title-row h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(48px, 4.1vw, 66px);
  color: #2f3136;
  font-weight: 400;
  margin: 0;
}

.product-detail-page .pd-badge {
  background: #d51f2f;
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.product-detail-page .pd-desc,
.product-detail-page .pd-endikasyon {
  font-size: 16px;
  line-height: 1.85;
  color: #343434;
  font-weight: 300;
  max-width: 900px;
}

.product-detail-page .pd-subtitle {
  font-family: 'Marcellus', serif;
  font-size: clamp(48px, 4.1vw, 62px);
  color: #2f3136;
  margin: 26px 0 10px;
  font-weight: 400;
}

.product-detail-page .pd-info-row {
  display: flex;
  gap: 10px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}

.product-detail-page .pd-pill {
  background: #f8eaed;
  border: 1px solid #edd9dd;
  border-radius: 4px;
  min-height: 58px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 170px;
}

.product-detail-page .pd-pill span {
  font-size: 16px;
  color: #787878;
}

.product-detail-page .pd-pill strong {
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 500;
  background: #fff;
  border-radius: 6px;
  min-width: 100px;
  text-align: center;
  padding: 10px 12px;
}

.product-detail-page .pd-color-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 9px 12px;
}

.product-detail-page .pd-color-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
}

.product-detail-page .pd-color-dot[data-color="beige"] {
  background: #e8c4b2;
}

.product-detail-page .pd-color-dot[data-color="white"] {
  background: #f4f1f1;
  border-color: #ddd5d5;
}

.product-detail-page .pd-color-dot[data-color="black"] {
  background: #000;
}

.product-detail-page .pd-color-dot.is-active {
  box-shadow: 0 0 0 2px #d6202f inset;
}

.product-detail-page .pd-howto {
  border: 0;
  background: #c91f2f;
  color: #fff;
  border-radius: 4px;
  padding: 0 28px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.product-detail-page .pd-howto img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.product-detail-page .pd-size-table {
  background: #f8eaed;
  border: 1px solid #edd9dd;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  max-width: 680px;
}

.product-detail-page .pd-size-head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-right: 8px;
}

.product-detail-page .pd-size-head {
  font-size: 16px;
  color: #707070;
}

.product-detail-page .pd-size-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.product-detail-page .pd-size-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.product-detail-page .pd-size-cols::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: #debfc4;
  transform: translateY(-2px);
  z-index: 0;
}

.product-detail-page .pd-size-item {
  position: relative;
  z-index: 1;
}

.product-detail-page .pd-size-item b {
  display: block;
  font-size: 12px;
  color: #4c4c4c;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-detail-page .pd-size-item i {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e4b9bf;
  margin: 0 auto 6px;
  border: 1px solid #e4b9bf;
}

.product-detail-page .pd-size-item span {
  font-size: 11px;
  color: #696969;
}

.product-detail-page .pd-main-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 560px;
}

.product-detail-page .pd-main-image {
  width: 540px;
  height: 540px;
  object-fit: contain;
  display: block;
}

.product-detail-page .pd-thumbs {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-detail-page .pd-thumb {
  border: 1px solid #e5d7db;
  background: #fff;
  padding: 0;
  width: 92px;
  height: 92px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.product-detail-page .pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-page .pd-thumb.is-active {
  border-color: #d6202f;
}

.product-detail-page .pd-features-wrap {
  margin-top: 30px;
}

.product-detail-page .pd-features-wrap h3,
.product-detail-page .pd-other-wrap h3 {
  font-family: 'Marcellus', serif;
  font-size: 48px;
  color: #2f3136;
  font-weight: 400;
  margin-bottom: 14px;
}

.product-detail-page .pd-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-page .pd-feature-item {
  background: #f8eaed;
  border: 1px solid #eedde1;
  border-radius: 4px;
  padding: 12px 10px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 110px;
}

.product-detail-page .pd-feature-item img {
  width: 112px;
  height: 86px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 3px;
  padding: 8px;
}

.product-detail-page .pd-feature-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  color: #2f3136;
  font-weight: 400;
}

.product-detail-page .pd-feature-item span {
  font-size: 14px;
  color: #6e6e6e;
  line-height: 1.45;
}

.product-detail-page .pd-other-wrap {
  margin-top: 36px;
  margin-bottom: 100px;
}

.product-detail-page .pd-other-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.product-detail-page .pd-other-card {
  background: #adadad;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  height: 340px;
}

.product-detail-page .pd-other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .home-slider {
  position: relative;
  height: 100vh;
  background-color: #2f2f2f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-page .home-slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(81, 81, 81, 0.5);
  z-index: 0;
}

.home-page .navbar-wrapper {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 12;
  padding: 0;
}

.home-page .navbar-wrapper .container {
  padding-left: 30px;
  padding-right: 30px;
}

.home-page .navbar {
  box-shadow: none;
  border-radius: 4px;
}

.home-page .home-swiper {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 100vh;
}

.home-page .home-slide {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: 100vh;
  padding: 150px 34px 48px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page .home-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(81, 81, 81, 0.3);
  z-index: 1;
  pointer-events: none;
}

.home-page .home-slide-content {
  max-width: 580px;
  color: #fff;
  padding-bottom: 0;
  z-index: 2;
  position: relative;
  align-self: center;
  margin-left: 42px;
  margin-top: -80px;
}

.home-page .home-slide-content .home-kicker,
.home-page .home-slide-content h1,
.home-page .home-slide-content p,
.home-page .home-slide-content .home-cta {
  opacity: 0;
  transform: translateY(22px);
}

.home-page .swiper-slide-active .home-slide-content .home-kicker {
  animation: homeTextIn 0.55s ease forwards;
}

.home-page .swiper-slide-active .home-slide-content h1 {
  animation: homeTextIn 0.65s ease forwards;
  animation-delay: 0.12s;
}

.home-page .swiper-slide-active .home-slide-content p {
  animation: homeTextIn 0.65s ease forwards;
  animation-delay: 0.24s;
}

.home-page .swiper-slide-active .home-slide-content .home-cta {
  animation: homeTextIn 0.55s ease forwards;
  animation-delay: 0.36s;
}

.home-page .home-kicker {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.home-page .home-slide-content h1 {
  font-family: 'Marcellus', serif;
  font-size: 90px;
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}

.home-page .home-slide-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  margin: 0 0 22px;
  max-width: 520px;
}

.home-page .home-cta {
  border: 0;
  background: #fff;
  color: #242424;
  font-size: 18px;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-page .home-cta:hover {
  background: #c91f2f;
  color: #fff;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 31, 47, 0.32);
}

.home-page .home-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.home-page .home-slide-image-wrap {
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 2;
  position: absolute;
  height: 100%;
  right: 20%;
  width: auto;
}

.home-page .home-slide-image {
  width: 100%;
  height: 85%;
  object-fit: contain;
  display: block;
}

.home-page .home-slider-nav {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 8;
}

.home-page .home-slider-btn {
  width: 82px;
  height: 56px;
  border-radius: 6px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 0;
}

.home-page .home-slider-next {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-page .home-slider-prev {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(78, 78, 78, 0.9);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-page .home-slider-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateX(2px);
}

.home-page .home-slider-prev:hover {
  background: #ffffff;
  color: #2f2f2f;
  transform: translateX(-2px);
}

.home-page .home-slider-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-page .home-slider-btn.swiper-button-disabled {
  opacity: 0.6;
}

@keyframes homeTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .home-products {
  background: #f3f3f3;
  padding: 64px 30px 30px;
}

.home-page .home-products-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.home-page .home-products-logo {
  width: 130px;
  height: auto;
}

.home-page .home-products-head p {
  margin: 0;
  font-size: 20px;
  color: #343434;
  max-width: 527px;
  margin-left: 20px;
}

.home-page .home-products-swiper {
  width: 100%;
  margin-top: 60px;
}

.home-page .home-products-swiper .swiper-slide {
  height: auto;
}

.home-page .home-product-card {
  display: grid;
  grid-template-rows: 550px auto;
  gap: 0;
  background: #575757;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .home-product-thumb {
  background: #b9b9b9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.home-page .home-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .home-product-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 28px;
  font-family: 'Marcellus', serif;
  font-size: 18px;
  line-height: 1.15;
  color: #fff;
}

.home-page .home-product-arrow {
  position: absolute;
  left: 14px;
  bottom: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease;
}

.home-page .home-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.home-page .home-product-card:hover .home-product-title,
.home-page .home-product-card:hover .home-product-arrow {
  color: #e52a39;
}

.home-page .home-products-foot {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.home-page .home-all-products {
  font-size: 18px;
  color: #4b4b4b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-page .home-all-products:hover {
  color: #c91f2f;
}

.home-page .home-products-nav {
  display: flex;
  gap: 4px;
}

.home-page .home-products-btn {
  width: 48px;
  height: 32px;
  border: 1px solid #d7d7d7;
  background: #f5f5f5;
  color: #585858;
  border-radius: 3px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
}

.home-page .home-products-btn:hover {
  border-color: #c91f2f;
  color: #c91f2f;
  background: #fff;
  transform: translateY(-1px);
}

.home-page .home-comfort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  background: #f3f3f3;
}

.home-page .home-comfort-left {
  padding: 48px 36px 48px 36px;
}

.home-page .home-comfort-left h2 {
  font-family: 'Marcellus', serif;
  font-size: 60px;
  line-height: 1.06;
  color: #2f3136;
  margin: 0 0 24px;
  font-weight: 400;
}

.home-page .home-comfort-left p {
  font-size: 20px;
  line-height: 1.62;
  color: #353535;
  margin: 0 0 40px;
  max-width: 670px;
}

.home-page .home-comfort-btn {
  border: 1px solid #d6202f;
  background: transparent;
  color: #2f3136;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home-page .home-comfort-btn:hover,
.home-page .home-comfort-btn:focus,
.home-page .home-comfort-btn:active {
  background: #d6202f;
  color: #fff;
  text-decoration: none;
}

.home-page .home-comfort-right {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.home-page .home-comfort-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .home-impact {
  background: #f8eaed;
}

.home-page .home-impact-stats {
  background: #cd1f2f;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.home-page .home-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.home-page .home-stat-icon {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .home-stat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.home-page .home-stat-text strong {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: 45px;
  line-height: 1;
  font-weight: 400;
}

.home-page .home-stat-text span {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.home-page .home-impact-banner {
  margin: 26px 28px 0;
  position: relative;
  overflow: hidden;
}

.home-page .home-impact-banner>img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.home-page .home-impact-overlay {
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-page .home-impact-logo {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.home-page .home-impact-overlay h3 {
  font-family: 'Marcellus', serif;
  font-size: 60px;
  line-height: 1.08;
  margin: 0;
  font-weight: 400;
}

.home-page .home-founder {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 12px;
  padding: 46px 0 28px;
  align-items: end;
}

.home-page .home-founder-text {
  padding: 16px 24px 24px 120px;
}

.home-page .home-founder-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.home-page .home-founder-line {
  width: 106px;
  height: 2px;
  background: #d6202f;
  margin-left: -120px;
}

.home-page .home-founder-title-row h3 {
  font-family: 'Marcellus', serif;
  font-size: 60px;
  margin: 0;
  color: #2f3136;
  font-weight: 400;
}

.home-page .home-founder-quote {
  font-family: 'Ephesis', cursive;
  font-size: 40px;
  color: #323232;
  margin-bottom: 6px;
  max-width: 980px;
}

.home-page .home-founder-sign {
  font-family: 'Ephesis', cursive;
  font-size: 34px;
  color: #2e2e2e;
  margin-bottom: 28px;
  text-decoration: none;
  text-align: right;
  max-width: 980px;
  padding-right: 72px;
}

.home-page .home-founder-text p {
  font-size: 20px;
  line-height: 1.85;
  color: #323232;
  margin: 0 0 34px;
  max-width: 980px;
}

.home-page .home-founder-btn {
  border: 1px solid #d4c7ca;
  background: transparent;
  color: #3d3d3d;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 18px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.home-page .home-founder-btn:hover,
.home-page .home-founder-btn:focus,
.home-page .home-founder-btn:active {
  background: #b41420;
  border-color: #b41420;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.home-page .home-founder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .home-founder-image img {
  width: min(680px, 100%);
  height: 600px;
  object-fit: contain;
  display: block;
}

.home-page .home-founder-caption {
  margin-top: 10px;
  text-align: center;
  color: #2f3136;
  font-size: 24px;
}

.home-page .home-founder-caption span {
  display: block;
  font-family: 'Ephesis', cursive;
  font-size: 30px;
  margin-top: 6px;
}

.home-page .home-news {
  background: #f3f3f3;
  padding: 56px 30px 52px;
  padding-bottom: 140px;
}

.home-page .home-news-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.home-page .home-news-line {
  width: 104px;
  height: 2px;
  background: #d6202f;
}

.home-page .home-news-head h2 {
  font-family: 'Marcellus', serif;
  font-size: 60px;
  color: #2f3136;
  margin: 0;
  font-weight: 400;
}

.home-page .home-news-tabs {
  display: flex;
  gap: 6px;
  margin-left: 120px;
  margin-right: 120px;
  margin-bottom: 30px;
}

.home-page .home-news-tab {
  border: 2px solid #cfcfcf;
  background: transparent;
  color: #383838;
  border-radius: 10px;
  min-width: 0;
  height: 50px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.home-page .home-news-tab.is-active {
  border-color: #7d7d7d;
  color: #2f3136;
}

.home-page .home-news-panels {
  margin-left: 120px;
  margin-right: 120px;
}

.home-page .home-news-panel {
  display: none;
}

.home-page .home-news-panel.is-active {
  display: block;
}

.home-page .home-news-row {
  --news-hover-image: url('/img/haberdetay.png');
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid #dddddd;
  color: #2f3136;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 14px;
  transition: padding-left 0.25s ease;
}

.home-page .home-news-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--news-hover-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.28s ease, transform 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.home-page .home-news-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.28s ease;
  z-index: 1;
  pointer-events: none;
}

.home-page .home-news-row:last-child {
  border-bottom: 1px solid #dddddd;
}

.home-page .home-news-date,
.home-page .home-news-text {
  position: relative;
  z-index: 2;
}

.home-page .home-news-date {
  font-size: 20px;
  color: #3b3b3b;
}

.home-page .home-news-text {
  font-size: 20px;
  color: #2f3136;
  padding-right: 20px;
}

.home-page .home-news-row:hover::before {
  opacity: 1;
  transform: scale(1);
}

.home-page .home-news-row:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

.home-page .home-news-row:hover {
  padding-left: 24px;
}

.home-page .home-news-row:hover .home-news-date,
.home-page .home-news-row:hover .home-news-text {
  color: #fff;
}

.home-page .home-news-foot {
  margin-top: 34px;
  margin-left: 120px;
  margin-right: 120px;
  display: flex;
  justify-content: flex-end;
}

.home-page .home-news-more {
  border: 2px solid #cfcfcf;
  background: transparent;
  color: #3d3d3d;
  text-decoration: none;
  border-radius: 10px;
  min-width: 0;
  height: 50px;
  padding: 0 28px;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-page .home-news-more:hover {
  color: #c91f2f;
  border-color: #c91f2f;
}

.history-page .history-quote {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  align-items: center;
  padding: 60px 40px 20px 40px;
  background: var(--white);
}

.history-page .history-quote-text {
  justify-self: center;
  max-width: 560px;
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}

.history-page .history-quote-line {
  display: block;
  width: 120px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 24px;
}

.history-page .history-quote-body {
  font-family: 'Ephesis', cursive;
  font-size: clamp(28px, 3.8vw, 44px);
  color: #3d3d3d;
  line-height: 1.6;
  max-width: 520px;
}

.history-page .history-quote-meta {
  margin-top: 20px;
}

.history-page .history-quote-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.history-page .history-quote-name {
  font-family: 'Ephesis', cursive;
  font-size: 26px;
  color: var(--red);
}

.history-page .history-quote-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.history-page .history-quote-image img {
  width: min(520px, 100%);
  height: 580px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.history-page .history-intro {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 60px 60px;
}

.history-page .history-intro h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 500;
  margin-bottom: 14px;
  color: #2d2d2d;
}

.history-page .history-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #3b3b3b;
  font-weight: 300;
  margin-bottom: 16px;
}

.history-page .history-intro .history-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: #3b3b3b;
  font-weight: 300;
  margin-bottom: 16px;
}

.history-page .history-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}

.history-page .history-text {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.history-page .history-text h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: #2d2d2d;
}

.history-page .history-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

.history-page .history-text .history-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

.history-page .history-image img {
  width: 100%;
  height: 580px;
  max-height: 580px;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.history-page .history-video {
  position: relative;
  height: 220px;
  background: #2e2e2e center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.history-page .history-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.history-page .history-video-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.history-page .history-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.history-page .history-focus {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 60px 80px;
}

.history-page .history-focus h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 500;
  margin-bottom: 14px;
  color: #2d2d2d;
}

.history-page .history-focus p {
  font-size: 15px;
  line-height: 1.9;
  color: #3b3b3b;
  font-weight: 300;
  margin-bottom: 16px;
}

.history-page .history-focus .history-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: #3b3b3b;
  font-weight: 300;
  margin-bottom: 16px;
}

.history-page .history-impact {
  background: var(--red);
  color: var(--white);
  padding: 0 60px;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.history-page .history-impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.history-page .history-impact-left h3 {
  font-family: 'Marcellus', serif;
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.history-page .history-impact-sign {
  font-family: 'Ephesis', cursive;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.9);
}

.history-page .history-impact-list {
  display: grid;
  gap: 14px;
}

.history-page .history-impact-item {
  background: var(--white);
  color: #2d2d2d;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 12.5px;
  line-height: 1.6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.history-page .history-impact-right {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 220px;
}

.history-page .history-duo {
  padding: 70px 60px 90px;
  background: var(--white);
}

.history-page .history-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.history-page .history-duo-title {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  position: relative;
  padding-left: 58px;
  color: #2d2d2d;
}

.history-page .history-duo-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 44px;
  height: 2px;
  background: var(--red);
}

.history-page .history-duo p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

.docs-page .docs-section {
  padding: 60px 0 200px;
  background: var(--white);
}

.docs-page .docs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px 28px;
}

.docs-page .doc-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.docs-page .doc-thumb {
  border: 1px solid #e3d7d7;
  border-radius: 4px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-page .doc-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.docs-page .doc-title {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  min-height: 44px;
}

.docs-page .doc-btn {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.docs-page .doc-btn i {
  font-size: 14px;
}

.docs-page .doc-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .docs-page .docs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .docs-page .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .docs-page .docs-grid {
    grid-template-columns: 1fr;
  }

  .docs-page .doc-thumb {
    height: 280px;
  }
}

.kvkk-page .kvkk-section {
  padding: 60px 0 120px;
  background: var(--white);
}

.kvkk-page .kvkk-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kvkk-page .kvkk-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.kvkk-page .kvkk-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 18px;
}

.contact-page .contact-section {
  padding: 60px 0 40px;
  background: var(--white);
}

.contact-page .contact-section .container,
.contact-page .career-section .container,
.contact-page .contact-form-section .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}

.contact-page .contact-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.contact-page .contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6dfdf;
  height: 230px;
  margin: 0 0 36px;
  max-width: none;
}

.contact-page .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-page .contact-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  border-radius: 18px;
  padding: 34px 40px;
  max-width: none;
  margin: 0 auto;
}

.contact-page .info-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-page .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #efefef;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
}

.contact-page .info-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b9b9b;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-page .info-text {
  font-size: 19px;
  color: #111;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-display);
}

.contact-page .career-section {
  background: #fdecec;
  padding: 60px 0 70px;
  text-align: center;
  margin-top: 40px;
}

.contact-page .career-section h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-page .career-section p {
  max-width: 860px;
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

.contact-page .career-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-page .career-btn {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-page .career-btn img {
  height: 16px;
  object-fit: contain;
  width: auto;
  display: block;
}

.contact-page .career-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.contact-page .contact-form-section {
  padding: 60px 0 180px;
  background: var(--white);
}

.contact-page .contact-form-section h3 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 28px;
}

.contact-page .contact-form {
  max-width: none;
  margin: 0 auto;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  border: 1px solid #e3d7d7;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
}

.contact-page .contact-form textarea {
  height: 180px;
  resize: vertical;
}

.contact-page .form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.contact-page .form-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-page .recaptcha-box {
  display: inline-flex;
  align-items: center;
  min-width: 304px;
}

.contact-page .kvkk-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #666;
  max-width: 520px;
}

.contact-page .kvkk-consent input {
  appearance: none;
  width: 25px;
  height: 25px;
  border: 1.5px solid #b7b7c7;
  background: #fff;
  display: inline-block;
  position: relative;
  margin-top: 2px;
  flex-shrink: 0;
  padding: 0;
}

.contact-page .kvkk-consent input:checked::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #c0202a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-page .send-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-page .send-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-page .contact-section .container,
  .contact-page .career-section .container,
  .contact-page .contact-form-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page .contact-map {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .contact-page .contact-info {
    padding: 10px 0;
    gap: 18px;
  }

  .contact-page .info-card {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .contact-page .info-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .contact-page .info-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .contact-page .contact-form-section {
    padding-bottom: 120px;
  }

  .contact-page .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-page .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page .form-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.values-page .values-section {
  padding: 70px 0 180px;
  background: var(--white);
}

.values-page .values-quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  color: #3a3a3a;
  margin-bottom: 70px;
  letter-spacing: -0.01em;
}

.values-page .values-row {
  margin-top: 10px;
}

.values-page .value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.values-page .value-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-page .value-icon img {
  width: 58px;
  height: 58px;
  display: block;
  margin-left: 5px;
}

.values-page .value-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2px;
}

.values-page .value-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}

@media (max-width: 900px) {
  .values-page .values-section {
    padding: 36px 0 110px;
  }

  .values-page .values-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .values-page .values-quote {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .values-page .values-row {
    margin-top: 0;
    row-gap: 22px;
  }

  .values-page .value-card {
    gap: 12px;
  }

  .values-page .value-icon {
    width: 40px;
    height: 40px;
  }

  .values-page .value-icon img {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .values-page .value-title {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .values-page .value-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 600px) {
  .values-page .values-quote {
    font-size: 22px;
  }

  .values-page .value-title {
    font-size: 21px;
  }

  .values-page .value-text {
    font-size: 13px;
  }
}

.news-page .news-subnav,
.news-detail-page .news-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 18px 0;
  position: relative;
  padding-bottom: 0;
}

.news-page .news-subnav a,
.news-detail-page .news-subnav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 9px;
  border-bottom: 2px solid transparent;
}

.news-page .news-subnav a.active,
.news-detail-page .news-subnav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.news-page .news-section {
  padding: 40px 0 180px;
  background: var(--white);
}

.news-page .news-section .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}

.news-page .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 60px;
}

.news-page .news-item {
  display: grid;
  grid-template-columns: 180px 1fr 20px;
  gap: 24px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
  text-decoration: none;
}

.news-page .news-thumb img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  display: block;
}

.news-page .news-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.news-page .news-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 6px;
}

.news-page .news-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.news-page .news-arrow {
  font-size: 20px;
  color: var(--dark);
  line-height: 1;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.news-page .news-arrow i {
  font-size: 20px;
  line-height: 1;
  color: var(--dark);
}

.news-page .news-item:hover {
  background: #f4f1f1;
}

.news-page .news-item:hover .news-title,
.news-page .news-item:hover .news-arrow i {
  color: var(--red);
}

@media (max-width: 900px) {
  .news-page .news-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-page .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-page .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px 0 14px;
    border-bottom: 1px solid #ece6e6;
    border-radius: 0;
  }

  .news-page .news-thumb {
    width: 100%;
  }

  .news-page .news-thumb img {
    width: 100%;
    height: 190px;
  }

  .news-page .news-body {
    display: block;
  }

  .news-page .news-date {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .news-page .news-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .news-page .news-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .news-page .news-arrow {
    justify-content: flex-start;
    margin-top: 2px;
  }
}

@media (max-width: 600px) {
  .news-page .news-thumb img {
    height: 170px;
  }
}

.news-detail-page .news-detail-section {
  padding: 40px 0 180px;
  background: var(--white);
}

.news-detail-page .news-detail-section .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}

.news-detail-page .news-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.news-detail-page .news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-page .news-detail-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.news-detail-page .news-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}

.news-detail-page .news-detail-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .news-detail-page .news-detail-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .news-detail-page .news-detail-grid {
    grid-template-columns: 1fr;
  }
}

#contactCareerText{
  margin-bottom: 25px;
}

.dealers-page .dealers-view-section {
  background: #f3f3f3;
  padding: 70px 0 80px;
}

.dealers-page .dealers-view-wrap {
  max-width: none;
  padding: 0 60px;
  margin: 0;
  padding-bottom: 100px;
}

.dealers-page .dealers-view-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 400;
  text-align: center;
  color: #303238;
  margin-bottom: 14px;
}

.dealers-page .dealers-view-section>.dealers-view-wrap>p {
  text-align: center;
  font-size: 14px;
  color: #4e4e4e;
  margin-bottom: 34px;
}

.dealers-page .dealers-map-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border: none;
  background: transparent;
}

.dealers-page .dealers-map-object {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.dealers-page .dealer-map-pin {
  pointer-events: all;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.dealers-page .dealer-map-pin image {
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
}

.dealers-page .dealers-map-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  background: rgba(32, 32, 32, 0.92);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 10px;
  white-space: nowrap;
}

.dealers-page .dealers-map-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-page .map-container {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border: none;
  background: transparent;
  border-radius: 0;
}

.about-page .map-svg-object {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.about-page .dealer-map-pin {
  pointer-events: all;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center bottom;
}

.about-page .dealer-map-pin image {
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
}

.about-page .dealers-map-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  background: rgba(32, 32, 32, 0.92);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 10px;
  white-space: nowrap;
}

.about-page .dealers-map-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dealers-page .dealers-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0 14px;
}

.dealers-page .dealers-count {
  font-size: 30px;
  color: #363636;
  font-weight: 400;
}

.dealers-page .dealers-search {
  width: 160px;
  height: 38px;
  border: 1px solid #dfdfdf;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-shrink: 0;
}

.dealers-page .dealers-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  color: #5c5c5c;
}

.dealers-page .dealers-search i {
  color: #2f2f2f;
  font-size: 16px;
  margin-left: 8px;
}

.dealers-page .dealers-accordion {
  display: grid;
  gap: 8px;
}

.dealers-page .dealer-item {
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.dealers-page .dealer-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  text-align: left;
  cursor: pointer;
  color: #2f3033;
}

.dealers-page .dealer-city {
  font-size: 30px;
  line-height: 1;
  color: #2e3238;
}

.dealers-page .dealer-city small {
  color: #8d8d8d;
  font-size: 22px;
  margin-left: 6px;
}

.dealers-page .dealer-trigger i {
  color: #4a4a4a;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.dealers-page .dealer-item.is-open {
  border-color: #d99ea2;
  background: #f7f7f7;
}

.dealers-page .dealer-item.is-open .dealer-trigger i {
  transform: rotate(180deg);
}

.dealers-page .dealer-panel[hidden] {
  display: none;
}

.dealers-page .dealer-panel {
  padding: 0 16px 18px;
}

.dealers-page .dealer-panel-inner {
  padding: 16px;
  border-top: 1px solid #e6e6e6;
  color: #555;
  font-size: 13px;
}

.dealers-page .dealer-detail-grid {
  border-top: 1px solid #e9e9e9;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.dealers-page .dealer-detail-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.dealers-page .dealer-address-block,
.dealers-page .dealer-contact-stack {
  display: grid;
  gap: 14px;
}

.dealers-page .dealer-address-block {
  width: 100%;
}

.dealers-page .dealer-detail-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dealers-page .dealer-dot {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  background: transparent;
}

.dealers-page .dealer-dot-img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.dealers-page .dealer-detail-item strong {
  display: block;
  font-size: 20px;
  color: #1f2329;
  font-weight: 500;
  margin-bottom: 6px;
}

.dealers-page .dealer-detail-item p {
  margin: 0;
  font-size: 20px;
  color: #2f3136;
  line-height: 1.55;
}

.dealers-page .dealer-address-item p {
  font-size: 20px;
  line-height: 1.5;
}

.dealers-page .dealer-contact-item p {
  font-size: 20px;
  line-height: 1.4;
}

.dealers-page .dealer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.dealers-page .dealer-contact-item a:hover {
  text-decoration: underline;
}

.dealers-page .dealer-detail-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}

.dealers-page .dealer-detail-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

.dealers-page .dealer-detail-video img {
  width: 100%;
  height: 353px;
  object-fit: cover;
  display: block;
}

.dealers-page .dealer-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dealers-page .dealer-video-play img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
}

.products-page .products-section {
  padding: 40px 0 120px;
  background: var(--white);
}

.products-page .products-section .container {
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
}

.products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.products-page .product-card {
  display: grid;
  grid-template-rows: 400px auto;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.products-page .product-thumb {
  background: #bfbfbf;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.products-page .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-page .product-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 50px;
  font-size: 18px;
  text-align: left;
  line-height: 1.4;
  font-weight: 500;
}

.products-page .product-arrow {
  position: absolute;
  left: 21px;
  bottom: 22px;
  font-size: 20px;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .products-page .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .products-page .product-title{
    left: 15px;
    right: 15px;
  }
  .products-page .product-arrow{
    left: 9px;
  }
}

.subcat-page .subcat-hero-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.subcat-page .subcat-hero-meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  max-width: none;
  text-align: right;
  white-space: nowrap;
  flex: 0 1 auto;
}

.subcat-page .subcategory-section {
  background: var(--white);
  padding: 26px 0 60px;
  padding-bottom: 180px;
}

.subcat-page .subcategory-section .container {
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
}

.subcat-page .subcategory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.subcat-page .subcat-card {
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subcat-page .subcat-img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  background: #bcbcbc;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.subcat-page .subcat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subcat-page .subcat-title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  color: #3a3a3a;
}

.subcat-page .subcat-tag {
  width: fit-content;
  background: #d9d9d9;
  color: #555;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
  .subcat-page .subcategory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .subcat-page .subcat-hero-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .subcat-page .hero h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .subcat-page .breadcrumb {
    font-size: 11px;
    gap: 6px;
  }

  .subcat-page .subcat-hero-meta {
    text-align: center;
    max-width: none;
    font-size: 12px;
  }

  .subcat-page .subcat-hero-meta {
    white-space: normal;
  }

  .subcat-page .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .subcat-page .hero h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .subcat-page .breadcrumb {
    font-size: 10px;
  }

  .subcat-page .subcat-hero-meta {
    font-size: 11px;
  }
}


.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-heading::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.02em;
}


.about-page .vizyon-section {
  padding: 80px 0 140px;
  background: var(--white);
}

.about-page .vizyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: none;
  margin: 0;
  padding: 0 70px;
}

.about-page .vizyon-col .section-heading {
  margin-bottom: 22px;
  margin-left: -10px;
}

.about-page .vizyon-col .section-heading::before {
  width: 110px;
  height: 1px;
}

.about-page .vizyon-col:first-child .section-heading::before {
  margin-left: -70px;
  width: 170px;
}

.about-page .vizyon-col .section-heading h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-page .vizyon-col p,
.about-page .vizyon-col .about-rich-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-top: 0;
  max-width: 600px;
}

.about-page .about-rich-content p {
  margin: 0 0 1em;
}

.about-page .about-rich-content p:last-child {
  margin-bottom: 0;
}

.about-page .about-rich-content ul,
.about-page .about-rich-content ol {
  margin: 0 0 1em;
  padding-left: 1.2rem;
}

.history-page .vizyon-section {
  padding: 84px 0 118px;
  background: #f2f2f2;
}

.history-page .vizyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  max-width: none;
  margin: 0;
  padding: 0 40px 0 30px;
}

.history-page .vizyon-col .section-heading {
  margin-bottom: 24px;
  gap: 18px;
}

.history-page .vizyon-col .section-heading::before {
  width: 132px;
  height: 1px;
  background: var(--red);
}

.history-page .vizyon-col:first-child .section-heading::before {
  width: 120px;
  margin-left: -30px;
}

.history-page .vizyon-col .section-heading h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(44px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #2f3136;
}

.history-page .vizyon-col p {
  font-size: 15px;
  line-height: 1.75;
  color: #34363b;
  font-weight: 300;
  max-width: 640px;
  margin: 0;
}

.history-page .vizyon-col .history-rich-content {
  font-size: 15px;
  line-height: 1.75;
  color: #34363b;
  font-weight: 300;
  max-width: 640px;
  margin: 0;
}

.history-page .vizyon-col p+p {
  margin-top: 6px;
}

.history-page .vizyon-col .history-rich-content + .history-rich-content {
  margin-top: 6px;
}

.history-page .history-rich-content p {
  margin: 0 0 1em;
}

.history-page .history-rich-content p:last-child {
  margin-bottom: 0;
}


.bayiler-section {
  padding: 80px 60px;
  background: var(--white);
}

.map-container {
  width: 100%;
  height: 320px;
  background: #f5f1ee;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 6px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7);
}

.map-svg-object {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}


.bayi-card {
  border: 1.5px solid var(--border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.bayi-card.is-hidden {
  display: none;
}

.bayi-location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bayi-location strong {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.bayi-location .badge {
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}

.bayi-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.bayi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}

.bayi-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bayi-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.bayi-icon i {
  font-size: 16px;
  line-height: 1;
}

.bayi-info-item .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bayi-info-item .val {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  margin-top: 2px;
}

.bayi-video {
  width: 100%;
  height: 353px;
  background: #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.bayi-video.is-hidden {
  display: none;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.bayi-video:hover .play-btn {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}


.video-section {
  height: 360px;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    var(--about-video-cover, url('/img/tanitimvideobg.png')) center/cover no-repeat, #2E2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.video-cta {
  text-align: center;
  z-index: 2;
  position: relative;
}

.video-cta-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
}

.video-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
}

.play-circle:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}


.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: 1000;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.video-modal-content {
  width: min(960px, 90vw);
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}


.vizyon-section {
  padding: 100px 60px 140px;
  background: var(--white);
}

.vizyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.vizyon-col p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-top: 24px;
}


footer {
  background: #2b2b2b;
}


.footer-katalog {
  padding: 0 60px 0;
  margin-bottom: -60px;
}

.footer-katalog-inner {
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 46px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 6px;
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
}

.footer-katalog-inner h3 {
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.footer-katalog-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 400;
}

.btn-katalog-dl {
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.btn-katalog-dl i {
  font-size: 18px;
  line-height: 1;
  color: var(--red);
  transition: color 0.2s;
}

.btn-katalog-dl:hover {
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.btn-katalog-dl:hover i {
  color: var(--white);
}


.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 60px 26px;
}


.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav-right .btn-arge-f {
  background: transparent;
  color: var(--white);
  border: 1.5px solid #b01921;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  transition: all 0.2s;
  border-radius: 4px;
  text-decoration: none;
}

.footer-nav-right .btn-arge-f:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.footer-nav-right .btn-arge-f i {
  font-size: 16px;
  line-height: 1;
}

.footer-nav-right .btn-lang-f {
  background: transparent;
  border: 1.5px solid #3a3a3a;
  color: var(--white);
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  transition: all 0.2s;
  border-radius: 4px;
}

.footer-nav-right .btn-lang-f:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-nav-right .btn-lang-f i {
  font-size: 16px;
  line-height: 1;
}


.footer-lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-lang-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 8px;
}

.footer-lang-menu {
  position: absolute;
  bottom: calc(100% + 7px);
  right: 0;
  min-width: 160px;
  background: #2b2b2b;
  border: 1.5px solid #3a3a3a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
}

.footer-lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.footer-lang-menu a i {
  font-size: 12px;
  color: var(--red);
}

.footer-lang-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.footer-lang-menu a.is-rtl {
  font-family: 'Noto Sans Arabic', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  direction: rtl;
}

.footer-lang-dropdown.open .footer-lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}


.footer-mid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 60px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: #242424;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.social-icon i {
  font-size: 18px;
  line-height: 1;
}

.social-icon:hover {
  color: var(--white);
}


.nav-has-mega {
  position: static;
}


.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #DDDDDD;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  z-index: 999;
  padding: 36px 48px 40px;
}

.nav-has-mega:hover .mega-menu,
.nav-has-mega.open .mega-menu {
  display: flex;
}


.nav-has-mega:hover>.nav-item-drop {
  color: var(--red);
}

.nav-has-mega:hover>.nav-item-drop::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.nav-item-drop {
  display: inline-flex;
  position: relative;
  align-items: center;
  height: 100%;
}


.mega-inner {
  display: flex;
  width: 100%;
  gap: 0;
}


.mega-title-col {
  width: 180px;
  flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.mega-title-col h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}


.mega-cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(9, auto);
  grid-auto-flow: column;
  gap: 0 32px;
  padding-left: 40px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  text-decoration: none;
  color: var(--dark);
  font-size: 12.5px;
  font-weight: 400;
  transition: color 0.15s;
  text-transform: none;
  letter-spacing: 0;
}

.mega-item i {
  color: var(--red);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.mega-item:hover {
  color: var(--red);
}

.mega-item:hover i {
  transform: translateX(3px);
}


.mega-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.nav-has-mega:hover .mega-menu,
.nav-has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-1 {
  animation-delay: 0.1s;
}

.fade-up-2 {
  animation-delay: 0.25s;
}

.fade-up-3 {
  animation-delay: 0.4s;
}


@media (max-width: 900px) {

  .navbar-wrapper .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .two-col,
  .two-col-reverse,
  .vizyon-grid {
    grid-template-columns: 1fr;
  }

  .two-col .col-text,
  .two-col-reverse .col-text {
    padding: 0;
  }

  .about-page .two-col,
  .about-page .two-col-reverse {
    gap: 0;
  }

  .about-page .two-col .col-image,
  .about-page .two-col-reverse .col-image {
    order: 1;
  }

  .about-page .two-col .col-text,
  .about-page .two-col-reverse .col-text {
    order: 2;
    min-height: auto;
    padding: 24px 16px 30px;
  }

  .about-page .two-col .col-image img,
  .about-page .two-col-reverse .col-image img {
    height: 280px;
    object-fit: cover;
  }

  .about-page .col-text p,
  .about-page .two-col-reverse .col-text p,
  .about-page .col-text .about-rich-content,
  .about-page .two-col-reverse .col-text .about-rich-content {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-page .vizyon-section {
    padding: 42px 0 56px;
  }

  .about-page .vizyon-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .about-page .vizyon-col .section-heading {
    margin-left: 0;
    margin-bottom: 12px;
    gap: 10px;
  }

  .about-page .vizyon-col .section-heading::before,
  .about-page .vizyon-col:first-child .section-heading::before {
    margin-left: 0;
    width: 54px;
  }

  .about-page .vizyon-col .section-heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .about-page .vizyon-col p,
  .about-page .vizyon-col .about-rich-content {
    font-size: 14px;
    line-height: 1.7;
  }

  .navbar {
    padding: 0 14px;
    justify-content: center;
  }

  .nav-left {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-right> :not(.lang-dropdown) {
    display: none;
  }

  .nav-right .btn-lang {
    padding: 8px 10px;
    font-size: 10px;
    border-radius: 6px;
  }

  .lang-menu {
    left: auto;
    right: 0;
  }

  .section,
  .bayiler-section,
  .vizyon-section,
  .light-section {
    padding: 50px 24px;
  }

  .katalog-banner {
    flex-direction: column;
    gap: 24px;
    margin: 0 0 50px;
    padding: 40px 30px;
  }

  .footer-top,
  .footer-mid,
  .footer-bottom {
    padding: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-katalog {
    padding: 0 16px;
    margin-bottom: -28px;
  }

  .footer-katalog-inner {
    padding: 24px 20px;
    transform: translateY(-36px);
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-katalog-inner h3 {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .footer-katalog-inner p {
    font-size: 15px;
    line-height: 1.55;
  }

  .btn-katalog-dl {
    align-self: flex-start;
    margin-top: 2px;
    font-size: 16px;
    padding: 10px 18px;
  }

  .footer-top {
    padding-top: 40px;
  }

  .footer-logo-img {
    height: 42px;
  }

  .footer-nav-right .btn-arge-f,
  .footer-nav-right .btn-lang-f {
    font-size: 10px;
    padding: 8px 12px;
  }

  .footer-mid {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .footer-copyright {
    font-size: 11px;
    line-height: 1.6;
  }

  .footer-links {
    gap: 14px;
    row-gap: 10px;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .footer-bottom {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-legal {
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-legal a {
    font-size: 11px;
  }

  .social-icons {
    gap: 12px;
  }

  .hero {
    padding: 0 24px 30px;
  }

  .hero .container {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .hero .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .hero h1 {
    text-align: center;
  }

  .subnav {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px;
    -webkit-overflow-scrolling: touch;
  }

  .subnav a {
    padding: 16px 16px;
    font-size: 11px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .bayi-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .about-page .light-section{
    padding: 50px 20px;
  }

  .about-page .red-quote {
    padding: 50px 20px;
  }

  .bayi-info-grid {
    grid-template-columns: 1fr;
  }

  .bayi-video {
    height: 280px;
  }

  .history-page .history-quote,
  .history-page .history-split,
  .history-page .history-impact-grid,
  .history-page .history-duo-grid {
    grid-template-columns: 1fr;
  }

  .history-page .history-split {
    display: flex;
    flex-direction: column;
  }

  .history-page .history-split .history-image {
    order: 1;
    width: 100%;
  }

  .history-page .history-split .history-text {
    order: 2;
    width: 100%;
  }

  .history-page .history-quote {
    padding: 40px 24px;
  }

  .history-page .history-quote-image {
    justify-content: center;
  }

  .history-page .history-quote-image img {
    height: 300px;
  }

  .history-page .history-intro {
    padding: 20px 24px 50px;
  }

  .history-page .history-text {
    padding: 24px 16px 30px;
  }

  .history-page .history-image img {
    height: 280px;
    max-height: 280px;
    min-height: 0;
    object-fit: cover;
  }

  .subcat-page .subcategory-section .container{
    padding-left: 10px;
    padding-right: 10px;
  }

  .subcat-page .subcategory-section{
    padding-bottom: 130px;
  }

  .subcat-page .subcat-img{
    height: 250px;
  }

  .history-page .history-focus {
    padding: 50px 24px 60px;
  }

  .history-page .history-impact {
    padding: 50px 24px;
  }

  .history-page .history-video {
    height: 180px;
  }

  .history-page .history-duo {
    padding: 50px 24px 70px;
  }

  .history-page .history-duo-title {
    padding-left: 46px;
  }

  .history-page .vizyon-section {
    padding: 56px 0 72px;
  }

  .history-page .vizyon-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
  }

  .history-page .vizyon-col {
    width: 100%;
  }

  .history-page .vizyon-col .section-heading {
    margin-bottom: 16px;
  }

  .history-page .vizyon-col .section-heading::before,
  .history-page .vizyon-col:first-child .section-heading::before {
    width: 30px;
    margin-left: 0;
  }

  .history-page .vizyon-col .section-heading h2 {
    font-size: clamp(24px, 5vw, 46px);
  }
  

  .dealers-page .dealers-view-section {
    padding: 46px 0 56px;
  }

  .dealers-page .dealers-view-wrap {
    padding: 0 16px;
  }

  .dealers-page .dealers-map-wrap {
    height: 300px;
  }

  .dealers-page .dealers-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .dealers-page .dealers-search {
    width: 100%;
  }

  .dealers-page .dealer-city {
    font-size: 21px;
  }

  .dealers-page .dealer-city small {
    font-size: 18px;
  }

  .dealers-page .dealer-detail-grid {
    grid-template-columns: 1fr;
  }

  .dealers-page .dealer-detail-left {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dealers-page .dealer-detail-item strong {
    font-size: 14px;
  }

  .dealers-page .dealer-detail-item p {
    font-size: 12px;
  }

  .dealers-page .dealer-detail-video img {
    height: 160px;
  }

  .dealers-page .dealer-video-play img {
    width: 64px;
    height: 64px;
  }

  .arge-page .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .arge-page .arge-hero-brand {
    position: static;
    margin-top: 16px;
    width: 110px;
  }

  .arge-page .arge-award-section {
    padding: 44px 20px 52px;
  }

  .arge-page .arge-split-grid {
    grid-template-columns: 1fr;
  }

  .arge-page .arge-split-grid > .arge-card:nth-child(2) {
    order: 1;
  }

  .arge-page .arge-split-grid > .arge-card:nth-child(1) {
    order: 2;
  }

  .arge-page .arge-split-grid > .arge-card:nth-child(3) {
    order: 3;
  }

  .arge-page .arge-split-grid > .arge-card:nth-child(4) {
    order: 4;
  }

  .arge-page .arge-card {
    min-height: auto;
    padding: 36px 24px;
  }

  .arge-page .arge-image-card {
    padding: 20px 16px;
    min-height: 0;
  }

  .arge-page .arge-image-card img {
    width: 100%;
    max-width: none;
    max-height: 280px;
    object-fit: contain;
  }

  .arge-page .arge-text-card h3 {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 16px;
  }

  .arge-page .arge-text-card p {
    font-size: 14px;
  }

  .arge-page .arge-red-section {
    padding: 34px 20px;
  }

  .arge-page .arge-red-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .arge-page .arge-red-topimg {
    width: 170px;
    margin-bottom: 14px;
  }

  .arge-page .arge-red-left h3,
  .arge-page .arge-red-right h3 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .arge-page .arge-red-center img {
    max-width: 240px;
  }

  .arge-page .arge-red-bottomimg {
    max-width: 250px;
  }

  .arge-page .arge-catalog-section {
    padding: 54px 20px 64px;
  }

  .arge-page .arge-catalog-section p {
    font-size: 14px;
  }

  .cultural-page .cultural-subnav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .cultural-page .cultural-subnav a {
    white-space: nowrap;
  }

  .cultural-page .cultural-intro {
    padding: 40px 16px 30px;
  }

  .cultural-page .cultural-intro h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .cultural-page .cultural-intro p {
    font-size: 13px;
  }

  .cultural-page .cultural-info-grid {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }

  .cultural-page .cultural-info-grid h3 {
    font-size: 34px;
  }

  .cultural-page .cultural-cami {
    padding-top: 44px;
  }

  .cultural-page .cultural-cami-head h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .cultural-page .cultural-cami-grid {
    grid-template-columns: 1fr;
  }

  .cultural-page .cultural-cami-grid > .cami-image-block:nth-child(2) {
    order: 1;
  }

  .cultural-page .cultural-cami-grid > .cami-text-block:nth-child(1) {
    order: 2;
  }

  .cultural-page .cultural-cami-grid > .cami-image-block:nth-child(3) {
    order: 3;
  }

  .cultural-page .cultural-cami-grid > .cami-text-block:nth-child(4) {
    order: 4;
  }

  .cultural-page .cami-text-block h3 {
    font-size: 34px;
  }

  .cultural-page .cami-text-block {
    min-height: auto;
    padding: 26px 16px;
  }

  .cultural-page .cami-image-block img {
    height: 260px;
    min-height: 260px;
  }

  .cultural-page .cultural-link-strip a {
    font-size: 26px;
  }

  .product-detail-page .hero {
    padding: 34px 0 40px;
  }

  .product-detail-page .pd-section {
    padding: 20px 16px 36px;
  }

  .product-detail-page .pd-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-detail-page .pd-right {
    order: 1;
    margin-top: 0;
  }

  .product-detail-page .pd-left {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-detail-page .pd-left > .pd-title-row { order: 1; }
  .product-detail-page .pd-left > .pd-info-row { order: 2; margin: 6px 0 0; }
  .product-detail-page .pd-left > .pd-size-table { order: 3; margin-top: 0; }
  .product-detail-page .pd-left > .pd-desc { order: 4; }
  .product-detail-page .pd-left > .pd-subtitle { order: 5; margin-top: 8px; }
  .product-detail-page .pd-left > .pd-endikasyon { order: 6; }

  .product-detail-page .pd-title-row h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .product-detail-page .pd-subtitle {
    font-size: 34px;
  }

  .product-detail-page .pd-pill {
    min-width: 140px;
  }

  .product-detail-page .pd-pill span {
    font-size: 14px;
  }

  .product-detail-page .pd-pill strong {
    min-width: 80px;
    font-size: 16px;
  }

  .product-detail-page .pd-color-dot {
    width: 28px;
    height: 28px;
  }

  .product-detail-page .pd-howto {
    min-height: 52px;
    font-size: 12px;
    padding: 0 16px;
  }

  .product-detail-page .pd-size-table {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-detail-page .pd-size-head-wrap {
    justify-content: flex-start;
  }

  .product-detail-page .pd-size-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail-page .pd-main-image-wrap {
    min-height: 300px;
  }

  .product-detail-page .pd-main-image {
    width: min(360px, 100%);
    height: auto;
  }

  .product-detail-page .pd-thumbs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .product-detail-page .pd-thumb {
    flex: 0 0 auto;
  }

  .product-detail-page .pd-features-wrap h3,
  .product-detail-page .pd-other-wrap h3 {
    font-size: 34px;
  }

  .product-detail-page .pd-features-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .pd-feature-item {
    grid-template-columns: 90px 1fr;
    min-height: 92px;
  }

  .product-detail-page .pd-feature-item img {
    width: 90px;
    height: 66px;
  }

  .product-detail-page .pd-feature-item strong {
    font-size: 16px;
  }

  .product-detail-page .pd-feature-item span {
    font-size: 13px;
  }

  .product-detail-page .pd-other-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .product-detail-page .pd-other-card {
    flex: 0 0 180px;
    height: 220px;
  }

  .home-page .home-slider {
    height: 100svh;
    min-height: 100svh;
  }

  .home-page .navbar-wrapper {
    top: 14px;
  }

  .home-page .navbar-wrapper .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-page .home-swiper,
  .home-page .home-slide {
    min-height: 100svh;
  }

  .home-page .home-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 106px 16px 78px;
  }

  .home-page .home-slide-content {
    order: 1;
    max-width: none;
    margin-left: 0;
    margin-top: 0;
    padding-bottom: 0;
  }

  .home-page .home-kicker {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .home-page .home-slide-content h1 {
    font-size: clamp(42px, 12vw, 56px);
    margin-bottom: 12px;
  }

  .home-page .home-slide-content p {
    font-size: 15px;
    line-height: 1.5;
    max-width: none;
  }

  .home-page .home-cta {
    font-size: 15px;
    padding: 10px 18px;
  }

  .home-page .home-slide-image-wrap {
    order: 2;
    flex: 1;
    width: 100%;
    padding-right: 0;
    justify-content: center;
    align-items: flex-end;
    right: 0;
    padding: 0px 10px;
    bottom: 0;
  }

  .home-page .home-slide-image {
    width: min(520px, 100%);
    max-height: 46svh;
    object-fit: contain;
  }

  .home-page .home-slider-nav {
    right: 16px;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .home-page .home-slider-btn {
    width: 52px;
    height: 42px;
    font-size: 16px;
  }

  .home-page .home-products {
    padding: 26px 16px 20px;
  }

  .home-page .home-products-head {
    margin-bottom: 14px;
  }

  .home-page .home-products-logo {
    width: 72px;
  }

  .home-page .home-products-head p {
    font-size: 13px;
  }

  .home-page .home-product-card {
    grid-template-rows: 220px auto;
  }

  .home-page .home-product-title {
    font-size: 16px;
  }

  .home-page .home-comfort {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-page .home-comfort-left {
    padding: 24px 16px 18px;
  }

  .home-page .home-comfort-left h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .home-page .home-comfort-left p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .home-page .home-comfort-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .home-page .home-comfort-right img {
    min-height: 260px;
  }

  .home-page .home-impact-stats {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
    gap: 14px;
  }

  .home-page .home-stat-icon {
    width: 52px;
    height: 52px;
  }

  .home-page .home-stat-icon img {
    width: 24px;
    height: 24px;
  }

  .home-page .home-stat-text strong {
    font-size: 28px;
  }

  .home-page .home-stat-text span {
    font-size: 14px;
    margin-top: 2px;
  }

  .home-page .home-impact-banner {
    margin: 16px 16px 0;
  }

  .home-page .home-impact-banner img {
    height: 280px;
  }

  .home-page .home-impact-overlay {
    left: 18px;
    bottom: 18px;
  }

  .home-page .home-impact-logo {
    width: 96px;
    margin-bottom: 8px;
  }

  .home-page .home-impact-overlay h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .home-page .home-founder {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 16px 24px;
    align-items: start;
  }

  .home-page .home-founder-text {
    padding: 0;
  }

  .home-page .home-founder-title-row {
    gap: 10px;
    margin-bottom: 18px;
    align-items: center;
  }

  .home-page .home-founder-line {
    width: 54px;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .home-page .home-founder-title-row h3 {
    font-size: 38px;
    line-height: 1.08;
  }

  .home-page .home-founder-quote {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .home-page .home-founder-sign {
    font-size: 28px;
    margin-bottom: 18px;
    padding-right: 0;
    text-align: left;
  }

  .home-page .home-founder-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .home-page .home-founder-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .home-page .home-founder-image {
    margin-top: 4px;
  }

  .home-page .home-founder-image img {
    width: min(420px, 100%);
    height: auto;
    max-height: 420px;
  }

  .home-page .home-founder-caption {
    font-size: 20px;
    margin-top: 8px;
  }

  .home-page .home-founder-caption span {
    font-size: 28px;
  }

  .home-page .home-news {
    padding: 28px 16px 32px;
    padding-bottom: 80px;
  }

  .home-page .home-news-head {
    margin-bottom: 14px;
    gap: 12px;
  }

  .home-page .home-news-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .home-page .home-news-line {
    width: 56px;
  }

  .home-page .home-news-tabs,
  .home-page .home-news-panels,
  .home-page .home-news-foot {
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .home-news-tabs {
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .home-page .home-news-tab {
    font-size: 15px;
    height: 48px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .home-page .home-news-row {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-height: 88px;
    padding: 10px 10px;
  }

  .home-page .home-news-date {
    font-size: 12px;
    opacity: 0.9;
  }

  .home-page .home-news-text {
    width: 100%;
    font-size: 16px;
    line-height: 1.35;
    padding-right: 0;
  }

  .home-page .home-news-foot {
    margin-top: 16px;
    justify-content: flex-end;
  }

  .home-page .home-news-more {
    font-size: 15px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
  }
}

@media (max-width: 600px) {
  .history-page .history-image img {
    height: 240px;
    max-height: 240px;
  }

  .home-page .home-slide {
    padding: 98px 14px 72px;
  }

  .home-page .home-kicker {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .home-page .home-slide-content h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .home-page .home-slide-content p {
    font-size: 14px;
  }

  .home-page .home-cta {
    font-size: 14px;
    padding: 9px 14px;
  }

  .about-page .intro-text {
    padding: 24px 20px 40px;
  }

  .video-section {
    height: 250px;
  }

  .home-page .home-slide-image {
    max-height: 100%;
    object-position: bottom;
  }

  .home-page .home-slider-btn {
    width: 46px;
    height: 38px;
  }

  .home-page .home-comfort-left h2 {
    font-size: 32px;
  }

  .home-page .home-comfort-left p {
    font-size: 14px;
  }

  .home-page .home-comfort-btn {
    font-size: 15px;
    padding: 9px 16px;
  }

  .home-page .home-comfort-right img {
    min-height: 220px;
  }
}

@media (max-width: 900px) {

  .about-page .two-col,
  .about-page .two-col-reverse {
    display: flex;
    flex-direction: column;
  }

  .products-page .product-card{
    grid-template-rows: 230px auto;
  }

  .products-page .products-section .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .products-page .products-section{
    padding-top: 20px;
  }

  .about-page .facility-img-wrap img {
    height: auto;
  }

  .about-page .two-col .col-image,
  .about-page .two-col .col-text,
  .about-page .two-col-reverse .col-image,
  .about-page .two-col-reverse .col-text {
    width: 100%;
  }

  .about-page .two-col .col-image img,
  .about-page .two-col-reverse .col-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
  }
}

@media (max-width: 900px) {
  .product-detail-page .pd-section {
    padding: 20px 16px 36px;
  }

  .product-detail-page .pd-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-detail-page .pd-right {
    order: 1;
    margin-top: 0;
  }

  .product-detail-page .pd-left {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-detail-page .pd-left > .pd-title-row { order: 1; }
  .product-detail-page .pd-left > .pd-info-row { order: 2; margin: 6px 0 0; }
  .product-detail-page .pd-left > .pd-size-table { order: 3; margin-top: 0; }
  .product-detail-page .pd-left > .pd-desc { order: 4; }
  .product-detail-page .pd-left > .pd-subtitle { order: 5; margin-top: 8px; }
  .product-detail-page .pd-left > .pd-endikasyon { order: 6; }

  .product-detail-page .pd-main-image-wrap {
    min-height: 300px;
  }

  .product-detail-page .pd-main-image {
    width: min(360px, 100%);
    height: auto;
  }

  .product-detail-page .pd-thumbs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .product-detail-page .pd-thumb {
    flex: 0 0 auto;
  }

  .product-detail-page .pd-other-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .product-detail-page .pd-other-card {
    flex: 0 0 180px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .product-detail-page .pd-title-row h2 {
    font-size: 32px;
  }

  .product-detail-page .pd-main-image-wrap {
    min-height: 250px;
  }

  .product-detail-page .pd-main-image {
    width: min(300px, 100%);
  }

  .product-detail-page .pd-thumb {
    width: 76px;
    height: 76px;
  }

  .product-detail-page .pd-pill {
    width: 100%;
  }

  .product-detail-page .pd-howto {
    width: 100%;
    justify-content: center;
  }

  .product-detail-page .pd-size-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .pd-other-card {
    flex-basis: 155px;
    height: 190px;
  }
}

.not-found-page .not-found-section {
  padding: 30px 20px 90px;
  margin-bottom: 30px;
}

.not-found-page .not-found-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 42px;
  border-radius: 26px;
  border: 1px solid #ebe5df;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ef 100%);
  box-shadow: 0 22px 54px rgba(30, 25, 20, 0.08);
  text-align: center;
}

.not-found-page .not-found-code {
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 12vw, 138px);
  line-height: 1;
  letter-spacing: .02em;
  color: #b41420;
  margin-bottom: 14px;
}

.not-found-page .not-found-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  color: #1f1c19;
}

.not-found-page .not-found-text {
  max-width: 560px;
  margin: 16px auto 30px;
  font-size: 17px;
  line-height: 1.7;
  color: #57514b;
}

.not-found-page .not-found-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  background: #b41420;
  color: #fff;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}

.not-found-page .not-found-btn:hover {
  background: #94101a;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .not-found-page .not-found-section {
    padding: 20px 16px 56px;
  }

  .not-found-page .not-found-card {
    padding: 40px 22px;
    border-radius: 20px;
  }

  .not-found-page .not-found-text {
    font-size: 15px;
    margin: 12px auto 24px;
  }
}
