/* =========================================================
   ULTRACARE TECHNIC - STYLE.CSS
   Koyu lacivert + gold premium tasarım
   Mobil uyumlu
   ========================================================= */

:root {
  --bg: #0a0e1a;
  --panel: #111827;
  --panel-2: #172033;
  --surface: #ffffff;
  --paper: #f6f8fb;

  --ink: #0f172a;
  --ink-soft: #4b5563;
  --fog: #cbd5e1;
  --muted: #64748b;

  --gold: #d6aa4f;
  --gold-2: #efc767;
  --steel: #7c8797;
  --green: #20c997;

  --line: rgba(15, 23, 42, .10);
  --line-dark: rgba(255, 255, 255, .10);

  --radius: 22px;
  --shadow: 0 22px 60px rgba(15, 23, 42, .14);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* İSTENMEYEN ÜST BİLGİ BARI KALDIRILDI */
.topbar {
  display: none !important;
}

/* NAVBAR */
.navbar {
  background: #111827;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.nav-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo .txt {
  color: var(--gold);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .5px;
  line-height: 1;
  white-space: nowrap;
}

.logo .txt span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #e5e7eb;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav-toggle {
  display: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 22px;
  transition: .2s;
  min-height: 46px;
}

.btn-sm {
  padding: 10px 16px;
  min-height: 38px;
  font-size: 13px;
}

.btn-primary {
  color: #111827 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 34px rgba(214, 170, 79, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.pill {
  background: rgba(255, 255, 255, .10) !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 650px;
  padding: 86px 0;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 170, 79, .22), transparent 38%),
    linear-gradient(135deg, #07101f 0%, #111827 50%, #0f172a 100%);
}

