/* =======================================================
   TAILWIND
======================================================= */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* =======================================================
   GLOBAL RESET / GENEL DÜZELTMELER
======================================================= */

#intro {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    #e6e6e6 0%,
    /* açık metalik gri */ #bfbfbf 45%,
    /* koyu metalik gri */ #d9d9d9 100% /* tekrar açılan metalik */
  ) !important;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 1;
  transition: opacity 1.5s ease-out;
}
.intro-logo {
  width: 180px;
  animation: introPulse 4s infinite ease-in-out;
}

@keyframes introPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

#intro.hide {
  opacity: 0;
  pointer-events: none;
}

html,
body {
  overflow-x: hidden;
}
/* HERO GÖRSELİ HER YERDEN GÖRÜNSÜN (HEADER DAHİL) */
body {
  background-image: url('../images/indexbg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

@keyframes kenburns {
  0% {
    background-size: 105%;
    background-position: center;
  }
  100% {
    background-size: 115%;
    background-position: center;
  }
}

body {
  animation: kenburns 18s ease-in-out infinite alternate;
}

body.home-page {
  position: relative;
  padding-top: 0 !important;
  background: transparent;
  animation: none;
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('../images/indexbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transform-origin: center;
  animation: homeBgZoom 18s ease-in-out infinite alternate;
  pointer-events: none;
}

body.cart-page {
  position: relative;
  background: transparent !important;
}

body.cart-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(10, 12, 16, 0.1), rgba(10, 12, 16, 0.18)),
    url('../images/indexbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

@keyframes homeBgZoom {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.1);
  }
}

/* === SCROLL BAŞLANGICI: HEADER & TOPBAR ŞEFFAF === */
body.home-page #header .topbar,
body.home-page #header .main-header {
  background: transparent !important;
  box-shadow: none !important;
  transition: background 0.35s ease;
}
body.home-page #header .pages-link {
  color: white;
}

@media (min-width: 1025px) {
  body.works-page #header:not(.scrolled) .main-header,
  body.body #header:not(.scrolled) .main-header,
  body.contact-page #header:not(.scrolled) .main-header,
  body:has(.products-page) #header:not(.scrolled) .main-header {
    background: transparent !important;
    box-shadow: none !important;
  }

  body.works-page #header:not(.scrolled) .pages-link,
  body.body #header:not(.scrolled) .pages-link,
  body.contact-page #header:not(.scrolled) .pages-link,
  body:has(.products-page) #header:not(.scrolled) .pages-link {
    color: #ffffff !important;
  }

  body.works-page #header:not(.scrolled) .cart-img,
  body.works-page #header:not(.scrolled) .profile-icon,
  body.body #header:not(.scrolled) .cart-img,
  body.body #header:not(.scrolled) .profile-icon,
  body.contact-page #header:not(.scrolled) .cart-img,
  body.contact-page #header:not(.scrolled) .profile-icon,
  body:has(.products-page) #header:not(.scrolled) .cart-img,
  body:has(.products-page) #header:not(.scrolled) .profile-icon {
    filter: brightness(0) invert(1) !important;
  }

  body.works-page #header.scrolled .pages-link,
  body.works-page #header:has(.main-header.scrolled) .pages-link,
  body.body #header.scrolled .pages-link,
  body.body #header:has(.main-header.scrolled) .pages-link,
  body.contact-page #header.scrolled .pages-link,
  body.contact-page #header:has(.main-header.scrolled) .pages-link,
  body:has(.products-page) #header.scrolled .pages-link,
  body:has(.products-page) #header:has(.main-header.scrolled) .pages-link {
    color: #000000 !important;
  }

  body.works-page #header.scrolled .cart-img,
  body.works-page #header.scrolled .profile-icon,
  body.works-page #header:has(.main-header.scrolled) .cart-img,
  body.works-page #header:has(.main-header.scrolled) .profile-icon,
  body.body #header.scrolled .cart-img,
  body.body #header.scrolled .profile-icon,
  body.body #header:has(.main-header.scrolled) .cart-img,
  body.body #header:has(.main-header.scrolled) .profile-icon,
  body.contact-page #header.scrolled .cart-img,
  body.contact-page #header.scrolled .profile-icon,
  body.contact-page #header:has(.main-header.scrolled) .cart-img,
  body.contact-page #header:has(.main-header.scrolled) .profile-icon,
  body:has(.products-page) #header.scrolled .cart-img,
  body:has(.products-page) #header.scrolled .profile-icon,
  body:has(.products-page) #header:has(.main-header.scrolled) .cart-img,
  body:has(.products-page) #header:has(.main-header.scrolled) .profile-icon {
    filter: brightness(0) !important;
  }
}
/* === SCROLL SONRASI: ESKİ METALİK HEADER + SİYAH TOPBAR === */

