/**
 * Maison Francis Kurkdjian – inspired luxury perfume theme
 * Smell Kartell
 */
:root {
  --mfk-black: #111111;
  --mfk-white: #ffffff;
  --mfk-cream: #faf9f7;
  --mfk-gray: #6b6b72;
  --mfk-gray-light: #e5e5e5;
  --mfk-accent: #1a1a1a;
  --mfk-font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --mfk-font-body: "Helvetica Neue", Arial, sans-serif;
  --mfk-letter-wide: 0.16em;
  --mfk-transition: 0.2s ease;
}

body {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
  background-color: var(--mfk-white);
}

/* ----- Header MFK style ----- */
.mfk-header {
  background: var(--mfk-white);
  border-bottom: 1px solid var(--mfk-gray-light);
  font-size: 12px;
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
}

.mfk-header a {
  color: var(--mfk-black);
  text-decoration: none;
  transition: opacity var(--mfk-transition);
}

.mfk-header a:hover {
  opacity: 0.7;
}

/* Logo: büyük, sol köşede */
.mfk-header .mfk-logo {
  max-height: 88px;
  width: auto;
  display: block;
}

.mfk-header .mfk-logo img {
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Sağ üst ikonlar: ince çizgi, gri (fotoğraftaki gibi) */
.mfk-header .mfk-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mfk-gray);
  padding: 6px;
  transition: color var(--mfk-transition);
}

.mfk-header .mfk-header-icon:hover {
  color: var(--mfk-black);
}

.mfk-header .mfk-header-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.mfk-nav-bar {
  border-top: none;
  background: transparent;
}

/* Tek satır header içinde nav ortada */
#header .mfk-nav-bar .mfk-nav-link {
  margin: 0 14px;
}

.mfk-nav-link {
  display: inline-block;
  padding: 14px 0;
  margin: 0 20px 0 0;
  color: var(--mfk-black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
  position: relative;
}

.mfk-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--mfk-black);
  transition: width var(--mfk-transition);
}

.mfk-nav-link:hover::after,
.mfk-nav-link.active::after {
  width: 100%;
}

/* ----- Product cards MFK style ----- */
.mfk-product-card {
  text-align: center;
  margin-bottom: 2rem;
}

/* Eşit hizalama: aynı satırdaki kartlar aynı yükseklikte, buton altta hizalı */
.mfk-product-card .mfk-product-collection,
.mfk-product-card .mfk-product-title,
.mfk-product-card .mfk-product-price,
.mfk-product-card .mfk-product-notes {
  flex-shrink: 0;
}
.mfk-product-card .mfk-product-card-actions {
  flex-shrink: 0;
}

.mfk-product-card .mfk-product-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: var(--mfk-cream);
  aspect-ratio: 1 / 1.7;
}
.mfk-product-card .mfk-product-image a {
  display: block;
  height: 100%;
}
.mfk-product-card .mfk-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}

.mfk-product-card:hover .mfk-product-image img {
  transform: scale(1.02);
}

.mfk-product-card .mfk-product-collection {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mfk-gray);
  margin-bottom: 4px;
}

.mfk-product-card .mfk-product-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.mfk-product-card .mfk-product-title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-product-card .mfk-product-title a:hover {
  text-decoration: underline;
}

.mfk-product-card .mfk-product-type {
  font-size: 12px;
  color: var(--mfk-gray);
  margin-bottom: 6px;
}

.mfk-product-card .mfk-product-price {
  font-size: 13px;
  margin-bottom: 8px;
}

.mfk-product-card .mfk-product-price .from {
  color: var(--mfk-gray);
}

.mfk-product-card .mfk-product-notes {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mfk-gray);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.mfk-product-card .mfk-btn-atc {
  display: inline-block;
  padding: 12px 24px;
  background: #55565B;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mfk-product-card .mfk-btn-atc:hover {
  background: #45464b;
  color: #ffffff;
}

.mfk-product-card .mfk-btn-atc.mfk-btn-disabled {
  background: #9a9b9f;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.85;
}

