* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #222;
  background: #faf9f6;
  font-family: "DM Sans", Arial, sans-serif;
}


/* =========================
   ÜST BİLGİ
========================= */

.topbar {
  width: 100%;
  padding: 11px 15px;

  text-align: center;

  background: #eee9df;
  color: #3f3a34;

  font-size: 10px;
  letter-spacing: .14em;
}


/* =========================
   HEADER
========================= */

.header {
  width: 100%;
  height: 82px;

  display: flex;
  align-items: center;

  padding: 0 4%;
  gap: 35px;

  background: #fff;

  position: sticky;
  top: 0;

  z-index: 50;

  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  flex-direction: column;

  color: #222;
  text-decoration: none;

  line-height: 1;
}

.logo span {
  font-family: "Playfair Display", Georgia, serif;

  font-size: 28px;
  letter-spacing: .16em;
}

.logo small {
  margin-top: 6px;

  text-align: center;

  font-size: 8px;
  letter-spacing: .24em;
}

.header nav {
  flex: 1;

  display: flex;
  justify-content: center;

  gap: 30px;
}

.header nav a {
  color: #222;

  text-decoration: none;

  font-size: 10px;
  letter-spacing: .12em;
}

.header-actions {
  display: flex;
  align-items: center;

  gap: 10px;
}

.icon-btn {
  border: 0;
  background: transparent;

  color: #222;

  font-size: 25px;

  cursor: pointer;

  text-decoration: none;
}

.menu {
  display: none;
}


/* =========================
   HERO
========================= */

.hero {
  height: 650px;

  position: relative;

  overflow: hidden;

  background: #c8c0b3;
}

.hero-photo {
  position: absolute;

  inset: 0;
}

.hero-fallback {
  width: 100%;
  height: 100%;

  background:
    radial-gradient(
      circle at 29% 35%,
      #e7dfd2 0 12%,
      transparent 13%
    ),
    linear-gradient(
      115deg,
      #b1a38e,
      #d8d1c4 48%,
      #8d9898
    );
}

.hero-photo::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20,20,20,.05),
      rgba(20,20,20,.08) 45%,
      rgba(20,20,20,.30)
    );
}


/* =========================
   İK AMBLEM
========================= */

.hero-emblem {
  position: absolute;

  top: 10%;
  left: 10%;

  width: 220px;
  height: 220px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(67,54,42,.78);

  background: rgba(245,240,230,.94);

  color: #3d3024;

  z-index: 10;

  box-shadow:
    0 12px 35px rgba(0,0,0,.14);
}

.hero-emblem::before {
  content: "";

  position: absolute;

  inset: 8px;

  border-radius: 50%;

  border: 1px solid rgba(67,54,42,.35);
}

.emblem-monogram {
  position: relative;

  z-index: 2;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 72px;

  font-weight: 400;

  line-height: .9;

  letter-spacing: .02em;
}

.emblem-line {
  position: relative;

  z-index: 2;

  width: 58px;
  height: 1px;

  margin: 14px 0 9px;

  background: #5a4938;
}

.emblem-text {
  position: relative;

  z-index: 2;

  font-size: 9px;

  letter-spacing: .25em;
}

.emblem-year {
  position: relative;

  z-index: 2;

  margin-top: 9px;

  font-size: 8px;

  letter-spacing: .28em;
}


/* =========================
   HERO YAZI
========================= */

.hero-copy {
  position: absolute;

  z-index: 5;

  right: 8%;

  top: 50%;

  transform: translateY(-50%);

  max-width: 550px;

  color: #fff;
}

.hero-copy p {
  margin: 0 0 14px;

  font-size: 11px;

  letter-spacing: .25em;
}

.hero-copy h1 {
  margin: 0 0 20px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 66px;

  font-weight: 400;

  line-height: .98;
}

.hero-copy span {
  display: block;

  max-width: 480px;

  font-size: 15px;

  line-height: 1.6;
}

.button {
  display: inline-block;

  margin-top: 28px;

  padding: 17px 28px;

  background: #252525;

  color: #fff;

  text-decoration: none;

  font-size: 11px;

  letter-spacing: .14em;
}

.hero-dots {
  position: absolute;

  bottom: 20px;

  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  font-size: 15px;

  z-index: 5;
}


/* =========================
   AVANTAJLAR
========================= */

.benefits {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;

  padding: 34px 5%;

  background: #fff;
}

.benefits div {
  display: flex;

  align-items: center;

  gap: 15px;
}

.benefits b {
  font-size: 27px;

  font-weight: 400;
}

.benefits span {
  color: #777;

  font-size: 11px;

  line-height: 1.5;
}