#header.scrolled .topbar {
  background: #111111 !important; /* senin eski siyah topbar */
}

body:has(.main-header.scrolled) .topbar {
  background: #111111 !important;
}

#header.scrolled .main-header {
  background: linear-gradient(
    135deg,
    #e6e6e6 0%,
    /* açık metalik gri */ #bfbfbf 45%,
    /* koyu metalik gri */ #d9d9d9 100% /* tekrar açılan metalik */
  ) !important;

  background-color: transparent !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-header.scrolled {
  background: linear-gradient(
    135deg,
    #e6e6e6 0%,
    #bfbfbf 45%,
    #d9d9d9 100%
  ) !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.home-page #header.scrolled .topbar,
body.home-page #header:has(.main-header.scrolled) .topbar {
  background: #111111 !important;
  box-shadow: none !important;
}

body.home-page #header.scrolled .main-header,
body.home-page #header .main-header.scrolled {
  background: linear-gradient(
    135deg,
    #e6e6e6 0%,
    #bfbfbf 45%,
    #d9d9d9 100%
  ) !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

body.home-page #header.scrolled .logo-black,
body.home-page #header .main-header.scrolled .logo-black {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.home-page #header.scrolled .logo-white,
body.home-page #header .main-header.scrolled .logo-white {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}

/* Scroll sonrası menü yazıları siyah */
#header.scrolled .nav-pages a {
  color: black !important;
}
#header.scrolled .nav-pages a:hover {
  color: #b11212 !important;
}
#header.scrolled .nav-pages li a:hover {
  color: #b11212 !important;
}
#header.scrolled .topbar a {
  color: white !important;
}
/* HERO SECTION TAM ŞEFFAF OLSUN, BODY ARKA PLANINI GÖSTERSİN */
/* Logo container konum belirler (zaten sen ayarladın) */
.logo-berat {
  margin-left: 25px !important;
  margin-top: 2px !important;
  margin-bottom: 10px !important;
}

/* Beyaz ve siyah logolar aynı noktaya sabitlenir */
.logo-black,
.logo-white {
  position: absolute;
  transition:
    opacity 0.65s cubic-bezier(0.65, 0, 0.15, 1),
    transform 0.65s cubic-bezier(0.65, 0, 0.15, 1);
}

.logo-white {
  opacity: 1;
  transform: translateY(0);
}

.logo-black {
  opacity: 0;
  transform: translateY(6px);
}

#header.scrolled .logo-black {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#header.scrolled .logo-white {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}

h1,
h2,
h3,
h4 {
  color: #1a1a1a !important;
}

p {
  color: #333 !important;
}

a {
  color: #1a1a1a;
  transition: 0.25s ease;
}

a:hover {
  color: #ff2c2c !important;
}
.info-text {
  color: #fff !important;
  font: bold;
}
.info-text2 {
  color: #fff !important;
}
.hero-sec-text {
  color: #fff !important;
  font: bold;
}
.text-highlights {
  color: #fff !important;
}
.text-questions {
  color: #fff !important;
}
/* =======================================================
   HERO BÖLÜMÜ
======================================================= */

.sec1 {
  background: transparent !important;
  background-image: none !important;
  min-height: 90svh;
}
.sec1 p {
  color: #ffffff !important;
}

/* =======================================================
   KARTLAR – ÜRÜN KATEGORİLERİ – SSS
======================================================= */

.product-index,
.image-box,
.highlights-box-index,
.details-box {
  background: linear-gradient(
    135deg,
    #b5b5b5 0%,
    #d0d0d0 20%,
    #a9a9a9 50%,
    #cecece 75%,
    #b8b8b8 100%
  ) !important;

  border: 1px solid #9a9a9a !important;
  color: #222 !important;
  transition: 0.25s ease;
}