/* ----- Section titles ----- */
.mfk-section-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.mfk-section-subtitle {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.mfk-section-subtitle a {
  color: var(--mfk-black);
  text-decoration: underline;
}

/* ----- Footer MFK style ----- */
.mfk-footer {
  background: var(--mfk-cream);
  padding: 3rem 0 2rem;
  font-size: 13px;
  color: var(--mfk-black);
}

.mfk-footer a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-footer a:hover {
  text-decoration: underline;
}

.mfk-footer-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.mfk-footer-newsletter input[type="email"] {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border: 1px solid var(--mfk-gray-light);
  background: var(--mfk-white);
  font-size: 14px;
}

.mfk-footer-newsletter button,
.mfk-footer-newsletter input[type="submit"] {
  margin-top: 10px;
  padding: 12px 24px;
  background: var(--mfk-black);
  color: var(--mfk-white);
  border: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.mfk-footer-bottom {
  border-top: 1px solid var(--mfk-gray-light);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 12px;
  color: var(--mfk-gray);
}

/* ----- Search overlay ----- */
.mfk-search-overlay {
  position: fixed;
  inset: 0;
  background: var(--mfk-white);
  z-index: 9999;
  display: none;
  padding: 2rem;
}

.mfk-search-overlay.is-open {
  display: block;
}

.mfk-search-overlay input {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  display: block;
  padding: 16px 0;
  border: none;
  border-bottom: 2px solid var(--mfk-black);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ----- Search sayfası: arama çubuğu + Unsere Vorschläge + 3 kategori ----- */
.mfk-search-page {
  background: var(--mfk-white);
  padding: 2rem 0 3rem;
}

.mfk-search-page__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.mfk-search-page__input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 600px;
}

.mfk-search-page__input {
  width: 100%;
  padding: 14px 36px 14px 0;
  border: none;
  border-bottom: 2px solid var(--mfk-black);
  background: transparent;
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  color: var(--mfk-black);
  letter-spacing: 0.02em;
}

.mfk-search-page__input::placeholder {
  color: var(--mfk-gray);
}

.mfk-search-page__input:focus {
  outline: none;
  border-bottom-color: var(--mfk-black);
}

.mfk-search-page__clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--mfk-gray);
  text-decoration: none;
  transition: color var(--mfk-transition);
}

.mfk-search-page__clear:hover {
  color: var(--mfk-black);
}

.mfk-search-page__submit {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px;
  padding: 12px 20px;
}

.mfk-search-page__suggestions-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--mfk-black);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ----- Hero üstü kategoriler: 5'li satır, yazı + altında logo ----- */
.mfk-hero-categories {
  background: var(--mfk-cream);
  padding: 1.25rem 0 1.5rem;
  border-bottom: none;
}

.mfk-hero-categories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: flex-end;
  gap: 1.75rem 0.85rem;
}

.mfk-hero-categories__item {
  margin: 0;
  width: 100%;
  max-width: 165px;
}

.mfk-hero-categories__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--mfk-black);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--mfk-transition);
  max-width: 100%;
}

.mfk-hero-categories__link:hover {
  opacity: 1;
}

.mfk-hero-categories__link:hover .mfk-hero-categories__text {
  text-decoration: underline;
}

.mfk-hero-categories__text {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-bottom: 0.7rem;
}

.mfk-hero-categories__logo-wrap {
  display: block;
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}

.mfk-hero-categories__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 576px) and (max-width: 991px) {
  .mfk-hero-categories__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobil: 5 üstte 5 altta, yana kaydırma yok */
@media (max-width: 575px) {
  .mfk-hero-categories__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem 0.5rem;
    justify-items: center;
  }
  .mfk-hero-categories__item {
    max-width: 96px;
  }
  .mfk-hero-categories__text {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 0.45rem;
  }
  .mfk-hero-categories__logo-wrap {
    width: 52px;
    height: 52px;
  }
}

/* ----- Hero / Banner ----- */
.mfk-hero {
  background: var(--mfk-cream);
  padding: 4rem 0;
  text-align: center;
}

/* Hero görünümden gizli (ana sayfada), kategoriler – Neueste Produkte arası boşluk kapalı */
.mfk-hero--hidden {
  display: none !important;
}

/* Kategoriler ile Neueste Produkte / Unsere Auswahl arası boşluk kapatıldı */
.mfk-hero-categories {
  padding-bottom: 0.75rem;
}

.mfk-home-products-first {
  padding-top: 1.25rem !important;
}

