:root {
  --green:#04472f;
  --green-2:#0a5a3d;
  --green-3:#0d6d49;
  --cream:#f8f5ef;
  --paper:#ffffff;
  --ink:#1f2933;
  --muted:#596975;
  --line:#e8e1d7;
  --shadow:0 12px 28px rgba(27,
  35,
  40,
  .12);
  --radius:10px;
  --container:1160px;

}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Inter,
  system-ui,
  -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  sans-serif;
  font-size:15px;
  line-height:1.55
}

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

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

.container {
  width:min(var(--container),
  calc(100% - 72px));
  margin-inline:auto
}

.site-header {
  position:absolute;
  inset:0 0 auto 0;
  z-index:50;
  color:#fff;
  padding:34px 0 0;
  text-shadow:0 1px 10px rgba(0,
  0,
  0,
  .2)
}

.header-inner {
  display:flex;
  align-items:center;
  gap:32px
}

.brand,
.footer-brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-weight:800;
  font-size:31px;
  letter-spacing:-.03em;
  white-space:nowrap
}

.brand-mark {
  width:58px;
  height:31px;
  flex:0 0 auto
}

.main-nav {
  display:flex;
  align-items:center;
  gap:31px;
  margin-left:auto;
  font-weight:700;
  font-size:13px
}

.main-nav a {
  opacity:.95;
  transition:.2s
}

.main-nav a:hover {
  opacity:1;
  color:#e8f3e9
}

.quote-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 20px;
  border-radius:5px;
  background:var(--green);
  border:1px solid rgba(255,
  255,
  255,
  .2);
  font-weight:800;
  font-size:14px;
  box-shadow:0 12px 25px rgba(0,
  0,
  0,
  .18)
}

.quote-btn img {
  width:18px;
  height:18px
}

.menu-toggle {
  display:none;
  width:42px;
  height:42px;
  border:1px solid rgba(255,
  255,
  255,
  .45);
  border-radius:8px;
  background:rgba(0,
  0,
  0,
  .15);
  padding:9px
}

.menu-toggle span {
  display:block;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:2px
}

.hero {
  position:relative;
  height:100vh;
  min-height:100vh;
  overflow:hidden;
  background:#d9ddd8
}

.hero-slide {
  height:100vh;
  min-height:100vh;
  background-image:linear-gradient(90deg,
  rgba(249,
  246,
  238,
  .95) 0%,
  rgba(249,
  246,
  238,
  .83) 34%,
  rgba(249,
  246,
  238,
  .26) 53%,
  rgba(0,
  0,
  0,
  .10) 100%),
  var(--hero-image);
  background-size:cover;
  background-position:center right
}

.hero-grid {
  height:100vh;
  min-height:100vh;
  display:grid;
  align-items:center;
  padding-top:82px
}

.hero-copy {
  max-width:615px;
  padding-top:23px
}

.eyebrow {
  display:block;
  color:var(--green);
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
  margin:0 0 17px
}

.hero h1 {
  margin:0 0 19px;
  color:#26313d;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:55px;
  line-height:1.04;
  letter-spacing:-.04em;
  font-weight:800
}

.hero p {
  max-width:615px;
  margin:0;
  color:#40515e;
  font-size:16px;
  font-weight:500;
  line-height:1.85
}

.hero-actions {
  display:flex;
  gap:20px;
  align-items:center;
  margin-top:20px
}

.btn {
  height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:0 24px;
  border-radius:6px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s
}

.btn-primary {
  background:var(--green-2);
  color:#fff;
  box-shadow:0 12px 24px rgba(5,
  69,
  48,
  .18)
}

.btn-primary:hover,
.quote-btn:hover {
  background:var(--green-3);
  transform:translateY(-1px)
}

.btn-secondary {
  background:rgba(255,
  255,
  255,
  .66);
  border-color:var(--green);
  color:var(--green);
  backdrop-filter:blur(5px)
}

.btn-secondary img {
  width:19px;
  height:19px;
  filter:brightness(0) saturate(100%) invert(24%) sepia(34%) saturate(1080%) hue-rotate(106deg) brightness(92%) contrast(89%)
}

.btn-secondary:hover {
  background:#fff;
  transform:translateY(-1px)
}

.hero-badges {
  display:flex;
  gap:42px;
  margin-top:34px
}

.badge {
  display:grid;
  grid-template-columns:30px auto;
  column-gap:10px;
  color:#1d4034
}

.badge-icon {
  grid-row:1/3;
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid rgba(4,
  71,
  47,
  .38);
  border-radius:8px;
  font-size:17px
}

.badge strong {
  font-size:12px;
  font-weight:900;
  line-height:1.1
}

.badge small {
  font-size:11px;
  color:#3c564e;
  font-weight:700;
  line-height:1.1
}

.hero-arrow {
  position:absolute;
  top:50%;
  z-index:10;
  width:43px;
  height:43px;
  margin-top:-10px;
  border:0;
  border-radius:50%;
  background:rgba(255,
  255,
  255,
  .88);
  box-shadow:0 8px 22px rgba(0,
  0,
  0,
  .12);
  color:#34404b;
  font-size:38px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s
}

.hero-arrow:hover {
  background:#fff;
  transform:scale(1.04)
}

.hero-arrow-left {
  left:25px
}

.hero-arrow-right {
  right:25px
}

.hero-dots {
  position:absolute;
  left:50%;
  bottom:21px;
  display:flex;
  gap:8px;
  transform:translateX(-50%);
  padding:6px 7px;
  border-radius:22px;
  background:rgba(255,
  255,
  255,
  .72);
  backdrop-filter:blur(7px)
}

.hero-dots button {
  width:13px;
  height:13px;
  border-radius:50%;
  border:0;
  background:#d7d7d7;
  cursor:pointer
}

.hero-dots button.is-active {
  background:var(--green-3)
}

.section {
  padding:19px 0 0
}

.section-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:13px
}

.section-head h2 {
  margin:0;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:30px;
  line-height:1;
  color:#1d2934;
  letter-spacing:-.035em
}

.section-head a {
  color:var(--green);
  font-size:13px;
  font-weight:800
}

.section-head a span {
  font-size:20px;
  vertical-align:-1px;
  margin-left:8px
}

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

