/* ============================================================
   SWANSON WORKS — Global Stylesheet
   Design System: WD-40.co.uk inspired
   ============================================================ */

@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* DIN-BlackAlternate: weight 900 — Latin ve semboller (Türkçe özgü harfler hariç) */
@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-BlackAlternate.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00C6, U+00C8-00D5, U+00D7-00DB, U+00DD-00E6, U+00E8-00F5, U+00F7-00FB, U+00FD-011D, U+0120-012F, U+0132-015D, U+0160-FFFF;
}
/* DIN-Bold fallback: weight 900 — yalnızca Türkçe özgü harfler (Ç Ö Ü ç ö ü Ğ ğ İ ı Ş ş) */
@font-face {
  font-family: 'DIN';
  src: url('../font/DIN-Bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+00C7, U+00D6, U+00DC, U+00E7, U+00F6, U+00FC, U+011E, U+011F, U+0130, U+0131, U+015E, U+015F;
}

/* ---- Variables ---- */
:root {
  --navy:       #10069f;
  --yellow:     #d9d9d9;
  --red:        #D2002C;
  --white:      #FFFFFF;
  --light-grey: #F3F3F3;
  --dark-text:  #1A1A1A;
  --mid-text:   #444444;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DIN', sans-serif;
  font-size: 16px;
  color: var(--dark-text);
  background: var(--white);
  padding-top: 88px;
  line-height: 1.6;
}
/* Türkçe büyük harflerin (Ş Ü Ğ vb.) taşmasını önlemek için heading line-height */
h1, h2, h3, h4 { line-height: 1.2; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'DIN', sans-serif; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 80px;
  width: auto;
}
.navbar-logo span {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  padding: 8px 14px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-icons button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  padding: 6px;
  transition: color 0.2s;
}
.nav-icons button:hover { color: var(--yellow); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  padding: 20px 40px 30px;
  border-top: 2px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--yellow); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--light-grey);
  padding: 14px 40px;
  font-size: 14px;
  color: var(--mid-text);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: #999; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}
.swiper { width: 100%; height: 100%; }
.swiper-slide {
  position: relative;
  background: #0a1a3a;
  display: flex;
  align-items: flex-end;
  padding: 60px 80px;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.slide-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark-text);
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.slide-title {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}
.slide-title em {
  color: var(--yellow);
  font-style: normal;
}
.slide-desc {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.btn {
  display: inline-block;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-red    { background: var(--red);    color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--dark-text); }
.btn-navy   { background: var(--navy);   color: var(--white); }
.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-red:hover    { background: #b50025; }
.btn-yellow:hover { background: #c2c2c2; }
.btn-navy:hover   { background: #0b0580; }
.btn-outline-yellow:hover { background: var(--yellow); color: var(--dark-text); }

.hero-arc {
  position: absolute;
  bottom: 0; right: 0;
  width: 280px; height: 280px;
  z-index: 1;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 10px; height: 10px;
}
.swiper-pagination-bullet-active { background: var(--yellow); }

/* ============================================================
   SECTION GENERAL
   ============================================================ */
.section { padding: 72px 40px; }
.section-grey { background: var(--light-grey); }
.section-navy { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  text-transform: uppercase;
  color: var(--dark-text);
  line-height: 1.1;
}
.section-header h2.white { color: var(--white); }
.section-header p {
  margin-top: 12px;
  color: var(--mid-text);
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p.white { color: rgba(255,255,255,0.8); }

.underbar {
  display: block;
  width: 56px; height: 4px;
  background: var(--red);
  margin: 12px auto 0;
}
.underbar.left { margin-left: 0; }
.underbar.yellow { background: var(--yellow); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.category-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  transition: background 0.3s;
}
.category-card:hover .category-card-bg { transform: scale(1.06); }
.category-card:hover::after { background: rgba(0,0,0,0.36); }
.category-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.category-card-content h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.category-card-content .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.5px;
}
.category-card-content .arrow-link::after { content: '→'; }

/* ============================================================
   HOW-TO CARDS
   ============================================================ */
.how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-to-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.how-to-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.how-to-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.how-to-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.how-to-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.how-to-card-content h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: 64px 80px 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 240px;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.cta-arc {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 10px;
  background: var(--yellow);
  clip-path: none;
  z-index: 1;
  pointer-events: none;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.cta-banner-content h2 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}
.cta-banner-content h2 em {
  color: var(--yellow);
  font-style: normal;
}
.cta-banner-img {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  max-width: 320px;
}
.cta-banner-img img { width: 100%; object-fit: contain; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--light-grey);
  position: relative;
}
.product-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  z-index: 1;
  white-space: nowrap;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card-body h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--dark-text);
  line-height: 1.25;
}
.product-card-body p {
  color: var(--mid-text);
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
}
.product-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  border: 1.5px solid #d0d0d0;
  background: var(--white);
  color: var(--mid-text);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-tab i { font-size: 13px; }
.filter-tab:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(0,14,77,0.04);
}
.filter-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   PAGE TITLE BAR
   ============================================================ */