.mfk-hero-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.mfk-hero-logo-img {
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.mfk-hero-subtitle {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mfk-hero-subtitle a {
  color: var(--mfk-black);
  text-decoration: underline;
}

/* ----- Slider: viewport tam genişlik (üst container’dan taşar) ----- */
.mfk-slider.container,
.mfk-slider.mfk-slider--wide {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}
.mfk-slider.mfk-slider--wide .swiper-container,
.mfk-slider.mfk-slider--wide #mfk-hero-swiper,
.mfk-slider.mfk-slider--wide .swiper-wrapper,
.mfk-slider.mfk-slider--wide .swiper-slide {
  max-width: none !important;
  width: 100% !important;
}
.mfk-slider__item {
  overflow: hidden;
  width: 100%;
}
.mfk-slider__item .mfk-slider__media,
.mfk-slider__item img,
.mfk-slider__item video {
  width: 100% !important;
  height: auto;
  display: block;
  max-width: none !important;
}
.mfk-slider__link {
  display: block;
  line-height: 0;
}

/* ----- Mobil: slider üstte sıkışmasın, aşağı insin ----- */
@media (max-width: 767px) {
  .mfk-slider--web {
    padding-top: 2rem;
  }
  .mfk-slider--web .swiper-slide,
  .mfk-slider--web .mfk-slider__item {
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 2rem;
  }
  .mfk-slider--web .mfk-slider__item .mfk-slider__media,
  .mfk-slider--web .mfk-slider__item img,
  .mfk-slider--web .mfk-slider__item video {
    width: 100% !important;
    height: 100% !important;
    min-height: 42vh;
    object-fit: cover;
    object-position: center 72%;
  }
  .mfk-slider--web .mfk-slider__link {
    width: 100%;
    height: 100%;
    min-height: 42vh;
  }
  .mfk-slider--web .mfk-slider__link .mfk-slider__media {
    width: 100% !important;
    height: 100% !important;
    min-height: 42vh;
    object-fit: cover;
    object-position: center 72%;
  }
}

/* ----- Web: slider alanı dolu, görsel crop ile büyük görünsün ----- */
@media (min-width: 768px) {
  .mfk-slider--web {
    min-height: 52vh;
  }
  .mfk-slider--web .swiper-container,
  .mfk-slider--web #mfk-hero-swiper,
  .mfk-slider--web .swiper-wrapper,
  .mfk-slider--web .swiper-slide {
    height: 100%;
    min-height: 52vh;
  }
  .mfk-slider--web .mfk-slider__item {
    height: 100%;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mfk-slider--web .mfk-slider__item .mfk-slider__media,
  .mfk-slider--web .mfk-slider__item img,
  .mfk-slider--web .mfk-slider__item video {
    width: 100% !important;
    height: 100% !important;
    min-height: 52vh;
    object-fit: cover;
    object-position: center center;
  }
  .mfk-slider--web .mfk-slider__link {
    width: 100%;
    height: 100%;
    min-height: 52vh;
  }
  .mfk-slider--web .mfk-slider__link .mfk-slider__media {
    width: 100% !important;
    height: 100% !important;
    min-height: 52vh;
    object-fit: cover;
    object-position: center center;
  }
}

/* ========== Hero Slider (mobil + web uyumlu, sayfa bozulmaz) ========== */
.hero-slider {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  background: var(--mfk-black, #111);
  aspect-ratio: 16 / 9;
  max-height: 78vh;
}

@media (max-width: 767px) {
  .hero-slider {
    aspect-ratio: 4 / 3;
    max-height: 55vh;
  }
}

@media (min-width: 1200px) {
  .hero-slider {
    aspect-ratio: 21 / 9;
    max-height: 82vh;
  }
}

.hero-slider__swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider__swiper .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}

.hero-slider__swiper .swiper-slide {
  height: 100%;
  flex-shrink: 0;
}

.hero-slider__slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--mfk-black, #111);
}

.hero-slider__slide .hero-slider__media,
.hero-slider__slide .hero-slider__media--video,
.hero-slider__slide img,
.hero-slider__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  vertical-align: middle;
}

.hero-slider__link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero-slider__link .hero-slider__media,
.hero-slider__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-slider__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Pagination: altta ortada, dokunmatik dostu */
.hero-slider__pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero-slider__pagination {
    bottom: 0.75rem;
  }
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  background: var(--mfk-white, #fff);
  transform: scale(1.2);
}

@media (hover: hover) {
  .hero-slider__pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}

/* Ok butonları: masaüstü görünür, mobil küçük/touch */
.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
  .hero-slider__prev,
  .hero-slider__next {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.35);
  }
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-slider__prev:focus,
.hero-slider__next:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-slider__prev {
  left: 1rem;
}

