/* ============================================
   GÖK BÖRÜ TECH — V3 Clean Sharp Professional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #fafaf8;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
#mobileUmayFly { display: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.wrap { max-width: 1600px; margin: 0 auto; padding: 0 60px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: #0f0f0f;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -0.025em; }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { color: #666; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 12px 24px;
  border: none; cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.btn--dark { background: #111; color: #fff; }
.btn--dark:hover { background: #2a2a2a; }
.btn--outline { background: transparent; color: #111; border: 1.5px solid #ddd; }
.btn--outline:hover { border-color: #111; }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--white { background: #fff; color: #111; border: 1px solid #e0e0e0; }
.btn--white:hover { border-color: #111; }
.btn__arrow { transition: transform 0.2s; font-size: 1rem; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ══════════════════════
   NAVBAR
   ══════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #eee;
}
.nav__inner {
  max-width: 1600px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.nav__mark {
  width: 30px; height: 30px; background: #111; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 0.84rem; color: #888; font-weight: 400;
  transition: color 0.2s;
}
.nav__link:hover { color: #111; }
.nav__link--active { color: #111; font-weight: 500; }
.nav__cta {
  font-size: 0.82rem; font-weight: 500; color: #111;
  padding: 8px 18px; border: 1.5px solid #ddd;
  border-radius: 4px; transition: all 0.2s;
}
.nav__cta:hover { border-color: #111; background: #111; color: #fff; }

/* Navbar links white when not scrolled */
@media (min-width: 769px) {
  .nav:not(.scrolled) .nav__link,
  .nav:not(.scrolled) .nav__link--active {
    color: #fff;
  }
  .nav:not(.scrolled) .nav__link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .nav:not(.scrolled) .nav__cta {
    color: #fff;
    border-color: #fff;
  }
  .nav:not(.scrolled) .nav__cta:hover {
    background: #fff;
    color: #111;
  }
}

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 18px; position: relative; z-index: 110;
}
.nav__toggle span {
  display: block; width: 100%; height: 1.5px; background: #111;
  position: absolute; left: 0; transition: all 0.3s;
}
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 0; }
.nav__toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ══════════════════════
   HERO — Split horizontal
   ══════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero .wrap {
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 80px 0;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #aaa; margin-bottom: 20px;
}

.hero__title { margin-bottom: 20px; }

.hero__desc {
  font-size: 1.05rem; color: #777; margin-bottom: 32px; max-width: 600px;
}

.hero__actions { display: flex; gap: 12px; }

.hero__visual {
  position: absolute; top: 0; right: 0;
  width: 50vw; height: 100%;
  overflow: hidden;
  background: #eeeee8;
}

.hero__slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero__bg-img, .hero__fg-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}

.hero__fg-img {
  z-index: 2;
  will-change: transform;
}

.slider-arrows {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: #fff;
  transform: scale(1.05);
}

.slider-arrow svg {
  color: #fff;
  width: 24px;
  height: 24px;
  transition: color 0.3s;
}

.slider-arrow:hover svg {
  color: #111;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: #fff;
}
/* ── Brand strip ── */
.brand-strip {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff;
  overflow: hidden;
}

.brand-strip__inner {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.brand-strip__item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: #bbb; letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════
   ABOUT — Statement + Side
   ══════════════════════ */
.about {
  padding: 140px 0;
}

.gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.gallery-header__title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.2rem, 4.5vw, 4.2rem);
  color: #111;
  margin-bottom: 20px;
  transform: rotate(-3deg);
  display: inline-block;
  line-height: 1.1;
}