.product-card {
  background:#fff;
  border:1px solid #e6e1da;
  border-radius:8px;
  overflow:hidden;
  min-height:154px;
  box-shadow:0 7px 19px rgba(20,
  30,
  35,
  .09);
  transition:.22s
}

.product-card:hover {
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(20,
  30,
  35,
  .14)
}

.product-card img {
  width:100%;
  height:111px;
  object-fit:cover
}

.product-card strong {
  min-height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 14px;
  font-size:16px;
  font-weight:900;
  color:#222b33
}

.applications {
  padding-top:21px
}

.section-head.compact {
  margin-bottom:13px
}

.project-grid {
  display:grid;
  grid-template-columns:repeat(3,
  1fr);
  gap:16px 22px
}

.project-card {
  position:relative;
  height:129px;
  border-radius:7px;
  overflow:hidden;
  box-shadow:0 8px 21px rgba(20,
  30,
  35,
  .12);
  background:#ccc
}

.project-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s
}

.project-card::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,
  rgba(0,
  0,
  0,
  .38),
  rgba(0,
  0,
  0,
  .02) 65%)
}

.project-card>span {
  position:absolute;
  left:12px;
  bottom:15px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:3px;
  background:rgba(0,
  0,
  0,
  .55);
  color:#fff;
  font-size:15px;
  font-weight:800;
  backdrop-filter:blur(2px)
}

.project-card i {
  font-style:normal;
  font-size:19px;
  line-height:1
}

.project-card:hover img {
  transform:scale(1.04)
}

.capacity {
  height:100px;
  margin:17px 0 24px;
  border-radius:7px;
  overflow:hidden;
  background-image:linear-gradient(90deg,
  rgba(6,
  55,
  42,
  .94),
  rgba(6,
  55,
  42,
  .88)),
  url('../img/capacity-bg.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  padding:0 49px 0 105px;
  box-shadow:0 10px 22px rgba(13,
  54,
  42,
  .16)
}

.capacity-left {
  display:flex;
  align-items:center;
  gap:26px
}

.capacity-icon {
  width:74px;
  height:74px;
  border:2px solid rgba(255,
  255,
  255,
  .35);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff
}

.capacity-icon img {
  width:48px;
  height:48px
}

.capacity h3 {
  margin:0;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:31px;
  line-height:1.17;
  font-weight:700;
  letter-spacing:-.02em
}

.capacity ul {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:7px;
  font-size:15px;
  font-weight:700
}

.capacity li {
  position:relative;
  padding-left:29px
}

.capacity li::before {
  content:"";
  position:absolute;
  left:0;
  top:-2px;
  width:21px;
  height:21px;
  border:2px solid rgba(255,
  255,
  255,
  .84);
  border-radius:50%;
  background:url(../icons/check-white.svg) center/13px 13px no-repeat
}

.site-footer {
  background:#fff;
  border-top:1px solid var(--line)
}

.footer-grid {
  display:grid;
  grid-template-columns:1.45fr 1.2fr 1fr .9fr;
  gap:38px;
  align-items:stretch;
  padding:30px 0 25px
}

.footer-col {
  position:relative;
  padding-left:36px
}

.footer-col::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:1px;
  background:#e4ded5
}

.footer-brand {
  font-size:22px;
  color:var(--green);
  margin-bottom:18px
}

.footer-brand img {
  width:42px;
  height:24px;
  flex:none
}

.footer-about p {
  font-size:13px;
  color:#3d4b54;
  margin:0 0 16px;
  max-width:330px
}

.socials {
  display:flex;
  gap:11px
}

.socials a {
  width:25px;
  height:25px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green-2);
  color:#fff;
  font-weight:800;
  font-size:13px
}

.site-footer h4 {
  margin:0 0 12px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:17px;
  color:var(--green);
  font-weight:800
}

.footer-list {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:7px;
  font-size:12px;
  color:#283a43
}

.footer-list a:hover {
  color:var(--green)
}

.contact-list {
  gap:10px
}

.factory-img {
  width:107px;
  height:54px;
  border-radius:5px;
  object-fit:cover;
  margin-bottom:8px
}

.factory-caption {
  margin:0;
  color:#3b4a52;
  font-size:12px;
  line-height:1.45
}

.footer-bottom {
  background:var(--green);
  color:#fff
}