.hero-slider__next {
  right: 1rem;
}

@media (max-width: 767px) {
  .hero-slider__prev {
    left: 0.5rem;
  }
  .hero-slider__next {
    right: 0.5rem;
  }
}

/* Swiper ok ikonları (varsayılan) – buton içinde ortala */
.hero-slider__prev::after,
.hero-slider__next::after {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-slider__prev::after,
  .hero-slider__next::after {
    font-size: 14px;
  }
}

/* ----- Product single (MFK-style, franciskurkdjian.com tarzı) ----- */
.mfk-product-single {
  font-family: var(--mfk-font-body);
}

.mfk-product-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mfk-product-breadcrumb a {
  color: var(--mfk-gray);
  text-decoration: none;
}

.mfk-product-breadcrumb a:hover {
  color: var(--mfk-black);
  text-decoration: underline;
}

.mfk-product-breadcrumb__sep {
  color: var(--mfk-gray);
  margin: 0 0.35rem;
}

.mfk-product-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mfk-gray);
  margin-bottom: 0.5rem;
}

.mfk-product-title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--mfk-black);
}

.mfk-product-single .mfk-product-title a {
  color: inherit;
  text-decoration: none;
}

.mfk-product-single .mfk-product-title a:hover {
  text-decoration: underline;
}

.mfk-product-price-block {
  margin-bottom: 1rem;
}

.mfk-product-single .mfk-product-price {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--mfk-black);
}

.mfk-product-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mfk-gray);
  margin-bottom: 1.5rem;
}

.mfk-product-variants__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--mfk-gray);
}

.mfk-product-variant-btn span {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: border-color var(--mfk-transition), background var(--mfk-transition);
}

.mfk-product-variant-btn span:hover,
.mfk-product-variant-btn span.active {
  border-color: var(--mfk-black) !important;
  background: var(--mfk-black);
  color: var(--mfk-white);
}

.mfk-product-qty .mfk-qty-input {
  font-size: 14px;
  -moz-appearance: textfield;
}

.mfk-product-qty .mfk-qty-input::-webkit-outer-spin-button,
.mfk-product-qty .mfk-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mfk-qty-btn {
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--mfk-black);
}

/* Sepete ekle butonu: koyu gri (#55565B), beyaz yazı, yuvarlatılmış köşe */
.mfk-product-atc,
.mfk-btn-atc.mfk-product-atc {
  background-color: #55565B;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.mfk-product-atc:hover:not(:disabled),
.mfk-btn-atc.mfk-product-atc:hover:not(:disabled) {
  background-color: #45464b;
  color: #ffffff;
}

.mfk-product-atc:disabled,
.mfk-btn-atc.mfk-product-atc:disabled {
  background-color: #9a9b9f;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.85;
}

.mfk-product-description__title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mfk-gray);
}

.mfk-product-description__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mfk-black);
}

.mfk-product-description__body p {
  margin-bottom: 1rem;
}

.mfk-product-related .mfk-product-card {
  margin-bottom: 0;
}

/* ----- Unsere Auswahl / EXKLUSIVE AUSWAHL (fotoğraftaki gibi) ----- */
.mfk-auswahl {
  background: var(--mfk-white);
}

.mfk-auswahl__title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  text-align: center;
  color: var(--mfk-black);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.mfk-auswahl__carousel {
  padding: 0 48px;
}

@media (max-width: 767px) {
  .mfk-auswahl__carousel {
    padding: 0 36px;
  }
}

.mfk-auswahl__nav {
  width: 44px;
  height: 44px;
  color: var(--mfk-gray);
  cursor: pointer;
  transition: color var(--mfk-transition);
  z-index: 2;
}

.mfk-auswahl__nav:hover {
  color: var(--mfk-black);
}

.mfk-auswahl__nav--prev {
  left: 0;
  transform: translateY(-50%);
}

.mfk-auswahl__nav--next {
  right: 0;
  transform: translateY(-50%);
}