@keyframes rainbowHue {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.rainbow-brain-icon {
  stroke: url(#rainbowGradient) !important;
  width: 1.6em;
  height: 1.6em;
  animation: rainbowHue 4s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); /* Adds the 'parlayarak' glow effect */
}

.gallery-header__desc {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.6;
}

.about__gallery {
  margin-bottom: 80px;
}
.about__gallery-main {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1px;
}
.about__gallery-main img {
  width: 100%; height: auto; display: block;
  transform: scale(3) translateY(-40px);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s ease-out;
  will-change: transform, opacity;
}
.about__gallery-main img.has-landed {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.about__gallery-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.about__gallery-sub img {
  width: 100%; height: auto; display: block;
  border-radius: 0;
}

.about__statement {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.about__statement h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

.about__statement h2 strong {
  color: #0f0f0f;
  font-weight: 700;
}

.scroll-word {
  color: #e0e0e0;
  transition: color 0.3s ease;
}
.scroll-word.active {
  color: inherit;
}

.about__cols-wrapper {
  height: 350vh;
  position: relative;
  width: 100%;
}

.about__cols {
  position: sticky;
  top: 25vh;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}

.scroll-value-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-value-item.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blinkRed {
  0%, 100% { color: inherit; text-shadow: none; }
  50% { color: #e74c3c; text-shadow: 0 0 10px rgba(231, 76, 60, 0.5); }
}

.blink-red {
  animation: blinkRed 1.5s infinite;
  font-weight: 700;
}

.about__image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.about__image:hover img {
  transform: scale(1.02);
}

.about__details {}

.about__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #bbb; margin-bottom: 20px;
}

.about__detail-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.about__detail-item:first-child {
  border-top: 1px solid #eee;
}

.about__detail-item h4 {
  font-size: 0.92rem; margin-bottom: 4px;
}

.about__detail-item p {
  font-size: 0.84rem; color: #999;
}

.about__origin {
  margin-top: 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: #999;
}

/* ══════════════════════
   PRODUCTS — Alternating rows
   ══════════════════════ */
.products {
  padding: 0 0 140px;
}

.products__header {
  padding: 100px 0 60px;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-30vw);
}

.products__header-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.ph-left { 
  flex: 1; 
}

.ph-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111;
  margin-top: 12px;
}

.ph-right {
  flex: 1;
  max-width: 420px;
  padding-top: 12px;
}

.ph-divider {
  width: 60px;
  height: 2px;
  background: #e74c3c;
  margin-bottom: 24px;
}

.ph-right p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.6;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid #eee;
}

.product-row--reverse {
  direction: rtl;
}

.product-row--reverse > * {
  direction: ltr;
}

.product-row__img {
  position: relative;
  overflow: hidden;
  background: #f0f0ec;
  min-height: 540px;
}

.product-row__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.product-row__img .parallax-bg,
.product-row__img .parallax-fg {
  position: absolute;
  top: 0; left: 0;
}

.product-row__img .parallax-fg {
  z-index: 2;
  will-change: transform;
}

.anim-trigger-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.anim-trigger-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
.anim-trigger-btn svg {
  stroke: #fff;
  width: 20px;
  height: 20px;
}

.product-row:hover .product-row__img .parallax-bg {
  transform: scale(1.03);
}

.product-row__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 56px;
}

.product-row__tag {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #bbb; margin-bottom: 16px;
}

.product-row__name {
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.02em;
}

.product-row__desc {
  font-size: 0.95rem; color: #777;
  margin-bottom: 24px; max-width: 380px; line-height: 1.7;
}

.product-row__specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}

.spec-tag {
  font-size: 0.72rem; font-weight: 500; color: #999;
  padding: 5px 12px; border: 1px solid #e8e8e8;
  border-radius: 4px; background: #fafaf8;
}

.product-row__status {
  font-size: 0.78rem; color: #2ecc71;
  display: flex; align-items: center; gap: 6px;
}

.product-row__status::before {
  content: ''; width: 5px; height: 5px;
  background: #2ecc71; border-radius: 50%;
}

/* ══════════════════════
   TECHNOLOGY — Accordion
   ══════════════════════ */
.tech-section {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.tech-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.tech-section__header p {
  max-width: 360px; font-size: 0.92rem; margin-top: 8px;
}

.accordion {}

.accordion__item {
  border-bottom: 1px solid #eee;
}

.accordion__item:first-child {
  border-top: 1px solid #eee;
}

.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #111; text-align: left;
  transition: color 0.2s;
}

