:root {
  --primary: #ff8c00;
  --dark: #111111;
  --light-gray: #f5f5f5;
  --border: rgba(0, 0, 0, 0.08);
  --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --container-padding: 4%;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  outline: none;
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid rgba(255, 140, 0, 0.65);
  outline-offset: 3px;
}

/* --- Üst İletişim Barı --- */
.top-bar {
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  z-index: 1050;
  position: relative;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

/* Üst barın daha geniş durması */
.top-bar-inner.container {
  max-width: 100%;
}

.top-left,
.top-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.top-left span {
  color: #888;
}

.top-left b {
  color: var(--dark);
}

.top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.015);
  transition: var(--transition);
}

.top-item:hover {
  color: var(--primary);
  background: rgba(255, 140, 0, 0.08);
  box-shadow: 0 14px 40px rgba(255, 140, 0, 0.18);
  transform: translateY(-1px);
}

.top-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.top-item-text {
  color: inherit;
}

.top-right a {
  color: var(--dark);
  text-decoration: none;
  transition: 0.3s;
}

.top-right a.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid transparent;
  transition: var(--transition);
}

.top-right a.social-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

.top-right a.social-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 140, 0, 0.08);
  box-shadow: 0 14px 40px rgba(255, 140, 0, 0.18);
}

.top-right a.social-icon:hover svg {
  transform: scale(1.08);
}

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

/* --- Mobile üst bar düzeni --- */
@media (max-width: 768px) {
  .top-bar-inner {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
  }

  .top-left,
  .top-right {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .top-item-text {
    white-space: nowrap;
    font-size: 10.25px;
    text-transform: lowercase;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
  }

  .top-item {
    padding: 7px 10px;
    border-radius: 999px;
  }

  .top-left {
    flex: 0 0 auto;
  }

  .top-right {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .top-right a.social-icon {
    display: none;
  }
  .logo-text img{
	 width:100%;
  }	 
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Ana Header --- */
header {
  padding: 14px var(--container-padding);
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 1045;
  overflow: visible;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 10px var(--container-padding);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.logo-dot::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, rgba(255, 140, 0, 0) 60%);
}

/* Masaüstü Navigasyon */
.nav-main {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

@media (max-width: 1024px) {
  .nav-main {
    display: none;
  }
}

.nav-main > li {
  position: relative;
}

/* Açılır menü, flex içindeki diğer öğelerin ve sayfa içeriğinin altında kalmaması için */
.nav-main > li:hover,
.nav-main > li:focus-within {
  z-index: 20;
}

.nav-main > li > a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  transition: var(--transition);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 30;
  background: #fff;
  min-width: 260px;
  padding: 20px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.99);
  filter: blur(8px);
  transform-origin: 20px -10px;
  transition:
    opacity 0.22s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.3s ease,
    visibility 0s linear 0.32s;
}

.nav-main > li:hover .dropdown,
.nav-main > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.22s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.3s ease,
    visibility 0s linear 0s;
}