.bottom-inner {
  height:45px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.bottom-inner p {
  margin:0;
  font-size:13px
}

.bottom-inner a {
  color:inherit;
  text-decoration:none;
  font-weight:700
}

.footer-credit {
  text-align:right
}

.bottom-inner nav {
  display:flex;
  gap:44px;
  font-size:13px
}

.bottom-inner a:hover {
  text-decoration:underline
}

@media (max-width:1120px) {
  .container {
    width:min(100% - 42px,
    var(--container))
  }

  .main-nav {
    position:absolute;
    top:84px;
    right:21px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    width:min(320px,
    calc(100vw - 42px));
    padding:12px;
    background:#fff;
    color:var(--ink);
    text-shadow:none;
    border-radius:12px;
    box-shadow:0 20px 45px rgba(0,
    0,
    0,
    .18)
  }

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

  .main-nav a {
    width:100%;
    padding:12px;
    border-radius:7px
  }

  .main-nav a:hover {
    background:#f3f3ee;
    color:var(--green)
  }

  .menu-toggle {
    display:block;
    margin-left:auto
  }

  .quote-btn {
    display:none
  }

  .hero h1 {
    font-size:47px
  }

  .hero-slide {
    background-position:center
  }

  .footer-grid {
    grid-template-columns:repeat(2,
    1fr)
  }

  .footer-col {
    padding-left:0
  }

  .footer-col::before {
    display:none
  }

  .capacity {
    padding-left:38px
  }

}

@media (max-width:820px) {
  .brand {
    font-size:25px
  }

  .site-header {
    padding-top:20px
  }

  .hero,
  .hero-slide,
  .hero-grid {
    min-height:680px
  }

  .hero-slide {
    background-image:linear-gradient(180deg,
    rgba(248,
    245,
    239,
    .93),
    rgba(248,
    245,
    239,
    .70)),
    var(--hero-image)
  }

  .hero-grid {
    align-items:end;
    padding-bottom:78px
  }

  .hero-copy {
    padding-top:100px
  }

  .hero h1 {
    font-size:40px
  }

  .hero-actions {
    flex-wrap:nowrap
  }

  .hero-badges {
    gap:18px;
    flex-wrap:nowrap
  }

  .product-grid,
  .project-grid {
    grid-template-columns:repeat(2,
    1fr)
  }

  .capacity {
    height:auto;
    min-height:165px;
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
    padding:26px
  }

  .capacity h3 {
    font-size:26px
  }

  .bottom-inner {
    height:auto;
    padding:14px 0;
    align-items:flex-start;
    flex-direction:column
  }

  .footer-credit {
    text-align:left
  }

  .bottom-inner nav {
    gap:18px;
    flex-wrap:nowrap
  }

  .hero-arrow {
    display:none
  }

}

@media (max-width:560px) {
  .container {
    width:calc(100% - 28px)
  }

  .brand-mark {
    width:48px
  }

  .hero,
  .hero-slide,
  .hero-grid {
    min-height:650px
  }

  .hero h1 {
    font-size:33px
  }

  .hero p {
    font-size:14px
  }

  .btn {
    width:100%
  }

  .hero-actions {
    gap:12px
  }

  .hero-badges {
    display:grid;
    gap:14px
  }

  .product-grid,
  .project-grid {
    grid-template-columns:1fr
  }

  .section-head {
    align-items:flex-start;
    gap:8px;
    flex-direction:column
  }

  .project-card {
    height:160px
  }

  .footer-grid {
    grid-template-columns:1fr;
    gap:20px
  }

  .capacity-left {
    align-items:flex-start;
    flex-direction:column;
    gap:14px
  }

  .footer-bottom nav {
    display:grid;
    gap:8px
  }

  .main-nav {
    right:14px
  }

  .footer-about p {
    max-width:none
  }

}

/* Falez Doğal Taş custom logo */
.brand,
.footer-brand {
  line-height:0;
  text-shadow:none
}

.brand-logo {
  width:225px;
  height:75px;
  object-fit:contain;
  display:block;
  max-width:none
}

.footer-brand .footer-logo {
  width:180px;
  height:60px;
  object-fit:contain;
  display:block;
  max-width:none;
  flex:none
}

@media (max-width:820px) {
  .brand-logo {
    width:190px;
    height:auto
  }

  .footer-brand .footer-logo {
    width:165px;
    height:auto
  }

}

@media (max-width:560px) {
  .brand-logo {
    width:160px;
    height:auto
  }

  .footer-brand .footer-logo {
    width:150px;
    height:auto
  }

}

/* Professional inline SVG icon system */
.svg-icon {
  display:inline-block;
  width:1em;
  height:1em;
  flex:0 0 auto;
  color:currentColor;
  fill:currentColor;
  stroke:currentColor;
  vertical-align:-.12em;

}

.svg-icon * {
  vector-effect:non-scaling-stroke
}

.nav-icon {
  width:12px;
  height:12px;
  margin-left:5px;
  vertical-align:-1px
}

.btn-icon {
  width:18px;
  height:18px
}

.link-icon {
  width:17px;
  height:17px;
  margin-left:8px;
  vertical-align:-3px
}

.badge-icon {
  font-size:16px;
  color:var(--green)
}

.badge-icon .svg-icon {
  width:16px;
  height:16px
}

.hero-arrow {
  font-size:24px
}

.hero-arrow .svg-icon {
  width:22px;
  height:22px
}

.project-card .project-icon {
  width:20px;
  height:20px;
  color:var(--gold)
}

.socials a {
  font-size:15px
}

.socials a .svg-icon {
  width:14px;
  height:14px
}

.socials a[aria-label="Instagram"] .svg-icon {
  width:15px;
  height:15px
}

.socials a[aria-label="YouTube"] .svg-icon {
  width:16px;
  height:16px
}

.contact-list li {
  display:flex;
  align-items:flex-start;
  gap:9px
}

.contact-icon {
  width:16px;
  height:16px;
  margin-top:2px;
  color:var(--green)
}

.section-head a .svg-icon {
  font-size:inherit;
  vertical-align:-3px;
  margin-left:8px
}

.project-card i {
  display:none
}

@media (max-width:1120px) {
  .main-nav .nav-icon {
    color:var(--ink)
  }

}

.capacity-between {
  padding:0
}

.footer-social-col .footer-socials {
  margin-top:2px;
  gap:12px;
  flex-wrap:nowrap
}

.footer-social-col .footer-socials a img {
  width:14px;
  height:14px;
  display:block;
  filter:brightness(0) invert(1)
}

/* Footer ilk blokta sosyal ikonlar kaldırıldı */
.footer-about p {
  margin-bottom:0;

}

/* Mesafe düzeltmesi: Ürünler - Kapasite - Uygulamalar */
.products {
  padding-bottom:40px;

}

.capacity-between {
  margin-top:0;
  margin-bottom:40px;

}

.capacity-between .capacity {
  margin:0;

}

.applications {
  padding-top:0;
  padding-bottom:72px;

}

.applications .section-head {
  margin-top:0;

}

.site-footer {
  margin-top:0;

}

/* Footer ilk bloktaki sosyal ikonlar kaldırıldı */
.footer-about p {
  margin-bottom:0;

}

.footer-socials img {
  width:15px;
  height:15px;
  display:block;

}

/* Inner page layout */
.main-nav a.is-active {
  color:#e8f3e9
}

@media (max-width:1120px) {
  .main-nav a.is-active {
    background:#f3f3ee;
    color:var(--green)
  }

}

.inner-page .site-header {
  position:absolute
}

.page-hero {
  position:relative;
  min-height:360px;
  background-color:#eaf4ec;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:end;
  overflow:hidden;
  color:var(--green)
}

.page-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
  rgba(239,
  247,
  240,
  .96),
  rgba(232,
  243,
  234,
  .88) 42%,
  rgba(232,
  243,
  234,
  .58) 100%)
}

.page-hero-about {
  background-image:url('../img/factory.jpg')
}

.page-hero-products {
  background-image:url('../img/product-dekoratif-peyzaj-micirlari.jpg')
}

.page-hero-detail {
  background-image:url('../img/product-tamburlu-taslar.jpg')
}

.page-hero-applications {
  background-image:url('../img/project-ozel-peyzaj-uygulamalari.jpg')
}

.page-hero-references {
  background-image:url('../img/project-kamu-projeleri.jpg')
}