.accordion__trigger:hover { color: #555; }

.accordion__icon {
  font-size: 1.2rem; color: #ccc;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__trigger-left {
  display: flex; align-items: center; gap: 16px;
}

.accordion__emoji {
  font-size: 1.2rem;
  width: 32px; text-align: center;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__panel-inner {
  padding: 0 0 24px 48px;
  font-size: 0.9rem;
  color: #888;
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════
   SHOP CTA
   ══════════════════════ */
.shop-cta {
  padding: 100px 0;
  background: #fafaf8;
}

.shop-cta__banner {
  background: #111;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.shop-cta__content {
  padding: 80px;
}

.shop-cta__content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.shop-cta__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 400px;
}

.shop-cta__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  height: 100%;
}

.shop-cta__img-wrapper {
  flex: 1;
  max-width: 240px;
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.shop-cta__img-wrapper:hover {
  transform: translateY(-10px);
}

.shop-cta__img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ══════════════════════
   CONTACT
   ══════════════════════ */
.contact {
  padding: 120px 0;
  border-top: 1px solid #eee;
  background: #fff;
}

.contact__top {
  margin-bottom: 56px;
}

.contact__top p {
  font-size: 1rem; margin-top: 8px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact__items {
  display: flex; flex-direction: column; gap: 0;
}

.contact__row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact__row:first-child { border-top: 1px solid #f0f0f0; }

.contact__row-icon { font-size: 1.1rem; margin-top: 2px; }

.contact__row-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #ccc; margin-bottom: 2px;
}

.contact__row-value { font-size: 0.92rem; color: #444; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: #bbb;
}

.field__input,
.field__textarea {
  padding: 12px 14px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #111; background: #fafaf8;
  outline: none; transition: border-color 0.2s;
}

.field__input:focus,
.field__textarea:focus {
  border-color: #111;
}

.field__textarea { resize: vertical; min-height: 110px; }
.field__input::placeholder, .field__textarea::placeholder { color: #ccc; }

/* ══════════════════════
   FOOTER
   ══════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
}

.footer__copy { font-size: 0.78rem; color: #bbb; }

.footer__links { display: flex; gap: 20px; }

.footer__link {
  font-size: 0.78rem; color: #aaa; transition: color 0.2s;
}
.footer__link:hover { color: #111; }

/* ══════════════════════
   SHOP PAGE
   ══════════════════════ */
.shop-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid #eee;
}

.shop-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: #aaa; margin-bottom: 24px;
  transition: color 0.2s;
}

.shop-hero__back:hover { color: #111; }

.shop-hero p { font-size: 1rem; margin-top: 8px; max-width: 440px; }

.single-product-section {
  padding: 60px 0 140px;
}

.single-product {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  background: #fff;
}

/* Left: Gallery */
.sp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-gallery__main {
  position: relative;
  background: #f7f7f5;
  border-radius: 8px;
  overflow: hidden;
  height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.sp-gallery__flag {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  color: #c0392b;
  display: flex; align-items: center; gap: 5px;
}
.sp-gallery__thumbs {
  display: flex; gap: 16px;
}
.thumb-btn {
  width: 90px; height: 90px;
  border-radius: 6px; border: 2px solid transparent;
  background: #f7f7f5;
  cursor: pointer; overflow: hidden;
  transition: all 0.2s;
  padding: 0;
}
.thumb-btn img {
  width: 100%; height: 100%; object-fit: cover;
}
.thumb-btn.active, .thumb-btn:hover {
  border-color: #111;
}

/* Right: Details */
.sp-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sp-desc {
  font-size: 1rem; color: #666;
  line-height: 1.6; margin-bottom: 24px;
}
.sp-meta {
  display: flex; gap: 10px; margin-bottom: 32px;
}
.sp-meta-tag {
  font-size: 0.75rem; color: #888;
  padding: 5px 12px; border: 1px solid #e0e0e0;
  border-radius: 20px;
}
.sp-variant {
  margin-bottom: 24px;
}
.sp-variant__label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 12px; color: #111;
}
.sp-variant__label strong {
  color: #666; font-weight: 400; margin-left: 4px;
}
.sp-colors {
  display: flex; gap: 12px;
}
.color-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.color-btn.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}
.sp-sizes {
  display: flex; gap: 8px;
}
.size-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e4e4e4; border-radius: 4px;
  font-size: 0.85rem; font-weight: 500;
  color: #666; cursor: pointer; transition: all 0.2s;
  background: transparent;
}
.size-btn:hover, .size-btn.active {
  border-color: #111; color: #111;
}
.sp-bottom {
  display: flex; align-items: center; gap: 24px;
  margin-top: 16px; padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}
.sp-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; color: #111;
}
.sp-price span {
  font-size: 1.2rem; font-weight: 400; color: #aaa;
}
.btn--cart {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  color: #fff; background: #111;
  border: none; padding: 16px 32px;
  border-radius: 4px; cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}