.dropdown a {
  padding: 12px 30px;
  display: block;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 0.25s ease,
    color 0.25s ease;

  /* Açılırken sırayla belirsin */
  opacity: 0;
  transform: translateY(10px);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.nav-main > li:hover .dropdown a,
.nav-main > li:focus-within .dropdown a {
  opacity: 1;
  transform: translateY(0);
}

.dropdown li:nth-child(1) a {
  --i: 0;
}
.dropdown li:nth-child(2) a {
  --i: 1;
}
.dropdown li:nth-child(3) a {
  --i: 2;
}
.dropdown li:nth-child(4) a {
  --i: 3;
}
.dropdown li:nth-child(5) a {
  --i: 4;
}
.dropdown li:nth-child(6) a {
  --i: 5;
}

.dropdown a:hover {
  color: var(--primary);
  background: var(--light-gray);
}

.header-search {
  display: flex;
  align-items: stretch;
  flex: 0 1 260px;
  min-width: 160px;
  max-width: 300px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search:focus-within {
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
}

.header-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 8px 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
}

.header-search-input::placeholder {
  color: #999;
}

.header-search-submit {
  flex-shrink: 0;
  width: 46px;
  border: 0;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.header-search-submit:hover {
  background: var(--primary);
}

@media (max-width: 1024px) {
  .header-search {
    display: none;
  }

  .nav-main {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}

/* Sağ Aksiyonlar & Mobil Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1200;
  flex-shrink: 0;
}

.header-promo-link {
  display: block;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  line-height: 0;
  padding: 0;
  margin: 0;
  align-self: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-promo-link:hover {
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.15);
}

.header-promo-img {
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.btn-quote {
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 999px;
  letter-spacing: 0.7px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-quote:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: block;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  position: absolute;
  transition: 0.3s;
  left: 0;
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 9px;
}

.mobile-toggle span:nth-child(3) {
  top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* --- Mobil Navigasyon --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1040;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-top {
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-search {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fafafa;
}

.mobile-nav-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
}

.mobile-nav-search-btn {
  width: 48px;
  flex-shrink: 0;
  border: 0;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-search-btn:hover {
  background: var(--primary);
}

.mobile-nav-promo {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  line-height: 0;
}

.mobile-nav-promo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
}

.mobile-nav-top .mobile-nav-contact {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  opacity: 1;
  transform: none;
  transition: none;
}

.mobile-nav-top .mobile-nav-social {
  margin-top: 12px;
  padding-top: 0;
}

.mobile-nav-top .mobile-nav-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-nav-top .mobile-nav-contact-link {
  padding: 10px 12px;
  font-size: 13px;
}

.mobile-nav-top .mobile-nav-social-link {
  width: 36px;
  height: 36px;
  margin-right: 6px;
}

.mobile-nav-top .mobile-nav-social-link svg {
  width: 16px;
  height: 16px;
}

.mobile-nav-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  color: var(--dark);
  margin-right: 8px;
  margin-bottom: 4px;
  transition: var(--transition);
}

.mobile-nav-social-link svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-social-link:hover {
  color: var(--primary);
  border-color: rgba(255, 140, 0, 0.35);
}

.mobile-link-direct {
  text-decoration: none;
  color: inherit;
  display: flex;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  padding: 100px var(--container-padding) var(--container-padding);
  opacity: 0;
  transform: translateX(110%) scale(0.99);
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.mobile-close {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.active .mobile-close {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 90ms;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: var(--container-padding);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.mobile-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  stroke-width: 2.7;
}

.mobile-link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--light-gray);
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}

.mobile-link-wrap span {
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

.mobile-nav ul > li:nth-child(1) > .mobile-link-wrap {
  --i: 0;
}

.mobile-nav ul > li:nth-child(2) > .mobile-link-wrap {
  --i: 1;
}

.mobile-nav ul > li:nth-child(3) > .mobile-link-wrap {
  --i: 2;
}

.mobile-nav ul > li:nth-child(4) > .mobile-link-wrap {
  --i: 3;
}

.mobile-nav ul > li:nth-child(5) > .mobile-link-wrap {
  --i: 4;
}

.mobile-nav.active .mobile-link-wrap {
  opacity: 1;
  transform: translateY(0);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.25s ease,
    transform 0.25s ease;
  background: #fafafa;
}

.mobile-submenu.open {
  max-height: 520px;
  padding: 10px 0;
  opacity: 1;
  transform: translateY(0);
}

.mobile-submenu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #666;
  font-size: 16px;
}

.mobile-submenu a:hover {
  color: var(--primary);
  background: var(--light-gray);
}

/* Mobil menü: telefon, e-posta, sosyal (üst barda küçük ekranda gizlenen ikonlar) */
.mobile-nav-contact {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: calc(3 * 90ms);
}

.mobile-nav.active .mobile-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav-contact-link:hover {
  color: var(--primary);
  background: rgba(255, 140, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.25);
}

.mobile-nav-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--dark);
}

.mobile-nav-contact-link:hover .mobile-nav-contact-icon {
  color: var(--primary);
}

.mobile-nav-contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.mobile-nav-contact-social a.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  color: var(--dark);
  transition: var(--transition);
}

.mobile-nav-contact-social a.social-icon svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-contact-social a.social-icon:hover {
  color: var(--primary);
  background: rgba(255, 140, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.25);
  transform: translateY(-1px);
}

