:root {
  --fason-bg: #ffffff;
  --fason-surface: #f8fafc;
  --fason-text: #111827;
  --fason-muted: #6b7280;
  --fason-border: #e5e7eb;
  --fason-accent: #2563eb;
  --fason-radius: 8px;
  --fason-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--fason-bg);
  color: var(--fason-text);
}

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

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

a {
  color: inherit;
}

.fason-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .72), transparent 42%),
    linear-gradient(90deg, #fbf5ed 0%, #fffaf4 52%, #f8efe5 100%);
  box-shadow: 0 1px 0 rgba(97, 65, 42, .06);
}

.fason-header__inner {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 156px;
  align-items: center;
  gap: 26px;
  min-height: 100px;
  width: 100%;
  max-width: min(calc(var(--fason-max) + clamp(28px, 6.25vw, 100px) * 2), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(28px, 5.25vw, 96px);
  padding-right: clamp(28px, 5.25vw, 96px);
  box-sizing: border-box;
}

.fason-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #414244;
  text-decoration: none;
  white-space: nowrap;
}

.fason-header__logo-img {
  width: auto;
  max-width: 170px;
  max-height: 50px;
  object-fit: contain;
}

.fason-header__logo-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 47px;
  height: 47px;
  color: #b98662;
}

.fason-header__logo-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.fason-header__logo-mark circle,
.fason-header__logo-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fason-header__logo-mark circle {
  stroke-width: 1.55;
}

.fason-header__logo-mark path {
  stroke-width: 1.85;
}

.fason-header__logo-copy {
  display: grid;
  gap: 2px;
}

.fason-header__logo-title {
  color: #414244;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .012em;
}

.fason-header__logo-sub {
  color: #6f625a;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .17em;
}

.fason-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.fason-header__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.52vw, 34px);
}

.fason-header__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 100px;
}

.fason-header__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #36383d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .018em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease;
}

.fason-header__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 48px;
  height: 1px;
  background: #c9875f;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.fason-header__link:hover,
.fason-header__link.is-active {
  color: #c9875f;
}

.fason-header__link:hover::after,
.fason-header__link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

@media (min-width: 901px) {
  .fason-header__dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    min-width: 220px;
    padding: 12px;
    background: rgba(255, 250, 244, .98);
    border: 1px solid rgba(185, 134, 98, .22);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(72, 52, 36, .16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .fason-header__item.has-dropdown:hover .fason-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.fason-header__dropdown-link {
  display: block;
  padding: 10px 12px;
  color: #36383d;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.fason-header__dropdown-link:hover {
  color: #b97752;
  background: rgba(201, 135, 95, .09);
}

.fason-header__dropdown-link.is-heading {
  color: #b97752;
  font-weight: 800;
  text-transform: uppercase;
}

.fason-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  min-height: 48px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(180deg, #e4ad78 0%, #c87954 54%, #b86c4d 100%);
  border: 1px solid rgba(176, 99, 67, .34);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    0 9px 18px rgba(177, 96, 58, .28);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}

.fason-header__cta:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 12px 22px rgba(177, 96, 58, .32);
}

.fason-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #36383d;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.fason-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

/* Mobile-menu-only sections: hidden on desktop, enabled inside the
   max-width: 900px breakpoint below. */
.fason-header__mobile-cta,
.fason-header__link-icon,
.fason-header__link-chevron,
.fason-header__promo,
.fason-header__social,
.fason-header__contact,
.fason-header__legal {
  display: none;
}

html.fason-menu-open,
body.fason-menu-open {
  overflow: hidden;
  height: 100%;
}

body.fason-menu-open {
  position: fixed;
  width: 100%;
}

.fason-page {
  width: min(100% - 32px, var(--fason-max));
  margin: 0 auto;
  padding: 64px 0;
}

.fason-page__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.fason-page__eyebrow {
  margin: 0 0 10px;
  color: var(--fason-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fason-page__header h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.fason-page__header p:not(.fason-page__eyebrow) {
  margin: 16px 0 0;
  color: var(--fason-muted);
  line-height: 1.7;
}

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

.fason-grid--blog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Blog kartlari: 4'lu duzende temiz, esit yukseklikli ve hareketli gorunum */
.fason-grid--blog .fason-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fason-grid--blog .fason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 124, 91, .45);
  box-shadow: 0 14px 30px rgba(60, 40, 25, .12);
}

.fason-grid--blog .fason-card__media {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.fason-grid--blog .fason-card__media img {
  object-fit: cover;
}

.fason-grid--blog .fason-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  padding: 16px 16px 18px;
}

.fason-grid--blog .fason-card__body h2 {
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fason-grid--blog .fason-card__body p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fason-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.fason-card__media {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
}

.fason-card__media--wide {
  min-height: auto;
}

.fason-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fason-card__media--wide img,
.fason-article__cover img {
  object-fit: cover;
}

.fason-card__body h2,
.fason-card__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.fason-card__body p,
.fason-lead {
  margin: 0;
  color: var(--fason-muted);
  line-height: 1.65;
}

.fason-price {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-weight: 700;
}

.fason-price s {
  color: var(--fason-muted);
  font-weight: 400;
}

.fason-price--large {
  font-size: 22px;
}

.fason-empty {
  padding: 36px;
  color: var(--fason-muted);
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
}

.fason-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 48px;
  align-items: start;
}

.fason-detail__media {
  display: grid;
  place-items: center;
  min-height: 480px;
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
  overflow: hidden;
}

.fason-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fason-detail__info h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.fason-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fason-button,
.fason-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--fason-accent);
  border: 1px solid var(--fason-accent);
  border-radius: var(--fason-radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.fason-content {
  max-width: 820px;
  margin-top: 56px;
  color: var(--fason-text);
  font-size: 17px;
  line-height: 1.8;
}

.fason-content :first-child {
  margin-top: 0;
}

.fason-content img {
  height: auto;
  margin: 24px 0;
  border-radius: var(--fason-radius);
}

.fason-search-form {
  display: flex;
  gap: 10px;
  max-width: 640px;
  margin-bottom: 36px;
}

.fason-search-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  color: var(--fason-text);
  background: #ffffff;
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
}