.page-title-bar {
  padding: 48px 40px 40px;
  background: var(--white);
  border-bottom: 3px solid var(--light-grey);
}
.page-title-bar h1 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--dark-text);
  line-height: 1;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-wrap {
  display: flex;
  gap: 0;
  background: var(--light-grey);
  min-height: 600px;
}

/* Left column */
.product-detail-left {
  flex: 0 0 340px;
  background: var(--white);
  padding: 32px 24px;
  position: sticky;
  top: 88px;
  height: fit-content;
}
.product-main-img {
  width: 292px; height: 292px;
  object-fit: contain;
  border: 1px solid #e5e5e5;
  padding: 16px;
  background: var(--white);
  margin-bottom: 12px;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.product-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 2px solid transparent;
  padding: 4px;
  cursor: pointer;
  background: var(--light-grey);
  transition: border-color 0.2s;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--navy); }

.video-link {
  display: block;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.video-link:hover { color: var(--red); }

.star-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.stars { color: var(--yellow); font-size: 20px; }
.star-count { font-size: 14px; color: var(--mid-text); }
.write-review {
  font-size: 13px;
  color: var(--navy);
  text-decoration: underline;
  margin-bottom: 20px;
  display: block;
}

.product-select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #ddd;
  border-radius: 0;
  font-family: 'DIN', sans-serif;
  font-size: 14px;
  color: var(--dark-text);
  margin-bottom: 12px;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23444'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-color: var(--white);
  cursor: pointer;
}

.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Middle column */
.product-detail-middle {
  flex: 1;
  padding: 40px 40px;
  border-left: 3px solid #ddd;
}
.product-detail-middle h1 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 24px;
}
.product-detail-middle p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-bottom: 20px;
}
.related-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #eee;
}
.related-links h4 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.related-links a {
  display: inline-block;
  color: var(--navy);
  font-size: 14px;
  margin-right: 20px;
  margin-bottom: 8px;
  text-decoration: underline;
}

/* Right column */
.product-detail-right {
  flex: 0 0 288px;
  padding: 40px 0;
}
.info-box {
  background: var(--navy);
  margin-bottom: 4px;
  overflow: hidden;
}
.info-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.info-box-header .chevron {
  color: var(--yellow);
  font-weight: 900;
  font-size: 20px;
}
.info-box-header h4 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}
.info-box ul {
  padding: 16px 20px 20px;
  list-style: none;
}
.info-box ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.info-box ul li::before {
  content: '●';
  color: var(--yellow);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================================
   VIDEOS SECTION (Product Detail)
   ============================================================ */
.videos-section { padding: 56px 40px; background: var(--white); }
.section-title-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.section-title-line h2 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--dark-text);
}
.section-title-line .line {
  flex: 1;
  height: 3px;
  background: var(--red);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  position: relative;
  background: #111;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.play-btn {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: var(--red); border-color: var(--red); }
.duration-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 12px;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  padding: 3px 8px;
}
.video-title {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  max-width: 70%;
}

/* ============================================================
   RELATED PRODUCTS SECTION
   ============================================================ */
.related-section { padding: 56px 40px; background: var(--light-grey); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.related-card img {
  height: 160px;
  object-fit: contain;
}
.related-card h4 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--dark-text);
}
.related-card p {
  font-size: 13px;
  color: var(--mid-text);
  line-height: 1.5;
}