.mfk-auswahl-card {
  text-align: center;
  padding-bottom: 0.5rem;
}

.mfk-auswahl-card__img-link {
  display: block;
  text-decoration: none;
}

.mfk-auswahl-card__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
}

.mfk-auswahl-card__img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.mfk-auswahl-card__badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 1;
}

.mfk-auswahl-card__body {
  padding: 0 0.5rem;
}

.mfk-auswahl-card__name {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.mfk-auswahl-card__name a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-auswahl-card__name a:hover {
  text-decoration: underline;
}

.mfk-auswahl-card__type {
  font-size: 13px;
  color: var(--mfk-gray);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.mfk-auswahl-card__price {
  font-size: 12px;
  color: var(--mfk-gray);
  margin-bottom: 0;
}

/* ----- 3 sütun kategori blokları (Parfum Damen / Herren / Unisex tarzı) ----- */
.mfk-category-blocks {
  background: var(--mfk-white);
  padding: 3rem 0 4rem;
}

.mfk-category-blocks__row {
  display: flex;
  flex-wrap: wrap;
}

.mfk-category-block {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mfk-category-block__img-link {
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.mfk-category-block__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--mfk-cream);
}

/* Mobil: 3’ü yan yana sığdır */
@media (max-width: 767px) {
  .mfk-category-blocks {
    padding: 1.5rem 0 2rem;
  }
  .mfk-category-blocks .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .mfk-category-block__img-link {
    margin-bottom: 0.5rem;
  }
  .mfk-category-block__img-wrap {
    aspect-ratio: 3/4;
  }
  .mfk-category-block__title {
    font-size: 0.75rem;
    margin: 0 0 0.25rem;
    line-height: 1.2;
  }
  .mfk-category-block__desc {
    display: none;
  }
  .mfk-category-block__link {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
}

.mfk-category-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mfk-category-block__img--placeholder {
  background: var(--mfk-gray-light);
  min-height: 280px;
}

.mfk-category-block__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mfk-category-block__title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.mfk-category-block__title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.mfk-category-block__title a:hover {
  text-decoration: underline;
}

.mfk-category-block__desc {
  font-family: var(--mfk-font-heading);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mfk-black);
  margin-bottom: 1.25rem;
  flex: 1;
}

.mfk-category-block__link {
  font-family: var(--mfk-font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mfk-black);
  text-decoration: underline;
  display: inline-block;
  transition: opacity var(--mfk-transition);
}

.mfk-category-block__link:hover {
  color: var(--mfk-black);
  opacity: 0.7;
}

/* ----- Shop / Kategori sayfası ürün kartları – MFK yazı stili ----- */
.shop-main .product-card {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
}

/* Şişe görseli tam görünsün – üst kapak dahil (shop, kategori, marka, arama, wishlist, kampanya) */
.product-card .pc__img-wrapper {
  background: var(--mfk-cream);
  padding-top: 175%;
}
.product-card .pc__img {
  object-fit: contain !important;
  object-position: center center;
}
/* Alt boşluk üst gibi: görsel ile metin arası */
.shop-main .product-card .pc__info,
.product-card .pc__info {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .product-card .pc__img-wrapper {
    padding-top: 175%;
  }
  .product-card .pc__img {
    object-fit: contain !important;
    object-position: center center;
  }
  .shop-main .product-card .pc__info,
  .product-card .pc__info {
    margin-top: 0.4rem;
  }
}

.shop-main .product-card .pc__category {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mfk-gray);
  margin-bottom: 4px;
}

.shop-main .product-card .pc__title {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 6px;
}

.shop-main .product-card .pc__title a {
  color: var(--mfk-black);
  text-decoration: none;
}

.shop-main .product-card .pc__title a:hover {
  text-decoration: underline;
}

.shop-main .product-card .product-card__price {
  font-family: var(--mfk-font-body);
  font-size: 13px;
  color: var(--mfk-black);
  margin-bottom: 8px;
}

.shop-main .product-card .product-card__price .money {
  color: inherit;
}

.shop-main .product-card .pc__atc {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #ffffff !important;
  border-radius: 6px;
  border: none !important;
}

.shop-main .product-card .pc__atc:hover:not(.hp-atc-disabled) {
  background: #45464b !important;
  color: #ffffff !important;
}

.shop-main .product-card .pc__atc.hp-atc-disabled {
  background: #9a9b9f !important;
  color: #ffffff !important;
}

/* ----- Sepet, checkout, cart drawer – MFK yazı stili ----- */
.shop-checkout,
.shopping-cart,
.cart-drawer {
  font-family: var(--mfk-font-body);
  color: var(--mfk-black);
}

.shop-checkout .page-title,
.shop-checkout h2.page-title {
  font-family: var(--mfk-font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mfk-black);
}

.shop-checkout .checkout-steps__item-title span,
.shop-checkout .checkout-steps__item-number {
  font-family: var(--mfk-font-body);
  letter-spacing: var(--mfk-letter-wide);
  color: var(--mfk-black);
}

.shop-checkout .checkout-steps__item-title em {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-style: normal;
}

.shop-checkout .cart-table th,
.shop-checkout .shopping-cart__product-item__detail h4,
.shop-checkout .shopping-cart__product-price,
.shop-checkout .cart-drawer-item__title {
  font-family: var(--mfk-font-heading);
  font-weight: 400;
  color: var(--mfk-black);
}

.shop-checkout .shopping-cart__product-item__detail h4 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.shop-checkout .cart-table,
.shop-checkout .shopping-cart__product-item__options,
.shop-checkout .cart-drawer-item__option {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-size: 13px;
}

.cart-drawer .aside-header h3,
.cart-drawer .cart-drawer-item__title {
  font-family: var(--mfk-font-body);
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mfk-black);
}

