/* ====================================
   RESET & BASE
==================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ====================================
   TOKENS
==================================== */
:root {
  --red:    #e53020;
  --teal:   #00979f;
  --yellow: #fbba33;
  --dark:   #1a1a1a;
  --gray:   #555;
  --light:  #f8f8f8;
  --white:  #fff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  24px;
  --r-xl:  40px;
}

/* ====================================
   CONTAINER
==================================== */
.c {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ====================================
   BUTTONS
==================================== */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 12px 28px;
  border-radius: var(--r-xl);
  transition: opacity .2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-red:hover { opacity: .88; }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 14px 38px;
  border-radius: var(--r-xl);
  transition: opacity .2s;
}
.btn-yellow:hover { opacity: .9; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 36px;
  border-radius: 0;
  transition: background .2s, color .2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }

.btn-teal {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 36px;
  border-radius: 0;
  transition: opacity .2s;
}
.btn-teal:hover { opacity: .9; }

.btn-red-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 10px 22px;
  border-radius: var(--r-xl);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.btn-red-outline:hover { background: var(--red); color: #fff; }

.btn-red-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 6px;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-red-fill:hover { opacity: .88; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--dark);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 10px 22px;
  border-radius: var(--r-xl);
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ====================================
   NAVBAR
==================================== */
.navbar {
  background: var(--white);
  box-shadow: 0 1px 0 #e8e8e8;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding-left: 260px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: #fff; background: var(--red); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-icon-btn:hover { color: var(--red); }
.cart-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category strip — the only sticky part of the header; navbar/top_area scroll away. */
.cat-nav-area {
  position: sticky;
  top: 0;
  z-index: 95;
  background: #fff;
  box-shadow: 0 1px 0 #e8e8e8;
}
.cat-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.cat-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  height: 52px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav ul::-webkit-scrollbar { display: none; }
.cat-nav li { flex: 0 0 auto; white-space: nowrap; }
.cat-nav a {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: var(--r-xl);
  transition: background .2s, color .2s;
}
.cat-nav a:hover { background: var(--light); }
.cat-nav a.active { background: var(--red); color: #fff; }

.top_area {
  background: url('assets/img/header-top.svg') no-repeat right 0 /contain var(--red);
  position: relative;
  overflow: visible;
  height: 100px;
  min-height: 60px;
}
.top_area_inside {
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  /* background: url('assets/img/header-top.svg') no-repeat right 0 /contain; */
}
.logo_div {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 2;
}
.logo_div a.logo {
  display: block;
  background: var(--white);
  padding: 10px;  
}
.logo_div .logo__img {
  height: 130px;
}
.wogo_div {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  z-index: 1;
}
.wogo_div .logo__img {
  display: block;
  height: 100%;
}
/* ====================================
   HERO
==================================== */
.hero {
  background: url('assets/img/naqsh_bg.svg') no-repeat 0 0 /cover  var(--red);
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 580px;
  z-index: 2;
}
.hero__text {
  flex: 0 0 50%;
  padding: 80px 0;
  color: var(--white);
}
.hero__text h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__text h1 .yellow { color: var(--yellow); }
.hero__text > p {
  font-size: 15px;
  opacity: .85;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__img {
  flex: 0 0 63%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 580px;
}
@media (min-width: 1100px) {
  .hero__img { justify-content: flex-end; }
}
.hero__img img {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  /* filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); */
}
.hero__stamp {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  backdrop-filter: blur(6px);
}
.hero__stamp img { width: 70px; height: auto; filter: brightness(0) invert(1); }

/* vertical deco text */
.hero__deco-left,
.hero__deco-right {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
  opacity: .08;
  pointer-events: none;
  z-index: 1;
}
.hero__deco-left { left: 10px; }
.hero__deco-right { right: 10px; }
.hero__deco-left span,
.hero__deco-right span {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .1em;
}

/* ====================================
   SINCE 1975
==================================== */
.since-banner {
  padding: 28px 0px 0px 0px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.since-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.since-banner__text { max-width: 640px; }
.since-banner__text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
}
.since-banner__red { color: var(--red); }
.since-banner__teal { color: var(--teal); }
.since-banner__tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 8px;
}
.since-banner__desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 520px;
}
.since-banner__founder {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.since-banner__founder strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}
.since-banner__founder span {
  font-size: 11px;
  color: var(--gray);
}
.since-banner__img {
  flex-shrink: 0;
}
.since-banner__img img {
  display: block;
  max-height: 210px;
  width: auto;
  object-fit: contain;
}

.since {
  padding: 90px 0;
  background: var(--white);
}
.since__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: center;
}
.since__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.since__text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.since__desc {
  color: var(--gray);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.since__founder {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 2px solid var(--yellow);
  width: fit-content;
}
.since__founder strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}
.since__founder span {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.since__photo {
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--yellow);
}
.since__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Badge */
.badge-1975 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.badge-1975__stars { font-size: 11px; color: var(--yellow); margin-bottom: 2px; letter-spacing: 3px; }
.badge-1975__since { font-family: var(--font-heading); font-size: 9px; font-weight: 700; letter-spacing: .18em; color: var(--gray); text-transform: uppercase; }
.badge-1975__year { font-family: var(--font-heading); font-weight: 900; font-size: 30px; color: var(--yellow); line-height: 1; }
.badge-1975__tag { font-size: 7px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; line-height: 1.5; }

/* ====================================
   SIGNATURE DEALS
==================================== */
.deals {
  padding: 56px 0;
  background: #fafafa;
}
.deals__row {
  display: flex;
  align-items: center;
  gap: 0px;
}
.deals__label {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.deals__label strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  color: var(--teal);
}
.deals__label strong .mini_tag{
  color:#000;
  text-decoration: underline;
  text-decoration-color: #FBBA33;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.deals__label p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
  margin: 6px 0 14px;
}
.deals__slider {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.deals__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e0e0e0;
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.deals__arrow:hover { border-color: var(--red); color: var(--red); }
.deals__track {
  display: flex;
  gap: 12px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.deals__track::-webkit-scrollbar { display: none; }

/* Deal card */
.deal-card {
  flex: 0 0 calc(25% - 16px);
  border: 1px solid #bbbbbb;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  padding: 10px 12px 12px;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.deal-card__badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 4px;
}
.deal-card__img {
  display: flex;
  justify-content: center;
}
.deal-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.deal-card__body {
  padding-top: 6px;
}
.deal-card__desc {
  font-size: 10px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 28px;
}
.deal-card__price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.deal-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--red);
}
.deal-old {
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
}
.deal-save {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: auto;
}

/* ====================================
   EXPLORE OUR MENU
==================================== */
.explore {
  background: var(--teal);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.explore__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.explore__title h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--white);
  white-space: nowrap;
}
.explore__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.3);
}
.explore__cats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  padding: 4px 16px;
  cursor: pointer;
  transition: opacity .2s;
  border-left: 1px solid rgba(255,255,255,.3);
  flex: 1;
}
.cat:first-child { border-left: none; }
.cat:hover { opacity: .8; }
.cat__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat__icon svg { width: 100%; height: 100%; }
.cat span:last-child {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

/* ====================================
   PIZZA ITEMS
==================================== */
.items {
  padding: 80px 0;
  background: var(--white);
}
.items__heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 40px;
  letter-spacing: .04em;
}
.items__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Item card */
.item-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.item-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.12); }
.item-card__img {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.item-card__img--red { background:url('assets/img/red_bg.jpg') no-repeat 0 0/cover; }
.item-card__img--yellow { background:url('assets/img/yellow_bg.jpg') no-repeat 0 0/cover; }
.item-card__img--teal { background:url('assets/img/teal_bg.jpg') no-repeat 0 0/cover; }
.item-card__img img {
  height: 90%;
  width: auto;
  object-fit: cover;
  transition: transform .35s;
}
.item-card:hover .item-card__img img { transform: scale(1.06); }
.item-card__body {
  padding: 20px 22px 22px;
}
.item-card__body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.item-card__body p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 16px;
}
.item-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
}
.item-qty {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty-minus {
  width: 32px;
  height: 32px;
  border: 1px solid #e0e0e0;
  background: var(--white);
  border-radius: 6px 0 0 6px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.item-qty span {
  width: 30px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-add {
  height: 32px;
  padding: 0 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}
.qty-add:hover { opacity: .85; }

/* ====================================
   ORDER ONLINE BANNER
==================================== */
.order-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.order-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.order-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, .72);
  z-index: 1;
}
.order-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 80px 0;
  flex: 1;
}
.order-banner__eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  margin-bottom: 18px;
  opacity: .8;
}
.order-banner__inner h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 36px;
}
.order-banner__1k {
  position: absolute;
  right: 60px;
  bottom: 30px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 80px;
  color: rgba(255,255,255,.06);
  pointer-events: none;
  z-index: 2;
}