/* --- Slider --- */
.hero-wrap {
  height: calc(100vh - 140px);
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-wrap.grabbing {
  cursor: grabbing;
}

@media (max-width: 992px) {
  .hero-wrap {
    height: 80vh;
  }
}

.slider-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none; /* sürükleme için wrapper üzerinden yakalama */
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 var(--container-padding);
  opacity: 0.45;
  transition: opacity 0.9s;
}

.slide.active {
  opacity: 0.9;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 800px;
  transform: translateY(22px);
  opacity: 0;
  transition: 1s ease 0.2s;
  pointer-events: auto;
}

.slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-content span {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.hero-content h1 {
  font-size: clamp(32px, 8vw, 75px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 17px;
  opacity: 0.88;
  max-width: 540px;
  line-height: 1.7;
}

/* --- Slider Navigasyon İkonları --- */
.slider-nav {
  position: absolute;
  bottom: 40px;
  right: var(--container-padding);
  z-index: 20;
  display: flex;
  gap: 15px;
  pointer-events: auto;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 14px;
}

.nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

@media (max-width: 480px) {
  .slider-nav {
    bottom: 22px;
    gap: 12px;
  }

  .nav-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-content p {
    font-size: 15.5px;
  }

  .btn-quote {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.6px;
  }
}

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Categories bölümünü daha geniş vererek kartları büyüt */
.categories-premium.container {
  max-width: 1320px;
}

@media (min-width: 1201px) {
  .categories-premium.container {
    max-width: 1540px;
  }
}

/* --- Categories Premium --- */
.categories-premium {
  padding: 64px 0 24px;
}

/* container ile birlikte kullanıldığında padding-left/right sıfırlanmasın */
.categories-premium.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (max-width: 480px) {
  .categories-premium.container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

.categories-premium .section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.categories-premium .section-heading span {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.categories-premium .section-heading h2 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 1201px) {
  .categories-grid {
    gap: 22px;
  }

  .category-card {
    border-radius: 22px;
  }

  .category-card-content {
    padding: 28px;
  }

  .category-name {
    font-size: clamp(18px, 2.5vw, 30px);
    letter-spacing: 0.75px;
  }
}

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

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

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #0b0b0b;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  display: block;

  /* Reveal (initial hidden state) */
  opacity: 0;
  transform: translateY(26px);
  filter: brightness(0.92);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: calc(var(--i, 0) * 120ms);
}

.category-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: brightness(1);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 1s ease;
  z-index: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0.85;
  transition:
    opacity 0.9s ease,
    background 0.9s ease;
  z-index: 1;
}

.category-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.category-name {
  position: relative;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  font-size: clamp(16px, 2.3vw, 26px);
  line-height: 1.05;
  transition: transform 0.5s ease;

  display: inline-block;
  padding-bottom: 18px;
}

.category-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.category-card:hover::before {
  transform: scale(1.12);
}

.category-card:hover::after {
  opacity: 0.72;
}

.category-card:hover .category-name {
  transform: translateY(-10px);
}

.category-card:hover .category-name::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .category-card {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .category-card::before,
  .category-card::after,
  .category-name,
  .category-name::after {
    transition: none;
  }
}

/* --- Ürün sekmeleri & kaydırıcı --- */
.product-tabs-section {
  padding: 48px 0 72px;
}

.new-products-below-tabs {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.new-products-heading {
  text-align: center;
  margin-bottom: 24px;
}

.new-products-heading span {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}

.new-products-heading h3 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--dark);
  margin: 0;
}

.product-tabs-section.container {
  max-width: 1540px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.product-tabs-heading {
  margin-bottom: 32px;
}

.product-tabs-scroll-hint {
  display: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin: 0 0 12px;
  padding: 10px 14px;
  background: rgba(255, 140, 0, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.product-tabs-scroll-hint:not([hidden]) {
  display: block;
}

.product-tabs-scroll-wrap {
  position: relative;
  margin-bottom: 28px;
}

.product-tabs-scroll-wrap.is-scrollable::before,
.product-tabs-scroll-wrap.is-scrollable::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 18px;
  width: 36px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.product-tabs-scroll-wrap.is-scrollable::before {
  left: 46px;
  background: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0));
  opacity: 0;
}

.product-tabs-scroll-wrap.is-scrollable:not(.at-start)::before {
  opacity: 1;
}

.product-tabs-scroll-wrap.is-scrollable::after {
  right: 46px;
  background: linear-gradient(-90deg, #fff 30%, rgba(255, 255, 255, 0));
  opacity: 1;
}

.product-tabs-scroll-wrap.is-scrollable.at-end::after {
  opacity: 0;
}

.tab-strip-nav {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: var(--dark);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  align-self: center;
}

.tab-strip-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.tab-strip-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.tab-strip-nav:not([hidden]) {
  display: flex;
}

.product-tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.product-tab-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.04);
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}

