@charset "UTF-8";

@font-face {
  font-family: "Neulis Alt";
  src:
    url("../fonts/NeulisAlt-Regular.woff2") format("woff2"),
    url("../fonts/NeulisAlt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Alt";
  src:
    url("../fonts/NeulisAlt-Bold.woff2") format("woff2"),
    url("../fonts/NeulisAlt-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Alt";
  src:
    url("../fonts/NeulisAlt-Black.woff2") format("woff2"),
    url("../fonts/NeulisAlt-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-red: #CC151D;
  --cream: #f6efe6;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Neulis Alt", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  background: #FFF6EC;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: visible;
}

/* Swiper fills screen */
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-slide-link {
  display: block;
  position: absolute;
  inset: 0;
}

.hero-pagination {
  z-index: 2 !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--brand-red);
}

/* Header overlay */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding-top: 18px;
}

.hero-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.hero-logo img {
  height: 62px;
  width: auto;
  display: block;
}

.hero-hamburger {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer !important;
}

.hero-hamburger span {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: block;
}

.hero-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 10px 21px;
  background: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}

.hero-cta:hover {
  color: var(--white);
  filter: brightness(1.03);
}

/* Content overlay */
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 92px 0 160px;
}

.hero-copy {
  max-width: 620px;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -1px;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--text);
  max-width: 460px;
  font-size: 14px;
  line-height: 1.55;
}

.hero-primary-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  text-transform: lowercase;
}

.hero-primary-btn:hover {
  color: var(--white);
  filter: brightness(1.03);
}

/* Bottom-center badge (265x265) */
.hero-badge {
  position: absolute;
  left: 50%;
  bottom: -132px;
  transform: translateX(-50%);
  z-index: 4;
  width: 245px;
  height: 245px;
  border: 20px solid #FFF6EC;
  border-radius: 50%;
}

.badge-rotor {
  width: 100%;
  height: 100%;
}

.badge-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.badge-bg {
  fill: var(--brand-red);
}

.badge-text {
  fill: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.badge-center-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 120px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.badge-rotor {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.taste-section {
  padding: 218px 0 96px;
}

.taste-top {
  text-align: center;
  margin-bottom: 36px;
}

.taste-pill {
  border: 1px solid var(--brand-red);
  background: transparent;
  color: var(--brand-red);
  border-radius: 999px;
  padding: 21px 34px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  cursor: default !important;
}

.taste-title {
  margin: 48px 0 0;
  display: grid;
  gap: 4px;
  justify-items: center;
}

.taste-title-thin {
  color: #d42127;
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.05;
}

.taste-title-bold {
  color: #c40f17;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.5;
}

.taste-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "c1 c3 c6"
    "c2 c4 c6"
    "c2 c5 c7";
}

.taste-card {
  border-radius: 18px;
  padding: 30px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 230px;
}

.taste-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 48px);
  line-height: 1.04;
  font-weight: 600;
}

.taste-card p {
  margin: 16px 0 0;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.7;
}

.taste-card-1 {
  grid-area: c1;
}
.taste-card-2 {
  grid-area: c2;
}
.taste-card-3 {
  grid-area: c3;
}
.taste-card-4 {
  grid-area: c4;
}
.taste-card-5 {
  grid-area: c5;
}
.taste-card-6 {
  grid-area: c6;
}
.taste-card-7 {
  grid-area: c7;
}

.card-red {
  background: #cc151d;
}

.card-red h3,
.card-red p {
  color: #ffffff;
}

.card-orange {
  background: #ff9903;
}

.card-orange h3,
.card-orange p {
  color: #cc151d;
}

.card-pink {
  background: #fe969d;
}

.card-pink h3,
.card-pink p {
  color: #cc151d;
}

