:root {
  --red: #c81018;
  --red-dark: #930b10;
  --red-soft: #fff1f2;

  --black: #111111;
  --text: #202020;

  --gray: #777777;
  --muted: #8d8d8d;
  --light-gray: #aaaaaa;

  --line: #ededed;

  --white: #ffffff;
}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #ffffff;

  color: var(--text);

  font-family: "DM Sans", sans-serif;

  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

button:active {
  transform: scale(0.98);
}

.hidden {
  display: none !important;
}


/* =========================================
   GİRİŞ
========================================= */

.landing {
  min-height: 100svh;

  display: flex;

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

  padding:
    max(30px, env(safe-area-inset-top))
    24px
    max(30px, env(safe-area-inset-bottom));

  background: #ffffff;
}

.landing-inner {
  width: 100%;

  max-width: 430px;

  text-align: center;
}


/* =========================================
   LOGO
========================================= */

.logo-wrap {
  width: 220px;
  height: 170px;

  margin: 0 auto 26px;

  display: flex;

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

.main-logo {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 165px;

  object-fit: contain;

  background: transparent;

  border: 0;
  border-radius: 0;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
  margin: 0;

  color: var(--red);

  font-family: "Manrope", sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* =========================================
   GİRİŞ BAŞLIK
========================================= */

.landing h1 {
  max-width: 390px;

  margin: 17px auto 14px;

  color: var(--black);

  font-family: "Playfair Display", serif;

  font-size: clamp(46px, 13vw, 64px);

  line-height: 0.96;

  letter-spacing: -3px;
}

.landing h1 span {
  display: block;

  color: var(--red);
}


/* =========================================
   GİRİŞ AÇIKLAMA
========================================= */

.landing-text {
  max-width: 290px;

  margin: 0 auto 30px;

  color: #888888;

  font-size: 14px;

  line-height: 1.65;
}


/* =========================================
   MENÜ BUTONU
========================================= */

.primary-btn {
  min-width: 225px;

  padding: 16px 25px;

  border: 0;

  border-radius: 999px;

  background: var(--red);

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0.8px;

  box-shadow:
    0 14px 32px rgba(200, 16, 24, 0.17);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-btn:hover {
  background: var(--red-dark);

  box-shadow:
    0 17px 38px rgba(200, 16, 24, 0.22);
}

.primary-btn span {
  margin-left: 14px;

  font-size: 18px;
}


/* =========================================
   GİRİŞ ALT YAZI
========================================= */

.landing-note {
  margin-top: 25px;

  color: #bbbbbb;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* =========================================
   MENÜ
========================================= */

.menu-page {
  min-height: 100svh;

  background: #ffffff;
}


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

.topbar {
  position: sticky;

  top: 0;

  z-index: 30;

  height: 68px;

  padding: 0 18px;

  display: flex;

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

  background: rgba(255, 255, 255, 0.97);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid var(--line);
}

.icon-btn {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid var(--line);

  border-radius: 50%;

  background: #ffffff;

  color: var(--black);

  font-size: 21px;
}

.icon-btn:hover {
  border-color: var(--red);

  color: var(--red);
}

.mini-brand {
  display: flex;

  align-items: center;

  gap: 8px;

  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 1px;
}

.mini-brand img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}


/* =========================================
   MENÜ BAŞLIK
========================================= */

.menu-head {
  max-width: 760px;

  margin: auto;

  padding: 32px 19px 17px;
}

.menu-head h2 {
  margin: 6px 0;

  color: var(--black);

  font-family: "Playfair Display", serif;

  font-size: 44px;

  line-height: 1;

  letter-spacing: -2px;
}

.menu-head > p:last-of-type {
  margin: 0;

  color: #888888;

  font-size: 14px;
}


/* =========================================
   ARAMA
========================================= */

.search-box {
  margin-top: 19px;
}

.search-box input {
  width: 100%;

  padding: 14px 16px;

  border: 1px solid var(--line);

  border-radius: 15px;

  background: #ffffff;

  color: var(--text);

  outline: none;
}

.search-box input:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px rgba(200, 16, 24, 0.07);
}


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

.categories {
  position: sticky;

  top: 68px;

  z-index: 25;

  display: flex;

  gap: 9px;

  overflow-x: auto;

  padding: 7px 18px 18px;

  background: rgba(255, 255, 255, 0.98);

  backdrop-filter: blur(15px);

  scrollbar-width: none;
}

.categories::-webkit-scrollbar {
  display: none;
}

.category-btn {
  flex: 0 0 auto;

  padding: 10px 15px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: #ffffff;

  color: #666666;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  font-weight: 800;

  white-space: nowrap;

  transition: 0.2s ease;
}

.category-btn:hover {
  color: var(--red);

  border-color: rgba(200, 16, 24, 0.35);
}

.category-btn.active {
  background: var(--red);

  color: #ffffff;

  border-color: var(--red);
}


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

.products {
  max-width: 760px;

  margin: auto;

  padding: 5px 18px 50px;
}

.category-section {
  padding-top: 13px;

  margin-bottom: 34px;
}

.category-title {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 14px;
}

.category-title h3 {
  margin: 0;

  color: var(--black);

  font-family: "Playfair Display", serif;

  font-size: 25px;

  letter-spacing: -0.8px;
}

.category-title h3::after {
  content: "";

  display: block;

  width: 29px;
  height: 2px;

  margin-top: 8px;

  background: var(--red);
}

.category-title span {
  color: #aaaaaa;

  font-size: 11px;
}


/* =========================================
   ÜRÜN KARTI
========================================= */

.product-card {
  min-height: 136px;

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 18px 0;

  background: #ffffff;

  border-bottom: 1px solid var(--line);

  cursor: pointer;

  transition: transform 0.2s ease;
}

.product-card:first-of-type {
  border-top: 1px solid var(--line);
}

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

.product-info {
  flex: 1;

  min-width: 0;

  padding: 2px 0;
}

.product-name {
  margin-bottom: 7px;

  color: var(--black);

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  font-weight: 800;

  line-height: 1.3;
}

.product-desc {
  color: #8c8c8c;

  font-size: 11.5px;

  line-height: 1.5;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* =========================================
   RESİMLER
========================================= */

.product-image {
  width: 108px;
  height: 108px;

  flex: 0 0 108px;

  overflow: hidden;

  border: 1px solid #eeeeee;

  border-radius: 17px;

  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================
   ÇOK SATAN
========================================= */

.popular {
  display: inline-block;

  margin-left: 6px;

  padding: 3px 7px;

  border-radius: 999px;

  background: var(--red-soft);

  color: var(--red);

  font-family: "Manrope", sans-serif;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.3px;

  vertical-align: 2px;
}


/* =========================================
   SINGLE / DOUBLE
========================================= */

.product-prices {
  margin-top: 12px;

  display: flex;

  flex-direction: column;

  gap: 6px;
}

.price-row {
  display: flex;

  align-items: center;

  gap: 9px;
}

.price-label {
  width: 48px;

  flex: 0 0 48px;

  color: #999999;

  font-family: "Manrope", sans-serif;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.product-price {
  margin: 0;

  color: var(--red);

  font-family: "Manrope", sans-serif;

  font-size: 14px;

  font-weight: 800;
}

.double-label {
  color: #111111;
}

.double-price {
  color: #111111;
}


/* =========================================
   ALT BANNER
========================================= */

.mars-quote-banner {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    72px
    24px
    82px;

  background: #ffffff;

  border-top: 1px solid #f0f0f0;

  text-align: center;
}


/* hafif dekoratif kırmızı çizgi */

.mars-quote-banner::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 46px;
  height: 3px;

  transform: translateX(-50%);

  background: var(--red);

  border-radius: 999px;
}


.quote-inner {
  position: relative;

  max-width: 570px;

  margin: 0 auto;
}


/* büyük el yazısı tırnak */

.quote-mark {
  position: absolute;

  top: -43px;
  left: 50%;

  transform: translateX(-50%);

  color: rgba(200, 16, 24, 0.08);

  font-family: Georgia, serif;

  font-size: 110px;

  font-weight: 700;

  line-height: 1;

  pointer-events: none;
}


.mars-quote-banner p {
  position: relative;

  z-index: 2;

  margin: 0;

  color: #181818;

  font-family: "Caveat", cursive;

  font-size: clamp(37px, 9vw, 56px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -1px;

  transform: rotate(-1deg);
}


.mars-quote-banner p strong {
  display: block;

  margin-top: 7px;

  color: var(--red);

  font-weight: 700;
}


.quote-signature {
  margin-top: 25px;

  color: #b3b3b3;

  font-family: "Manrope", sans-serif;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2.2px;

  text-transform: uppercase;
}


/* =========================================
   MODAL
========================================= */

.modal {
  position: fixed;

  inset: 0;

  z-index: 100;
}

.modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(4px);
}

.modal-card {
  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: min(100%, 600px);

  max-height: 90svh;

  overflow-y: auto;

  background: #ffffff;

  border-radius: 28px 28px 0 0;

  box-shadow:
    0 -20px 60px rgba(0, 0, 0, 0.17);
}

.modal-card::before {
  content: "";

  display: block;

  width: 38px;
  height: 4px;

  margin: 10px auto 0;

  border-radius: 20px;

  background: #dddddd;
}

.modal-close {
  position: absolute;

  top: 15px;
  right: 15px;

  z-index: 2;

  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border: 1px solid #eeeeee;

  border-radius: 50%;

  background: #ffffff;

  color: #222222;

  font-size: 25px;
}


/* =========================================
   MODAL RESİM
========================================= */

.modal-image {
  width: 100%;

  height: 270px;

  background: #fafafa;
}

.modal-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =========================================
   MODAL İÇERİK
========================================= */

.modal-content {
  padding: 23px 22px 32px;
}

.modal-category {
  color: var(--red);

  font-family: "Manrope", sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.modal-content h3 {
  margin: 8px 0 11px;

  color: var(--black);

  font-family: "Playfair Display", serif;

  font-size: 30px;

  line-height: 1.05;

  letter-spacing: -1px;
}

.modal-content p {
  margin: 0;

  color: #818181;

  font-size: 14px;

  line-height: 1.65;
}


/* =========================================
   MODAL FİYATLAR
========================================= */

.modal-bottom {
  display: block;

  width: 100%;

  margin-top: 22px;

  padding: 0;

  background: transparent;
}

.modal-price-list {
  width: 100%;

  display: flex;

  flex-direction: column;

  border-top: 1px solid #eeeeee;
}

.modal-price-row {
  min-height: 52px;

  display: flex;

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

  gap: 24px;

  padding: 12px 0;

  border-bottom: 1px solid #eeeeee;
}

.modal-price-row span {
  color: #777777;

  font-family: "Manrope", sans-serif;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.9px;
}

.modal-price-row strong {
  color: var(--red);

  font-family: "Manrope", sans-serif;

  font-size: 18px;

  font-weight: 800;
}

.modal-double span,
.modal-double strong {
  color: #111111;
}


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

@media (min-width: 700px) {

  .products {
    padding-left: 28px;
    padding-right: 28px;
  }

  .menu-head {
    padding-left: 28px;
    padding-right: 28px;
  }

  .categories {
    padding-left: 28px;
    padding-right: 28px;
  }

  .product-image {
    width: 118px;
    height: 118px;

    flex-basis: 118px;
  }

  .product-name {
    font-size: 16px;
  }

}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 370px) {

  .landing h1 {
    font-size: 43px;
  }

  .logo-wrap {
    width: 185px;
    height: 145px;
  }

  .product-image {
    width: 90px;
    height: 90px;

    flex-basis: 90px;
  }

  .product-card {
    gap: 12px;
  }

  .product-name {
    font-size: 13.5px;
  }

  .product-desc {
    font-size: 10.8px;
  }

  .price-label {
    width: 43px;

    flex-basis: 43px;

    font-size: 8px;
  }

  .product-price {
    font-size: 13px;
  }

  .mars-quote-banner {
    padding:
      62px
      20px
      68px;
  }

  .mars-quote-banner p {
    font-size: 37px;
  }

  .quote-signature {
    margin-top: 20px;

    font-size: 8px;
  }

}