@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-main: #eef3f7;
  --bg-soft: #dfe7ee;
  --dark: #101820;
  --dark-2: #18232e;
  --steel: #516170;
  --text-main: #101820;
  --text-soft: #5d6b78;
  --white: #ffffff;
  --cyan: #13b8d8;
  --blue: #2563eb;
  --ice: #e8fbff;
  --border: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1500px;
  --transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(19,184,216,0.20), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(37,99,235,0.16), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #e8eef4 45%, #f5f8fb 100%);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16,24,32,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,32,0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .55;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section { padding: 110px 0; }
.section-sm { padding: 75px 0; }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(22px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(16,24,32,0.08);
  animation: navDrop .85s ease both;
}

.navbar{
    min-height: 110px;
    display:flex;
    align-items:center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}

.logo span {
  color: var(--cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 20px;
  font-weight: 750;
  color: var(--steel);
  position: relative;
  transition: var(--transition);
  
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 16px 45px rgba(19,184,216,0.32);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(37,99,235,0.35);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff; /* Temiz beyaz zemin */
    color: #007bff !important; /* Kurumsal mavi yazı */
    text-decoration: none;
    border: 2px solid #007bff; /* Çerçeveli yapı lüks durur */
    border-radius: 8px; /* Hafif yuvarlatılmış köşeler */
    font-weight: 600;
    text-transform: uppercase; /* Yazıyı büyük harf yapar, daha profesyonel görünür */
    letter-spacing: 1px;
    transition: all 0.3s ease; /* Yumuşak geçiş */
    cursor: pointer;
}

.btn-primary:hover {
background-color: #007bff;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3); /* Hafif derinlik gölgesi */
    transform: translateY(-2px); /* Buton hafif yukarı kalkar */
}

.btn-outline {
  background: rgba(255,255,255,0.72);
  color: var(--dark);
  border-color: rgba(16,24,32,0.13);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--blue);
  transform: translateY(-5px);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 135px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(19,184,216,0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 76px;
  align-items: center;
}

.hero-content {
  animation: premiumLeft 1s cubic-bezier(.2,.8,.2,1) both;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(19,184,216,0.10);
  border: 1px solid rgba(19,184,216,0.25);
  color: #0b87a2;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
  animation: premiumFade .8s ease both;
}

.hero h1,
.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: .96;
  letter-spacing: -4px;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--dark);
}

.hero h1 span,
.page-hero h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.page-hero p {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero p {
  animation: premiumFade 1.2s ease .15s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: premiumUp 1.2s ease .25s both;
}

.hero-card {
  min-height: 520px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.42)),
    radial-gradient(circle at top, rgba(19,184,216,0.22), transparent 46%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: premiumRight 1.08s cubic-bezier(.2,.8,.2,1) both;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 4.5s infinite;
}

.hero-visual {
  height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16,24,32,0.08), rgba(19,184,216,0.18)),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-info-box {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 18px 55px rgba(16,24,32,0.16);
}

.hero-info-box h3 {
  font-size: 23px;
  margin-bottom: 8px;
  color: var(--dark);
}

.hero-info-box p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* PAGE HERO */
.page-hero {
  padding: 175px 0 95px;
  background:
    radial-gradient(circle at left, rgba(19,184,216,0.17), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  border-bottom: 1px solid rgba(16,24,32,0.08);
}

/* TITLES */
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.section-head h2,
.cta-box h2 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--dark);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -2.4px;
  margin-bottom: 20px;
}

.section-head p,
.cta-box p {
  color: var(--text-soft);
  font-size: 17px;
}

/* GRIDS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 18px 55px rgba(16,24,32,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(19,184,216,0.16), transparent 44%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before { opacity: 1; }

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 80px rgba(16,24,32,0.16);
  border-color: rgba(19,184,216,0.34);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 22px;
  box-shadow: 0 18px 42px rgba(19,184,216,0.24);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -0.7px;
}

.card p {
  color: var(--text-soft);
}



.product-img {
  height: 270px;
  background:
    linear-gradient(135deg, rgba(16,24,32,0.12), rgba(19,184,216,0.18)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 28px;
}

.product-tag {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(19,184,216,0.11);
  color: #0b87a2;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.product-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-body p {
  color: var(--text-soft);
  margin-bottom: 22px;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
}

.split-img {
  min-height: 450px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(16,24,32,0.10), rgba(19,184,216,0.15)),
    url(image/logo3.webp);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
}

.list-check {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.list-check li {
  color: var(--text-soft);
  padding-left: 34px;
  position: relative;
  font-weight: 600;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  padding: 36px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 18px 55px rgba(16,24,32,0.08);
  text-align: center;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-soft);
}

/* CTA */
.cta-box {
  border-radius: var(--radius-lg);
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(19,184,216,0.16), rgba(37,99,235,0.10)),
    rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
}