.benefits strong {
  display: block;

  margin-bottom: 3px;

  color: #222;

  font-size: 11px;

  letter-spacing: .04em;
}


/* =========================
   GENEL SEKSİYON
========================= */

.section {
  padding: 85px 4%;
}

.section-head {
  text-align: center;
}

.section-head p {
  margin: 0;

  font-size: 10px;

  letter-spacing: .24em;
}

.section-head h2 {
  margin: 8px 0 30px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 43px;

  font-weight: 400;
}


/* =========================
   KATEGORİLER
========================= */

.category-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 5px;
}

.category-card {
  position: relative;

  height: 330px;

  display: flex;
  flex-direction: column;

  justify-content: flex-end;

  padding: 28px;

  border: 0;

  overflow: hidden;

  color: #fff;

  cursor: pointer;

  background-size: cover;

  background-position: center;

  text-align: left;
}

.category-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.65),
      transparent 65%
    );
}

.category-card span,
.category-card em {
  position: relative;

  z-index: 2;
}

.category-card span {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 24px;
}

.category-card em {
  width: max-content;

  margin-top: 12px;

  padding: 9px 13px;

  border: 1px solid #fff;

  font-size: 9px;

  font-style: normal;

  letter-spacing: .08em;
}

.cat-gomlek {
  background:
    linear-gradient(
      rgba(0,0,0,.05),
      rgba(0,0,0,.55)
    ),
    url("/IMG_0650.png");
}

.cat-pantolon {
  background:
    linear-gradient(
      rgba(0,0,0,.05),
      rgba(0,0,0,.55)
    ),
    url("/IMG_0647.png");
}

.cat-sort {
  background:
    linear-gradient(
      rgba(0,0,0,.05),
      rgba(0,0,0,.55)
    ),
    url("/IMG_1276.jpeg");
}

.cat-elbise {
  background:
    linear-gradient(
      rgba(0,0,0,.05),
      rgba(0,0,0,.55)
    ),
    url("/IMG_0647.png");
}


/* =========================
   KADIN ERKEK
========================= */

.gender-switch {
  display: flex;

  justify-content: center;

  gap: 35px;

  margin-bottom: 20px;
}

.gender-btn {
  padding: 8px 2px;

  border: 0;

  border-bottom: 1px solid transparent;

  background: transparent;

  color: #777;

  font-family: inherit;

  font-size: 10px;

  letter-spacing: .18em;

  cursor: pointer;
}

.gender-btn.active {
  color: #222;

  border-bottom-color: #222;
}


/* =========================
   FİLTRELER
========================= */

.filters {
  display: flex;

  justify-content: center;

  gap: 24px;

  flex-wrap: wrap;
}

.filters button {
  padding: 7px 0;

  border: 0;

  border-bottom: 1px solid transparent;

  background: transparent;

  font-family: inherit;

  font-size: 10px;

  letter-spacing: .12em;

  cursor: pointer;
}

.filters button.active {
  border-bottom-color: #222;
}


/* =========================
   ÜRÜNLER
========================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 24px;

  margin-top: 45px;
}

.product-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 3 / 4;

  background:
    linear-gradient(
      145deg,
      #ddd6ca,
      #b8ad9e
    );
}

.product-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.heart {
  position: absolute;

  top: 10px;
  right: 10px;

  width: 34px;
  height: 34px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  font-size: 18px;

  cursor: pointer;
}

.product-info {
  padding: 12px 2px;
}

.product-info h3 {
  margin: 0 0 7px;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: .06em;
}

.price {
  font-size: 12px;
}

.swatches {
  display: flex;

  gap: 6px;

  margin-top: 10px;
}

.swatches i {
  width: 12px;
  height: 12px;

  display: block;

  border: 1px solid #aaa;

  border-radius: 50%;

  background: #c8bda9;
}

.swatches i:nth-child(2) {
  background: #514c44;
}

.swatches i:nth-child(3) {
  background: #ddd;
}

.load-more {
  display: block;

  margin: 45px auto 0;

  padding: 15px 28px;

  border: 0;

  background: #222;

  color: #fff;

  font-size: 10px;

  letter-spacing: .13em;

  cursor: pointer;
}

.empty-products {
  grid-column: 1 / -1;

  padding: 60px 20px;

  text-align: center;
}

.empty-products span {
  font-size: 10px;

  letter-spacing: .2em;
}

.empty-products h3 {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 28px;

  font-weight: 400;
}


/* =========================
   MARKA
========================= */

.brand-banner {
  padding: 105px 20px;

  text-align: center;

  background: #e8e1d5;
}

.brand-banner p {
  font-size: 10px;

  letter-spacing: .24em;
}

