:root {
  --ink: #3c4858;
  --muted: #999;
  --nav: #54595f;
  --line: #e5e7eb;
  --pink: #e91e63;
  --chat: #a886cd;
  --font: "Roboto", Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  background: #fff;
  position: relative;
  z-index: 40;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 16.5% 1fr 16%;
  align-items: center;
  gap: 8px;
}
.brand img { width: 92px; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--nav);
  font-size: 15px;
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.is-active { border-bottom-color: var(--nav); }
.has-sub { position: relative; }
.has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
.caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--nav);
}
.sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 8px 0;
  z-index: 20;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub { display: block; }
.sub a { display: block; padding: 8px 14px; border: 0 !important; white-space: nowrap; }
.sub a:hover { background: #f6f6f6; }
.header-phone img { width: 150px; margin-left: auto; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #080808; }

.site-main { flex: 1; }

.hero { position: relative; background: #fff; }
.hero__img { width: 100%; }
.hero__video {
  display: flex;
  justify-content: center;
}
.hero__video video {
  width: min(560px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.hero__video--desktop { margin-top: -200px; margin-bottom: 0; }
.hero__video--mobile { display: none; }

.page-band { background: #fff; padding: 28px 16px 8px; }
.page-title,
.elementor-heading-title.page-title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #111;
  line-height: 1;
}
.elementor-heading-title {
  padding: 0;
  margin: 0;
  line-height: 1;
}
.elementor-heading-title.elementor-size-medium { font-size: 19px; font-weight: 500; }
.elementor-image-box-title { margin: 0 0 8px; font-size: 16px; font-weight: 600; }

.products-stage {
  min-height: 420px;
  background: var(--stage) center / cover no-repeat;
  display: grid;
  place-items: center;
  padding: 40px 16px 80px;
}
.product-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 5px 5px 9px rgba(0,0,0,.5);
  padding: 18px 22px 16px;
  text-align: center;
  width: min(280px, 100%);
  border: 1px groove #ddd;
}
.product-card img { margin: 0 auto 10px; max-height: 220px; object-fit: contain; }
.product-card h5 { margin: 0; text-align: center; }

.k2 {
  background: var(--stage) center / cover no-repeat;
  padding: 28px 16px 48px;
}
.k2__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 37% 1fr;
  gap: 18px;
  align-items: start;
}
.k2__title {
  margin: 0 auto 12px;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  border: 1px groove #ddd;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 500;
  width: fit-content;
  mix-blend-mode: luminosity;
}
.k2__photo {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  padding: 10px;
  border: 1px groove #ddd;
}
.k2__photo img {
  margin: 0 auto;
  max-height: 720px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.k2__specs {
  background: #fff;
  border-radius: 25px;
  border: 1px groove #ddd;
  padding: 18px 22px;
}
.k2__specs h5 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.k2__specs ul { margin: 0; padding: 0; list-style: none; }
.k2__specs li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 15px;
  line-height: 1.45;
}
.k2__specs li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #111;
}
.variants {
  max-width: 1140px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.variant {
  background: #fff;
  border-radius: 25px;
  border: 1px groove #ddd;
  padding: 16px 12px 18px;
  text-align: center;
  margin: 4px;
}
.variant img { width: 30%; margin: 0 auto 12px; }
.variant h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.variant__desc { font-size: 14px; line-height: 1.5; }

.belgeler { padding: 0 0 40px; }
.belgeler__hero { width: 100%; }
.belgeler__grid {
  max-width: 1100px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  padding: 0 16px;
}
.belgeler__grid--bottom { margin-top: 8px; }
.belgeler__item {
  margin: 0;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0,0,0,.5);
  padding: 8px;
  text-align: center;
}
.belgeler__item img { margin: 0 auto; max-height: 320px; object-fit: contain; }
.belgeler__item h5 { margin-top: 8px; font-weight: 500; font-size: 1rem; }

.uretim { padding: 28px 16px 48px; }
.carousel { max-width: 1100px; margin: 24px auto 0; position: relative; }
.carousel__track { position: relative; min-height: 420px; }
.carousel__slide {
  display: none;
  margin: 0;
}
.carousel__slide.is-active { display: block; }
.carousel__bg {
  width: 100%;
  height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #111;
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c5c5c5;
  cursor: pointer;
}
.carousel__dots button.is-active { background: #333; }

.contact { padding: 20px 0 0; }
.contact__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 10px 20px 30px;
  align-items: start;
}
.contact-form { display: grid; gap: 12px; margin-top: 28px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 2px;
}
.contact-form button {
  width: fit-content;
  background: var(--pink);
  color: #fff;
  border: 0;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}
.hp { position: absolute; left: -9999px; }
.form-ok { background: #e8f7ee; color: #14532d; padding: 10px 12px; border-radius: 8px; }
.addr { margin-bottom: 22px; }
.addr h4.hestia-title,
.addr h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin: 0 0 6px;
  color: #3c4858;
  font-weight: 500;
}
.addr h4 img, .addr h2 img { width: 25px; height: 25px; }
.addr p { margin: 0 0 4px; color: #999; font-size: 14px; }
.phone-gif { width: 150px; }
.contact__map { width: 100%; }
.contact__map iframe { display: block; width: 100%; }

.blog-hero {
  text-align: center;
  padding: 70px 16px 56px;
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
  color: #fff;
}
.blog-hero--post {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-hero__overlay {
  background: rgba(0,0,0,.45);
  padding: 70px 16px 56px;
}
.blog-hero .hestia-title,
.blog-hero h1.hestia-title { margin: 0; font-size: 42px; font-weight: 500; }
.blog-hero .author { margin: 12px 0 0; font-weight: 400; font-size: 16px; }
.blog-list { padding: 40px 16px 80px; }
.blog-list__inner { max-width: 900px; margin: 0 auto; }
.card-blog { margin-bottom: 36px; }
.card-blog__row { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: start; }
.card-blog--no-image .card-blog__row { grid-template-columns: 1fr; }
.card-blog__media img { width: 100%; border-radius: 6px; }
.card-blog .category { margin: 0 0 8px; font-size: 12px; text-transform: uppercase; color: #00bcd4; }
.card-blog .card-title { margin: 0 0 10px; font-size: 26px; font-weight: 500; }
.card-blog .card-description { color: #999; font-size: 14px; line-height: 1.6; }
.card-blog .posted-by { margin-top: 12px; color: #999; font-size: 13px; }
.blog-post { padding: 40px 16px 80px; }
.blog-post__inner { max-width: 760px; margin: 0 auto; line-height: 1.7; }
.blog-post__inner h2, .blog-post__inner h3, .blog-post__inner h4 { margin-top: 1.4em; }
.lang-page { max-width: 760px; margin: 0 auto; padding: 60px 16px 80px; text-align: center; }
.lang-page__link { margin-top: 20px; }

.simple__head {
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
  color: #fff;
  text-align: center;
  padding: 70px 16px 56px;
}
.simple__head h1 { margin: 0; font-size: 42px; font-weight: 500; }
.simple__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  min-height: 180px;
}
.simple__body blockquote {
  margin: 1.5em 0;
  padding: 12px 20px;
  border-left: 4px solid #e91e63;
  background: #f9f9f9;
  color: #555;
}
.simple__body blockquote p { margin: 0; }

.wp-home { max-width: 1140px; }
.wp-home__features { text-align: center; padding-bottom: 40px; }
.wp-home__heading { color: #3c4858; font-size: 28px; font-weight: 500; margin: 0 0 40px; text-align: center; }
.wp-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wp-home__icon { margin: 0 0 12px; text-align: center; }
.wp-home__icon img { max-width: 64px; height: auto; }
.wp-home__sub { color: #3c4858; font-size: 18px; font-weight: 500; text-align: center; margin: 0 0 8px; }
.wp-home__text { color: #999; font-size: 14px; text-align: center; margin: 0 0 25px; line-height: 1.6; }
.wp-home__about {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 32px;
  align-items: start;
  padding-top: 55px;
}
.wp-home__about-text h2 { color: #3c4858; font-size: 28px; margin: 0 0 16px; }
.wp-home__about-text p { line-height: 1.7; }
.wp-home__about-img { margin: 0; }
.wp-home__about-img img { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  .wp-home__grid { grid-template-columns: 1fr; }
  .wp-home__about { grid-template-columns: 1fr; padding-top: 24px; }
}

.site-footer {
  position: relative;
  margin-top: auto;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(at top left, #fff 25%, #000 100%);
  opacity: .66;
  mix-blend-mode: darken;
  pointer-events: none;
}
.site-footer__shape {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 155px;
  transform: translateY(-99%);
  pointer-events: none;
}
.site-footer__shape svg { display: block; width: calc(100% + 1.3px); height: 155px; }
.site-footer__shape .fill { fill: #111; }
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.site-footer .brand img { width: 92px; }
.site-footer p { margin: 0; font-size: 14px; }

.chaty {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.chaty__panel { display: grid; gap: 8px; }
.chaty__panel[hidden] { display: none; }
.chaty__item {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.chaty__item--phone { background: #a886cd; }
.chaty__item--wa { background: #25d366; }
.chaty__fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--chat);
  color: #fff;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.chaty__badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #dd0000;
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.chaty__cta {
  position: absolute;
  right: 64px;
  bottom: 12px;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .k2__grid { grid-template-columns: 1fr; }
  .variants { grid-template-columns: 1fr 1fr; }
  .hero__video--desktop { margin-top: -80px; }
}
@media (max-width: 860px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .main-nav.is-open { display: flex; }
  .has-sub .sub { position: static; box-shadow: none; display: block; }
  .header-phone { display: none; }
  .contact__grid, .belgeler__grid { grid-template-columns: 1fr; }
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: flex; margin: 12px 0; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .simple__head h1 { font-size: 28px; }
  .carousel__bg { height: 260px; }
  .card-blog__row { grid-template-columns: 1fr; }
  .blog-hero .hestia-title, .blog-hero h1.hestia-title { font-size: 28px; }
}
@media (max-width: 640px) {
  .variants { grid-template-columns: 1fr; }
}