.product-index:hover,
.sector-logo:hover {
  border-color: #ff2c2c !important;
  transform: translateY(-3px);
}

.featured-products-section {
  position: relative;
}

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

.featured-product-card.highlights-box-index {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  color: #111827 !important;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.featured-product-card:hover {
  border-color: #ff2c2c !important;
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.featured-product-media {
  height: 168px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.featured-product-body {
  flex: 1;
  padding: 14px 16px 16px;
  background: linear-gradient(135deg, #f7f7f7 0%, #d8d8d8 100%);
}

.featured-product-body span {
  display: block;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-product-body h3 {
  margin: 6px 0 4px;
  color: #111827;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.featured-product-body p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

@media (min-width: 640px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.machines-gallery-section {
  padding: 28px 0 34px;
  background: linear-gradient(135deg, #eef0f2 0%, #c9ced4 48%, #f5f6f7 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.machines-gallery-inner {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

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

.machines-gallery-heading h2 {
  color: #111827 !important;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
  font-weight: 800;
}

.machine-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: stretch;
  height: 285px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #d8dde3 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  outline: none;
  touch-action: pan-y;
}

.machine-showcase:focus-visible {
  box-shadow:
    0 0 0 3px rgba(177, 18, 18, 0.28),
    0 24px 54px rgba(15, 23, 42, 0.2);
}

.machine-showcase-media {
  height: 285px;
  min-height: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 12px;
  display: block;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.machine-showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 285px;
  min-height: 0;
  padding: 24px 32px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(35, 42, 51, 0.95)),
    linear-gradient(135deg, #d5d9de 0%, #f4f5f6 100%);
}

.machine-showcase-info span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f3f4f6;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.machine-showcase-info h3 {
  color: #ffffff !important;
  max-width: 8.5em;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: break-word;
}

.machine-showcase.is-changing .machine-showcase-media img,
.machine-showcase.is-changing .machine-showcase-info h3,
.machine-showcase.is-changing .machine-showcase-info span {
  opacity: 0;
  transform: translateY(8px);
}

.machine-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.machine-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform-origin: center;
}

.machine-nav-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.machine-nav-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.machine-nav:hover {
  background: #b11212;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.04);
}

.machine-nav-prev {
  left: 8px;
}

.machine-nav-next {
  right: 8px;
}

.machine-dots {
  position: absolute;
  right: 16px;
  bottom: 11px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  max-width: min(230px, 44%);
}

.machine-dots button {
  width: 6px;
  height: 6px;
  padding: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.machine-dots button.active {
  width: 17px;
  background: #b11212;
}

@media (prefers-reduced-motion: reduce) {
  .machine-showcase-media img,
  .machine-showcase-info h3,
  .machine-showcase-info span,
  .machine-nav,
  .machine-dots button {
    transition: none;
  }
}

@media (max-width: 820px) {
  .machine-showcase {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .machine-showcase-media,
  .machine-showcase-media img {
    height: 245px;
    min-height: 0;
  }

  .machine-showcase-info {
    min-height: 0;
    padding: 20px 24px 48px;
  }

  .machine-showcase-info h3 {
    font-size: 24px !important;
  }

  .machine-dots {
    left: 22px;
    right: 22px;
    bottom: 16px;
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .machines-gallery-section {
    padding: 30px 0;
  }

  .machines-gallery-inner {
    width: min(100% - 24px, 760px);
  }

  .machines-gallery-heading h2 {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }

  .machine-showcase-media,
  .machine-showcase-media img {
    height: 210px;
    min-height: 0;
  }

  .machine-showcase-media img {
    padding: 10px;
  }

  .machine-showcase-info {
    padding: 18px 20px 46px;
  }

  .machine-showcase-info h3 {
    font-size: 22px !important;
  }

  .machine-nav {
    width: 28px;
    height: 28px;
  }

  .machine-nav-prev {
    left: 10px;
  }

  .machine-nav-next {
    right: 10px;
  }
}

.sectors-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(10, 14, 22, 0.96), rgba(24, 29, 38, 0.98)),
    #111827 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sectors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(177, 18, 18, 0.16), transparent 34%),
    radial-gradient(circle at 72% 12%, rgba(214, 174, 88, 0.15), transparent 30%);
  pointer-events: none;
}

.sectors-section > div {
  position: relative;
  z-index: 1;
}

.sectors-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  column-gap: 48px;
  row-gap: 12px;
  align-items: end;
  margin-bottom: 24px;
}

.sectors-heading > span {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f3d28b;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.sectors-heading h3 {
  margin: 0;
  color: #ffffff !important;
  line-height: 1.12;
}

.sectors-heading p {
  max-width: 620px;
  margin: 0;
  color: #cbd5e1 !important;
  font-size: 15px;
  line-height: 1.55;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 18px;
}

.sector-logo {
  position: relative;
  display: block;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.22) !important;
  border-radius: 8px;
  background: #161b24;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sector-logo:nth-child(1),
.sector-logo:nth-child(7) {
  grid-column: span 2;
}

.sector-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 23, 0.02), rgba(11, 15, 23, 0.12)),
    linear-gradient(0deg, rgba(4, 8, 14, 0.82) 0%, rgba(4, 8, 14, 0.34) 36%, rgba(4, 8, 14, 0) 72%);
  pointer-events: none;
}

.sector-logo img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.sector-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
}

.sector-content small {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f7d58b;
  background: rgba(17, 24, 39, 0.7);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.sector-logo span {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.sector-logo:hover {
  border-color: rgba(255, 44, 44, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 44px rgba(0, 0, 0, 0.32);
}

.sector-logo:hover img {
  filter: saturate(1.03) contrast(1.08);
  transform: scale(1.045);
}

@media (min-width: 760px) {
  .sectors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sector-logo:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .sector-logo:nth-child(7) {
    grid-column: span 2;
  }
}

@media (min-width: 1120px) {
  .sectors-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sector-logo:nth-child(1) {
    grid-column: span 4;
    grid-row: span 2;
  }

  .sector-logo:nth-child(2),
  .sector-logo:nth-child(3),
  .sector-logo:nth-child(4),
  .sector-logo:nth-child(5),
  .sector-logo:nth-child(6) {
    grid-column: span 4;
  }

  .sector-logo:nth-child(7) {
    grid-column: span 8;
  }
}

@media (max-width: 760px) {
  .sectors-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 172px;
  }

  .sector-logo,
  .sector-logo:nth-child(1),
  .sector-logo:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ======== SSS ======== */

details {
  background: linear-gradient(
    135deg,
    #b5b5b5 0%,
    #d0d0d0 20%,
    #a9a9a9 50%,
    #cecece 75%,
    #b8b8b8 100%
  ) !important;

  border: 1px solid #9a9a9a !important;
  padding: 15px;
  border-radius: 12px;
}

details summary {
  color: #1a1a1a !important;
}

details p {
  color: #333 !important;
}

details:hover {
  border-color: #ff2c2c !important;
}

/* =======================================================
   METAL BUTON (Ürünleri Gör & CTA)
======================================================= */

.metal-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
  color: #111 !important;

  /* DAHA KOYU METALİK GRİ */
  background: linear-gradient(
    135deg,
    #d0d0d0 0%,
    #bababa 25%,
    #e0e0e0 50%,
    #b8b8b8 75%,
    #d2d2d2 100%
  );

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

/* DAHA YUMUŞAK VE AZ PARLAK KIRMIZI HOVER */
.metal-btn:hover {
  transform: translateY(-2px);
  /* daha yumuşak gölge */
  box-shadow: 0 4px 14px rgba(130, 20, 20, 0.35);
}

/* =======================================================
   CTA BÖLÜMÜ (İletişime Geç)
======================================================= */

.cta-box h3 {
  color: #ffffff !important;
  font-weight: 700;
}

.cta-box p {
  color: #d4d4d4 !important;
}

/* CTA buton özel stil gerektirmez → metal-btn zaten uygulanıyor */

/* =======================================================
   MOBİL RESPONSIVE
======================================================= */

@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
    line-height: 2.4rem !important;
  }

  h2,
  h3 {
    font-size: 1.5rem !important;
  }

  p {
    font-size: 1rem !important;
  }

  .sec1 {
    height: auto !important;
    min-height: calc(100svh - 104px);
    padding-top: 104px !important;
    padding-bottom: 44px;
  }

  a,
  button {
    font-size: 1rem !important;
    padding: 0.6rem 1.2rem !important;
  }

  .grid {
    grid-template-columns: 1fr !important;
  }

  .image-box {
    height: 220px !important;
  }

  .h-48 {
    height: 180px !important;
  }

  .cta-box {
    flex-direction: column !important;
    text-align: center !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
  }
}
.stats-dark h2,
.stats-dark div,
.stats-dark span {
  color: #ffffff !important;
}
.bg-gray-900 h3 {
  color: #f1f1f1 !important;
}
/* Ürün Kategorileri Arka Plan Fix */
.section-silver {
  background: linear-gradient(
    135deg,
    #b5b5b5 0%,
    #d0d0d0 20%,
    #a9a9a9 50%,
    #cecece 75%,
    #b8b8b8 100%
  );
}

/* ======================================== */
/*           MOBİL HERO FINAL FIX           */
/* ======================================== */

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }

  body.cart-page::before {
    background-size: cover;
    background-position: center;
  }

  body.home-page {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home-page #header .main-header {
    left: 0;
    right: 0;
    top: 32px;
    width: 100vw;
    max-width: 100vw;
    height: 72px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #e6e6e6 0%, #bfbfbf 45%, #d9d9d9 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18) !important;
  }

  body.home-page #header .topbar {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 32px;
    box-sizing: border-box;
    background: #111111 !important;
    box-shadow: none !important;
  }

  body.home-page .logo-black {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  body.home-page .logo-white {
    opacity: 0 !important;
    transform: translateY(-6px) !important;
  }

  body.home-page header.main-header .mobile-menu-btn {
    position: absolute !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50% !important;
    right: 16px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) !important;
    z-index: 100001 !important;
  }

  body.home-page header.main-header .mobile-menu-btn span {
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    margin: 3px 0 !important;
    padding: 0 !important;
    border-radius: 999px;
    background: #2f2f2f;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.65);
  }

  body.home-page::before {
    background-size: cover;
    background-position: center top;
    transform: none;
    animation: none;
  }

  .sec1 {
    margin-top: 0 !important;
    height: auto !important;
    min-height: calc(100svh - 104px);
    padding-top: 104px !important;
    padding-bottom: 44px !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  /* Başlık */
  .sec1 h1 {
    width: min(100%, 340px);
    font-size: 26px !important;
    margin-bottom: 14px !important;
    line-height: 1.2 !important;
    padding: 0 10px;
    white-space: normal;
  }

  /* Paragraf */
  .sec1 p {
    width: min(100%, 340px);
    font-size: 15px !important;
    line-height: 1.4 !important;
    padding: 0 20px !important;
    margin-bottom: 24px !important;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  /* Buton */
  .sec1 .metal-btn {
    font-size: 14px !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
  }

  .logo-black {
    margin-left: 1px;
  }
}

/* =======================================================
   KVKK AYDINLATMA METNI
======================================================= */
.kvkk-aydinlatma-metni {
  width: min(92vw, 900px);
  margin: 140px auto 60px;
  padding: 32px 36px;
  background: linear-gradient(145deg, #f1f1f1, #d8d8d8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.kvkk-aydinlatma-metni h1 {
  font-size: 28px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.kvkk-aydinlatma-metni h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.kvkk-aydinlatma-metni p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.kvkk-aydinlatma-metni ul {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.kvkk-aydinlatma-metni li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.kvkk-aydinlatma-metni a {
  color: #b11212;
  text-decoration: none;
  font-weight: 600;
}

.kvkk-aydinlatma-metni a:hover {
  color: #d06b43;
}

.kvkk-accept {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.kvkk-accept-btn {
  background: #b11212;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kvkk-accept-btn:hover {
  background: #d06b43;
}

@media (max-width: 640px) {
  .kvkk-aydinlatma-metni {
    margin: 120px auto 40px;
    padding: 24px;
    border-radius: 14px;
  }

  .kvkk-aydinlatma-metni h1 {
    font-size: 22px;
  }

  .kvkk-aydinlatma-metni h2 {
    font-size: 16px;
  }
}
