:root {
  --bg: #f5f4f2;
  --text: #171513;
  --muted: #7d7770;
  --gold: rgb(163, 114, 41);
  --dark: #181311;
  --border: #e6e0d9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f8f7f5;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.imglogo{
  margin-top: .3125rem;
  height: 5rem;
}
.brand-emblem {
  width: 72px;
  height: 34px;
  border: 2px solid #b79b69;
  background: #1f2b31;
  clip-path: polygon(6% 0, 94% 0, 100% 50%, 94% 100%, 6% 100%, 0 50%);
  position: relative;
  flex-shrink: 0;
}

.brand-emblem::before {
  content: "✶ ✶ ✶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #e7d38c;
  font-size: 8px;
  letter-spacing: 2px;
}

.brand strong {
  font-family: Inter, sans-serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.brand small {
  display: block;
  color: #8f8880;
  letter-spacing: 2.4px;
  font-size: 10px;
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #6d6963;
  align-items: center;
}

.nav a,
.dropdown-toggle {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dropdown-toggle {
  font: inherit;
  color: inherit;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
}

.nav a:hover,
.dropdown-toggle:hover {
  color: #1f1b17;
  border-bottom-color: rgba(163, 114, 41, 0.55);
}

.nav a.active,
.dropdown-toggle.active,
.dropdown.open .dropdown-toggle {
  color: #1f1b17;
  border-bottom-color: var(--gold);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
  box-shadow: 0 12px 28px rgba(24, 19, 17, 0.08);
  z-index: 30;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  max-height: 420px;
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: #1f1b17;
  border-bottom-color: rgba(163, 114, 41, 0.55);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.home-hero {
  background: url("../img/hero2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero {
  min-height: 460px;
  background: url("../img/infohero.png");
  background-size: cover;
  background-position:center;

}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #ab8d68;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.02;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #e8e1d9;
  max-width: 600px;
}

.actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 19, 17, 0.14);
}

.btn-light {
  background: #fff;
  color: #1b1713;
}

.btn-light:hover {
  background: #f3efe9;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: rgb(144, 98, 31);
}

.section {
  padding: 50px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 30px;
}

.link {
  color: #6e675e;
  font-size: 14px;
}

.cards {
  display: grid;
  gap: 22px;
}

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

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

.product-card {
  background: transparent;
  position: relative;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  filter: saturate(1.05);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: #f4f2ef;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  transition: transform 0.28s ease;
}

.tag.dark {
  background: #151515;
  color: #fff;
}

.thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover .thumb {
  transform: scale(1.02);
  box-shadow: 0 20px 36px rgba(21, 18, 14, 0.18);
  border-color: rgba(163, 114, 41, 0.45);
}

.product-card:hover .tag {
  transform: translateY(-2px);
}

.t1 {
  background: url('../img/selected/017-erkek-gozluk-kilifi-modeli-933.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
.t2 {
    background: url('../img/selected/056-bayan-gozluk-kilifi-modeli-507.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.t3 {
    background: url('../img/selected/261-bayan-gozluk-kilifi-modeli-268.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.t4 {
    background: url('../img/selected/081-tam-citcitli-kilif-modeli-683.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.t5 {
    background: url('../img/selected/100-yarim-citcitli-kilif-modeli-619.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.t6 {
    background: url('../img/selected/240-yayli-gozluk-kilifi-modeli-303.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
.t7 {
    background: url('../img/selected/133-torbali-kilif-modeli-722.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-family: 'Inter';
  font-size: 13px;
  font-weight: 700;

}

.product-card strong {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  font-family: "Playfair Display", serif;
}

.light {
  margin-top: 20px;
  background: #f8f7f5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 720px;
}

.benefits {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.benefits article span {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--gold);
}

.benefits article h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.benefits article p {
  color: var(--muted);
  margin: 0;
}

.dark-cta {
  background: var(--dark);
  color: #fff;
}

.dark-cta p {
  color: #c8bfb5;
}

.site-footer {
  background: var(--dark);
  color: #d0c7bb;
  padding: 64px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 30px;
}

.foot-grid h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.foot-grid a,
.foot-grid p {
  display: block;
  margin: 0 0 10px;
  color: #b7ada0;
}

.foot-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c8174;
}

.foot-bottom div {
  display: flex;
  gap: 20px;
}

.split {
  display: block;
  text-align: center;
}

.split > * + * {
  margin-top: 50px;
}

.split article p {
  color: #67615b;
  font-size: 18px;
  line-height: 1.75;
}

.timeline {
  border-left: 0;
  padding-left: 0;
}

.timeline div {
  margin-bottom: 26px;
}

.timeline span {
  width: 46px;
  height: 46px;
  background: #efe9df;
  border-radius: 999px;
  color: #9a774f;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto;
}

.timeline h3 {
  font-size: 30px;
  margin-top: 8px;
}

.timeline p {
  color: #766f68;
}

.chip {
  border: 1px solid var(--border);
  background: #eee9e3;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(163, 114, 41, 0.45);
  background: #f3ede4;
}

.chip.active {
  background: #1a1714;
  color: #fff;
}

.mt-nav {
  padding-top: 50px;
}

.filters {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.model-gallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  background: transparent;
}

.gallery-card .tag {
  left: 10px;
  top: 10px;
}

.gallery-trigger {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;

}

.gallery-trigger img {
  width: 100%;
  
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-card:hover .gallery-trigger img {
  transform: scale(1.02);
  border-color: rgba(163, 114, 41, 0.45);
}

.gallery-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gallery-card p {
  margin: 0;
}

.gallery-card p + p {
  margin-top: 2px;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 26px;
}

.image-modal.open {
  display: flex;
}

.image-modal img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
}

.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.contact-layout {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
}

.contact-info > div {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info span {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin: auto 0 auto 0;
}

.contact-info h4 {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #8a847d;
  margin-bottom: 6px;
}

.map-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #f4f2ef;
  min-height: 430px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .cards.four,
  .benefits,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .model-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split,
  .contact-layout,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }
  .brand-emblem {
    width: 62px;
    height: 30px;
  }
  .brand strong {
    font-size: 20px;
  }
  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #f8f7f5;
    border: 0;
    border-radius: 0;
    padding: 110px 26px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    z-index: 40;
  }
  .nav a {
    font-size: 28px;
    color: #1f1b17;
  }
  .nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dropdown-toggle {
    font-size: 28px;
    color: #1f1b17;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
  }
  .dropdown-menu a {
    font-size: 18px;
    text-align: center;
    white-space: normal;
  }
  .nav.open {
    display: flex;
  }
  .menu-btn {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 50;
  }
  .cards.four,
  .benefits,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .model-gallery {
    grid-template-columns: 1fr;
  }
  .map-card,
  .map-frame {
    min-height: 320px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}