/* FORM */
.form-box {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }

input,
textarea,
select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 15px;
  border: 1px solid rgba(16,24,32,0.12);
  background: rgba(255,255,255,0.88);
  color: var(--dark);
  outline: none;
  font-family: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8b96a0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(19,184,216,0.11);
}

/* FAQ */
.faq-item {
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.82);
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(16,24,32,0.07);
}

.faq-question {
  padding: 21px;
  cursor: pointer;
  font-weight: 900;
  color: var(--dark);
}

.faq-answer {
  padding: 0 21px 21px;
  color: var(--text-soft);
  display: none;
}

.faq-item.active .faq-answer { display: block; }

/* FOOTER */
.footer {
  background: #101820;
  padding: 72px 0 28px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 44px;
}

.footer h3,
.footer h4 {
  margin-bottom: 18px;
  color: white;
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.footer a:hover {
  color: var(--cyan);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-align: center;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 998;
  box-shadow: 0 20px 50px rgba(37,211,102,0.34);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-4px);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: .85s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premiumLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes premiumRight {
  from {
    opacity: 0;
    transform: translateX(85px) scale(.96);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes premiumUp {
  from {
    opacity: 0;
    transform: translateY(45px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes premiumFade {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(255,255,255,0.96);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-menu.active { left: 0; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }

  .hero { padding-top: 120px; }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -2.4px;
  }

  .hero-card { min-height: 420px; }

  .grid-4,
  .grid-3,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-box { padding: 36px 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


.hero-visual {
  background: transparent !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-info-box {
  display: none !important;
}

.hero-logo{
    width:700px;
    max-width:none;
    height:auto;
    object-fit:contain;
}

/* --- ÜRÜNLER VE FİLTRELEME İÇİN EK KOD --- */

/* Filtre Butonları */
.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.filter-btn:hover:not(.active) {
    border-color: var(--cyan);
    color: var(--blue);
}

/* Ürün Grid Yapısı */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.desc {
flex-grow: 1; /* Butonu aşağı itmesi için */
    font-size: 14px;
    color: #5d6b78;
    line-height: 1.6;
    margin: 15px 0;
    text-align: left;
}

.desc ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.desc li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.desc li::before {
    content: "•";
    color: var(--blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-card:hover {
transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-img-box {
    width: 100%;
    height: 220px;
    background: #f0f0f0;
    border-radius: 20px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Düzenleme */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-3 { grid-template-columns: 1fr; }
}
/* Katalog Görselleri için Düzenleme */
.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Sayfalar arası boşluk */
    align-items: center;
    margin-top: 40px;
}

.catalog-page {
    width: 100%;
    max-width: 950px; /* Katalogun çok yayılmaması için */
    box-shadow: 0 20px 50px rgba(16, 24, 32, 0.08); /* Hafif modern gölge */
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(16, 24, 32, 0.05);
    transition: var(--transition);
}

.catalog-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(16, 24, 32, 0.12);
}

.catalog-page img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobil için responsive ayarlaması */
@media (max-width: 768px) {
    .catalog-grid { gap: 30px; }
    .catalog-page { border-radius: 12px; }
}



.content { flex: 1; }
.catalog-section { margin-bottom: 80px; }

.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.catalog-page {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    width: 100%;
    transition: 0.3s;
}

.catalog-page:hover { transform: scale(1.01); }
.catalog-page img { width: 100%; height: auto; display: block; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .wrapper { flex-direction: column; }
    .sidebar { position: relative; width: 100%; height: auto; }
}

/* Başta tüm içerikleri gizle */
.catalog-section {
    display: none;
}

/* Sadece aktif olanı göster */
.catalog-section.active {
    display: block !important;
}

/* Ürün Kartları */
.product-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun sabit */
    gap: 30px;
}

.product-card {
background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(16, 24, 32, 0.06);
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Hepsi aynı boyda olsun */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.zoom-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    cursor: pointer;
    transition: 0.3s;
}

.zoom-img:hover { transform: scale(1.05); }

/* Modal Stili */
.modal {
display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    margin-top: 5%;
}

/* Çarpı İşareti Stili */
.close-modal {
position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.close-modal:hover { color: #ccc; }

/* Sidebar Düzenlemesi */
.sidebar {
    position: sticky;
    top: 95px;
    width: 250px;
    height: fit-content;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.sidebar h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list li {
    list-style: none;
}

.category-list a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
    border: 1px solid transparent;
}

.category-list a:hover {
    background: #eaf4ff;
    color: #0b7cff;
    border-color: #b9dcff;
    transform: translateX(4px);
}

.category-list a.active {
    background: linear-gradient(135deg, #10b8d8, #2563eb);
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.category-list li a:hover, 
.category-list li a:focus {
    background: #007bff;
    color: #fff;
    transform: translateX(5px); /* Hafif bir kayma efekti */
}

.category-list li a {
display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #555;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list li a:hover {
background: #f0f7ff;
    color: var(--blue);
}

.product-card p.desc{
    padding-left: 10px;
}

.product-card p.desc br{
    margin-bottom: 8px;
}

.product-card p.desc{
    color: #5d6b78;
    line-height: 1.8;
}

.bearing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px;
}

.bearing-item {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.bearing-item img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 10px;
    background: #fff;
}

.bearing-item span {
    margin-top:12px;
    line-height:1.4;
    min-height:60px;
}

.bearing-brands{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    margin:25px 0 40px;
}

.bearing-brands img{
    height:40px;
    width:auto;
    object-fit:contain;
}

.section-desc{
    max-width:900px;
    margin-bottom:30px;
    line-height:1.8;
}

.catalog-section h3{
    margin-bottom:20px;
}

.sub-title{
    font-size:32px;
    font-weight:700;
    margin:40px 0 20px;
    color:#1e3a8a;
}

.bearing-brands{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    align-items:center;
    margin-bottom:30px;
}

.bearing-brands img{
    height:40px;
    width:auto;
}

.small-product-row{
    display:flex;
    gap:80px;
    margin-top:40px;
    flex-wrap:wrap;
}

.small-product-row .bearing-item{
    width:150px;
}

.card-icon{
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg,#00c6ff,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:20px;
}

.card-icon img{
    width: 58px;
    height: 58px;
    object-fit: contain;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .header {
    width: 100%;
    left: 0;
    right: 0;
  }

  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0 22px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    position: relative;
    right: 0;
    z-index: 1001;
  }

  .nav-menu {
    left: -100%;
    right: auto;
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .hero-grid,
  .hero-content,
  .hero-actions,
  .container {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-logo {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  main.wrapper {
    display: block !important;
    padding: 25px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .sidebar {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    top: 0 !important;
    margin-bottom: 25px;
    border-radius: 22px;
  }

  .category-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
  }

  .category-list li {
    flex: 0 0 auto;
  }

  .category-list a {
    white-space: nowrap;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
  }

  .content {
    width: 100% !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .product-card {
    width: 100%;
    padding: 22px;
  }

  .zoom-img {
    height: 190px;
    object-fit: contain;
  }
}

.logo img{
    height: 110px;
    width: auto;
    display: block;
}

@media (max-width: 768px){

  .hero-card{
    min-height: auto !important;
    padding: 18px;
  }

  .hero-visual{
    min-height: 360px !important;
    height: 360px !important;
  }

  .hero-logo{
    width: 95% !important;
    max-width: 360px !important;
    height: auto !important;
  }
}

/* =========================
   DNC TURUNCU - BEYAZ TEMA FIX
========================= */

:root{
  --cyan:#ff8c1a;
  --blue:#ff6b00;
  --ice:#fff7f0;
}

/* Genel arkaplan */
body{
  background:
    radial-gradient(circle at 15% 10%, rgba(255,107,0,.10), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255,140,26,.08), transparent 28%),
    linear-gradient(135deg,#ffffff 0%,#fff7f0 45%,#ffffff 100%) !important;
}

/* Header */
.header{
  background:rgba(255,255,255,.92) !important;
}

/* Menü */
.nav-link:hover,
.nav-link.active{
  color:#ff6b00 !important;
}

.nav-link::after{
  background:linear-gradient(90deg,#ff8c1a,#ff6b00) !important;
}

/* Logo yazı varsa */
.logo span{
  color:#ff6b00 !important;
}

/* Teklif Al */
.nav-cta{
  background:linear-gradient(135deg,#ff8c1a,#ff6b00) !important;
  box-shadow:0 16px 45px rgba(255,107,0,.25) !important;
}

/* Başlık gradient */
.hero h1 span,
.page-hero h1 span,
h1 span{
  background:linear-gradient(135deg,#ff8c1a,#ff6b00) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;
}

/* Turuncu blok sorunu fix */
.hero h1 span::before,
.page-hero h1 span::before,
h1 span::before{
  display:none !important;
}

/* Badge */
.badge{
  background:rgba(255,107,0,.08) !important;
  border-color:rgba(255,107,0,.22) !important;
  color:#ff6b00 !important;
}

/* Küçük başlıklar */
.eyebrow{
  color:#ff6b00 !important;
}

/* Kart ikonları */
.card-icon{
  background:linear-gradient(135deg,#ff8c1a,#ff6b00) !important;
  box-shadow:0 18px 42px rgba(255,107,0,.22) !important;
}

/* Kart hover */
.card::before{
  background:radial-gradient(circle at top right, rgba(255,107,0,.13), transparent 44%) !important;
}

.card:hover{
  border-color:rgba(255,107,0,.34) !important;
}

/* Buton */
.btn-primary{
  background:#ffffff !important;
  border:2px solid #ff6b00 !important;
  color:#ff6b00 !important;
}

.btn-primary:hover{
  background:#ff6b00 !important;
  color:#ffffff !important;
  box-shadow:0 8px 22px rgba(255,107,0,.25) !important;
}

/* Outline buton */
.btn-outline:hover{
  border-color:#ff6b00 !important;
  color:#ff6b00 !important;
}

/* Sayılar */
.stat-number{
  color:#ff6b00 !important;
}

/* Tikler */
.list-check li::before{
  color:#ff6b00 !important;
}

/* Form focus */
input:focus,
textarea:focus,
select:focus{
  border-color:#ff8c1a !important;
  box-shadow:0 0 0 4px rgba(255,107,0,.10) !important;
}

/* Ürün kategori aktif */
.category-list a.active{
  background:linear-gradient(135deg,#ff8c1a,#ff6b00) !important;
  box-shadow:0 8px 20px rgba(255,107,0,.22) !important;
}

.category-list a:hover,
.category-list li a:hover{
  background:#fff3e8 !important;
  color:#ff6b00 !important;
  border-color:#ffd2ad !important;
}

/* CTA */
.cta-box{
  background:
    linear-gradient(135deg, rgba(255,140,26,.13), rgba(255,107,0,.07)),
    rgba(255,255,255,.86) !important;
}

/* Hero ışık */
.hero::before{
  background:radial-gradient(circle, rgba(255,107,0,.18), transparent 65%) !important;
}

/* Hero kart */
.hero-card{
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,247,240,.62)),
    radial-gradient(circle at top, rgba(255,107,0,.13), transparent 46%) !important;
}

/* Split görsel üst efekti */
.split-img{
  background:
    linear-gradient(135deg, rgba(255,107,0,.08), rgba(255,140,26,.12)),
    url(image/logo3.webp) !important;
  background-size:cover !important;
  background-position:center !important;
}

/* Footer hover */
.footer a:hover{
  color:#ff8c1a !important;
}

.split-img{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.split-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width: 768px){

  .split{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  .split-img{
    min-height:auto !important;
    height:260px !important;
    overflow:hidden;
  }

  .split-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

}


.header{
    padding: 0;
}


.header{
  height: 100px !important;
}

.navbar{
  height: 100px !important;
  min-height: 100px !important;
  width: 85% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
}

.logo{
  width: 230px !important;
  min-width: 230px !important;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.logo img{
  width: 220px !important;
  height: auto !important;
  display: block !important;
  margin-left: 0 !important;
}

.nav-menu{
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 28px !important;
}

.nav-link{
  font-size: 18px !important;
  white-space: nowrap !important;
}

.nav-cta{
  white-space: nowrap !important;
}

@media (max-width: 768px){
  .header{
    height: 84px !important;
  }

  .navbar{
    height: 84px !important;
    min-height: 84px !important;
    width: 100% !important;
    padding: 0 22px !important;
  }

  .logo{
    width: 160px !important;
    min-width: 160px !important;
    height: 84px !important;
  }

  .logo img{
    width: 150px !important;
  }

  .nav-menu{
    justify-content: center !important;
  }
}

/* Mobilde kategoriler navbarın altında başlasın */
@media (max-width: 768px){

  .sidebar{
    margin-top: 70px !important;
  }

}