.page-hero-contact {
  background-image:url('../img/capacity-bg.jpg')
}

.page-hero-inner {
  position:relative;
  z-index:1;
  padding:138px 0 58px
}

.breadcrumb {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  font-size:13px;
  font-weight:800;
  color:rgba(255,
  255,
  255,
  .82)
}

.breadcrumb a:hover {
  text-decoration:underline
}

.page-hero h1 {
  margin:0 0 14px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:51px;
  line-height:1.05;
  letter-spacing:-.04em;
  color:#fff
}

.page-hero p {
  margin:0;
  max-width:720px;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,
  255,
  255,
  .88);
  font-weight:600
}

.inner-section {
  padding:72px 0 0
}

.inner-section:last-child {
  padding-bottom:72px
}

.page-section-head {
  margin-bottom:24px
}

.split-layout {
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:52px;
  align-items:center
}

.content-copy h2,
.cta-inner h2,
.contact-info-panel h2 {
  margin:0 0 17px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:39px;
  line-height:1.12;
  letter-spacing:-.035em;
  color:#1d2934
}

.content-copy p,
.cta-inner p,
.contact-info-panel p {
  margin:0 0 15px;
  color:#4d5e68;
  font-size:16px;
  line-height:1.85
}

.image-card {
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow)
}

.image-card img {
  width:100%;
  height:420px;
  object-fit:cover
}

.image-card.raised {
  transform:translateY(10px)
}

.feature-list {
  display:grid;
  gap:11px;
  margin-top:21px
}

.feature-list.two-col {
  grid-template-columns:repeat(2,
  1fr)
}

.feature-list span {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:#263943
}

.mini-check {
  width:18px;
  height:18px;
  color:var(--green-2)
}

.values-band {
  padding-top:38px
}

.value-grid {
  display:grid;
  grid-template-columns:repeat(4,
  1fr);
  gap:18px
}

.value-grid div {
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:25px 18px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07);
  text-align:center
}

.value-grid strong {
  display:block;
  font-family:"Playfair Display",
  Georgia,
  serif;
  color:var(--green);
  font-size:31px;
  line-height:1
}

.value-grid span {
  display:block;
  margin-top:9px;
  color:#5a6a74;
  font-weight:800;
  font-size:13px
}

.info-card-grid {
  display:grid;
  grid-template-columns:repeat(3,
  1fr);
  gap:22px
}

.info-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:27px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07)
}

.info-card span {
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-weight:900;
  margin-bottom:18px
}

.info-card h3 {
  margin:0 0 9px;
  font-size:19px
}

.info-card p {
  margin:0;
  color:#596975;
  line-height:1.75
}

.category-grid {
  display:grid;
  grid-template-columns:repeat(3,
  1fr);
  gap:24px
}

.category-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 9px 24px rgba(20,
  30,
  35,
  .08);
  transition:.22s
}

.category-card:hover {
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(20,
  30,
  35,
  .14)
}

.category-image img {
  width:100%;
  height:180px;
  object-fit:cover
}

.category-content {
  min-height:64px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center
}

.category-content h3 {
  width:100%;
  margin:0;
  font-size:20px;
  line-height:1.3;
  color:#1f2933
}

.category-content p {
  margin:0;
  color:#596975;
  line-height:1.75
}

.category-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:18px;
  padding-top:17px;
  border-top:1px solid var(--line);
  font-size:13px;
  font-weight:800
}

.category-meta span {
  color:#6a7780
}

.category-meta a {
  color:var(--green)
}

.cta-strip {
  padding-top:48px
}

.cta-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:42px;
  padding:39px 45px;
  border-radius:12px;
  background-image:linear-gradient(90deg,
  rgba(6,
  55,
  42,
  .95),
  rgba(6,
  55,
  42,
  .86)),
  url('../img/capacity-bg.jpg');
  background-size:cover;
  background-position:center;
  color:#fff
}

.cta-inner h2,
.cta-inner p,
.cta-inner .eyebrow {
  color:#fff
}

.cta-inner p {
  max-width:720px;
  margin-bottom:0
}

.cta-inner .btn {
  flex:0 0 auto;
  background:#fff;
  color:var(--green)
}

.detail-layout {
  display:grid;
  grid-template-columns:270px 1fr;
  gap:34px;
  align-items:start
}

.detail-sidebar {
  position:sticky;
  top:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:22px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07)
}

.detail-sidebar h3 {
  margin:0 0 15px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:22px;
  color:var(--green)
}

.detail-sidebar ul {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:6px
}

.detail-sidebar a {
  display:block;
  padding:10px 11px;
  border-radius:7px;
  font-weight:800;
  color:#32414b
}

.detail-sidebar a:hover {
  background:#f3f3ee;
  color:var(--green)
}

.detail-main {
  display:grid;
  gap:24px
}


.product-detail-page .detail-main {
  max-width:980px;
  margin:0 auto;
}

.detail-copy .lead-text {
  margin:0 0 16px;
  color:#263943;
  font-size:18px;
  font-weight:700;
  line-height:1.75
}

.spec-grid.single {
  grid-template-columns:1fr
}

.related-products {
  margin-top:10px
}

.related-product-grid {
  grid-template-columns:repeat(3, 1fr)
}


.detail-gallery {
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff
}

.detail-gallery img {
  width:100%;
  height:430px;
  object-fit:cover
}

.detail-copy,
.usage-panel {
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:30px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07)
}

.detail-copy h2 {
  margin:0 0 13px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:40px;
  letter-spacing:-.035em
}

.detail-copy p,
.usage-panel p {
  margin:0;
  color:#596975;
  line-height:1.85
}

.spec-grid {
  display:grid;
  grid-template-columns:repeat(2,
  1fr);
  gap:18px
}

.spec-grid div {
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:22px
}

.spec-grid strong {
  display:block;
  color:var(--green);
  font-size:15px;
  margin-bottom:6px
}

.spec-grid span {
  color:#596975
}

.usage-panel h3 {
  margin:0 0 10px;
  font-size:23px
}

.application-list-grid {
  display:grid;
  grid-template-columns:repeat(2,
  1fr);
  gap:24px
}

.application-card {
  display:grid;
  grid-template-columns:220px 1fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07)
}