.btn--cart:hover { background: #333; }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

.sub-img-reveal {
  opacity: 0; transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sub-img-reveal.visible {
  opacity: 1; transform: translateY(0) scale(1);
}

#desktopUavFly {
  position: fixed;
  left: -550px; /* Starts completely offscreen left (width is 450px) */
  bottom: 15vh; /* sol altın biraz üstünden */
  width: 450px;
  z-index: 100;
  pointer-events: none;
  mix-blend-mode: multiply; /* Beyaz arka planı görünmez yapar */
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  #desktopUavFly { display: none !important; }

  .hero { flex-direction: column; align-items: stretch; min-height: auto; }
  .hero__text { padding: 140px 0 60px; max-width: 100%; }
  .hero__visual { position: relative; width: 100%; height: 400px; }
  
  .about__cols-wrapper { height: auto; }
  .about__cols { position: relative; top: auto; grid-template-columns: 1fr; gap: 40px; }
  
  .about__gallery { grid-template-columns: 1fr; gap: 12px; }
  .about__gallery-sub { grid-template-columns: 1fr; gap: 1px; }
  .product-row { grid-template-columns: 1fr; }
  .product-row--reverse { direction: ltr; }
  .product-row__img { height: 320px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-section__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products__header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .single-product { grid-template-columns: 1fr; gap: 40px; }
  .sp-gallery__main { height: 600px; }
  .shop-cta__banner { grid-template-columns: 1fr; }
  .shop-cta__content { padding: 60px 40px; text-align: center; }
  .shop-cta__content p { margin: 0 auto 40px; }
  .shop-cta__visual { padding: 40px 20px; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .wrap { padding: 0 24px; }
  .nav__inner { padding: 0 0 0 16px; justify-content: space-between; flex-direction: row-reverse; }
  .nav__logo { transform: translateX(8px); }
  .nav__menu {
    display: none; position: absolute; top: 80px; left: 0; right: 0; bottom: auto;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; text-align: center;
    padding: 24px; gap: 16px; z-index: 150;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav__menu.open { display: flex; }
  .nav__toggle {
    display: block; position: relative; width: 24px; height: 18px;
    background: none; box-shadow: none; z-index: 110;
  }
  .nav__toggle span { width: 100%; left: 0; }
  .nav__toggle span:nth-child(1) { top: 0; transform: none; }
  .nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .nav__toggle span:nth-child(3) { bottom: 0; transform: none; }
  .nav__toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
  .hero__text { padding: 120px 0 48px; text-align: center; }
  .hero__visual { display: none !important; }
  .hero__bg-img { display: none; }
  
  #mobileUmayFly {
    display: block;
    position: fixed;
    top: 85%;
    right: 0;
    width: 250px;
    z-index: 200;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
  }
  
  #desktopUavFly { display: none !important; }

  .hero__actions { flex-direction: row; justify-content: center; gap: 12px; width: 100%; }
  .product-row__body { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .single-product { grid-template-columns: 1fr; gap: 32px; }
  .sp-gallery__main { height: 460px; }
  .sp-title { font-size: 1.8rem; }
  .about__statement h2 { font-size: 1.3rem; }
  .products__header-split { flex-direction: column; gap: 32px; }
  .ph-right { padding-top: 0; }
  
  .about__gallery-main {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .about__gallery-main img {
    width: 200%;
    max-width: 200%;
    flex-shrink: 0;
  }

  .about__gallery-sub-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .about__gallery-sub-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .about__gallery-sub {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 0 24px;
    align-items: center;
  }
  .about__gallery-sub img {
    width: 85vw;
    height: auto;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 3px; }

/* ── Lucide Icons ── */
svg.lucide {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  stroke-width: 2;
}