/* ====================================
   WATERMARK STRIP
==================================== */
.wm-strip {
  background: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
}
.wm-strip__track {
  display: flex;
  gap: 40px;
  animation: wm-scroll 18s linear infinite;
  width: max-content;
}
.wm-strip__track--rev { animation-direction: reverse; }
.wm-strip__track span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .12em;
  color: rgba(26,26,26,.2);
  white-space: nowrap;
}
@keyframes wm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====================================
   FAQ
==================================== */
.faq {
  padding: 90px 0;
  background: var(--white);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.faq__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.faq__content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  margin-bottom: 36px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eee;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
}
.faq-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item--open .faq-item__num { background: var(--teal); }
.faq-item__q strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
.faq-item__a {
  padding: 0 0 18px 48px;
  display: none;
}
.faq-item--open .faq-item__a { display: block; }
.faq-item__a p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* FAQ images */
.faq__imgs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
.faq__img--top { height: 200px; }
.faq__img--bot { height: 160px; }

/* ====================================
   OUR OUTLETS
==================================== */
.outlets {
  padding: 90px 0;
  background:url('assets/img/naqsh.svg') no-repeat 0px -40% /contain var(--yellow);
}
.outlets__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.outlets__text p.outlets__sub {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(26,26,26,.5);
  margin-bottom: 12px;
}
.outlets__text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.outlets__text > p {
  color: rgba(26,26,26,.65);
  font-size: 14px;
  margin-bottom: 36px;
}
.outlet-info {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--r-md);
  max-width: 340px;
}
.outlet-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--red);
}
.outlet-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 8px;
}
.outlet-info__hours {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}
.outlets__img {
  position: relative;
}
.outlets__img img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.outlets__shape {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: rgba(26,26,26,.1);
  border-radius: var(--r-lg);
  z-index: 1;
}