.application-card img {
  height:100%;
  min-height:210px;
  width:100%;
  object-fit:cover
}

.application-card div {
  padding:25px
}

.application-card h3 {
  margin:0 0 10px;
  font-size:22px
}

.application-card p {
  margin:0 0 15px;
  color:#596975;
  line-height:1.75
}

.application-card a {
  font-weight:900;
  color:var(--green);
  font-size:13px
}

.reference-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px
}

.reference-card {
  position:relative;
  aspect-ratio:1.18 / 1;
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#ffffff
}

.reference-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.35s
}

.reference-card:hover img {
  transform:scale(1.05)
}

.contact-layout {
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:start
}

.contact-info-panel,
.contact-form {
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:34px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07)
}

.contact-detail-list {
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  gap:18px
}

.contact-detail-list li {
  display:flex;
  gap:13px;
  align-items:flex-start
}

.contact-detail-list .contact-icon {
  width:20px;
  height:20px;
  margin-top:3px
}

.contact-detail-list strong {
  display:block;
  color:#1f2933
}

.contact-detail-list span {
  color:#596975
}

.contact-form {
  display:grid;
  gap:17px
}

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:17px
}

.contact-form label {
  display:grid;
  gap:8px;
  color:#263943;
  font-size:13px;
  font-weight:900
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width:100%;
  border:1px solid #d9d2c7;
  border-radius:8px;
  background:#fbfaf7;
  padding:13px 14px;
  font:inherit;
  color:#1f2933;
  outline:none
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(10,
  90,
  61,
  .10)
}

.contact-form textarea {
  resize:vertical
}

.contact-form .btn {
  border:0;
  cursor:pointer
}

.form-note {
  margin:0;
  color:#7a858c;
  font-size:12px
}

.map-placeholder {
  padding:0 0 72px
}

.map-box {
  height:260px;
  border-radius:12px;
  background:linear-gradient(135deg,
  #e4ded5,
  #f8f5ef);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:#52606a;
  font-weight:900
}

@media (max-width:1120px) {
  .page-hero h1 {
    font-size:44px
  }

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

  .split-layout,
  .contact-layout {
    grid-template-columns:1fr
  }

  .detail-layout {
    grid-template-columns:1fr
  }

  .detail-sidebar {
    position:static
  }

  .application-card {
    grid-template-columns:180px 1fr
  }

  .value-grid {
    grid-template-columns:repeat(2,
    1fr)
  }

}

@media (max-width:820px) {
  .page-hero {
    min-height:330px
  }

  .page-hero-inner {
    padding-top:122px
  }

  .page-hero h1 {
    font-size:38px
  }

  .inner-section {
    padding-top:52px
  }

  .split-layout {
    gap:30px
  }

  .info-card-grid,
  .category-grid,
  .application-list-grid,
  .reference-grid {
    grid-template-columns:1fr
  }

  .application-card {
    grid-template-columns:1fr
  }

  .application-card img {
    height:220px
  }

  .cta-inner {
    align-items:flex-start;
    flex-direction:column;
    padding:30px
  }

  .spec-grid {
    grid-template-columns:1fr
  }

  .form-row {
    grid-template-columns:1fr
  }

}

@media (max-width:560px) {
  .page-hero h1 {
    font-size:33px
  }

  .page-hero p {
    font-size:15px
  }

  .feature-list.two-col,
  .value-grid {
    grid-template-columns:1fr
  }

  .content-copy h2,
  .cta-inner h2,
  .contact-info-panel h2,
  .detail-copy h2 {
    font-size:31px
  }

  .image-card img,
  .detail-gallery img {
    height:300px
  }

  .contact-info-panel,
  .contact-form,
  .detail-copy,
  .usage-panel {
    padding:23px
  }

  .category-content {
    min-height:58px;
    padding:10px 15px
  }

  .cta-inner .btn {
    width:100%
  }

}

/* Alt sayfa hero alanları: logo ile uyumlu açık yeşil zemin */
.inner-page .site-header {
  color:var(--green);
  text-shadow:none;

}

.inner-page .main-nav a:hover,
.inner-page .main-nav a.is-active {
  color:var(--green-3);

}

.inner-page .menu-toggle {
  border-color:rgba(4,
  71,
  47,
  .35);
  background:rgba(255,
  255,
  255,
  .45);

}

.inner-page .menu-toggle span {
  background:var(--green);

}

.page-hero {
  color:var(--green);

}

.page-hero::before {
  background:linear-gradient(90deg,
  rgba(239,
  247,
  240,
  .96),
  rgba(232,
  243,
  234,
  .88) 42%,
  rgba(232,
  243,
  234,
  .58) 100%);

}

.breadcrumb {
  color:rgba(4,
  71,
  47,
  .72);

}

.page-hero h1 {
  color:var(--green);

}

.page-hero p {
  color:#38574a;

}

.contact-page-section .contact-layout {
  grid-template-columns:minmax(0,
  820px);
  justify-content:center;

}

.contact-page-section .contact-info-panel {
  width:100%;

}

@media (max-width:1120px) {
  .inner-page .main-nav {
    color:var(--ink);

  }

  .inner-page .main-nav a:hover,
  .inner-page .main-nav a.is-active {
    background:#f3f3ee;
    color:var(--green);

  }

}

/* 2026 düzenleme: anasayfa menü, iletişim sayfası ve ürün kartları */

/* 2026 düzenleme: anasayfa menü, iletişim sayfası ve ürün kartları */
.home-page .site-header {
  color:#fff;
  text-shadow:0 1px 10px rgba(0,0,0,.2);

}

.home-page .main-nav a:hover,
.home-page .main-nav a.is-active {
  color:#e8f3e9;

}

.home-page .menu-toggle {
  border-color:rgba(255,255,255,.45);
  background:rgba(0,0,0,.15);

}

.home-page .menu-toggle span {
  background:var(--green);

}

.category-meta {
  justify-content:flex-start;

}

.category-meta span {
  display:block;

}

.contact-page-section {
  padding-top:64px;

}

.contact-page-section .contact-layout {
  display:grid;
  grid-template-columns:1fr;
  gap:26px;

}

.contact-intro-card {
  max-width:880px;
  margin:0 auto;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:36px 42px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07);

}

.contact-intro-card h2 {
  margin:0 0 14px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:38px;
  line-height:1.15;
  letter-spacing:-.035em;
  color:#1d2934;

}

