:root {
  --ink: #1f2c33;
  --muted: #687782;
  --line: #dce8e6;
  --paper: #f5faf8;
  --surface: #ffffff;
  --surface-soft: #eef7f4;
  --teal: #2f8c82;
  --teal-dark: #1f5f58;
  --sage: #86b9a8;
  --gold: #cda85e;
  --clay: #d99570;
  --blue: #5f8fb2;
  --shadow: 0 18px 45px rgba(40, 77, 83, 0.1);
  --soft-shadow: 0 12px 26px rgba(40, 77, 83, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(134, 185, 168, 0.22), transparent 32rem),
    linear-gradient(180deg, #fbfefd 0%, var(--paper) 48%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 232, 230, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(31, 44, 51, 0.05);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 10px 18px rgba(47, 140, 130, 0.22);
  font-size: 15px;
  font-weight: 900;
}

.brand strong,
.site-footer strong {
  display: block;
  text-transform: lowercase;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #40525b;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a:hover {
  background: var(--surface-soft);
  color: var(--teal-dark);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(31, 44, 51, 0.06);
  cursor: pointer;
}

.icon-button svg,
.primary-action svg,
.secondary-action svg,
.service-strip svg,
.contact-links svg,
.search-box svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(86px, 11vw, 138px) clamp(18px, 6vw, 72px) clamp(34px, 7vw, 60px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24)),
    linear-gradient(0deg, rgba(245, 250, 248, 0.94), rgba(245, 250, 248, 0.1));
}

.hero-content {
  width: min(780px, 100%);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.light .eyebrow {
  color: var(--gold);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: #53656d;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 850;
}

.primary-action {
  border: 1px solid var(--teal);
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(47, 140, 130, 0.22);
}

.primary-action:hover {
  background: var(--teal-dark);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.secondary-action:hover {
  background: #ffffff;
}

.hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(34px, 10vw, 92px);
}

.hero-summary span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(220, 232, 230, 0.9);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}

.hero-summary strong {
  color: var(--teal-dark);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #edf4f1;
}

.service-strip div {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 12px;
  padding: 20px clamp(16px, 3vw, 30px);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.service-strip svg {
  color: var(--teal);
}

.section-block,
.contact-section,
.brand-band {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-block {
  background: rgba(255, 255, 255, 0.52);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 26px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 420px);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: #30434b;
  background: var(--surface);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.catalog-count {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.catalog-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.catalog-path button {
  border: 0;
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--teal-dark);
  background: var(--surface-soft);
  cursor: pointer;
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.category-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  text-align: left;
}

.category-card:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(47, 140, 130, 0.14);
}

.category-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #e3f3ef;
}

.category-icon svg {
  width: 21px;
  height: 21px;
}

.category-card-text {
  display: grid;
  gap: 5px;
}

.category-card-text strong {
  font-size: 18px;
  line-height: 1.15;
}

.category-card-text small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.category-count {
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--teal-dark);
  background: #eef8f5;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf4f1;
}

.image-zoom-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.image-zoom-button:focus-visible {
  outline: 3px solid rgba(30, 111, 102, 0.42);
  outline-offset: -5px;
}

.product-image img,
.dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(31, 44, 51, 0.08);
  font-size: 12px;
  font-weight: 850;
  pointer-events: none;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  min-height: 58px;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.product-body p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
}

.meta-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.meta-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf5f3;
  padding-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.meta-list strong {
  color: var(--ink);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions button,
.card-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 850;
}

.detail-button {
  border: 1px solid var(--teal);
  color: #fff;
  background: var(--teal);
  cursor: pointer;
}

.quote-button {
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: #eef8f5;
}

.empty-results {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 32px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.brand-band {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 248, 0.84)),
    url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1500&q=80")
      center / cover;
}

.light p:not(.eyebrow) {
  color: var(--muted);
}

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

.brand-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.timeline-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--gold);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 5px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(180deg, #f8fcfb 0%, #edf7f4 100%);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #314049;
  font-size: 14px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fbfefd;
  outline: 0;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30, 111, 102, 0.14);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #4d6269;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.product-dialog {
  width: min(940px, calc(100vw - 28px));
  max-height: min(850px, calc(100vh - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(31, 44, 51, 0.34);
}

.close-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  min-height: 520px;
}

.dialog-image {
  min-height: 420px;
  background: #edf4f1;
}

.dialog-info {
  overflow: auto;
  padding: 28px;
}

.dialog-info h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.dialog-info p {
  color: var(--muted);
}

.spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  border-top: 1px solid #edf5f3;
  padding: 10px 0;
}

.spec-row span {
  color: var(--muted);
}

.install-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.install-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  margin: 9px 0;
  counter-increment: steps;
}

.install-list li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  content: counter(steps);
  font-size: 13px;
  font-weight: 900;
}