/* ====================================
   MAP
==================================== */
.map-sec {
  padding: 90px 0;
  background: url('assets/img/naqsh.svg') no-repeat 0px -40% /contain var(--light);
}
.map-sec__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: stretch;
}
.map-sec__text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.map-sec__text > p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.map-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 28px 0;
}
.map-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}
.map-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-stat div strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
}
.map-stat div small {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.map-sec__embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.map-sec__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ====================================
   GALLERY STRIP
==================================== */
.gallery {
  overflow: hidden;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.gallery__item {
  overflow: hidden;
  height: 240px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery__item:hover img { transform: scale(1.07); }

/* ====================================
   FOOTER
==================================== */
.footer {
  background: var(--white);
  color: var(--gray);
  border-top: 1px solid #eee;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 50px;
}
.footer__logo img {
  margin-bottom: 18px;
  max-width:200px;
}
.footer__brand > p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 22px;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--red); color: #fff; }

.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer__col ul li svg { flex-shrink: 0; margin-top: 2px; opacity: .8; }
.footer__col ul a { color: var(--gray); transition: color .2s; }
.footer__col ul a:hover { color: var(--red); }

.footer__apps {
  margin-top: 24px;
}
.footer__apps p {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer__app-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__badge-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Footer bottom bar */
.footer__bottom {
  background: var(--yellow);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--dark);
}
.footer__pay { 
  font-size: 12px;
  color: var(--dark);
  padding: 14px 0;
}
.pay-cards {
  max-height: 44px;
  width: auto;
  display: inline-block;
}

/* ====================================
   RESPONSIVE
==================================== */
@media (max-width: 1080px) {
  .deals__track { overflow-x: auto; }
  .deal-card { flex: 0 0 210px; }
  .items__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .nav-links { padding-left: 40px; }
}

@media (max-width: 900px) {
  .hero { background-position: center; }
  .hero__inner { flex-direction: column; min-height: unset; }
  .hero__text { flex: unset; padding: 60px 0 0; }
  .hero__text h1 { text-shadow: 0 2px 12px rgba(0,0,0,.35); }
  .hero__img { flex: unset; height: 320px; width: 100%; }
  .hero__img img { max-height: 300px; }
}

@media (max-width: 900px) {
  .since__inner { grid-template-columns: 1fr 1fr; }
  .since__badge { display: none; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__imgs { flex-direction: row; }
  .faq__img--top, .faq__img--bot { height: 200px; flex: 1; }
  .outlets__inner { grid-template-columns: 1fr; }
  .map-sec__inner { grid-template-columns: 1fr; }
  .map-sec__embed { min-height: 300px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) { display: none; }

  .top_area { height: 84px; }
  .logo_div { left: 20px; }
  .logo_div .logo__img { height: 100px; }

  .since-banner__inner { flex-wrap: wrap; }
  .since-banner__img { order: -1; margin: 0 auto; }
  .since-banner__img img { max-height: 150px; }
  .since-banner__text { text-align: center; margin: 0 auto; }

  .explore__cats { flex-wrap: wrap; row-gap: 20px; }
  .cat { flex: 0 0 33.333%; border-left: none; }

  .deals__label { flex: 0 0 160px; }

  .item-card__img { height: 200px; }
}

@media (max-width: 768px) {
  .c { padding: 0 20px; }
  .navbar__inner { height: 60px; }
  .hero__stamp { width: 64px; height: 64px; top: 20px; right: 20px; }
  .hero__stamp img { width: 46px; }
  .hero__deco-left, .hero__deco-right { display: none; }
  .since__inner { grid-template-columns: 1fr; }
  .since__photo { width: 100%; max-width: 380px; margin: 0 auto; box-shadow: 12px 12px 0 var(--yellow); }
  .items__grid { grid-template-columns: 1fr; }
  .items__heading { font-size: 24px; }
  .deals__row { flex-direction: column; align-items: flex-start; }
  .deals__label { flex: unset; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .deals__label strong { flex-basis: 100%; }
  .deals__label p { margin: 4px 0; flex-basis: 100%; }
  .deal-card { flex: 0 0 160px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .top_area { height: 72px; }
  .logo_div .logo__img { height: 80px; }
  .logo_div a.logo { padding: 6px; }

  .explore__cats { justify-content: flex-start; }
  .cat { flex: 0 0 50%; }
  .cat__icon { width: 22px; height: 22px; }

  .order-banner__1k { display: none; }
  .order-banner__inner { padding: 56px 0; }

  .map-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(5) { display: none; }

  .top_area { height: 60px; }
  .logo_div { left: 12px; }
  .logo_div .logo__img { height: 64px; }
  .logo_div a.logo { padding: 4px; }

  .cat { flex: 0 0 100%; }

  .deal-card { flex: 0 0 148px; }

  .btn-red, .btn-yellow, .btn-outline-white, .btn-teal { font-size: 12px; padding: 12px 22px; }

  .since-banner__img img { max-height: 110px; }
}

/* ====================================
   CMS PAGES (page.php — policies, about, careers, franchise, investor)
==================================== */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    url('assets/img/naqsh.svg') no-repeat center / cover,
    var(--light);
}
.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229,48,32,.08);
  padding: 6px 16px;
  border-radius: var(--r-xl);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 48px);
  color: var(--dark);
  margin: 0;
  line-height: 1.15;
}

.page-section { padding: 64px 0 96px; }
.page-section--intro { padding-bottom: 0; }
.page-intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.page-intro-layout .page-form { position: sticky; top: 96px; }

@media (max-width: 900px) {
  .page-intro-layout { grid-template-columns: 1fr; }
  .page-intro-layout .page-form { position: static; }
}
.page-section--contact { padding-top: 64px; }

/* Contact page: info panel + form side by side */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.contact-info {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 34px;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
}
.contact-info__lede {
  font-size: 14px;
  line-height: 1.6;
  opacity: .75;
  margin-bottom: 32px;
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-info__list a,
.contact-info__list span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.contact-info__list a:hover { color: var(--yellow); }
.contact-info__social {
  display: flex;
  gap: 10px;
}
.contact-info__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.contact-info__social a:hover { background: var(--yellow); color: var(--dark); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.page-rich-content {
  font-family: var(--font-body);
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}
.page-rich-content > *:first-child { margin-top: 0; }
.page-rich-content p { margin: 0 0 20px; }
.page-rich-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--dark);
  margin: 48px 0 18px;
}
.page-rich-content h2:first-child { margin-top: 0; }
.page-rich-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  margin: 32px 0 14px;
}
.page-rich-content ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.page-rich-content ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  border-bottom: 1px dashed #eee;
}
.page-rich-content ul li:last-child { border-bottom: none; }
.page-rich-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.page-rich-content strong { color: var(--dark); }
.page-rich-content a { color: var(--red); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(229,48,32,.35); }
.page-rich-content a:hover { text-decoration-color: var(--red); }

/* CTA buttons dropped inline into page content */
.page-rich-content a[style*="display:inline-block"] { text-decoration: none !important; }

/* Contact / lead forms rendered by page.php */
.page-form {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-form__field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--dark);
}
.page-form__field input,
.page-form__field select,
.page-form__field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #e2e2e2;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s;
}
.page-form__field input:focus,
.page-form__field select:focus,
.page-form__field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.page-form__field textarea { resize: vertical; }
.page-form__status {
  display: none;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
}
.page-form__submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  border-radius: var(--r-xl);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.page-form__submit:hover { opacity: .88; }
.page-form__submit:disabled { opacity: .6; cursor: not-allowed; }

.page-rich-content .page-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-rich-content .page-cta a { text-decoration: none; }
.page-rich-content .page-cta a.btn-red,
.page-rich-content .page-cta a.btn-teal { color: var(--white); }
.page-rich-content .page-cta a.btn-outline-dark { color: var(--dark); }
.page-rich-content .page-cta a.btn-yellow { color: var(--dark); }

@media (max-width: 640px) {
  .page-hero { padding: 56px 0 40px; }
  .page-section { padding: 48px 0 64px; }
  .page-form { padding: 26px 20px; }
}