.fason-section {
  margin-top: 42px;
}

.fason-section h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.fason-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fason-list a {
  display: block;
  padding: 14px 16px;
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
  text-decoration: none;
}

.fason-article__inner {
  max-width: 860px;
  margin: 0 auto;
}

.fason-article__cover {
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: var(--fason-radius);
  aspect-ratio: 16 / 9;
}

.fason-article__cover img {
  width: 100%;
  height: 100%;
}

.fason-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.fason-tags span {
  padding: 6px 10px;
  color: var(--fason-muted);
  background: var(--fason-surface);
  border: 1px solid var(--fason-border);
  border-radius: 999px;
  font-size: 12px;
}

/* Orta ekran: blog 4'ten 3'e dussun */
@media (max-width: 1180px) {
  .fason-grid--blog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .fason-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 78px;
  }

  .fason-header__brand {
    gap: 10px;
  }

  .fason-header__logo-mark {
    width: 40px;
    height: 40px;
  }

  .fason-header__logo-title {
    font-size: 18px;
  }

  .fason-header__logo-sub {
    font-size: 7px;
  }

  .fason-header__toggle {
    display: inline-block;
    order: 3;
    position: relative;
    z-index: 101;
  }

  .fason-header__toggle span {
    transition: transform .2s ease, opacity .2s ease;
  }

  .fason-header.is-menu-open .fason-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .fason-header.is-menu-open .fason-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .fason-header.is-menu-open .fason-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .fason-header__nav {
    position: fixed;
    inset: 78px 0 0 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px 28px;
    width: 100%;
    overflow-y: auto;
    background: #fdf8f2;
    box-shadow: 0 18px 42px rgba(72, 52, 36, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    -webkit-overflow-scrolling: touch;
  }

  .fason-header.is-menu-open .fason-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* CTA */
  .fason-header__mobile-cta {
    display: block;
    width: 100%;
  }

  .fason-header__mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 60px;
    padding: 0 26px;
    color: #ffffff;
    background: linear-gradient(180deg, #e4ad78 0%, #c87954 54%, #b86c4d 100%);
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .32),
      0 9px 18px rgba(177, 96, 58, .28);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .fason-header__mobile-cta-btn .fason-home-icon {
    width: 20px;
    height: 20px;
  }

  /* Nav list */
  .fason-header__list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
  }

  .fason-header__item {
    display: block;
    min-height: 0;
  }

  .fason-header__link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid rgba(170, 124, 91, .14);
    border-radius: 14px;
    color: #3a332f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }

  .fason-header__link::after {
    content: none;
  }

  .fason-header__link.is-active {
    color: #a9603c;
    background: linear-gradient(90deg, rgba(228, 173, 120, .18), rgba(255, 255, 255, .6));
    border-color: rgba(201, 135, 95, .32);
    box-shadow: inset 4px 0 0 #c9875f;
  }

  .fason-header__link-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: #c9875f;
    background: #f7ece3;
    border-radius: 50%;
  }

  .fason-header__link-icon .fason-home-icon {
    width: 18px;
    height: 18px;
  }

  .fason-header__link-label {
    flex: 1;
    min-width: 0;
  }

  .fason-header__link-chevron {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #cbb09a;
    transition: transform .2s ease;
  }

  .fason-header__link-chevron .fason-home-icon {
    width: 16px;
    height: 16px;
  }

  .fason-header__item.is-open > .fason-header__link .fason-header__link-chevron {
    transform: rotate(180deg);
  }

  .fason-header__item .fason-header__dropdown {
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 4px 0 0;
    padding: 0 12px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .25s ease;
  }

  .fason-header__item.is-open .fason-header__dropdown {
    max-height: 600px;
    padding: 4px 12px 10px;
  }

  .fason-header__dropdown-link {
    width: 100%;
    box-sizing: border-box;
    color: #3a332f;
    font-size: 12px;
    text-align: left;
    text-transform: none;
    white-space: normal;
    background: rgba(255, 255, 255, .55);
    border-radius: 10px;
    margin-bottom: 4px;
  }

  .fason-header__dropdown-link:hover {
    color: #b97752;
    background: rgba(201, 135, 95, .12);
  }

  .fason-header__dropdown-link.is-heading {
    background: transparent;
    color: #b97752;
  }

  /* Promo card */
  .fason-header__promo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(105deg, rgba(228, 173, 120, .18), rgba(255, 255, 255, .7));
    border: 1px solid rgba(201, 135, 95, .16);
    border-radius: 18px;
  }

  .fason-header__promo-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    color: #c9875f;
    background: #ffffff;
    border-radius: 50%;
  }

  .fason-header__promo-icon .fason-home-icon {
    width: 24px;
    height: 24px;
  }

  .fason-header__promo p {
    margin: 0;
    color: #5b4a3c;
    font-size: 12px;
    line-height: 1.65;
  }

  .fason-header__promo p strong {
    color: #c9875f;
  }

  /* Social */
  .fason-header__social {
    display: block;
    text-align: center;
  }

  .fason-header__social-title {
    display: block;
    margin-bottom: 12px;
    color: #9a8b7e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .fason-header__social-list {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .fason-header__social-link {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #c9875f;
    background: #f7ece3;
    border-radius: 50%;
  }

  .fason-header__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  /* Contact */
  .fason-header__contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(170, 124, 91, .16);
  }

  .fason-header__contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fason-header__contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: #c9875f;
    background: #f7ece3;
    border-radius: 50%;
  }

  .fason-header__contact-icon .fason-home-icon {
    width: 16px;
    height: 16px;
  }

  .fason-header__contact-item strong {
    display: block;
    margin-bottom: 2px;
    color: #9a8b7e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .fason-header__contact-item a,
  .fason-header__contact-item span {
    color: #3a332f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    word-break: break-word;
  }

  /* Legal */
  .fason-header__legal {
    display: block;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid rgba(170, 124, 91, .16);
  }

  .fason-header__copyright {
    margin: 0 0 8px;
    color: #9a8b7e;
    font-size: 11px;
  }

  .fason-header__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    color: #9a8b7e;
    font-size: 11px;
  }

  .fason-header__legal-links a {
    color: #9a8b7e;
    text-decoration: underline;
  }

  .fason-grid,
  .fason-detail {
    grid-template-columns: 1fr;
  }

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

  .fason-detail__media {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .fason-header__inner {
    gap: 12px;
  }

  .fason-header__logo-img {
    max-width: 178px;
    max-height: 48px;
  }

  .fason-header__logo-title {
    font-size: 16px;
  }

  .fason-header__cta {
    display: none;
  }

  .fason-page {
    width: min(100% - 24px, var(--fason-max));
    padding: 40px 0;
  }

  .fason-search-form {
    flex-direction: column;
  }

  .fason-grid--blog {
    grid-template-columns: 1fr;
  }
}