.image-dialog {
  width: min(1120px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #fbfefd;
  box-shadow: var(--shadow);
}

.image-dialog::backdrop {
  background: rgba(31, 44, 51, 0.48);
}

.image-dialog-content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  height: min(820px, calc(100vh - 24px));
  margin: 0;
  padding: 18px;
}

.image-dialog-content img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #edf4f1;
}

.image-dialog-content figcaption {
  min-height: 24px;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

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

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-actions,
  .hero-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-toolbar,
  .split-section,
  .contact-section,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .product-grid,
  .category-grid,
  .service-strip,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .dialog-image {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .section-block,
  .contact-section,
  .brand-band {
    padding-inline: 14px;
  }
}

/* Professional showroom refresh */
:root {
  --ink: #18252b;
  --muted: #667781;
  --line: #dfe8e5;
  --paper: #f7faf8;
  --surface-soft: #f0f6f3;
  --teal: #247a70;
  --teal-dark: #175950;
  --sage: #8daf9f;
  --gold: #bd9550;
  --blue: #587f9c;
  --shadow: 0 22px 60px rgba(34, 58, 62, 0.12);
  --soft-shadow: 0 12px 30px rgba(34, 58, 62, 0.08);
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 42%, #eef6f2 100%);
}

.site-header {
  min-height: 72px;
  padding: 10px clamp(18px, 5vw, 74px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(24, 37, 43, 0.06);
}

.brand-mark {
  background: linear-gradient(135deg, #173f3b 0%, var(--teal) 54%, var(--gold) 100%);
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: #72818a;
}

.main-nav a {
  color: #52636b;
  font-weight: 820;
}

.main-nav a:hover {
  background: #f1f7f4;
}

.hero-section {
  min-height: 82vh;
  align-items: end;
  padding-top: clamp(92px, 11vw, 132px);
  padding-bottom: clamp(42px, 7vw, 76px);
}

.hero-media img {
  filter: saturate(0.96) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.34) 100%),
    linear-gradient(0deg, rgba(247, 250, 248, 0.92), rgba(247, 250, 248, 0.08));
}

.hero-content {
  width: min(840px, 100%);
}

.hero-content .eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(189, 149, 80, 0.34);
  border-radius: 8px;
  padding: 7px 11px;
  color: #8d6b35;
  background: rgba(255, 255, 255, 0.78);
}

.hero-content h1 {
  margin-top: 12px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 680px;
  color: #4f6169;
  font-size: clamp(18px, 1.8vw, 23px);
}

.primary-action,
.secondary-action {
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 20px;
}

.primary-action {
  background: #174f48;
  box-shadow: 0 16px 32px rgba(23, 79, 72, 0.2);
}