.contact-intro-card p {
  max-width:690px;
  margin:0 auto;
  color:#4d5e68;
  font-size:16px;
  line-height:1.8;

}

.contact-card-grid {
  display:grid;
  grid-template-columns:repeat(4,
  1fr);
  gap:18px;
  margin-top:8px;

}

.contact-card {
  min-height:178px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:25px 20px;
  box-shadow:0 8px 22px rgba(20,
  30,
  35,
  .07);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

}

.contact-card .contact-icon {
  width:42px;
  height:42px;
  padding:9px;
  border-radius:50%;
  background:#eef7f0;
  color:var(--green);
  margin-bottom:14px;

}

.contact-card strong {
  display:block;
  margin-bottom:7px;
  color:#1f2933;
  font-size:16px;

}

.contact-card span,
.contact-card a {
  color:#596975;
  font-size:14px;
  line-height:1.65;
  font-weight:600;

}

.contact-card a:hover {
  color:var(--green);

}

.contact-note {
  max-width:720px;
  margin:8px auto 0;
  text-align:center;
  color:#687781;
  font-size:14px;
  line-height:1.7;

}

.map-placeholder {
  padding-top:24px;

}

.map-box {
  height:300px;
  background:linear-gradient(135deg,
  #eff7f0,
  #f8f5ef);
  color:#38574a;

}

@media (max-width:1120px) {
  .home-page .main-nav {
    color:var(--ink);

  }

  .home-page .main-nav a:hover,
  .home-page .main-nav a.is-active {
    background:#f3f3ee;
    color:var(--green);

  }

  .contact-card-grid {
    grid-template-columns:repeat(2,
    1fr);

  }

}

@media (max-width:640px) {
  .contact-intro-card {
    padding:28px 22px;

  }

  .contact-intro-card h2 {
    font-size:31px;

  }

  .contact-card-grid {
    grid-template-columns:1fr;

  }

}

/* External SVG icons */
img.svg-icon,
img.svg-img {
  display:inline-block;
  width:1em;
  height:1em;
  object-fit:contain;
  flex:0 0 auto;
  vertical-align:-.12em;

}


/* PHP sistem ekleri */
.install-warning {
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:9999;
  max-width:min(920px, calc(100% - 32px));
  background:#fff8e6;
  border:1px solid #f2d184;
  color:#6b4e00;
  border-radius:10px;
  padding:12px 16px;
  box-shadow:0 12px 26px rgba(0,0,0,.12);
  font-weight:700;
  text-align:center;
}
.install-warning a { color:var(--green); text-decoration:underline; }
.empty-state {
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:32px;
  text-align:center;
  color:#596975;
  box-shadow:0 8px 22px rgba(20,30,35,.07);
}
.pagination-note { margin-top:24px; color:#596975; }

/* Header product dropdown */
.nav-dropdown {
  position:relative;
  display:flex;
  align-items:center;
}

.nav-dropdown::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:16px;
}

.nav-dropdown-link {
  display:inline-flex;
  align-items:center;
}

.nav-dropdown-menu {
  position:absolute;
  top:calc(100% + 16px);
  left:0;
  min-width:230px;
  padding:10px;
  background:#fff;
  color:var(--ink);
  border-radius:12px;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index:50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav-dropdown-menu a {
  display:block;
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  color:var(--ink);
  white-space:nowrap;
}

.nav-dropdown-menu a:hover {
  background:#f3f3ee;
  color:var(--green);
}

.nav-dropdown.is-open .nav-icon {
  transform:rotate(180deg);
}

@media (max-width:1120px) {
  .main-nav .nav-dropdown {
    width:100%;
    display:block;
  }

  .main-nav .nav-dropdown-link {
    width:100%;
    display:flex;
    justify-content:space-between;
  }

  .main-nav .nav-dropdown-menu {
    position:static;
    display:none;
    min-width:0;
    padding:0 0 6px 12px;
    margin:0;
    background:transparent;
    box-shadow:none;
    border-radius:0;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .main-nav .nav-dropdown.is-open .nav-dropdown-menu {
    display:block;
  }

  .main-nav .nav-dropdown-menu a {
    padding:10px 12px;
    font-size:13px;
  }
}

/* Anasayfa Ürünler dropdown görünümü alt sayfalarla aynı kalsın */
.home-page .nav-dropdown-menu {
  background:#fff;
  color:var(--ink);
  text-shadow:none;
}

.home-page .nav-dropdown-menu a,
.home-page .main-nav .nav-dropdown-menu a {
  color:var(--ink);
  opacity:1;
  text-shadow:none;
}

.home-page .nav-dropdown-menu a:hover,
.home-page .main-nav .nav-dropdown-menu a:hover,
.home-page .nav-dropdown-menu a.is-active,
.home-page .main-nav .nav-dropdown-menu a.is-active {
  background:#f3f3ee;
  color:var(--green);
}

.application-image-button {
  position:relative;
  display:block;
  width:100%;
  min-height:210px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
  font:inherit;
  text-align:left
}

.application-image-button img {
  display:block;
  transition:transform .28s ease, filter .28s ease
}

.application-image-button::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, .18);
  opacity:0;
  transition:opacity .25s ease
}

.application-image-button:hover img,
.application-image-button:focus-visible img {
  transform:scale(1.04);
  filter:brightness(.9)
}

.application-image-button:hover::after,
.application-image-button:focus-visible::after {
  opacity:1
}

.application-zoom-badge {
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255, 255, 255, .94);
  color:#263943;
  opacity:0;
  transform:translateY(6px) scale(.94);
  box-shadow:0 12px 26px rgba(0, 0, 0, .22);
  transition:opacity .25s ease, transform .25s ease;
}

.application-image-button:hover .application-zoom-badge,
.application-image-button:focus-visible .application-zoom-badge {
  opacity:1;
  transform:translateY(0) scale(1)
}

.application-zoom-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:50%;
  color:#263943;
  font-size:24px;
  line-height:1;
  font-weight:800;
}

.application-lightbox {
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  background:rgba(10, 15, 18, .88);
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease, visibility .2s ease
}

.application-lightbox.is-open {
  opacity:1;
  visibility:visible
}

.application-lightbox img {
  max-width:min(1100px, 92vw);
  max-height:86vh;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 24px 70px rgba(0, 0, 0, .45)
}