.product-tab-btn:hover {
  color: var(--dark);
  background: rgba(255, 140, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.25);
}

.product-tab-btn.is-active {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-tab-panel[hidden] {
  display: none !important;
}

.product-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.carousel-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.carousel-nav:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  /* scroll-snap-type'ı kaldırıyoruz çünkü JS ile kontrol ediyoruz */
  scroll-snap-type: none; 
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  /* pan-y ekleyerek mobilde sayfanın aşağı kaymasını engellemiyoruz */
  touch-action: pan-y; 
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto; /* Sürüklerken gecikmeyi önler */
  user-select: none;
}

/* BU KISMI SİL VEYA YORUMA AL */
/* .carousel-viewport.is-dragging * { pointer-events: none; } */

.carousel-viewport::-webkit-scrollbar {
  height: 5px;
}

.carousel-viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 0, 0.45);
  border-radius: 99px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  padding: 6px 4px 20px;
}

.product-tabs-section .carousel-track .product-card {
  flex: 0 0 min(260px, 82vw);
  scroll-snap-align: start;
}

@media (min-width: 1201px) {
  .product-tabs-section .carousel-viewport {
    container-type: inline-size;
  }

  .product-tabs-section .carousel-track .product-card {
    flex: 0 0 calc((100cqi - 4 * 18px) / 5);
    max-width: none;
  }
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-card-img {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.55s ease, box-shadow 0.45s ease;
}

/* Mobil / tablet: cover kenarları kırpar; tam görünsün diye contain */
@media (max-width: 1200px) {
  .product-tabs-section .product-card-img {
    background-size: contain;
  }
}

.product-card-title {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--dark);
  transition: color 0.25s ease;
}