.brand-banner h2 {
  margin: 12px 0 18px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 55px;

  font-weight: 400;

  line-height: 1;
}

.brand-banner span {
  color: #5e5a54;

  font-size: 13px;
}


/* =========================
   İLETİŞİM
========================= */

.contact {
  padding: 85px 20px;

  text-align: center;

  background: #fff;
}

.contact p {
  font-size: 10px;

  letter-spacing: .24em;
}

.contact h2 {
  margin: 10px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 42px;

  font-weight: 400;
}

.contact span {
  color: #666;

  font-size: 13px;
}

.contact-phones {
  display: flex;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;
}


/* =========================
   FOOTER
========================= */

footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 35px 5%;

  background: #202020;

  color: #fff;
}

.footer-brand {
  display: flex;

  flex-direction: column;
}

.footer-brand strong {
  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: 25px;

  letter-spacing: .15em;
}

.footer-brand span {
  font-size: 8px;

  letter-spacing: .25em;
}

footer > span,
footer > a {
  font-size: 10px;

  color: #fff;

  text-decoration: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .header nav {
    display: none;
  }

  .menu {
    display: block;
  }

  .header {
    justify-content: space-between;
  }

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

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

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

  .hero-copy {
    left: 7%;
    right: 7%;

    top: auto;
    bottom: 45px;

    transform: none;
  }

  .hero-copy h1 {
    font-size: 50px;
  }
}


/* =========================
   TELEFON
========================= */

@media (max-width: 520px) {

  .topbar {
    padding: 10px 8px;

    font-size: 8px;

    white-space: nowrap;
  }

  .header {
    height: 70px;

    padding: 0 17px;

    gap: 10px;
  }

  .logo span {
    font-size: 21px;
  }

  .logo small {
    font-size: 7px;
  }

  .header-actions {
    gap: 0;
  }

  .icon-btn {
    font-size: 23px;
  }


  /* HERO */

  .hero {
    height: 620px;
  }


  /* AMBLEM */

  .hero-emblem {
    top: 7%;

    left: 50%;

    width: 155px;
    height: 155px;

    transform: translateX(-50%);
  }

  .emblem-monogram {
    font-size: 48px;
  }

  .emblem-line {
    width: 40px;

    margin: 8px 0 6px;
  }

  .emblem-text {
    font-size: 6px;

    letter-spacing: .20em;
  }

  .emblem-year {
    margin-top: 6px;

    font-size: 6px;

    letter-spacing: .25em;
  }


  /* HERO YAZI */

  .hero-copy {
    left: 7%;
    right: 7%;

    bottom: 38px;

    top: auto;

    transform: none;
  }

  .hero-copy p {
    font-size: 8px;

    letter-spacing: .22em;
  }

  .hero-copy h1 {
    margin: 10px 0 15px;

    font-size: 43px;

    line-height: .98;
  }

  .hero-copy span {
    font-size: 13px;

    line-height: 1.5;
  }

  .button {
    width: auto;

    margin-top: 20px;

    padding: 15px 23px;
  }


  /* AVANTAJLAR */

  .benefits {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 30px 25px;
  }


  /* SEKSİYON */

  .section {
    padding: 65px 16px;
  }

  .section-head h2 {
    font-size: 34px;
  }


  /* KATEGORİ */

  .category-grid {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .category-card {
    height: 260px;
  }


  /* ÜRÜN */

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

    gap: 13px;

    margin-top: 30px;
  }

  .product-info h3 {
    font-size: 10px;
  }

  .price {
    font-size: 11px;
  }


  /* MARKA */

  .brand-banner {
    padding: 75px 20px;
  }

  .brand-banner h2 {
    font-size: 42px;
  }


  /* İLETİŞİM */

  .contact {
    padding: 70px 20px;
  }

  .contact h2 {
    font-size: 35px;
  }

  .contact-phones {
    flex-direction: column;
  }

  .contact-phones .button {
    width: 100%;
  }


  /* FOOTER */

  footer {
    flex-direction: column;

    gap: 18px;

    text-align: center;
  }

}
.product-photo {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #111;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
}
.product-thumbnails {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
}

.product-thumbnails img {
  width: 55px;
  height: 70px;
  object-fit: cover;
  cursor: zoom-in;
  flex-shrink: 0;
}

.product-thumbnails img:hover {
  opacity: 0.75;
}
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
  overflow-x: auto;
}

.product-thumbnails img {
  width: 55px !important;
  height: 70px !important;
  object-fit: cover !important;
  cursor: zoom-in;
  flex: 0 0 55px;
  border: 1px solid #ddd;
}

.product-thumbnails img:hover {
  opacity: 0.7;
}