.card-image {
  padding: 0;
  min-height: 300px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.taste-card-6 {
  min-height: 560px;
}

/* Flavors horizontal section */
.flavors-section {
  position: relative;
  background: transparent;
  overflow: clip;
}

.flavors-pin {
  position: relative;
  z-index: 1;
  min-height: clamp(900px, 60vw, 1216px);
  display: flex;
  align-items: center;
  padding: 88px 0;
  background: url("../images/lezzetler_bg.svg") center center / contain no-repeat;
}

.flavors-pin::before {
  content: none;
}

.flavors-head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.flavors-pill {
  border: 1px solid rgba(204, 21, 29, 0.9);
  color: #cc151d;
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  padding: 14px 32px;
}

.flavors-scroll-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.flavors-content {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
}

.flavors-copy {
  color: #cc151d;
  flex: 0 0 auto;
  width: clamp(340px, 36vw, 400px);
  margin-left: clamp(36px, 8vw, 130px);
}

.flavors-mini {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  text-align: center;
}

.flavors-badge {
  /* display: inline-block; */
  background: #cc151d;
  color: #FFE1CF;
  padding: 10px 18px;
  font-weight: 700;
  font-size: clamp(56px, 7.8vw, 82px);
  line-height: 0.95;
  transform: rotate(-4deg);
  margin-bottom: 16px;
  text-align: center;
}

.flavors-title {
  margin: 0;
  color: #cc151d;
  font-weight: 900;
  font-size: clamp(48px, 5.2vw, 54px);
  line-height: 0.95;
}

.flavors-track-wrap {
  overflow: visible;
  width: auto;
  padding: 20px 0;
  flex: 0 0 auto;
}

.flavors-track {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  will-change: transform;
}

.flavor-card {
  width: clamp(300px, 32vw, 500px);
  /* aspect-ratio: 1.3 / 1; */
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  flex: 0 0 auto;
  transform-origin: center;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

.flavor-card-1 {
  transform: none;
}

.flavor-card-2 {
  transform: none;
}

.flavor-card-3 {
  transform: none;
}

.flavor-card-4 {
  transform: none;
}

.flavors-cta-wrap {
  margin-top: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.flavors-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  background: #cc151d;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* Typographic CTA stack section */
.cta-stack-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0;
}

.cta-stack-wrap {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.stack-line {
  display: inline-block;
  background: #d71920;
  color: #fff;
  font-family: "Poppins", "Inter", "Neulis Alt", sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.3vw, 98px);
  line-height: 1;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 12px 24px;
  transform-origin: center;
  will-change: transform, opacity;
  border: 5px solid #FFFCF2;
  margin-top: -10px;
}

.stack-line-1 {
  transform: rotate(-1.5deg);
  padding: 10px 30px;
}

.stack-line-2 {
  transform: rotate(1.8deg);
}

.stack-line-3 {
  transform: rotate(-1deg);
}

.stack-line-4 {
  transform: rotate(1.4deg);
}

.stack-line-5 {
  transform: rotate(-1.8deg);
}

.stack-line-brand {
  font-size: clamp(56px, 7vw, 122px);
}

/* Video popup section */
.video-popup-section {
  /* padding: 56px 0 80px; */
  overflow-x: hidden;
  overflow-x: clip;
}

.video-popup-stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: visible;
  overflow-x: hidden;
  overflow-x: clip;
}

.video-shell {
  width: min(540px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.video-shell-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-trigger {
  position: absolute;
  width: 225px;
  height: 225px;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.video-play-rotor {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}

.video-play-svg {
  width: 100%;
  height: 100%;
  display: block;
  border: 20px solid #ffffff4d;
  border-radius: 50%;
}

.video-play-bg {
  fill: #cc151d;
}

.video-play-text {
  fill: #fff;
  font-size: 14.7px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.video-play-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.video-modal-media {
  display: block;
  width: 100%;
  max-height: 85vh;
  background: #000;
  border-radius: 12px;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.video-modal-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  position: relative;
  background: url(../images/footer_bg_bottom.png) right bottom / cover no-repeat, #dc1821;
  color: var(--white);
  overflow: visible;
  background-size: 100%;
  padding-top: 40px;
  padding-bottom: 0;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
}

.footer-contact {
  margin-top: 16px;
  max-width: 440px;
  margin-bottom: 30px;
}

.footer-contact-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 20px;
}

.footer-input {
  position: relative;
}

.footer-input input {
  width: 100%;
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
  padding: 0 44px 0 8px;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-weight: 700;
}

.footer-input-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 2px 6px;
}

.footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.footer-meta {
  margin-top: 34px;
}

.footer-meta p {
  margin: 0px 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.8;
}

.footer-deria-wrap {
  margin-top: 22px;
}

.footer-deria-logo {
  height: auto;
  display: block;
  margin-top: 40px;
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-social {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  flex-shrink: 0;
}

.footer-social:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.footer-can-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.footer-can-wrap .footer-can {
  display: block;
  position: relative;
  z-index: 1;
}

.footer-can-wrap .footer-socials {
  position: absolute;
  left: 50%;
  bottom: 46%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(6px, 1vw, 10px);
  justify-content: center;
  pointer-events: auto;
  z-index: 6;
  line-height: 1;
  white-space: nowrap;
}

.footer-can-wrap .footer-social {
  width: clamp(44px, 4.5vw, 56px);
  height: clamp(44px, 4.5vw, 56px);
  border-width: 2px;
  background: rgba(220, 24, 33, 0.35);
  backdrop-filter: blur(2px);
}

.footer-can {
  width: clamp(200px, 20vw, 300px);
  height: auto;
  opacity: 0.98;
}

@media (min-width: 992px) {
  .site-footer .container {
    padding-bottom: clamp(120px, 16vw, 200px);
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  justify-content: end;
  gap: 10px 48px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Offcanvas menu tweaks */
.menu-offcanvas.offcanvas-top {
  --bs-offcanvas-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  background: #cc151d;
  color: #fff;
  border: none;
}

.menu-offcanvas-header {
  padding: 22px 28px;
}

.menu-offcanvas-header .offcanvas-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.menu-offcanvas-body {
  padding: 0 18px 28px;
  overflow: hidden;
}

.menu-split {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  overflow: hidden;
}

.menu-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 6px 0;
  font-size: clamp(40px, 5vw, 92px);
  line-height: 0.95;
  transition: color 0.2s ease, gap 0.2s ease, opacity 0.2s ease;
}

.menu-link-icon {
  flex-shrink: 0;
  width: 0;
  height: clamp(22px, 3.2vw, 36px);
  opacity: 0;
  overflow: hidden;
  background: url("../images/menu_chevron.svg") center / contain no-repeat;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.menu-link-text {
  display: inline-block;
}

.menu-link.is-active {
  color: #fff;
  gap: clamp(10px, 1.6vw, 16px);
}

.menu-link.is-active .menu-link-icon {
  width: clamp(22px, 3.2vw, 36px);
  opacity: 1;
}

@media (hover: hover) and (min-width: 992px) {
  .menu-link.is-preview:not(.is-active) {
    color: #fff;
    opacity: 0.92;
  }
}

.menu-split-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-preview-frame {
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.menu-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-swiper {
    position: relative;
    inset: auto;
    height: auto !important;
  }

  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: auto !important;
  }

  .hero-slide-link {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
  }

  .hero-slide-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: initial;
    transform: none;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-logo img {
    height: 36px;
  }

  .hero-cta {
    height: 34px;
    padding: 0 12px;
    font-size: 9px;
  }

  .hero-content {
    padding: 86px 0 168px;
  }

  .hero-badge {
    width: 110px;
    height: 110px;
    bottom: -62px;
    transform: translateX(-50%) scale(0.78);
    border: 0px;
  }

  .taste-section {
    padding: 96px 0 70px;
  }

  .taste-pill {
    font-size: 24px;
    padding: 10px 24px;
  }

  .taste-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "c1"
      "c2"
      "c3"
      "c4"
      "c5"
      "c6"
      "c7";
  }

  .taste-card {
    min-height: 220px;
    padding: 24px 20px;
  }

  .card-image {
    min-height: 250px;
    padding: 0;
  }

  .taste-card-6 {
    min-height: 320px;
  }

  .flavors-pin {
    min-height: auto;
    padding: 56px 0;
  }

  .flavors-pill {
    font-size: 18px;
    padding: 12px 24px;
  }

  .flavors-scroll-viewport {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }

  .flavors-content {
    width: 100%;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }

  .flavors-copy {
    text-align: center;
    width: min(88vw, 420px);
    margin-left: 0px;
  }

  .flavors-mini {
    font-size: clamp(30px, 8vw, 42px);
  }

  .flavors-title {
    font-size: clamp(40px, 10vw, 58px);
  }

  .flavors-track-wrap {
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .flavors-track {
    width: 100%;
    flex-direction: column;
    gap: 14px;
    transform: none !important;
  }

  .flavor-card { width: min(88vw, 360px); }

  .flavors-cta {
    font-size: 24px;
  }

  .cta-stack-section {
    min-height: 72vh;
    padding: 56px 0;
  }

  .stack-line {
    padding: 10px 16px;
    font-size: clamp(30px, 10vw, 48px);
  }

  .stack-line-brand {
    font-size: clamp(46px, 13vw, 64px);
  }

  .video-popup-section {
    padding: 38px 0 56px;
  }

  .video-popup-stage {
    min-height: 360px;
  }

  .video-shell {
    width: min(420px, 86vw);
  }

  .video-play-trigger {
    width: 220px;
    height: 220px;
    pointer-events: none;
  }

  .video-popup-stage {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .video-popup-stage:focus-visible {
    outline: 2px solid rgba(204, 21, 29, 0.55);
    outline-offset: 6px;
  }

  .video-shell-media {
    pointer-events: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: start;
    text-align: left;
    gap: 8px 18px;
  }

  .site-footer {
    background-size: 160%;
  }

  .footer-center {
    justify-content: start;
  }

  .footer-meta p {
    font-size: 13px;
  }

  .footer-deria-logo {
    width: 108px;
  }

  .menu-offcanvas-header {
    padding: 18px 16px;
  }

  .menu-offcanvas-body {
    padding: 0 16px 16px;
  }

  .menu-split {
    min-height: calc(100vh - 74px);
    grid-template-columns: 1fr;
  }

  .menu-split-right {
    display: none;
  }

  .menu-link {
    font-size: clamp(34px, 11vw, 54px);
  }

  .menu-link.is-active {
    gap: 10px;
  }

  .menu-link-icon {
    height: clamp(18px, 5vw, 26px);
  }

  .menu-link.is-active .menu-link-icon {
    width: clamp(18px, 5vw, 26px);
  }
}

@media (max-width: 992px) and (min-width: 577px) {
  .taste-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "c1 c3"
      "c2 c4"
      "c5 c6"
      "c7 c7";
  }

  .taste-card-6 {
    min-height: 360px;
  }

  .flavors-scroll-viewport {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }

  .flavors-content {
    width: 100%;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }

  .flavors-copy {
    text-align: center;
    width: clamp(320px, 55vw, 500px);
  }

  .flavors-track-wrap {
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .flavors-track {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    transform: none !important;
  }

  .flavor-card { width: clamp(340px, 58vw, 500px); }

  .stack-line {
    font-size: clamp(34px, 6vw, 72px);
  }

  .stack-line-brand {
    font-size: clamp(58px, 8vw, 102px);
  }

  .video-popup-stage {
    min-height: 440px;
  }

  .video-shell {
    width: min(500px, 78vw);
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 10px 18px;
  }
}

/* Hakkimizda sayfasi */
.page-about {
  background: #FFF6EC;
}

.about-main {
  overflow-x: clip;
  background: #fff;
}

.about-site-header {
  position: relative;
  z-index: 20;
  padding-top: 18px;
  padding-bottom: 8px;
  background: #FFF6EC;
}

.about-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.about-logo img {
  height: 62px;
  width: auto;
  display: block;
}

.about-hamburger {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.about-hamburger span {
  width: 22px;
  height: 2px;
  background: #cc151d;
  border-radius: 999px;
  display: block;
}

.about-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 10px 21px;
  background: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(204, 21, 29, 0.2);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}

.about-cta:hover {
  color: var(--white);
  filter: brightness(1.03);
}

.about-intro-section {
  position: relative;
  z-index: 3;
  /* background-color: #ffffff; */
  background-image: url("../images/detail_header.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding-bottom: clamp(9rem, 20vw, 15rem);
  margin-bottom: clamp(-4.5rem, -8vw, -2.5rem);
}

.about-intro-copy {
  position: relative;
  z-index: 2;
  padding: clamp(25px, 3vw, 56px) 16px clamp(20px, 4vw, 40px);
  max-width: 980px;
}

.about-page-title {
  margin: 0;
  color: #cc151d;
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.02;
  text-align: center;
  letter-spacing: -0.5px;
}

.about-page-lead {
  margin: clamp(14px, 2vw, 22px) auto 0;
  max-width: 680px;
  color: #cc151d;
  font-size: clamp(16px, 2.1vw, 29px);
  line-height: 1.45;
  text-align: center;
  font-weight: 100;
}

.about-feature-section {
  position: relative;
  z-index: 0;
  margin-top: clamp(-11rem, -14vw, -5rem);
  padding: 0;
}

.about-feature-media {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0px;
}

.about-feature-media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-feature-quote {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(440px, 44%);
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.3px;
  text-wrap: balance;
}

.about-modules-section {
  position: relative;
  z-index: 0;
  margin-top: clamp(-17rem, -13vw, -4.5rem);
  padding: clamp(8rem, 17vw, 12rem) 0 clamp(9rem, 28vw, 24rem);
  background-image: url("../images/hakkimizda_modul_bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.about-modules-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

.about-module-card {
  border-radius: 18px;
  padding: clamp(26px, 3vw, 34px) clamp(22px, 2.8vw, 30px);
  min-height: clamp(260px, 32vw, 320px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 10px 28px rgba(38, 17, 12, 0.08);
}

.about-module-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05;
  font-weight: 700;
}

.about-module-card p {
  margin: clamp(14px, 1.8vw, 18px) 0 0;
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.72;
}

.about-module-red {
  background: #cc151d;
}

.about-module-red h2,
.about-module-red p {
  color: #fff;
}

.about-module-yellow {
  background: #ff9903;
}

.about-module-yellow h2,
.about-module-yellow p {
  color: #cc151d;
}

.about-module-white {
  background: #fff;
  border: 1px solid rgba(204, 21, 29, 0.08);
}

.about-module-white h2,
.about-module-white p {
  color: #cc151d;
}

.page-about .site-footer {
  margin-top: 0;
}

/* Urunler sayfasi */
.page-products {
  background: #ffffff00;
}

.products-main {
  overflow-x: clip;
}

.products-intro-section {
  margin-bottom: clamp(-3.5rem, -7vw, -1.5rem);
}

.products-detail-section {
  position: relative;
  z-index: 0;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 16rem);
  background: #fff;
}

.products-detail-inner {
  max-width: 1320px;
}

.product-detail-card {
  margin: 0;
  height: 100%;
  text-align: center;
  margin: 20px;
}

.product-detail-card img {
  width: 80%;
  height: auto;
  /* display: block; */
}

.page-products .site-footer {
  margin-top: 0;
}

/* Haberler sayfasi */
.page-news,
.page-news-detail {
  background: #fff;
}

.news-main,
.news-detail-main {
  overflow-x: clip;
}

.news-intro-section,
.news-detail-intro {
  margin-bottom: clamp(-3.5rem, -3vw, -1.5rem);
}

.news-grid-section {
  position: relative;
  z-index: 0;
  padding: clamp(1.5rem, 4vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  background: #fff;
}

.news-grid-inner {
  max-width: 1320px;
}

.news-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card:hover .news-card-title {
  color: #a10f16;
}

.news-card-media {
  border-radius: 22px;
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.news-card-title {
  margin: clamp(14px, 2vw, 18px) 0 0;
  color: #cc151d;
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.news-back-link {
  display: inline-block;
  margin-bottom: clamp(12px, 2vw, 18px);
  color: #cc151d;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.news-back-link:hover {
  color: #a10f16;
}

.news-detail-title {
  font-size: clamp(34px, 5vw, 58px);
}

.news-detail-date {
  margin-top: clamp(10px, 1.5vw, 14px);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  opacity: 0.85;
}

.news-detail-hero {
  position: relative;
  z-index: 2;
  margin-top: clamp(5rem, -9vw, -3rem);
  padding: 0 clamp(12px, 2.5vw, 32px);
}

.news-detail-media {
  margin: 0 auto;
  max-width: 1320px;
}

.news-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.news-detail-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
  background: #fff;
}

.news-article {
  max-width: 820px;
  margin: 0 auto;
}

.news-article p {
  margin: 0 0 1.25rem;
  color: #3a1a14;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}

.news-article p:last-child {
  margin-bottom: 0;
}

.page-news .site-footer,
.page-news-detail .site-footer {
  margin-top: 0;
}

/* Iletisim sayfasi */
.page-contact {
  background: #fff;
}

.contact-main {
  overflow-x: clip;
}

.contact-intro-section {
  margin-bottom: clamp(-3.5rem, -7vw, -1.5rem);
}

.contact-body-section {
  position: relative;
  z-index: 2;
  padding: clamp(8rem, 5vw, 6rem) 0 0;
  background: #fff;
}

.contact-body-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-info-column {
  padding: 40px clamp(16px, 3vw, 24px) clamp(2rem, 4vw, 3rem);
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.contact-form-column {
  width: 100%;
}

.contact-form-panel {
  background: #cc151d;
  border-radius: 28px 0 0 0;
  padding: clamp(24px, 4vw, 40px) clamp(22px, 3.5vw, 36px);
  color: #fff;
  height: 100%;
}

@media (min-width: 992px) {
  .contact-body-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .contact-info-column {
    flex: 0 0 38%;
    max-width: 520px;
    margin: 0;
    padding: 30px clamp(24px, 4vw, 48px) clamp(2rem, 4vw, 3rem)
      max(16px, calc((100vw - 1320px) / 2 + 12px));
  }

  .contact-form-column {
    flex: 1;
    min-width: 0;
    margin-left: auto;
  }

  .contact-form-panel {
    border-radius: 40px 0 0 0;
    min-height: 100%;
    padding-right: clamp(28px, 4vw, 48px);
  }
}

.contact-info-heading {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-breadcrumb {
  margin-top: 10px;
  font-size: 14px;
  color: #8a8a8a;
}

.contact-breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.contact-breadcrumb a:hover {
  color: #cc151d;
}

.contact-address-details {
  margin-top: clamp(24px, 4vw, 36px);
  border: 0;
}

.contact-address-summary {
  list-style: none;
  cursor: pointer;
  color: #1a1a1a;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-address-summary::-webkit-details-marker {
  display: none;
}

.contact-address-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.contact-address-details[open] .contact-address-summary::after {
  transform: rotate(-135deg);
}

.contact-address-body {
  margin-top: 16px;
  color: #5c5c5c;
  font-size: 15px;
  line-height: 1.7;
}

.contact-address-body p {
  margin: 0 0 12px;
}

.contact-address-body a {
  color: #5c5c5c;
  text-decoration: none;
}

.contact-address-body a:hover {
  color: #cc151d;
}

.contact-side-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
}

.contact-side-socials a {
  color: #b0b0b0;
  transition: color 0.25s ease;
}

.contact-side-socials a:hover {
  color: #cc151d;
}

.contact-form-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-form-lead {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.92;
}

.contact-form {
  margin-top: clamp(20px, 3vw, 28px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  border-radius: 22px;
  resize: vertical;
  min-height: 140px;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.contact-form select option {
  color: #1a1a1a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.contact-privacy input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #fff;
}

.contact-submit-btn {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #cc151d;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 34px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.contact-map-section {
  width: 100%;
  line-height: 0;
}

.contact-map {
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  border: 0;
  display: block;
}

.page-contact .site-footer {
  margin-top: 0;
}

/* Satis Noktalari sayfasi */
.page-stores {
  background: #fff;
}

.stores-main {
  overflow-x: clip;
}

.stores-intro-section {
  margin-bottom: clamp(-3.5rem, -7vw, -1.5rem);
}

.about-cta.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.stores-body-section {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 5vw, 3.5rem) 0 0;
  background: #fff;
}

.stores-body-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.stores-list-column {
  width: 100%;
}

.stores-list-inner {
  max-width: 1320px;
  margin: 0;
  padding: 0 clamp(16px, 3vw, 24px) clamp(2rem, 4vw, 3rem);
}

.stores-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  justify-items: stretch;
}

@media (min-width: 768px) {
  .stores-toolbar {
    grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(200px, 1.4fr);
    gap: 14px;
    max-width: 720px;
  }
}

.stores-filter,
.stores-search {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(204, 21, 29, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stores-filter {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23cc151d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.stores-filter:focus,
.stores-search:focus {
  border-color: #cc151d;
  box-shadow: 0 0 0 3px rgba(204, 21, 29, 0.1);
}

.stores-result-count {
  margin: 0 0 14px;
  color: #8a8a8a;
  font-size: 14px;
  text-align: left;
}

.stores-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: none;
}

.store-card {
  width: 100%;
  border: 1px solid rgba(204, 21, 29, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.store-card:hover {
  border-color: rgba(204, 21, 29, 0.45);
  transform: translateY(-1px);
}

.store-card.is-active {
  background: #cc151d;
  border-color: #cc151d;
}

.store-type {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(204, 21, 29, 0.08);
  color: #cc151d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-card.is-active .store-type {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.store-name {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.store-card.is-active .store-name,
.store-card.is-active .store-address {
  color: #fff;
}

.store-address {
  margin: 8px 0 0;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.6;
}

.stores-empty {
  margin: 8px 0 0;
  color: #8a8a8a;
  font-size: 15px;
  text-align: center;
  padding: 24px 12px;
}

.stores-map-column {
  width: 100%;
  line-height: 0;
}

.stores-map {
  width: 100%;
  height: clamp(320px, 50vw, 520px);
  border: 0;
  display: block;
}

.page-stores .site-footer {
  margin-top: 0;
}

/* Kariyer sayfasi */
.page-career {
  background: #fff;
}

.career-main {
  overflow-x: clip;
}

.career-intro-section {
  margin-bottom: clamp(-3.5rem, -7vw, -1.5rem);
}

.career-values-section {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 7vw, 6rem) 0 clamp(9rem, 6vw, 5rem);
  background: #fff;
}

.career-values-inner {
  max-width: 1240px;
}

.career-value-card {
  min-height: clamp(220px, 28vw, 280px);
}

.career-jobs-section {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(4rem, 8vw, 6rem);
  background: #fff6ec;
}

.career-jobs-inner {
  max-width: 1240px;
}

.career-jobs-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.career-jobs-title {
  margin: 0;
  color: #cc151d;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}

.career-jobs-lead {
  margin: 12px 0 0;
  color: #5c3a32;
  font-size: clamp(15px, 1.8vw, 18px);
}

.career-jobs-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: clamp(20px, 3vw, 28px);
  max-width: 640px;
  margin-inline: auto;
}

.career-filter {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(204, 21, 29, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  padding: 0 42px 0 18px;
  font-size: 14px;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23cc151d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.career-filter:focus {
  border-color: #cc151d;
  box-shadow: 0 0 0 3px rgba(204, 21, 29, 0.1);
}

.career-job-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(204, 21, 29, 0.12);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 28px);
  box-shadow: 0 10px 24px rgba(38, 17, 12, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(38, 17, 12, 0.1);
}

.career-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.career-job-tag,
.career-job-location,
.career-job-type {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.career-job-tag {
  background: rgba(204, 21, 29, 0.1);
  color: #cc151d;
}

.career-job-location,
.career-job-type {
  background: #f6efe6;
  color: #5c3a32;
}

.career-job-name {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.career-job-desc {
  margin: 12px 0 0;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.career-job-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #cc151d;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.career-job-apply:hover {
  color: #a10f16;
  gap: 12px;
}

.career-jobs-empty {
  margin: 12px 0 0;
  text-align: center;
  color: #8a8a8a;
  font-size: 15px;
}

.career-cta-section {
  background: #cc151d;
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}

.career-cta-inner {
  max-width: 720px;
}

.career-cta-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.career-cta-lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
}

.career-cta-btn {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #cc151d;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.career-cta-btn:hover {
  color: #cc151d;
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.page-career .site-footer {
  margin-top: 0;
}

@media (min-width: 768px) {
  .career-jobs-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .stores-body-layout {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .stores-list-column {
    flex: 0 0 50%;
    max-width: 680px;
  }

  .stores-list-inner {
    margin: 0;
    padding: 0 clamp(24px, 4vw, 48px) clamp(2rem, 4vw, 3rem)
      max(16px, calc((100vw - 1320px) / 2 + 12px));
    max-width: none;
  }

  .stores-toolbar {
    max-width: 100%;
  }

  .stores-list {
    max-height: clamp(480px, 62vh, 680px);
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #cc151d #f2f2f2;
  }

  .stores-map-column {
    flex: 1;
    min-width: 0;
    margin-left: auto;
  }

  .stores-map {
    height: 100%;
    min-height: clamp(480px, 62vh, 680px);
    border-radius: 22px 0 0 0;
  }
}

@media (max-width: 991.98px) {
  .footer-can-wrap {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .footer-links-col {
    text-align: left;
  }

  .site-footer .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
    text-align: left;
    gap: 8px;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .stores-map {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .contact-form-panel {
    border-radius: 0;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit-btn {
    align-self: flex-end;
  }
}

@media (max-width: 575.98px) {
  .contact-body-section {
    padding-top: 1.5rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .about-feature-quote {
    top: 50%;
    bottom: auto;
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    max-width: none;
    transform: translateY(-50%);
    font-size: clamp(20px, 5.5vw, 30px);
  }

  .about-modules-section {
    margin-top: clamp(-5rem, -12vw, -3.5rem);
    padding-top: clamp(5rem, 14vw, 7rem);
    padding-bottom: clamp(6rem, 16vw, 9rem);
  }

  .about-module-card {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .about-logo img {
    height: 52px;
  }

  .about-cta {
    height: 42px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .about-feature-section {
    margin-top: -7.5rem;
  }

  .about-intro-section {
    padding-bottom: clamp(7rem, 24vw, 10rem);
    margin-bottom: -2rem;
    background-position: top;
  }

  .about-modules-section {
    margin-top: -3.5rem;
  }

  .about-page-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-page-lead {
    font-size: 15px;
  }

  .products-detail-section {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}