.secondary-action {
  border-color: rgba(23, 89, 80, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.hero-summary {
  width: min(900px, 100%);
  margin-top: clamp(30px, 8vw, 78px);
}

.hero-summary span {
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.88);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-summary strong {
  font-size: 22px;
}

.service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.service-strip div {
  min-height: 104px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip svg {
  color: var(--gold);
}

.section-block,
.contact-section,
.brand-band {
  padding: clamp(66px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

#urunler {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}

.section-heading {
  width: min(930px, 100%);
  margin-bottom: 30px;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  max-width: 760px;
  color: #667780;
}

.catalog-toolbar {
  grid-template-columns: minmax(280px, 520px);
  margin-bottom: 18px;
}

.search-box {
  min-height: 56px;
  border-color: #d9e5e1;
  box-shadow: 0 14px 34px rgba(34, 58, 62, 0.07);
}

.catalog-path {
  margin-top: 6px;
}

.catalog-path button {
  background: #edf6f2;
}

.catalog-count {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid #dbe8e4;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: #315f58;
  background: #ffffff;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 132px;
  border-color: #dbe6e2;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(34, 58, 62, 0.07);
}

.category-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  border-color: rgba(36, 122, 112, 0.45);
  transform: translateY(-2px);
}

.category-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.category-card-text strong {
  font-size: 19px;
}

.category-count {
  background: #f2f7f5;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: #dbe6e2;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(34, 58, 62, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(36, 122, 112, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(34, 58, 62, 0.12);
}

.product-image {
  aspect-ratio: 1 / 0.78;
  background:
    linear-gradient(180deg, #f8fbfa 0%, #edf4f1 100%);
}

.image-zoom-button {
  padding: 12px;
}

.product-image img,
.dialog-image img {
  object-fit: contain;
}

.product-badge {
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body h3 {
  min-height: 0;
  font-size: 19px;
}

.product-body p {
  min-height: 0;
}

.meta-list {
  margin-top: 16px;
}

.meta-list span {
  align-items: flex-start;
}

.card-actions {
  margin-top: auto;
}

.detail-button,
.quote-button {
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.detail-button:hover,
.quote-button:hover {
  transform: translateY(-1px);
}

.brand-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.9)),
    url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1600&q=82")
      center / cover;
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.brand-grid span,
.timeline-item,
.quote-form {
  border-color: #dbe6e2;
  background: rgba(255, 255, 255, 0.92);
}

.timeline-item {
  border-left: 0;
  box-shadow: 0 16px 38px rgba(34, 58, 62, 0.07);
}

.timeline-item span {
  background: #174f48;
}

.contact-section {
  background: linear-gradient(180deg, #f8fbfa 0%, #edf5f1 100%);
}

.contact-links a {
  min-height: 38px;
  border: 1px solid #dbe6e2;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.75);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 48px;
  background: #ffffff;
}

.product-dialog,
.image-dialog {
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.dialog-image,
.image-dialog-content img {
  background: linear-gradient(180deg, #f8fbfa 0%, #edf4f1 100%);
}

@media (max-width: 780px) {
  .hero-section {
    min-height: 650px;
    padding-top: 92px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
      linear-gradient(0deg, rgba(247, 250, 248, 0.94), rgba(247, 250, 248, 0.18));
  }

  .hero-content h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-card {
    grid-template-columns: 44px 1fr;
  }

  .category-count {
    grid-column: 2;
    width: fit-content;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Bold video showroom direction */
:root {
  --ink: #17201f;
  --muted: #6c7772;
  --line: #e4ddd2;
  --paper: #f8f4ee;
  --surface-soft: #f4ede3;
  --teal: #0f6c5d;
  --teal-dark: #093f38;
  --gold: #c39a47;
  --clay: #b96f46;
  --blue: #416b7c;
  --shadow: 0 24px 70px rgba(30, 28, 22, 0.14);
  --soft-shadow: 0 14px 38px rgba(30, 28, 22, 0.08);
}

body {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f8f4ee 44%, #ffffff 100%);
}

.site-header {
  background: rgba(255, 250, 242, 0.94);
  border-bottom-color: rgba(228, 221, 210, 0.88);
}

.brand-mark {
  background: linear-gradient(135deg, #082f2a 0%, #0f6c5d 58%, #c39a47 100%);
}

.main-nav a:hover {
  color: var(--teal-dark);
  background: #f3ecdf;
}

.hero-section {
  min-height: calc(100vh - 72px);
  align-items: center;
  background: #0a1614;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-media img {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 20, 0.9) 0%, rgba(9, 35, 31, 0.68) 42%, rgba(7, 22, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 22, 20, 0.72), rgba(7, 22, 20, 0.08));
}

.hero-content {
  color: #fffaf2;
}

.hero-content .eyebrow {
  border-color: rgba(195, 154, 71, 0.42);
  color: #f4d58c;
  background: rgba(8, 47, 42, 0.54);
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  color: rgba(255, 250, 242, 0.88);
}

.primary-action {
  border-color: #c39a47;
  color: #10201d;
  background: #d8ad58;
  box-shadow: 0 18px 38px rgba(195, 154, 71, 0.25);
}

.primary-action:hover {
  color: #ffffff;
  background: #0f6c5d;
}

.secondary-action {
  border-color: rgba(255, 250, 242, 0.38);
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(12px);
}

.secondary-action:hover {
  background: rgba(255, 250, 242, 0.22);
}

.hero-summary span {
  border-color: rgba(255, 250, 242, 0.22);
  color: #fffaf2;
  background: rgba(8, 47, 42, 0.58);
  backdrop-filter: blur(14px);
}

.hero-summary strong {
  color: #f4d58c;
}

.service-strip {
  border-block: 0;
  background: #082f2a;
}

.service-strip div {
  border-right: 1px solid rgba(255, 250, 242, 0.12);
  color: #fffaf2;
  background: linear-gradient(180deg, #0b3a34 0%, #082f2a 100%);
}

.service-strip svg {
  color: #d8ad58;
}

#urunler {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f8f4ee 100%);
}

.catalog-count,
.catalog-path button,
.category-count,
.quote-button {
  background: #f4ede3;
}

.category-card {
  border-color: #e4ddd2;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.category-icon {
  background: linear-gradient(135deg, #082f2a, #0f6c5d);
}

.category-card::before {
  background: linear-gradient(180deg, #c39a47, #0f6c5d);
}

.product-card {
  border-color: #e4ddd2;
}

.product-image,
.dialog-image,
.image-dialog-content img {
  background:
    linear-gradient(180deg, #fffaf2 0%, #efe7da 100%);
}

.detail-button {
  border-color: #0f6c5d;
  background: #0f6c5d;
}

.detail-button:hover {
  background: #093f38;
}

.brand-band {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.97), rgba(248, 244, 238, 0.92)),
    url("https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?auto=format&fit=crop&w=1600&q=82")
      center / cover;
}

.timeline-item span {
  background: #c39a47;
}

.contact-section {
  background: linear-gradient(180deg, #fffaf2 0%, #efe7da 100%);
}

@media (max-width: 780px) {
  .hero-section {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 22, 20, 0.88), rgba(7, 22, 20, 0.62)),
      linear-gradient(0deg, rgba(7, 22, 20, 0.78), rgba(7, 22, 20, 0.08));
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  }
}
