:root {
  --primary: #0e0c47;
  --primary-dark: #0a0828;
  --primary-light: #1a1758;
  --dark: #0a0f47;
  --gray-dark: #1e293b;
  --gray: #475569;
  --light: #f8fafc;
  --white: #ffffff;
  --brand-color: #0e0c47;
  --radius: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--gray-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER ================= */
header {
  background: #ffffff;              /* 🔥 BEYAZ */
  color: var(--gray-dark);
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.logo img {
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: var(--gray-dark);           /* 🔥 KOYU YAZI */
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.mega-menu .nav-link {
  position: relative;
}

.mega-menu:hover .nav-link {
  color: var(--primary);
}

.mega-menu:hover .nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary);
  z-index: 1001;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 6px;
  min-width: 180px;
  padding: 6px 0;
  display: none;
  z-index: 999;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #1e293b;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ================= MEGA MENU ================= */
.mega-menu {
  position: static;
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: -60px;
  right: -60px;
  width: calc(100% + 120px);
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  margin-top: 0;
  padding-top: 8px;
}

.mega-menu-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.mega-menu:hover .mega-menu-dropdown,
.mega-menu-dropdown:hover {
  display: block;
}

/* Mega menü açıkken sadece ilk içerik öğesine margin - çift boşluk önlenir */
body.mega-menu-open .fiessler-breadcrumb,
body.mega-menu-open .breadcrumb,
body.mega-menu-open .hero:first-of-type {
  margin-top: var(--mega-dropdown-height, 200px) !important;
  transition: margin-top 0.3s ease;
}
body.mega-menu-open .breadcrumb + .hero {
  margin-top: 0 !important;
}

.mega-menu-header {
  display: flex;
  background: var(--primary);
  border-bottom: none;
  padding: 0 60px;
}

.mega-menu-category {
  flex: 1;
  padding: 20px 24px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mega-menu-category-img {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu-category-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mega-menu-category:last-child {
  border-right: none;
}

.mega-menu-category:hover,
.mega-menu-category.active {
  background: var(--primary-dark);
}

.mega-menu-category.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f0f0f0;
}

.mega-menu-content {
  background: #f0f0f0;
  padding: 30px 60px;
  display: none;
  min-height: 150px;
}

.mega-menu-content.active {
  display: block;
}

.mega-menu-column {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.mega-menu-column.active {
  display: grid;
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  color: var(--gray-dark);
  font-size: 14px;
  transition: color 0.2s;
  text-align: center;
}

.mega-menu-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.mega-menu-item-large {
  min-width: 200px;
}

.mega-menu-item-large img {
  width: 150px;
  height: auto;
  max-height: 150px;
}

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

/* ================= HERO ================= */
.hero {
  /* Diagonal color transition (top-left → bottom-right), smooth, fixed */
  background: linear-gradient(135deg,
    #1f1d62 0%,
    #181654 18%,
    #12104a 36%,
    #0e0c47 54%,
    #0c0a3d 72%,
    #060528 100%);
  color: white;
  padding: 110px 60px;
  transition: background 2s ease, color 0.5s ease;
}

.hero.category-hero {
  /* Marka sayfaları (elgo/, fiessler/) ile aynı tasarım ve renk */
  background: linear-gradient(135deg,
    #1f1d62 0%,
    #181654 18%,
    #12104a 36%,
    #0e0c47 54%,
    #0c0a3d 72%,
    #060528 100%);
  color: white;
  padding: 110px 60px;
  margin-top: 0;
}

.hero.category-hero .hero-title {
  color: white;
  font-size: 44px;
  font-weight: 700;
  text-align: left;
  margin: 0;
}

.hero-title {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
}

.outlined-text {
  color: var(--primary);
  color: white;
  /* -webkit-text-stroke: 0.3px white; */
  font-weight: 800;
}

.hero p {
  max-width: 620px;
  color: #c7d2fe;
  margin-top: 22px;
}

/* ================= REQUEST BAR ================= */
.request-bar {
  background: var(--light);
  border: 1px dashed rgba(148,163,184,0.4);
  margin: 0 60px 40px 60px;
}

.request-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
}

.request-btn {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 60px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
}

/* ================= BRANDS ================= */
.brands-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.brand-box {
  width: 280px;
  min-height: 200px;
  padding: 40px 30px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.brand-box img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.brand-box span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--gray-dark);
}

/* ================= CATEGORY OVERVIEW ================= */
.category-overview {
  padding: 24px 60px 40px 60px;
  background: #ffffff;
}

.category-overview h2 {
  font-size: 32px;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.category-overview-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.category-overview-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* ================= HAKKIMIZDA SAYFASI ================= */
.aboutus-section {
  padding: 48px 60px 60px;
}

.aboutus-content {
  max-width: 900px;
  margin: 0 auto 48px;
}

.aboutus-heading {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.aboutus-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
}

.aboutus-text p {
  margin-bottom: 16px;
}

.aboutus-text p:last-child {
  margin-bottom: 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-vision-card {
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.mission-vision-title {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 12px 0;
}

.mission-vision-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .category-overview.aboutus-section {
    padding: 32px 20px 40px !important;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-vision-card {
    padding: 24px 20px;
  }
}

.product-view-image-wrap {
  max-width: 1200px;
  margin: 0 auto 24px;
  text-align: center;
}

.product-view-image {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
}

/* ================= PRODUCT CARDS (Category Page Style) ================= */
.category-products {
  padding: 60px 60px;
  background: #ffffff;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  align-items: center;
  min-height: 150px;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 6px;
  padding: 16px;
  box-sizing: border-box;
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 150px;
}

.product-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.4;
}

.product-card-description {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.product-card-link {
  color: #2563eb;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.2s;
}

.product-card-link:hover {
  color: var(--primary);
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  padding: 12px 60px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb span {
  color: var(--gray-dark);
  margin: 0 8px;
}

.breadcrumb .separator {
  color: var(--gray);
  margin: 0 8px;
}

/* ================= COMPANY INFO ================= */
.company-info {
  background: #f1f5f9;
  padding: 60px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  font-size: 14px;
}

.info-link {
  color: var(--primary);
}

.info-link:hover {
  text-decoration: underline;
}

.linkedin img,
.social-link img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.social-links .social-link {
  display: inline-block;
}

/* ================= FOOTER ================= */
footer {
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  margin-top: auto;
  overflow-x: hidden;
}

.footer-brands-cats {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  margin: 0 0 10px 0;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-cat-link {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cat-link:hover {
  color: var(--primary);
}

.footer-col.footer-col-nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 48px;
  flex: 0 0 auto;
  min-width: 0;
}

.footer-col-nav a.footer-col-title {
  text-decoration: none;
  transition: color 0.2s;
  margin: 0;
  white-space: nowrap;
}

.footer-col-nav a.footer-col-title:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 6px 32px;
  padding-bottom: 40px;
  margin-bottom: 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(14, 12, 71, 0.08);
}

.footer-links a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.footer-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-weight: 600;
}

.footer-link-item:hover {
  color: var(--primary);
}

.footer-link-desc {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

.footer-link-item:hover .footer-link-desc {
  color: var(--gray);
}

.footer-copyright {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 26px 60px;
  font-size: 13px;
  margin: 0 -60px 0 -60px;
  width: calc(100% + 120px);
  box-sizing: border-box;
}

/* ================= HOME PAGE – Modern design ================= */
.page-home .hero.hero-home {
  padding: clamp(88px, 10vw, 128px) 60px clamp(100px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}

/* Diagonal soft glow (follows same angle as color bands) */
.page-home .hero.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    transparent 25%,
    transparent 50%,
    transparent 75%,
    rgba(0,0,0,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Optional: subtle diagonal highlight overlay */
.page-home .hero.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(140,138,220,0.06) 0%,
    transparent 40%,
    transparent 60%,
    rgba(14,12,71,0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 60px;
}

.page-home .hero-inner {
  max-width: 640px;
  padding-left: 24px;
  border-left: 4px solid rgba(255, 255, 255, 0.3);
  transition: border-left-color 1.5s ease, padding-left 0.4s ease;
  text-align: left;
  justify-self: start;
}

.page-home .hero-inner .hero-eyebrow {
  margin-bottom: 28px;
  line-height: 1.6;
}

.page-home .hero-inner .hero-title {
  margin-bottom: 32px;
  line-height: 1.55;
}

.page-home .hero-inner .hero-desc {
  margin-top: 0;
  line-height: 1.95;
}

/* Right panel: duyuru alanı – fills all remaining space, sized except text area */
.page-home .hero-announcement-box {
  width: 100%;
  min-width: 0;
  min-height: 280px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 28px 52px 52px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Slide row: image + announcement text side by side, ikisi de tam yukseklik */
.page-home .hero-announcement-slide-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

/* Resim alani: yazili slaytta yan panel, sadece resimli slaytta tam alan */
.page-home .hero-announcement-slide-image {
  flex-shrink: 0;
  width: 380px;
  max-width: 55%;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-announcement-slide-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.page-home .hero-announcement-slide-content {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
  padding-left: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-home .hero-announcement-slide-content::-webkit-scrollbar {
  display: none;
}

/* Kutu yuksekligi sabit: yazi sigacak kadar yukseklik, slayt degisince kutu boyu degismesin */
.page-home .hero-announcement-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 420px;
  min-height: 420px;
}

.page-home .hero-announcement-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-home .hero-announcement-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Yazili slide: resim alani satirin tam yuksekligini alsin, resim icine sigsin */
.page-home .hero-announcement-slide:not(.hero-announcement-slide--image-only) .hero-announcement-slide-image {
  height: 100%;
  max-height: 100%;
}

.page-home .hero-announcement-slide:not(.hero-announcement-slide--image-only) .hero-announcement-slide-image img {
  object-fit: contain;
}

/* Sadece resimli: slide tam alani doldursun, resim kutunun icine tam sigsin */
.page-home .hero-announcement-slide--image-only {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
  width: 100%;
}

.page-home .hero-announcement-slide--image-only .hero-announcement-slide-image {
  width: 100%;
  height: 100%;
  max-width: none;
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-announcement-slide--image-only .hero-announcement-slide-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-home .hero-announcement-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.page-home .hero-announcement-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

.page-home .hero-announcement-text + .hero-announcement-text {
  margin-top: 14px;
}

.page-home .hero-announcement-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 10px;
}

.page-home .hero-announcement-prev,
.page-home .hero-announcement-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .hero-announcement-prev {
  left: 8px;
}

.page-home .hero-announcement-next {
  right: 8px;
}

.page-home .hero-announcement-prev:hover,
.page-home .hero-announcement-next:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-home .hero-announcement-dots {
  display: flex;
  gap: 8px;
}

.page-home .hero-announcement-dots .announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-home .hero-announcement-dots .announcement-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.page-home .hero-announcement-dots .announcement-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.page-home .hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px 0;
  text-align: left;
  transition: color 1.2s ease, opacity 1s ease;
}

.page-home .hero-title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.55;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.025em;
  text-align: left;
  transition: color 1.2s ease, opacity 1s ease;
}

.page-home .hero-title-accent {
  color: #fff;
  font-weight: 700;
  transition: color 1.2s ease;
}

.page-home .hero-desc {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
  font-size: 17px;
  line-height: 1.95;
  text-align: left;
  transition: color 1.2s ease, opacity 1s ease;
}

/* Request bar – ortalanmış kutu, yeterli boşluk */
.page-home .request-bar-home {
  background: #fff;
  margin: 0 auto 56px;
  padding: 0;
  max-width: 780px;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(14, 12, 71, 0.06);
}

.page-home .request-content {
  padding: 28px 40px;
  margin: 0;
  max-width: none;
  box-sizing: border-box;
  gap: 28px;
}

.page-home .request-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.page-home .request-text p {
  color: var(--gray);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.page-home .request-btn-home {
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .request-btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 12, 71, 0.22);
}

/* Brands */
.page-home .brands-home {
  padding: 80px 60px 96px;
}

.page-home .section-title-home {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
  color: var(--gray-dark);
}

.page-home .brands-grid-home {
  gap: 24px;
  flex-wrap: wrap;
}

.page-home .brand-box {
  border-radius: 16px;
  padding: 48px 32px;
  border: 1px solid rgba(14, 12, 71, 0.08);
  box-shadow: 0 2px 12px rgba(14, 12, 71, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-home .brand-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(14, 12, 71, 0.12);
  border-color: rgba(14, 12, 71, 0.14);
}

.page-home .brand-box img {
  margin-bottom: 22px;
}

.page-home .brand-box span {
  font-size: 17px;
  font-weight: 600;
}

/* Company info / Footer */
.page-home .company-info-home,
.page-home .footer {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 56px 60px 0;
  border-top: 1px solid rgba(14, 12, 71, 0.06);
}

.page-home .footer .info-grid-home {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
  font-size: 15px;
  align-items: start;
}

.page-home .footer .info-grid-home .linkedin,
.page-home .footer .info-grid-home .social-links {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .page-home .footer .info-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
  }
}

.page-home .company-info-home strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 8px;
}

.page-home .company-info-home p {
  margin: 0;
  color: var(--gray-dark);
  line-height: 1.5;
}

.page-home .footer .footer-copyright {
  padding: 26px 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .footer-copyright,
  .page-home .footer .footer-copyright {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    padding: 26px 24px;
  }
}

/* ================= MOBILE MENU BUTTON ================= */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  transition: all 0.3s;
}

/* ================= MOBILE MENU OVERLAY ================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8fafc;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

body.menu-open .mobile-menu-btn {
  display: none;
}

body.menu-open header {
  display: none !important;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
  min-height: 70px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.mobile-menu-close svg {
  stroke: #1e293b;
  pointer-events: none;
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.mobile-menu-logo img {
  height: 32px;
}

/* ================= MOBILE NAVIGATION ================= */
.mobile-nav {
  padding: 0;
}

/* ================= PEDAL VARIANTS (ONLY foot-pedal product pages) ================= */
.pedal-variant-selector {
  margin: 12px 0 14px 0;
}

.pedal-variant-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pedal-variant-btn {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  color: #1e293b;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pedal-variant-btn:hover {
  border-color: rgba(14, 12, 71, 0.55);
  background: rgba(14, 12, 71, 0.04);
}

.pedal-variant-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.mobile-nav-item {
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: #f1f5f9;
}

.mobile-nav-link.active {
  background: #e2e8f0;
  color: var(--brand-color);
}

.mobile-nav-link.active .mobile-nav-chevron {
  color: var(--brand-color);
}

.mobile-nav-sublink {
  padding-left: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
}

.mobile-nav-chevron {
  transition: transform 0.3s;
  color: #64748b;
  transform: rotate(0deg);
}

.mobile-nav-link.active .mobile-nav-chevron {
  transform: rotate(90deg);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #ffffff;
}

.mobile-nav-submenu.active {
  max-height: 1000px;
}

.mobile-nav-submenu .mobile-nav-submenu {
  background: #f8fafc;
}

.mobile-nav-submenu .mobile-nav-sublink {
  padding-left: 60px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
    position: relative;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .mega-menu-dropdown {
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
  }

  .mega-menu-header {
    padding: 0 20px;
  }

  .mega-menu-content {
    padding: 30px 20px;
  }

  section {
    padding: 60px 30px;
  }

  .hero {
    padding: 80px 30px;
  }

  .hero.category-hero {
    padding: 80px 30px;
  }

  .hero.category-hero .hero-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 32px;
  }

  .category-overview {
    padding: 40px 20px;
  }

  .category-overview h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .category-products {
    padding: 40px 20px;
  }

  .category-products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    min-height: auto;
  }

  .product-card-image {
    width: 100%;
    height: 200px;
  }

  .product-card-content {
    justify-content: flex-start;
  }

  .brands-grid {
    gap: 20px;
  }

  .brand-box {
    width: 100%;
    max-width: 320px;
    min-height: 180px;
    padding: 30px 20px;
  }

  .brand-box img {
    max-width: 150px;
    max-height: 70px;
    margin-bottom: 16px;
  }

  .brand-box span {
    font-size: 15px;
  }

  .breadcrumb {
    padding: 12px 20px;
    font-size: 13px;
  }

  .brands-grid {
    justify-content: center;
  }

  .request-bar {
    margin: 0 20px 40px 20px;
  }

  .request-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .page-home .hero.hero-home {
    padding: 72px 24px 88px;
  }

  .page-home .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .page-home .hero-announcement-box {
    min-height: 420px;
    padding: 22px 48px 48px;
  }

  .page-home .hero-announcement-slider {
    height: 520px;
    min-height: 520px;
  }

  .page-home .hero-announcement-slide-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .page-home .hero-announcement-slide:not(.hero-announcement-slide--image-only) .hero-announcement-slide-image {
    width: 100%;
    max-width: 280px;
    height: 200px;
    min-height: 200px;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .page-home .hero-announcement-slide:not(.hero-announcement-slide--image-only) .hero-announcement-slide-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .page-home .hero-announcement-slide-content {
    overflow-y: visible;
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100% - 216px);
  }

  .page-home .hero-announcement-title {
    font-size: 18px;
  }

  .page-home .hero-announcement-text {
    font-size: 14px;
  }

  .page-home .hero-inner {
    padding-left: 16px;
    border-left-width: 3px;
  }

  .page-home .hero-inner .hero-eyebrow {
    margin-bottom: 16px;
  }

  .page-home .hero-inner .hero-title {
    margin-bottom: 20px;
  }

  .page-home .hero-eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .page-home .request-bar-home {
    margin: 0 20px 44px;
  }

  .page-home .request-content {
    padding: 24px 20px;
  }

  .page-home .request-text p {
    white-space: normal;
  }

  .page-home .brands-home {
    padding: 56px 24px 72px;
  }

  .page-home .section-title-home {
    margin-bottom: 32px;
  }

  .page-home .company-info-home,
  .page-home .footer {
    padding: 40px 24px 0;
  }

  .footer-brands-cats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-col {
    flex: none;
    align-items: center;
  }

  .footer-col.footer-col-nav {
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    padding: 0 0 28px;
    margin-bottom: 0;
    gap: 8px 14px;
    font-size: 13px;
  }

  .page-home .footer .info-grid-home {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 36px;
  }

  .page-home .footer .info-grid-home .linkedin,
  .page-home .footer .info-grid-home .social-links {
    grid-column: 1;
  }
}

/* ================= DOCUMENTATION PAGE ================= */
.documentation-category {
  margin-bottom: 60px;
}

.documentation-category h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--gray-dark);
  font-weight: 600;
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.documentation-item {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: #ffffff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.documentation-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.documentation-item h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--gray-dark);
  font-weight: 600;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.download-link svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .documentation-grid {
    grid-template-columns: 1fr;
  }
  
  .documentation-category h3 {
    font-size: 20px;
  }
}

/* ================= DOCUMENTATION FILTERS & ACCORDION ================= */
.docs-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--primary);
  background: white;
  color: var(--primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: var(--primary-light);
  color: white;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
}

.search-box {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.search-box input:focus {
  border-color: var(--primary);
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}

.docs-brand-section {
  margin-bottom: 40px;
}

.docs-accordion {
  margin-bottom: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.docs-accordion:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.docs-accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: #f8fafc;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  transition: background 0.3s ease;
  font-family: inherit;
}

.docs-accordion-header:hover {
  background: #e2e8f0;
}

.docs-accordion-header.active {
  background: #e2e8f0;
}

.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.docs-accordion-content {
  display: none;
  padding: 0;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
}

.docs-table thead {
  background: #f8fafc;
}

.docs-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.docs-table tbody tr {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: background 0.2s ease;
}

.docs-table tbody tr:hover {
  background: #f8fafc;
}

.docs-table tbody tr:last-child {
  border-bottom: none;
}

.docs-table td {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--gray-dark);
}

.docs-table .download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.docs-table .download-link:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.docs-table .download-link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .docs-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .filter-btn {
    flex: 1;
    min-width: 100px;
  }

  .search-box {
    max-width: 100%;
  }

  .docs-table {
    font-size: 12px;
  }

  .docs-table th,
  .docs-table td {
    padding: 10px 12px;
  }

  .docs-accordion-header {
    font-size: 14px;
    padding: 14px 16px;
  }

  .category-products {
    padding: 0 20px 40px !important;
  }

  .category-overview {
    padding: 30px 20px !important;
  }
}