.hero.has-hero-image {
  background-image:
    linear-gradient(90deg, rgba(10, 14, 26, .90), rgba(10, 14, 26, .72), rgba(10, 14, 26, .48)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 55%;
  background: radial-gradient(circle, rgba(214, 170, 79, .20), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 54px;
  align-items: center;
}

/* BANNER SAĞINDAKİ TDS/SDS KARTI KALDIRILDI */
.hero-card,
.float-badge,
.spec-panel {
  display: none !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(214, 170, 79, .10);
  border: 1px solid rgba(214, 170, 79, .38);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tick {
  width: 9px;
  height: 9px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(214, 170, 79, .14);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  margin: 28px 0 22px;
  letter-spacing: -2px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  color: #dbeafe;
  max-width: 720px;
  margin: 0 0 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.stat {
  min-width: 140px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .15);
}

.stat .n {
  font-size: 26px;
  font-weight: 900;
}

.stat .l {
  color: #cbd5e1;
  font-size: 13px;
}

/* TRUST / ŞERİT KALDIRILDI */
.trust {
  display: none !important;
}

/* SECTIONS */
.section {
  padding: 84px 0;
}

.section-alt {
  background: #eef4f8;
}

.section-dark {
  background: #0a0e1a;
  color: #fff;
}

.section-title {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-title h2 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.section-title p {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-dark .section-title p {
  color: #cbd5e1;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* CARDS */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.product-card {
  color: inherit;
  transition: .22s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.thumb {
  position: relative;
  height: 245px;
  background: #e8eef5;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.code-badge,
.doc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.doc-badge {
  left: auto;
  right: 14px;
  background: var(--gold);
  color: #111827;
}

.body {
  padding: 22px;
}

.cat-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 170, 79, .16);
  color: #8a641d;
  font-weight: 900;
  font-size: 12px;
}

.body h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.body p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.more {
  font-weight: 900;
  color: #8a641d;
}

.category-card {
  position: relative;
  min-height: 280px;
  color: #fff;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.category-card .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}

.cc-body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

.cc-body h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.cc-body p {
  margin: 0;
  color: #e5e7eb;
}

.cc-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
}

.feature-card,
.info-card,
.review-card {
  padding: 26px;
}

.feature-card {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--radius);
}

.step,
.amber {
  color: var(--gold);
  font-weight: 900;
}

.feature-card .ic {
  font-size: 34px;
  margin: 14px 0;
}

.feature-card p {
  color: #cbd5e1;
}

/* YORUM / REFERANS BÖLÜMÜ KULLANILMIYOR */
.review-card {
  display: none !important;
}

/* PAGE HEAD */
.page-head {
  padding: 68px 0;
  background: linear-gradient(135deg, #0b1220, #1e293b);
  color: #fff;
}

.breadcrumb {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #e0f2fe;
}

.breadcrumb .sl {
  margin: 0 7px;
  color: #94a3b8;
}

.page-head h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.page-head p {
  color: #dbeafe;
  max-width: 760px;
  font-size: 17px;
}

/* FILTERS */
.filters {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr auto;
  gap: 12px;
  margin: 24px 0 34px;
}

.input,
.select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

/* PRODUCT DETAIL */
.detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.gallery-main {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 86px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.detail-info .code {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(214, 170, 79, .18);
  color: #8a641d;
  font-weight: 900;
}

.detail-info h1 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  margin: 18px 0 14px;
}

.lede {
  color: var(--ink-soft);
  font-size: 18px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.mrow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.mrow .k {
  color: var(--muted);
}

.mrow .v {
  font-weight: 900;
}

.doc-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 12px;
}

.di {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dt {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 40px;
  border-radius: 12px;
  background: rgba(214, 170, 79, .18);
  color: #8a641d;
  font-weight: 900;
}

/* FOOTER */
.cta-band {
  transform: translateY(44px);
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #0a0e1a);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214, 170, 79, .20);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3vw, 44px);
}

.cta-band p {
  color: #dbeafe;
  max-width: 780px;
}

.footer {
  background: #0a0e1a;
  color: #fff;
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 30px;
}

.footer h4 {
  margin: 0 0 16px;
}

.footer a,
.footer p {
  display: block;
  color: var(--fog);
  margin: 0 0 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 34px;
  padding-top: 18px;
  color: var(--fog);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* SOSYAL/KVKK/GİZLİLİK KALDIRILDI */
.social,
.footer .social,
a[href*="kvkk"],
a[href*="gizlilik"],
a[href*="pdpl"],
a[href*="privacy-policy"] {
  display: none !important;
}

/* FLOAT BUTTONS */
.wa-float,
.call-float {
  position: fixed;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  z-index: 9998;
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

.wa-float {
  bottom: 24px;
  background: #25d366;
}

.call-float {
  bottom: 98px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
}

/* ANIMATIONS */
.reveal {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .topbar,
  .trust,
  .hero-card,
  .hero-stats,
  .float-badge,
  .spec-panel {
    display: none !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .navbar {
    position: relative !important;
    min-height: 82px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .nav-inner {
    height: 82px !important;
    padding: 0 16px !important;
  }

  .logo {
    max-width: calc(100% - 58px) !important;
  }

  .logo img {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }

  .logo .txt {
    font-size: 20px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 235px !important;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 31px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 82px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #111827 !important;
    padding: 18px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    z-index: 10000 !important;
    border-top: 1px solid rgba(255,255,255,.10);
  }

  .nav-links.active,
  .nav-links.open,
  .navbar.open .nav-links {
    display: flex !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 13px 14px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.05) !important;
    color: #fff !important;
    text-align: left !important;
  }

  .nav-links .btn,
  .nav-links .pill {
    text-align: center !important;
  }

  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 52px 0 76px !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .hero-grid {
    display: block !important;
  }

  .eyebrow {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    white-space: normal !important;
    padding: 10px 13px !important;
  }

  .hero h1 {
    font-size: 36px !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
    margin-top: 22px !important;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .actions .btn {
    width: 100% !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .section-head-row {
    display: block !important;
  }

  .section-title h2 {
    font-size: 32px !important;
  }

  .grid,
  .grid-3,
  .grid-4,
  .detail,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .filters {
    grid-template-columns: 1fr !important;
  }

  .thumb {
    height: 230px !important;
  }

  .category-card,
  .category-card img {
    min-height: 240px !important;
  }

  .gallery-main {
    height: 360px !important;
  }

  .detail-info h1 {
    font-size: 34px !important;
  }

  .doc-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-head {
    padding: 52px 0 !important;
  }

  .page-head h1 {
    font-size: 38px !important;
  }

  .footer {
    padding-top: 60px !important;
  }

  .footer-bottom {
    display: block !important;
  }

  .wa-float,
  .call-float {
    right: 18px !important;
    width: 58px !important;
    height: 58px !important;
  }

  .wa-float {
    bottom: 20px !important;
  }

  .call-float {
    bottom: 90px !important;
  }
}

@media (max-width: 420px) {
  .logo .txt {
    font-size: 18px !important;
    max-width: 205px !important;
  }

  .logo img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .hero h1 {
    font-size: 34px !important;
  }
}


/* === BANNER ALTI YÖNETİLEBİLİR İSTATİSTİK ALANI === */

/* Banner altı yönetilebilir istatistik alanı */
.hero-stats {
  display: none !important;
}

.home-stats-section {
  background: #f3f7fb;
  padding: 72px 0 82px;
}

.home-stats-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.home-stats-head .eyebrow {
  color: #d6aa4f;
  background: rgba(214,170,79,.10);
  border-color: rgba(214,170,79,.35);
  margin-bottom: 18px;
}

.home-stats-head h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: #0f172a;
}

.home-stats-head p {
  margin: 0 auto;
  max-width: 760px;
  color: #64748b;
  font-size: 19px;
  line-height: 1.65;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-stat-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(15,23,42,.08);
  backdrop-filter: blur(10px);
}

.home-stat-number {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0f172a;
  margin-bottom: 12px;
}

.home-stat-label {
  color: #64748b;
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-stats-section {
    padding: 54px 0 58px;
  }
  .home-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .home-stats-head h2 {
    font-size: 34px;
  }
  .home-stats-head p {
    font-size: 16px;
  }
  .home-stat-card {
    padding: 28px 20px;
  }
}



/* =========================================================
   ÜRÜN DETAY: IMPA KOD + TEKNİK VERİLER PDF ALANI
   ========================================================= */

.detail-info .code {
  background: rgba(214,170,79,.14) !important;
  color: #9a6a12 !important;
  border: 1px solid rgba(214,170,79,.28) !important;
  font-weight: 900 !important;
}

.product-tech-docs {
  margin-top: 46px;
  max-width: 980px;
}

.product-tech-docs h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  color: #334155;
  margin: 0 0 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-doc-links {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.product-doc-links a {
  display: inline-flex;
  width: fit-content;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  transition: .18s;
}

.product-doc-links a:hover {
  color: #9a6a12;
  transform: translateX(3px);
}

@media(max-width:768px){
  .product-tech-docs {
    margin-top: 30px;
  }

  .product-tech-docs h2 {
    font-size: 24px;
  }

  .product-doc-links a {
    font-size: 16px;
  }
}

/* HERO BANNER FIX - admin panelden yüklenen banner fotoğrafı hero arka planına gelir */
.hero.has-hero-image{
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero.has-hero-image::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(7,16,31,.92) 0%, rgba(7,16,31,.70) 44%, rgba(7,16,31,.34) 100%);
  pointer-events:none;
  z-index:0;
}
.hero.has-hero-image .hero-grid{
  position:relative;
  z-index:1;
}
.hero.has-hero-image .reveal{
  background: transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}
.hero .actions .btn-outline[href*="iletisim"],
.hero .actions .btn-outline[href*="contact"]{
  display:none !important;
}

/* === FINAL REVISION: HERO TRANSPARENT + PROFESSIONAL PRODUCTS === */
.nav-links > a.btn,
.nav-links > a.btn-primary,
.nav-links a[href*="iletisim"].btn,
.nav-links a[href*="contact"].btn{
  display:none !important;
}

.hero{
  min-height: calc(100vh - 92px);
  padding: 120px 0 96px !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(214,170,79,.18), transparent 34%),
    linear-gradient(135deg, #07101f 0%, #111827 48%, #0b1220 100%) !important;
}
.hero.has-hero-image{
  background: var(--hero-bg) center center/cover no-repeat !important;
  background-color: transparent !important;
}
.hero.has-hero-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,16,31,.92) 0%, rgba(7,16,31,.76) 42%, rgba(7,16,31,.34) 100%),
    linear-gradient(180deg, rgba(7,16,31,.40) 0%, rgba(7,16,31,.14) 45%, rgba(7,16,31,.78) 100%);
  pointer-events:none;
  z-index:0;
}
.hero.has-hero-image::after{display:none!important;}
.hero-grid{
  grid-template-columns: 1fr !important;
  align-items:center;
  min-height: 560px;
}
.hero-content{
  max-width: 850px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}
.hero-card,.float-badge,.spec-panel{display:none!important;}
.hero .actions a:not(:first-child){display:none!important;}
.hero .btn-primary[href*="iletisim"],
.hero .btn-primary[href*="contact"],
.cta-band .btn-primary{display:none!important;}
.hero-stats{
  justify-content:flex-start;
  align-items:stretch;
}
.stat{
  text-align:center;
  background: rgba(255,255,255,.09) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
}

.premium-products-home,
.products-page-pro{
  background:
    radial-gradient(circle at 20% 0%, rgba(214,170,79,.14), transparent 30%),
    linear-gradient(180deg, #f6f9fc 0%, #edf3f7 100%);
}
.products-toolbar-card{
  padding: 26px 26px 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
  margin-bottom: 38px;
}
.product-tabs{
  display:flex !important;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px !important;
  margin:0 0 26px !important;
}
.product-tabs a{
  min-width: 112px;
  text-align:center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  border: 1px solid #d9e3ec;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
}
.product-tabs a.active,
.product-tabs a:hover{
  color: #101827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: rgba(214,170,79,.55);
  transform: translateY(-2px);
}
.products-search{
  max-width: 920px;
  margin: 0 auto !important;
  display:grid !important;
  grid-template-columns: 1fr .36fr auto !important;
  gap: 12px !important;
  padding: 12px;
  border-radius: 22px;
  background:#fff;
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
}
.products-search .input,
.products-search .select{
  border:0 !important;
  background:#fff !important;
  border-radius: 16px !important;
  min-height: 54px;
}
.products-search .btn{min-width:96px;border-radius:16px;}

.premium-product-grid{gap:28px !important;}
.product-card-premium{
  overflow:hidden;
  border-radius: 24px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 28px 80px rgba(15,23,42,.10) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card-premium:hover{
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(15,23,42,.16) !important;
  border-color: rgba(214,170,79,.44) !important;
}
.product-card-premium .thumb{
  height: 270px !important;
  padding: 18px;
  background: linear-gradient(180deg, #eef4f8 0%, #e4ecf3 100%);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.product-card-premium .thumb img{
  width:100%;
  height:100%;
  object-fit:contain !important;
  border-radius: 16px;
  background:#fff;
}
.product-card-premium .code-badge{
  left:18px !important;
  top:18px !important;
  background:#101827 !important;
  color:#fff !important;
  border:1px solid rgba(214,170,79,.55) !important;
  border-radius: 999px !important;
  padding: 9px 14px !important;
  font-size: 12px !important;
}
.product-card-premium .doc-badge{
  right:18px !important;
  top:18px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color:#101827 !important;
  border-radius:999px !important;
  font-weight:900;
}
.product-card-premium .body{padding:24px 26px 26px !important;}
.product-card-premium .cat-tag{
  display:inline-flex;
  color:#9a6a12 !important;
  background:rgba(214,170,79,.14) !important;
  border:1px solid rgba(214,170,79,.24);
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}
.product-card-premium h3{
  color:#0f172a !important;
  font-size:20px !important;
  line-height:1.18 !important;
  letter-spacing:-.4px;
  min-height:48px;
}
.product-card-premium p{
  color:#64748b !important;
  line-height:1.65 !important;
  min-height:52px;
}
.product-card-premium .more{
  display:inline-flex;
  margin-top:14px;
  color:#0f172a !important;
  font-weight:900;
}
.home-products-more{text-align:center;margin-top:34px;}
.home-products-more .btn{border-radius:999px;padding:14px 26px;}

@media(max-width:900px){
  .products-search{grid-template-columns:1fr !important;}
  .hero{min-height:auto;padding:82px 0 70px!important;}
  .hero-grid{min-height:0;}
  .hero-stats{justify-content:center;}
}

/* =========================================================
   SON DÜZELTME: HERO FOTOĞRAFI NAVBARIN ARKASINA DA GELİR
   - Sadece ana sayfada header şeffaf olur.
   - Banner görseli hero alanını komple kaplar.
   - Teklif Al butonları gizlenir.
   - Ürün kartları daha premium görünür.
   ========================================================= */
body.page-home .navbar{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  background:rgba(10,14,26,.46) !important;
  backdrop-filter:blur(16px) !important;
  -webkit-backdrop-filter:blur(16px) !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
  box-shadow:none !important;
}
body.page-home .nav-inner{height:96px !important;}
body.page-home .hero{
  margin-top:0 !important;
  padding-top:178px !important;
  min-height:100vh !important;
}
body.page-home .hero.has-hero-image{
  background-image:var(--hero-bg) !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
}
body.page-home .hero.has-hero-image::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background:
    linear-gradient(90deg, rgba(7,16,31,.86) 0%, rgba(7,16,31,.58) 46%, rgba(7,16,31,.25) 100%),
    linear-gradient(180deg, rgba(7,16,31,.38) 0%, rgba(7,16,31,.10) 44%, rgba(7,16,31,.76) 100%) !important;
  pointer-events:none !important;
}
body.page-home .hero.has-hero-image::after{display:none !important;}
body.page-home .hero-grid,
body.page-home .hero-content{position:relative !important;z-index:1 !important;}
body.page-home .hero-content{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
/* Header ve hero içinde Teklif Al / Get a Quote butonlarını kesin kaldır */
.nav-links a[href*="teklif"],
.nav-links a[href*="quote"],
.hero a[href*="teklif"],
.hero a[href*="quote"],
a.btn[href*="teklif"],
a.btn[href*="quote"]{display:none !important;}

/* Ürünler alanı: site renklerine uygun profesyonel görünüm */
.home-products-section,
.premium-products-home{
  background:
    radial-gradient(circle at 18% 0%, rgba(214,170,79,.16), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f7 100%) !important;
}
.home-products-grid,
.premium-product-grid{gap:30px !important;}
.product-card-premium{
  border-radius:28px !important;
  overflow:hidden !important;
  background:rgba(255,255,255,.96) !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 28px 80px rgba(15,23,42,.11) !important;
}
.product-card-premium .thumb{
  height:285px !important;
  padding:20px !important;
  background:linear-gradient(180deg,#edf2f6 0%,#e1e9f0 100%) !important;
}
.product-card-premium .thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  background:#fff !important;
  border-radius:18px !important;
}
.product-card-premium .code-badge{
  background:#111827 !important;
  color:#fff !important;
  border:1px solid rgba(214,170,79,.55) !important;
}
.product-card-premium .cat-tag{
  color:#8a6216 !important;
  background:rgba(214,170,79,.14) !important;
  border:1px solid rgba(214,170,79,.28) !important;
}
.product-card-premium h3{font-size:20px !important;color:#0f172a !important;}
.product-card-premium p{color:#64748b !important;}
.product-card-premium .more{color:#111827 !important;font-weight:900 !important;}
@media(max-width:900px){
  body.page-home .navbar{position:sticky !important;background:#111827 !important;}
  body.page-home .hero{padding-top:82px !important;min-height:auto !important;}
}

/* =========================================================
   FINAL HERO + HEADER FIX
   Banner panelinden yüklenen görsel hem header alanının hem hero alanının arkasına gelir.
   ========================================================= */
body.page-home{
  background:#070d18 !important;
}
body.page-home .navbar{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:9999 !important;
  background:
    linear-gradient(180deg, rgba(7,13,24,.74) 0%, rgba(7,13,24,.52) 100%),
    var(--site-hero-bg) center top/cover no-repeat !important;
  backdrop-filter:blur(4px) !important;
  -webkit-backdrop-filter:blur(4px) !important;
  border-bottom:1px solid rgba(255,255,255,.12) !important;
  box-shadow:none !important;
}
body.page-home .nav-inner{
  height:112px !important;
  position:relative !important;
  z-index:2 !important;
}
body.page-home .hero{
  margin-top:0 !important;
  padding-top:190px !important;
  min-height:100vh !important;
  background:var(--site-hero-bg) center center/cover no-repeat !important;
}
body.page-home .hero.has-hero-image{
  background:var(--site-hero-bg) center center/cover no-repeat !important;
}
body.page-home .hero.has-hero-image::before,
body.page-home .hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background:
    linear-gradient(90deg, rgba(6,12,24,.88) 0%, rgba(6,12,24,.62) 42%, rgba(6,12,24,.34) 100%),
    linear-gradient(180deg, rgba(6,12,24,.15) 0%, rgba(6,12,24,.26) 48%, rgba(6,12,24,.82) 100%) !important;
  pointer-events:none !important;
}
body.page-home .hero::after,
body.page-home .hero.has-hero-image::after{display:none !important;}
body.page-home .hero-grid,
body.page-home .hero-content{position:relative !important;z-index:1 !important;}
body.page-home .hero-content{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
body.page-home .logo img{
  width:66px !important;
  height:66px !important;
  object-fit:contain !important;
  background:transparent !important;
  border-radius:0 !important;
  mix-blend-mode:multiply !important;
  filter:contrast(1.18) saturate(1.25) brightness(1.08) !important;
  box-shadow:none !important;
}
body.page-home .logo{
  padding:6px 0 !important;
  gap:14px !important;
}
body.page-home .logo .txt{
  text-shadow:0 8px 22px rgba(0,0,0,.45) !important;
}
.nav-links a[href*="teklif"],
.nav-links a[href*="quote"],
.hero a[href*="teklif"],
.hero a[href*="quote"],
a.btn[href*="teklif"],
a.btn[href*="quote"]{display:none !important;}

/* ÜRÜNLER: koyu lacivert + gold site rengine uygun premium kartlar */
.home-products-section,
.premium-products-home{
  background:
    radial-gradient(circle at 12% 0%, rgba(214,170,79,.20), transparent 32%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%) !important;
}
.product-card-premium,
.product-card{
  border-radius:28px !important;
  overflow:hidden !important;
  border:1px solid rgba(15,23,42,.10) !important;
  background:#ffffff !important;
  box-shadow:0 24px 70px rgba(15,23,42,.13) !important;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.product-card-premium:hover,
.product-card:hover{
  transform:translateY(-8px) !important;
  border-color:rgba(214,170,79,.38) !important;
  box-shadow:0 34px 90px rgba(15,23,42,.20) !important;
}
.product-card-premium .thumb,
.product-card .thumb{
  background:linear-gradient(145deg,#eef3f7,#ffffff) !important;
  padding:18px !important;
  min-height:270px !important;
}
.product-card-premium .thumb img,
.product-card .thumb img{
  width:100% !important;
  height:240px !important;
  object-fit:contain !important;
  border-radius:18px !important;
  background:#fff !important;
}
.product-card-premium .body,
.product-card .body{
  padding:24px !important;
}
.product-card-premium h3,
.product-card h3{
  color:#0f172a !important;
  font-size:20px !important;
  line-height:1.18 !important;
  letter-spacing:-.3px !important;
}
.product-card-premium p,
.product-card p{color:#64748b !important;}
.product-card-premium .cat-tag,
.product-card .cat-tag{
  background:rgba(214,170,79,.14) !important;
  color:#8a6216 !important;
  border:1px solid rgba(214,170,79,.28) !important;
  border-radius:999px !important;
  padding:7px 11px !important;
  font-weight:900 !important;
}
.product-card-premium .code-badge,
.product-card .code-badge{
  background:#111827 !important;
  color:#fff !important;
  border:1px solid rgba(214,170,79,.50) !important;
  box-shadow:0 12px 28px rgba(0,0,0,.20) !important;
}
.product-card-premium .doc-badge,
.product-card .doc-badge{
  background:linear-gradient(135deg,var(--gold),var(--gold-2)) !important;
  color:#111827 !important;
  font-weight:900 !important;
}
@media(max-width:900px){
  body.page-home .navbar{
    position:absolute !important;
    background:linear-gradient(180deg, rgba(7,13,24,.82), rgba(7,13,24,.58)), var(--site-hero-bg) center top/cover no-repeat !important;
  }
  body.page-home .nav-inner{height:92px !important;}
  body.page-home .hero{padding-top:150px !important;min-height:auto !important;}
  body.page-home .logo img{width:56px !important;height:56px !important;}
}