.application-lightbox-close {
  position:absolute;
  top:22px;
  right:22px;
  z-index:2;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#263943;
  font-size:34px;
  line-height:42px;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0, 0, 0, .25)
}

.application-lightbox-close:hover,
.application-lightbox-close:focus-visible {
  background:#f2f5f4
}

.application-lightbox-active {
  overflow:hidden
}

@media (max-width:820px) {
  .application-image-button {
    min-height:220px
  }

  .application-zoom-badge {
    opacity:1;
    transform:translateY(0) scale(1)
  }
}

/* Product detail layout */
.product-detail-page {
  max-width:1120px;
}

.product-detail-layout {
  display:grid;
  gap:34px;
}

.product-detail-image-card {
  position:relative;
  overflow:hidden;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 45px rgba(20, 30, 35, .12);
}

.product-detail-image-card::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(38,57,67,0) 45%, rgba(38,57,67,.18) 100%);
  pointer-events:none;
}

.product-detail-image-card img {
  display:block;
  width:100%;
  height:520px;
  object-fit:cover;
}

.product-info-panels {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.product-info-panel {
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px;
  box-shadow:0 12px 32px rgba(20, 30, 35, .08);
}

.product-info-panel::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:var(--green);
}

.product-info-panel .panel-kicker {
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin-bottom:12px;
  padding:5px 12px;
  border-radius:999px;
  background:#f2efe8;
  color:var(--green);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.product-info-panel h2 {
  margin:0 0 14px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-.03em;
  color:#263943;
}

.product-info-panel .panel-text {
  color:#596975;
  line-height:1.9;
  font-size:16px;
}

.product-related-section {
  margin-top:6px;
  padding-top:10px;
}

.product-related-section .section-head {
  margin-bottom:18px;
}

.product-related-section .section-head h2 {
  color:#263943;
}

.related-product-grid {
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.related-product-grid .product-card {
  min-height:auto;
}

.related-product-grid .product-card img {
  height:185px;
}

.related-product-grid .product-card strong {
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

@media (max-width: 992px) {
  .product-detail-image-card img {
    height:420px;
  }

  .product-info-panels,
  .related-product-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-detail-layout {
    gap:24px;
  }

  .product-detail-image-card {
    border-radius:12px;
  }

  .product-detail-image-card img {
    height:300px;
  }

  .product-info-panels,
  .related-product-grid {
    grid-template-columns:1fr;
  }

  .product-info-panel {
    padding:24px 20px;
    border-radius:12px;
  }

  .product-info-panel h2 {
    font-size:25px;
  }
}

/* About page: full width content after removing visual column */
.about-full-layout {
  display:block;
}

.about-full-copy {
  width:100%;
  max-width:none;
}

.about-full-copy p {
  max-width:none;
}

/* Inner page width standardization */
.inner-page .container {
  max-width:var(--container);
}

.product-detail-page {
  max-width:none;
}

/* About page content card and feature list refinement */
.about-full-copy {
  background:#fff;
  border:1px solid rgba(38,57,67,.08);
  border-radius:18px;
  box-shadow:0 18px 45px rgba(38,57,67,.08);
  padding:42px;
}

.about-full-copy .feature-list.two-col {
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.about-full-copy .feature-list span {
  background:#f7f7f2;
  border:1px solid rgba(38,57,67,.08);
  border-radius:14px;
  padding:14px 16px;
  min-height:58px;
}

@media (max-width:992px) {
  .about-full-copy {
    padding:30px;
  }

  .about-full-copy .feature-list.two-col {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:560px) {
  .about-full-copy {
    padding:24px 18px;
    border-radius:14px;
  }

  .about-full-copy .feature-list.two-col {
    grid-template-columns:1fr;
  }
}

/* Product detail: image + usage, description, related products */
.product-detail-page {
  max-width:1120px;
}

.product-detail-layout-modern {
  display:grid;
  gap:28px;
}

.product-detail-top {
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(330px, .95fr);
  gap:28px;
  align-items:stretch;
}

.product-image-button {
  display:block;
  width:100%;
  padding:0;
  border:1px solid var(--line);
  background:#fff;
  cursor:zoom-in;
  text-align:left;
}

.product-image-button::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(0, 0, 0, .14);
  opacity:0;
  transition:opacity .25s ease;
}

.product-image-button::after {
  z-index:1;
}

.product-image-button img {
  transition:transform .28s ease, filter .28s ease;
}

.product-image-button:hover img,
.product-image-button:focus-visible img {
  transform:scale(1.035);
  filter:brightness(.92);
}

.product-image-button:hover::before,
.product-image-button:focus-visible::before {
  opacity:1;
}

.product-zoom-badge {
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255, 255, 255, .95);
  color:#263943;
  opacity:0;
  transform:translateY(6px) scale(.94);
  box-shadow:0 14px 30px rgba(0, 0, 0, .24);
  transition:opacity .25s ease, transform .25s ease;
}

.product-image-button:hover .product-zoom-badge,
.product-image-button:focus-visible .product-zoom-badge {
  opacity:1;
  transform:translateY(0) scale(1);
}

.product-zoom-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  color:#263943;
  font-size:26px;
  line-height:1;
  font-weight:800;
}

.product-usage-panel,
.product-description-panel {
  min-height:100%;
}

.product-usage-panel {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-description-panel {
  padding:34px;
}

.product-detail-layout-modern .panel-kicker {
  margin-bottom:15px;
}

.product-detail-layout-modern .panel-text {
  line-height:1.95;
}

.product-lightbox img {
  background:#fff;
}

@media (max-width: 992px) {
  .product-detail-top {
    grid-template-columns:1fr;
  }

  .product-usage-panel {
    justify-content:flex-start;
  }

  .product-zoom-badge {
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .product-detail-layout-modern {
    gap:22px;
  }

  .product-description-panel {
    padding:24px 20px;
  }

  .product-zoom-badge {
    right:14px;
    bottom:14px;
    width:42px;
    height:42px;
  }
}

/* Product detail: purchase card inside the same right column as usage areas */
.product-side-panels {
  display:flex;
  flex-direction:column;
  gap:18px;
  align-self:stretch;
  height:100%;
}

.product-buy-panel,
.product-usage-panel {
  min-height:auto;
}

.product-side-panels .product-usage-panel {
  flex:1 1 auto;
}

.product-buy-panel {
  padding:28px;
}

.product-buy-actions {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.product-buy-link {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:50px;
  padding:13px 15px;
  border:1px solid rgba(38,57,67,.10);
  border-radius:12px;
  background:#f7f7f2;
  color:#263943;
  font-weight:800;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.product-buy-link img {
  flex:0 0 auto;
  width:22px;
  height:22px;
  object-fit:contain;
}

.product-buy-link:hover,
.product-buy-link:focus-visible {
  transform:translateY(-1px);
  background:#fff;
  border-color:rgba(38,57,67,.18);
  box-shadow:0 10px 24px rgba(20,30,35,.08);
}

.product-buy-whatsapp {
  background:#f1faf4;
}

.product-usage-panel {
  justify-content:flex-start;
  text-align:left;
}

.product-usage-panel .panel-text {
  text-align:left;
}

@media (max-width:640px) {
  .product-buy-panel {
    padding:24px 20px;
  }

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

  .product-buy-link {
    min-height:48px;
    padding:12px 14px;
  }
}


/* Uygulama kartları düzenleme */
.project-card>span{
  left:0;
  bottom:0;
  width:100%;
  border-radius:0;
  padding:14px 16px;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.75));
  justify-content:flex-start;
}

.project-card .svg-icon,
.project-card .project-icon{
  filter:brightness(0) invert(1);
}

/* Mobil slider: sol hizalı, logo ile yazı arası kontrollü orta konum */
@media (max-width:820px) {
  .hero-grid {
    display:flex;
    align-items:flex-start;
    padding-top:170px;
    padding-bottom:0;
  }

  .hero-copy {
    padding-top:0;
    text-align:left;
  }

  .hero p {
    margin-left:0;
    margin-right:0;
  }

  .hero-actions {
    justify-content:flex-start;
  }
}

@media (max-width:640px) {
  .hero-grid {
    padding-top:150px;
  }
}


/* İletişim sayfası düzenlemeleri */
.contact-page-section .contact-card-grid {
  grid-template-columns:repeat(3, 1fr);
}

.map-box {
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.map-box iframe {
  width:100% !important;
  max-width:100%;
  display:block;
  border:0;
}

@media (max-width:1120px) {
  .contact-page-section .contact-card-grid {
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .contact-page-section .contact-card-grid {
    grid-template-columns:1fr;
  }
}

/* Mobil sabit hızlı iletişim butonları */
.mobile-fixed-contact {
  display:none;
}

@media (max-width:640px) {
  body {
    padding-bottom:68px;
  }

  .mobile-fixed-contact {
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:999;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    box-shadow:0 -8px 26px rgba(20,30,35,.12);
  }

  .mobile-fixed-contact__item {
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    color:#fff;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
  }

  .mobile-fixed-contact__item img {
    width:19px;
    height:19px;
    display:block;
  }

  .mobile-fixed-contact__call img {
    filter:brightness(0) invert(1);
  }

  .mobile-fixed-contact__call {
    background:var(--green);
  }

  .mobile-fixed-contact__whatsapp {
    background:var(--green-2);
  }

  .mobile-fixed-contact__item:active {
    opacity:.92;
  }
}

/* Legal pages */
.legal-section {
  padding-bottom:72px
}

.legal-card {
  width:100%;
  max-width:none;
  margin:0;
  padding:44px 48px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 18px 45px rgba(36,
  50,
  42,
  .08)
}

.legal-block + .legal-block {
  margin-top:34px;
  padding-top:30px;
  border-top:1px solid #ece7df
}

.legal-block h2 {
  margin:0 0 14px;
  font-family:"Playfair Display",
  Georgia,
  serif;
  font-size:27px;
  line-height:1.25;
  color:var(--green);
  letter-spacing:-.02em
}

.legal-block p {
  margin:0 0 13px;
  color:#4d5e68;
  font-size:15px;
  line-height:1.85
}

.legal-block p:last-child {
  margin-bottom:0
}

.legal-block ul {
  margin:4px 0 17px;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px
}

.legal-block li {
  position:relative;
  padding-left:23px;
  color:#344650;
  font-size:15px;
  line-height:1.65
}

.legal-block li::before {
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green-2)
}

.legal-contact-box {
  padding:26px 28px;
  background:#f7f5ef;
  border:1px solid #e6dfd4;
  border-radius:12px
}

.legal-contact-box a {
  color:var(--green);
  font-weight:700
}

@media (max-width:820px) {
  .legal-card {
    padding:30px 22px;
    border-radius:12px
  }

  .legal-block h2 {
    font-size:23px
  }

  .legal-block p,
  .legal-block li {
    font-size:14px
  }

  .legal-contact-box {
    padding:22px 18px
  }
}

/* Mobile footer bottom alignment */
@media (max-width:820px) {
  .footer-bottom .bottom-inner {
    height:auto;
    padding:14px 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    text-align:center;
  }

  .footer-bottom .footer-copyright,
  .footer-bottom .footer-credit {
    width:100%;
    margin:0;
    text-align:center;
    line-height:1.5;
  }
}


/* Product gallery */
.product-gallery-wrap {
  display:grid;
  gap:14px;
}

.product-gallery-thumbs {
  display:flex;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 2px 10px;
  max-width:100%;
  scrollbar-width:thin;
  scroll-snap-type:x proximity;
}

.product-gallery-thumbs::-webkit-scrollbar {
  height:6px;
}

.product-gallery-thumbs::-webkit-scrollbar-track {
  background:#f1eee6;
  border-radius:999px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background:rgba(0, 80, 45, .35);
  border-radius:999px;
}

.product-gallery-thumb {
  flex:0 0 74px;
  width:74px;
  padding:0;
  border:2px solid transparent;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(20, 30, 35, .08);
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  scroll-snap-align:start;
}

.product-gallery-thumb img {
  width:100%;
  height:68px;
  object-fit:cover;
  display:block;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible,
.product-gallery-thumb.is-active {
  border-color:var(--green);
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(20, 30, 35, .12);
}

@media (max-width:520px) {
  .product-gallery-thumb {
    flex-basis:68px;
    width:68px;
  }

  .product-gallery-thumb img {
    height:62px;
  }
}