/* ============================================================
   ABOUT PAGE — TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 60px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px; height: 16px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  transform: translateX(-50%);
}
.timeline-card {
  background: var(--navy);
  padding: 28px 32px;
  max-width: 400px;
  width: 100%;
}
.timeline-year {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.timeline-card p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   2-COL INTRO
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col h2 {
  font-family: 'DIN', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 20px;
}
.two-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid-text);
  margin-bottom: 16px;
}
.two-col img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 0;
  font-family: 'DIN', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { height: 140px; resize: vertical; }

.contact-info h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.map-placeholder {
  background: var(--navy);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: 'DIN', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.map-embed {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-detail .icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; color: var(--yellow); width: 28px; text-align: center; }
.contact-detail div h5 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail div p { font-size: 14px; color: var(--mid-text); line-height: 1.5; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #ddd;
  margin-bottom: 32px;
}
.faq-tab {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: none;
  border: none;
  color: var(--mid-text);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-tab::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.faq-tab.active { color: var(--red); }
.faq-tab.active::after { transform: scaleX(1); }

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--dark-text);
  transition: color 0.2s;
}
.accordion-btn:hover { color: var(--navy); }
.accordion-btn .acc-icon {
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-btn.open .acc-icon { transform: rotate(45deg); }
.accordion-content {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-text);
}
.accordion-content.open { display: block; }

/* ============================================================
   HOW-TO PAGE
   ============================================================ */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.howto-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.howto-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.howto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 60%);
}
.howto-card:hover .howto-card-bg { transform: scale(1.05); }
.howto-card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}
.howto-card-content h3 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid #ddd;
  color: var(--dark-text);
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pagination a:hover,
.pagination a.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark-text);
}

/* ============================================================
   KVKK / ÇEREZ BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #12123a;
  color: #fff;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2,0,0.1,1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.cookie-banner-text strong {
  color: #fff;
  font-weight: 700;
}
.cookie-banner-text a {
  color: #a0a0ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 10px 24px;
  background: #d9d9d9;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #fff; }
.cookie-btn-reject {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px 24px; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #12123a;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.2,0,0.1,1), background 0.2s;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: #10069f;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 32px rgba(16,6,159,0.40);
}
.scroll-top-btn:active {
  transform: translateY(0) scale(0.96);
}
@media (max-width: 768px) {
  .scroll-top-btn { bottom: 20px; right: 16px; width: 44px; height: 44px; font-size: 15px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-col p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-subfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-subfooter p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-icon:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark-text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .howto-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-slider { height: 70vh; }
  .swiper-slide { padding: 40px 32px; }

  .cta-banner { padding: 60px 32px; flex-direction: column; }
  .cta-banner-img { max-width: 240px; }

  .product-detail-wrap { flex-direction: column; }
  .product-detail-left { position: static; flex: none; width: 100%; }
  .product-main-img { display: block; width: 100%; max-width: 320px; height: auto; aspect-ratio: 1; margin: 0 auto 12px; }
  .product-thumbs { max-width: 320px; margin: 0 auto 20px; }
  .product-detail-middle { border-left: none; border-top: 3px solid #ddd; padding: 28px 24px; }
  .product-detail-right { flex: none; width: 100%; padding: 0; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 64px;
    justify-content: flex-start;
  }
  .timeline-item::after { left: 24px; }

  .how-to-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { padding-top: 80px; }
  .navbar { height: 80px; }
  .mobile-nav { top: 80px; }
  .section { padding: 48px 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .howto-grid { grid-template-columns: 1fr 1fr; }
  .how-to-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-subfooter { flex-direction: column; gap: 16px; text-align: center; }
  .breadcrumb { padding: 12px 20px; }
  .page-title-bar { padding: 32px 20px 24px; }
  .cta-banner { padding: 48px 20px; }
  .cta-banner-img { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .howto-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 6px; padding-bottom: 8px; }
  .filter-tab { padding: 8px 14px; font-size: 11px; gap: 6px; }
  .filter-tab i { font-size: 11px; }
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.product-main-img { cursor: zoom-in; }

/* ============================================================
   BLOG POST STYLES
   ============================================================ */