.cart-drawer .cart-drawer-item__title {
  font-family: var(--mfk-font-heading);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.cart-drawer .cart-drawer-item__option,
.cart-drawer .cart-drawer-item__price {
  font-family: var(--mfk-font-body);
  color: var(--mfk-gray);
  font-size: 13px;
}

.shop-checkout .btn-primary,
.shop-checkout .btn-checkout,
.shopping-cart .btn-primary,
.shopping-cart .btn-checkout {
  font-family: var(--mfk-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #55565B !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px;
}

.shop-checkout .btn-primary:hover,
.shop-checkout .btn-checkout:hover,
.shopping-cart .btn-primary:hover,
.shopping-cart .btn-checkout:hover {
  background: #45464b !important;
  color: #ffffff !important;
}

/* ----- Mobil alt menü (footer-mobile) – MFK yazı stili + profesyonel ikonlar ----- */
.mfk-footer-mobile.footer-mobile {
  border-top: 1px solid var(--mfk-gray-light);
}
.mfk-footer-mobile .footer-mobile__link {
  color: var(--mfk-black);
  text-decoration: none;
  transition: color var(--mfk-transition);
}
.mfk-footer-mobile .footer-mobile__link:hover {
  color: var(--mfk-gray);
}
.mfk-footer-mobile .footer-mobile__icon {
  color: var(--mfk-black);
  transition: color var(--mfk-transition);
}
.mfk-footer-mobile .footer-mobile__link:hover .footer-mobile__icon {
  color: var(--mfk-gray);
}
.mfk-footer-mobile .footer-mobile__label {
  font-family: var(--mfk-font-body) !important;
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: var(--mfk-letter-wide);
  text-transform: uppercase;
  color: var(--mfk-black);
}
.mfk-footer-mobile .footer-cart-amount {
  font-family: var(--mfk-font-body);
  font-weight: 600;
}

/* Cart / checkout layout: center content */
.shop-checkout.container {
  max-width: 1100px;
}

/* ----- Kampanyen / Campaigns page ----- */
.mfk-campaigns-page {
  font-family: var(--mfk-font-body);
}
.mfk-campaigns-page__title {
  font-family: var(--mfk-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: var(--mfk-letter-wide);
  color: var(--mfk-black);
  margin-bottom: 0.5rem;
}
.mfk-campaigns-page__lead {
  color: var(--mfk-gray);
  font-size: 14px;
  margin-bottom: 2rem;
}
.mfk-campaigns-table-wrap {
  border: 1px solid var(--mfk-gray-light);
  border-radius: 2px;
  overflow: hidden;
}
.mfk-campaigns-table__brand {
  font-family: var(--mfk-font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: var(--mfk-letter-wide);
  color: var(--mfk-black);
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--mfk-cream);
  border-bottom: 1px solid var(--mfk-gray-light);
}
.mfk-campaigns-table {
  margin: 0;
  font-size: 13px;
}
.mfk-campaigns-table thead th {
  font-family: var(--mfk-font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--mfk-letter-wide);
  color: var(--mfk-gray);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--mfk-gray-light);
  background: var(--mfk-white);
}
.mfk-campaigns-table tbody td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--mfk-gray-light);
  color: var(--mfk-black);
}
.mfk-campaigns-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
.mfk-campaigns-table tbody tr:last-child td {
  border-bottom: none;
}
.mfk-campaigns-table tbody td:first-child {
  min-width: 180px;
}
.mfk-campaigns-table__product-link {
  color: var(--mfk-black);
  text-decoration: none;
  transition: color var(--mfk-transition);
}
.mfk-campaigns-table__product-link:hover {
  color: var(--mfk-gray);
}