.product-card-link:hover .product-card-img {
  transform: scale(1.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

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

@media (min-width: 769px) {
  .product-tabs-scroll-wrap {
    display: block;
  }

  .tab-strip-nav {
    display: none !important;
  }

  .product-tabs-scroll-wrap.is-scrollable::before,
  .product-tabs-scroll-wrap.is-scrollable::after {
    display: none;
  }

  .product-tabs-scroll-hint {
    display: none !important;
  }

  .product-tabs-list {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .product-carousel {
    gap: 8px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .product-tabs-scroll-wrap {
    display: flex;
    align-items: stretch;
    gap: 8px;
  }

  .product-tabs-list {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    border-bottom: 1px solid var(--border);
  }

  .product-tabs-list::-webkit-scrollbar {
    height: 4px;
  }

  .product-tab-btn {
    flex-shrink: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-viewport {
    scroll-behavior: auto;
  }

  .product-card-img,
  .product-card-link:hover .product-card-img {
    transition: none;
    transform: none;
  }
}

/* --- Galeri --- */
.gallery-section {
  padding: 32px 0 56px;
}

.gallery-section.container {
  max-width: 1540px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.gallery-heading {
  text-align: center;
  margin-bottom: 28px;
}

.gallery-heading span {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.gallery-heading h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
  aspect-ratio: 1 / 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.06);
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
  background: rgba(0, 0, 0, 0.2);
}

/* --- Kaydırmalı şeritler: haberler, referanslar, yorumlar --- */
.news-strip-section,
.refs-strip-section,
.reviews-strip-section {
  padding: 36px 0 48px;
}

.news-strip-section.container,
.refs-strip-section.container,
.reviews-strip-section.container {
  max-width: 1540px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.strip-section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.strip-section-heading span {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.strip-section-heading h2 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  margin: 0;
}

.strip-carousel--news .carousel-track {
  gap: 16px;
  padding: 4px 2px 16px;
}

.strip-carousel--news .news-card {
  flex: 0 0 min(300px, 86vw);
  scroll-snap-align: start;
}

.strip-carousel--news .news-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.25s ease;
}

.strip-carousel--news .news-card-link:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.25);
}

.strip-carousel--news .news-card-img {
  aspect-ratio: 20 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.strip-carousel--news .news-card-date {
  display: block;
  padding: 12px 18px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
}

.strip-carousel--news .news-card-title {
  margin: 8px 18px 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark);
}

.strip-carousel--news .news-card-excerpt {
  margin: 8px 18px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #666;
}

.strip-carousel--refs .carousel-track {
  gap: 14px;
  padding: 4px 2px 16px;
  align-items: stretch;
}

.strip-carousel--refs .ref-slide {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.strip-carousel--refs .ref-slide:hover {
  background: #fff;
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.strip-carousel--refs .ref-slide img {
  width: 134px;
  height: 134px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.strip-carousel--reviews .carousel-track {
  gap: 20px;
  padding: 4px 2px 16px;
}

.strip-carousel--reviews .review-card {
  flex: 0 0 min(320px, 90vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.strip-carousel--reviews .review-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #444;
  font-style: italic;
}

.strip-carousel--reviews .review-meta {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.strip-carousel--reviews .review-meta cite {
  font-style: normal;
}

.strip-carousel--reviews .review-role {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

@media (min-width: 1201px) {
  .strip-carousel--news .carousel-viewport,
  .strip-carousel--refs .carousel-viewport,
  .strip-carousel--reviews .carousel-viewport {
    container-type: inline-size;
  }

  .strip-carousel--news .news-card {
    flex: 0 0 calc((100cqi - 3 * 16px) / 4);
  }

  .strip-carousel--refs .ref-slide {
    flex: 0 0 min(150px, calc((100cqi - 7 * 14px) / 8));
    width: auto;
    aspect-ratio: 1;
    max-width: 150px;
    max-height: 150px;
    height: auto;
  }

  .strip-carousel--refs .ref-slide img {
    width: min(134px, 82%);
    height: min(134px, 82%);
  }

  .strip-carousel--reviews .review-card {
    flex: 0 0 calc((100cqi - 2 * 20px) / 3);
  }
}

@media (max-width: 1200px) {
  .strip-carousel--news .news-card-img {
    background-size: contain;
  }
}

/* Tam genişlik harita (viewport kenarına kadar) */
.map-fullbleed {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  left: 0;
  right: 0;
}

.map-fullbleed iframe {
  display: block;
  width: 100%;
  height: min(52vh, 480px);
  min-height: 280px;
  border: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px var(--container-padding) 36px;
  margin-top: 0;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
  text-align: center;
}

@media (min-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: start;
    text-align: left;
    gap: 40px 32px;
  }
}

.site-footer-col--brand {
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .site-footer-col--brand {
    margin: 0;
    max-width: none;
  }
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
}

.site-footer-tagline {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer-address {
  margin: 18px 0 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

@media (min-width: 900px) {
  .site-footer-contact-block {
    align-items: flex-start;
  }
}

.site-footer-mail,
.site-footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-mail:hover,
.site-footer-tel:hover {
  color: var(--primary);
}

.site-footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

@media (min-width: 900px) {
  .site-footer-social {
    justify-content: flex-start;
  }
}

.site-footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

.site-footer-social-link svg {
  width: 18px;
  height: 18px;
}

.site-footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer-heading {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 900px) {
  .site-footer-links {
    align-items: flex-start;
  }
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer-copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.lightbox-arrow--prev {
  left: 12px;
}

.lightbox-arrow--next {
  right: 12px;
}

@media (max-width: 576px) {
  .lightbox-arrow--prev {
    left: 6px;
  }

  .lightbox-arrow--next {
    right: 6px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-thumb,
  .gallery-thumb img {
    transition: none;
  }
}

/* Sabit WhatsApp + yukarı çık */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.3s ease;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.fab--top {
  background: var(--dark);
  color: #fff;
}

.fab--top.fab--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.fab--whatsapp {
  background: #25d366;
  color: #fff;
}

/* Alt sayfalar */
.page-main {
  padding: 36px 0 72px;
}

.page-main.container {
  max-width: 1320px;
}

@media (max-width: 767px) {
  .page-main.container {
    padding-left: max(18px, env(safe-area-inset-left, 0px), 4vw);
    padding-right: max(18px, env(safe-area-inset-right, 0px), 4vw);
  }
}

.page-intro {
  margin-bottom: 28px;
}

.page-intro h1 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  margin: 0 0 10px;
}

.page-intro p {
  color: #666;
  max-width: 640px;
  line-height: 1.6;
  margin: 0;
}

.product-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.product-grid-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.35s ease;
}

.product-grid-card:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.product-grid-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pgc-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #111;
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.45s ease;
  transform-origin: center center;
}

.product-grid-card:hover .pgc-img {
  transform: scale(1.06);
  filter: brightness(1.04) saturate(1.02);
}

.pgc-body {
  padding: 16px 18px 20px;
}

.pgc-title {
  font-size: 16px;
  font-weight: 800;
}

.pgc-meta {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
}

.pagination button,
.pagination a {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-body);
}

.pagination .is-active,
.pagination span.is-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.pagination span.is-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-detail-layout {
  display: grid;
  gap: 36px;
}

@media (min-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pd-gallery-main {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

button.pd-gallery-main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  border-radius: 18px;
}

button.pd-gallery-main:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pd-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pd-gallery-thumbs button,
.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: zoom-in;
  background: #f5f5f5;
}

.pd-gallery-thumbs button.is-active,
.pd-thumb.is-active {
  border-color: var(--primary);
}

.pd-gallery-thumbs img,
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pd-btn-outline {
  background: transparent !important;
  color: var(--dark) !important;
  border: 1px solid var(--border) !important;
}

.pd-similar-section {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pd-similar-heading {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px;
}

.pd-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  margin: 0 0 12px;
}

.pd-lead {
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}

.pd-specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.pd-specs li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form .field {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  background: var(--dark);
  color: #fff;
  border: 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  font-family: var(--font-body);
}

.btn-submit:hover {
  background: var(--primary);
}

.content-prose {
  max-width: 800px;
  line-height: 1.75;
  color: #444;
}

.content-prose h2 {
  margin-top: 2rem;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

/* Kurumsal: görsel + yan menü */
.kurumsal-layout {
  display: grid;
  gap: 24px;
}

.kurumsal-photo--hero {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
  background: #111;
}

.kurumsal-photo--hero img {
  width: 100%;
  height: auto;
  display: block;
}

.kurumsal-aside {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
}

.kurumsal-aside-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: #888;
}

.kurumsal-aside nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kurumsal-aside nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.kurumsal-aside nav a:hover {
  background: #fff;
  color: var(--primary);
}

.kurumsal-below .page-intro {
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .kurumsal-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .kurumsal-photo--hero {
    grid-column: 1;
    grid-row: 1;
  }

  .kurumsal-aside {
    grid-column: 2;
    grid-row: 1 / 3;
    position: sticky;
    top: 96px;
  }

  .kurumsal-below {
    grid-column: 1;
    grid-row: 2;
  }
}

/* İletişim: bilgi satırları + ikon */
.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  color: var(--dark);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  padding-top: 2px;
}

.contact-info-text a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-info-text strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 4px;
  font-weight: 800;
}

/* Haber detay */
.haber-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--dark);
  margin-bottom: 20px;
}

.haber-back:hover {
  color: var(--primary);
}

.haber-hero-img {
  margin: 0 0 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.haber-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.haber-meta time {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 10px;
}

.haber-gallery-title {
  font-size: 18px;
  font-weight: 800;
  margin: 32px 0 16px;
}

.haber-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.haber-gallery-grid .gallery-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
  cursor: zoom-in;
  background: #f5f5f5;
}

.haber-gallery-grid .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.haber-article .pd-title {
  font-size: clamp(24px, 5vw, 34px);
}

/* Haber detay: içerik + sağda diğer haberler */
.haber-page-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .haber-page-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .haber-aside {
    position: sticky;
    top: 96px;
  }
}

.haber-aside {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
}

.haber-aside-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: #888;
}

.haber-aside-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.haber-aside-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.haber-aside-nav a:hover {
  background: #fff;
  color: var(--primary);
}

.haber-aside-nav a.is-current {
  background: #fff;
  color: var(--primary);
  box-shadow: inset 3px 0 0 var(--primary);
}

/* Sayfa gövdesi, sticky header + açılır menünün altında kalmalı */
main {
  position: relative;
  z-index: 0;
}