.blog-hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #111;
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.blog-cat {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.blog-date {
  color: #888;
  font-size: 13px;
}
.blog-readtime {
  color: #888;
  font-size: 13px;
}
.blog-wrap h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.blog-wrap .blog-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 36px;
  border-left: 4px solid var(--navy);
  padding-left: 20px;
}
.blog-wrap h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 16px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.blog-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.blog-wrap p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}
.blog-wrap ul, .blog-wrap ol {
  margin: 0 0 20px 20px;
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}
.blog-wrap li { margin-bottom: 8px; }
.blog-tip-box {
  background: #f4f6ff;
  border-left: 4px solid var(--navy);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.blog-tip-box strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.blog-tip-box p { margin: 0; font-size: 14px; color: #333; line-height: 1.7; }
.blog-warn-box {
  background: #fff4f4;
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.blog-warn-box strong { display: block; color: var(--red); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-warn-box p { margin: 0; font-size: 14px; color: #333; line-height: 1.7; }
.blog-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.blog-step-num {
  min-width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.blog-step-text { flex: 1; }
.blog-step-text strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.blog-step-text p { margin: 0; font-size: 14px; color: #555; line-height: 1.7; }
.blog-faq { margin-top: 48px; padding-top: 32px; border-top: 2px solid #eee; }
.blog-faq h2 { margin-top: 0; }
.blog-faq-item { margin-bottom: 24px; }
.blog-faq-item h3 { color: var(--dark); font-size: 16px; margin-bottom: 8px; }
.blog-faq-item p { margin: 0; font-size: 14px; color: #555; line-height: 1.7; }
.blog-product-cta {
  background: var(--navy);
  color: #fff;
  padding: 28px 32px;
  border-radius: 4px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-product-cta p { margin: 0; font-size: 15px; line-height: 1.6; flex: 1; color: #fff; }
.blog-product-cta strong { display: block; font-size: 18px; margin-bottom: 6px; color: #fff; }

@media (max-width: 600px) {
  .blog-wrap { padding: 32px 16px 60px; }
  .blog-product-cta { flex-direction: column; }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 50, 0.92);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-box {
  width: 100%;
  max-width: 660px;
  padding: 0 24px;
}
.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.search-label {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
}
.search-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.15s;
}
.search-close-btn:hover { color: #fff; }
.search-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  gap: 14px;
  padding: 0 22px;
}
.search-input-wrap i { color: #aaa; font-size: 18px; flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 22px;
  padding: 20px 0;
  font-family: 'DIN', sans-serif;
  font-weight: 400;
  color: var(--dark-text);
  background: transparent;
}
.search-input::placeholder { color: #bbb; }
.search-results {
  width: 100%;
  max-width: 660px;
  padding: 8px 24px 0;
  max-height: 48vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.search-result-item:hover,
.search-result-item.focused {
  background: rgba(255,255,255,0.12);
  border-left-color: var(--yellow);
}
.search-result-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-title {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-type {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-result-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  flex-shrink: 0;
}
.search-no-results {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  padding: 32px 0;
  text-align: center;
  font-family: 'DIN', sans-serif;
}
.search-hint {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
  font-family: 'DIN', sans-serif;
  letter-spacing: 0.3px;
}
.search-hint kbd {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 11px;
  font-family: monospace;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
/* ===== LANGUAGE SWITCHER — modern redesign ===== */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

/* pill-shaped trigger */
.lang-current {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 7px;
  font-family: 'Barlow Condensed', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.lang-current:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.55);
}

/* flat flag in trigger — higher specificity beats flag-icons .fi */
.lang-current .lang-flag {
  width: 22px !important;
  height: 15px !important;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.20);
  background-size: cover !important;
  background-position: center !important;
}

.lang-code {
  font-size: 13px;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.lang-chevron {
  font-size: 8px;
  opacity: 0.75;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  margin-left: -2px;
}
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

/* dark dropdown panel */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #12123a;
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
  min-width: 190px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  z-index: 2000;
  overflow: hidden;
}

@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.lang-switcher.open .lang-dropdown {
  display: flex;
  animation: langDropIn 0.20s cubic-bezier(0.2,0,0.1,1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,0.72);
  font-family: 'Barlow Condensed', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover {
  background: rgba(255,255,255,0.09);
  color: #fff;
}
.lang-option.lang-active {
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 700;
}

/* flat flag inside dropdown options */
.lang-option > .fi {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
  background-size: cover;
  background-position: center;
  display: inline-block;
}

/* RTL support */
[dir="rtl"] .navbar { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-option { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .breadcrumb { direction: rtl; }

@media (max-width: 1100px) {
  .lang-current { padding: 5px 10px 5px 6px; font-size: 12px; }
  .lang-current .lang-flag { width: 20px !important; height: 14px !important; }
}
@media (max-width: 768px) {
  .lang-dropdown { right: -6px; min-width: 220px; border-radius: 18px; padding: 10px; }
  .lang-current { padding: 7px 14px 7px 8px; gap: 8px; }
  .lang-current .lang-flag { width: 26px !important; height: 18px !important; }
  .lang-code { display: inline; font-size: 14px; }
  .lang-option { padding: 14px 16px; font-size: 18px; gap: 14px; }
  .lang-option > .fi { width: 34px !important; height: 24px !important; border-radius: 5px; }
}