@media (max-width: 767.98px) {
  .mfk-campaigns-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mfk-campaigns-table-wrap {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mfk-campaigns-table-wrap .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mfk-campaigns-table {
    min-width: 540px;
    font-size: 12px;
  }

  .mfk-campaigns-table thead th,
  .mfk-campaigns-table tbody td {
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }

  .mfk-campaigns-table__brand {
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
  }
}

/* ========== ENHANCED MOBILE STYLES ========== */

/* Mobile Header - Clean & Professional */
@media (max-width: 991px) {
  .mfk-header-mobile {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--mfk-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  
  .mfk-header-mobile .mfk-mobile-logo img {
    max-height: 52px;
    width: auto;
  }
  
  .mfk-header-mobile .mfk-mobile-icons {
    gap: 14px;
  }
  
  .mfk-header-mobile .mfk-mobile-icon {
    padding: 8px;
    color: var(--mfk-black);
  }
  
  .mfk-header-mobile .mfk-mobile-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile Navigation Menu - varsayılan gizli, is-open ile açılır */
@media (max-width: 991px) {
  .header-mobile__navigation {
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, height 0.35s ease;
  }
  
  .header-mobile__navigation.is-open,
  .mobile-menu-opened .header-mobile__navigation {
    height: auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
  }
  
  .header-mobile__navigation .navigation__link {
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--mfk-gray-light);
    display: block;
  }
  
  .header-mobile__navigation .navigation__list {
    margin: 0;
    padding: 0;
  }
  
  .header-mobile__navigation .navigation__item:last-child .navigation__link {
    border-bottom: none;
  }
}

/* Mobile Product Grid - 2 columns */
@media (max-width: 575px) {
  .products-grid .row {
    margin-left: -6px;
    margin-right: -6px;
  }
  
  .products-grid .row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }
  
  .mfk-product-card {
    margin-bottom: 1.25rem;
  }
  
  .mfk-product-card .mfk-product-image {
    aspect-ratio: 1 / 1.5;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .mfk-product-card .mfk-product-title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  
  .mfk-product-card .mfk-product-collection {
    font-size: 9px;
    margin-bottom: 2px;
  }
  
  .mfk-product-card .mfk-product-price {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .mfk-product-card .mfk-btn-atc {
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
    width: 100%;
  }
  
  .mfk-product-card .mfk-product-notes {
    display: none;
  }
}

/* Mobile Product Detail Page */
@media (max-width: 767px) {
  .mfk-product-single {
    padding-top: 1rem;
  }
  
  .mfk-product-single .mfk-product-breadcrumb {
    font-size: 10px;
    margin-bottom: 0.75rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .mfk-product-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .mfk-product-single .mfk-product-price {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .mfk-product-variants {
    margin-bottom: 1rem;
  }
  
  .mfk-product-variant-btn span {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .mfk-product-qty {
    margin-bottom: 1rem;
  }
  
  .mfk-product-atc,
  .mfk-btn-atc.mfk-product-atc {
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
  }
  
  .mfk-product-description {
    margin-top: 2rem;
  }
  
  .mfk-product-description__body {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Mobile Cart Page */
@media (max-width: 767px) {
  .shopping-cart {
    padding: 1rem 0;
  }
  
  .shopping-cart .page-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .shopping-cart__product-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--mfk-gray-light);
  }
  
  .shopping-cart__product-item__detail h4 {
    font-size: 1rem;
  }
  
  .shopping-cart__product-item__options {
    font-size: 12px;
  }
  
  .shopping-cart__totals-wrapper {
    position: sticky;
    bottom: 0;
    background: var(--mfk-white);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Mobile Checkout */
@media (max-width: 767px) {
  .shop-checkout {
    padding: 1rem 0.75rem;
  }
  
  .shop-checkout .page-title {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .shop-checkout .checkout-steps {
    margin-bottom: 1.5rem;
  }
  
  .shop-checkout .checkout-steps__item {
    padding: 0.5rem 0;
  }
  
  .shop-checkout .form-floating > label {
    font-size: 13px;
  }
  
  .shop-checkout .btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 13px;
  }
}

/* Mobile Footer */
@media (max-width: 767px) {
  .mfk-footer {
    padding: 2rem 0 1.5rem;
    padding-bottom: 80px; /* Space for mobile bottom nav */
  }
  
  .mfk-footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .mfk-footer-title {
    font-size: 12px;
    margin-bottom: 0.75rem;
  }
  
  .mfk-footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .mfk-footer ul li a {
    font-size: 13px;
  }
  
  .mfk-footer-newsletter input[type="email"] {
    width: 100%;
    max-width: 100%;
  }
  
  .mfk-footer-bottom {
    text-align: center;
    font-size: 11px;
  }
}

/* Mobile Bottom Navigation Bar */
.mfk-mobile-bottom-nav {
  display: none;
}

@media (max-width: 991px) {
  .mfk-mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mfk-white);
    border-top: 1px solid var(--mfk-gray-light);
    z-index: 1040;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  }
  
  .mfk-mobile-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--mfk-gray);
    padding: 6px 0;
    transition: color 0.2s;
    position: relative;
  }
  
  .mfk-mobile-bottom-nav__item:hover,
  .mfk-mobile-bottom-nav__item.active {
    color: var(--mfk-black);
  }
  
  .mfk-mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
  
  .mfk-mobile-bottom-nav__label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .mfk-mobile-bottom-nav__badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    min-width: 16px;
    height: 16px;
    background: #c41e3a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }
  
  body {
    padding-bottom: 70px;
  }
}

/* Mobile Search Page */
@media (max-width: 767px) {
  .mfk-search-page {
    padding: 1.25rem 0 2rem;
  }
  
  .mfk-search-page__form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mfk-search-page__input-wrap {
    width: 100%;
    max-width: 100%;
  }
  
  .mfk-search-page__input {
    font-size: 1rem;
    padding: 12px 36px 12px 0;
  }
  
  .mfk-search-page__submit {
    width: 100%;
    padding: 14px 20px;
  }
  
  .mfk-search-page__suggestions-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Categories on Home - 4'lü grid, dikey kaydırma */
@media (max-width: 575px) {
  .mfk-hero-categories {
    padding: 0.75rem 0 0.5rem;
    overflow: visible;
    position: relative;
  }
  
  .mfk-hero-categories__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 0.5rem;
    padding: 0;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding-bottom: 0.5rem;
  }
  
  .mfk-hero-categories__list::-webkit-scrollbar {
    width: 3px;
  }
  
  .mfk-hero-categories__list::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .mfk-hero-categories__list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  
  .mfk-hero-categories__item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .mfk-hero-categories__text {
    font-size: 10px;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mfk-hero-categories__logo-wrap {
    width: 52px;
    height: 52px;
  }
  
  /* Aşağı kaydırma ok göstergesi */
  .mfk-scroll-indicator {
    animation: bounceDown 1.5s ease-in-out infinite;
  }
  
  .mfk-scroll-indicator svg {
    opacity: 0.6;
  }
  
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 0.9; }
  }
}

/* Touch-friendly buttons */
@media (max-width: 991px) {
  button, .btn, a.btn, input[type="submit"] {
    min-height: 44px;
  }
  
  .mfk-qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Typography Improvements */
@media (max-width: 767px) {
  .mfk-section-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Better Touch Targets */
@media (max-width: 991px) {
  a, button {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
}

/* Cart Toast Notification - Mobile Optimized */
@media (max-width: 767px) {
  #cart-toast-container {
    bottom: 80px !important;
    left: 10px !important;
    right: 10px !important;
  }
  
  .cart-toast {
    font-size: 13px;
    padding: 12px 16px !important;
  }
}
