:root {
  --yellow: #ffcc00;
  --cream: #f9f9e8;
  --black: #000000;
  --white: #ffffff;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --card-radius: 22px;
  --category-radius: 28px;
  --burger-section: #fffce0;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header */
.site-header {
  position: relative;
  background: var(--yellow);
  padding: 1.25rem 1.5rem 0;
}

.site-header__bar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(72px, 14vw, 104px);
  height: auto;
  border-radius: 50%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--black);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  cursor: pointer;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.site-header__actions .qr-header-auth {
  padding: 0.38rem 0.78rem;
  font-size: clamp(0.56rem, 1.45vw, 0.68rem);
  letter-spacing: 0.03em;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.site-header__wave {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  height: clamp(68px, 12vw, 104px);
  margin-bottom: -1px;
  line-height: 0;
}

.site-header__wave svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

.site-header__wave-cream {
  fill: var(--cream);
}

/* Elips altına paralel ofset: gerçek dolgu şeridi (stroke değil) */
.site-header__wave-band {
  fill: var(--white);
}

.site-header__wave-black {
  fill: var(--black);
}

/* Main */
.main {
  flex: 1;
  background: var(--cream);
  padding: 1.75rem 0 0;
}

.main__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.75rem;
}

.section-pill {
  margin: 0 auto 1.75rem;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: clamp(0.68rem, 2vw, 0.9rem);
  letter-spacing: 0.03em;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
  align-items: stretch;
}

.product-card--hero {
  grid-row: 1 / span 2;
}

.product-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.product-card__media {
  width: 100%;
  flex: 1;
  min-height: 0;
  background: var(--white);
}

.product-card__media--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.35rem, 1.2vw, 0.65rem);
}

.product-card__media--contain img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card--hero .product-card__media {
  aspect-ratio: 1 / 1;
  max-height: min(78vh, 620px);
  flex: none;
}

.product-card--side {
  min-height: 0;
}

.product-card--side .product-card__media {
  min-height: 220px;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 1.75rem 1.5rem 2.25rem;
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-weight: 600;
  line-height: 1.65;
}

/* Kategori seçimi — vavburger.com.tr menü görselleri */
.categories {
  background: var(--white);
  padding: clamp(2rem, 5vw, 3.25rem) 1.25rem 3rem;
}

.categories__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.categories__title {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--category-radius);
  padding: clamp(0.85rem, 2vw, 1.1rem);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.category-card:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

.category-card__frame {
  flex: 1;
  min-height: clamp(140px, 22vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: calc(var(--category-radius) - 6px);
  padding: clamp(0.65rem, 2vw, 1rem);
}

.category-card__frame img {
  max-width: 100%;
  max-height: clamp(110px, 18vw, 170px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.category-card__label {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: clamp(0.85rem, 2vw, 1.1rem) 0.35rem 0.35rem;
}

/* Burger menü — 2. sayfa görselleri */
.burger-menu {
  background: var(--burger-section);
  padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
}

.burger-menu__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.burger-menu__title {
  margin: 0 0 clamp(1.35rem, 3.5vw, 2rem);
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.burger-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.burger-card {
  margin: 0;
  background: var(--white);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.burger-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.burger-card__name {
  margin: 0.85rem 0 0;
  font-size: clamp(0.72rem, 2.1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

@media (min-width: 560px) {
  .burger-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .burger-menu__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Kapalı hamburgerler — 3.sayfa görselleri */
.kapali-menu {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
}

.kapali-menu__inner {
  max-width: 920px;
  margin: 0 auto;
}

.kapali-menu__title {
  margin: 0 0 clamp(1.35rem, 3.5vw, 2rem);
  text-align: center;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kapali-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.kapali-card {
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.kapali-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.kapali-card__name {
  margin: 0.85rem 0 0;
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.kapali-card--center {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc((100% - clamp(14px, 2.5vw, 20px)) / 2);
  width: 100%;
}

/* Pizzalar — 4.sayfa görselleri */
.pizza-menu {
  background: #fdfce8;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
}

.pizza-menu__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pizza-menu__title {
  margin: 0 0 clamp(1.35rem, 3.5vw, 2rem);
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pizza-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.pizza-card {
  margin: 0;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(14px, 3vw, 18px);
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.pizza-card__photo {
  width: min(88%, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f4f4;
}

.pizza-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pizza-card__name {
  margin: 0;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

@media (min-width: 900px) {
  .pizza-menu__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Snack + Nachos — 5.sayfa görselleri */
.snack-nachos {
  width: 100%;
}

.snack-nachos__panel {
  padding: clamp(2rem, 5vw, 2.75rem) 1.25rem clamp(2.25rem, 5vw, 3rem);
}

.snack-nachos__panel--white {
  background: #ffffff;
}

.snack-nachos__panel--cream {
  background: #fdfce8;
}

.snack-nachos__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.snack-nachos__title {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.snack-nachos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
  justify-content: center;
}

.snack-card {
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  padding: clamp(14px, 3vw, 18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.snack-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.snack-card__name {
  margin: 0.85rem 0 0;
  font-size: clamp(0.68rem, 1.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* İçecekler — 6.sayfa görselleri */
.drinks-menu {
  background: #f7f7f4;
  padding: clamp(2rem, 5vw, 2.75rem) 1.25rem clamp(2.5rem, 5vw, 3.25rem);
}

.drinks-menu__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.drinks-menu__title {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.drinks-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.drinks-card {
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  padding: clamp(14px, 3vw, 18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.drinks-card img {
  width: 100%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.drinks-card__name {
  margin: 0.85rem 0 0;
  font-size: clamp(0.68rem, 1.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

@media (max-width: 840px) {
  .product-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-card--hero {
    grid-row: auto;
  }

  .product-card--hero .product-card__media {
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .product-card--side .product-card__media {
    min-height: 240px;
  }

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

@media (max-width: 520px) {
  .site-header__actions {
    gap: 0.35rem;
  }

  .btn-pill {
    padding: 0.5rem 1rem;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— QR menü entegrasyonu (waw web dışı, sadece işlev + masa etiketi) ——— */

html {
  scroll-behavior: smooth;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

body.qr-no-scroll {
  overflow: hidden;
}

#categories,
#burger-menu-section,
#kapali-menu-section,
#pizza-menu-section,
#snack-menu-section,
#nachos-menu-section,
#drinks-menu-section {
  scroll-margin-top: 100px;
}

.qr-masa {
  font-size: clamp(0.62rem, 1.6vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 7rem;
  line-height: 1.2;
  text-align: center;
  color: var(--black);
  opacity: 0.85;
}

.burger-card,
.kapali-card,
.pizza-card,
.snack-card,
.drinks-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.burger-card:hover,
.kapali-card:hover,
.pizza-card:hover,
.snack-card:hover,
.drinks-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.burger-card:focus-visible,
.kapali-card:focus-visible,
.pizza-card:focus-visible,
.snack-card:focus-visible,
.drinks-card:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

.burger-card__price,
.kapali-card__price,
.pizza-card__price,
.snack-card__price,
.drinks-card__price {
  margin: 0.45rem 0 0;
  font-size: clamp(0.72rem, 2vw, 0.86rem);
  font-weight: 800;
}

.qr-shelf-card-meta {
  margin: 0.35rem 0 0;
  padding: 0;
  max-width: 100%;
}

.qr-shelf-card-meta__desc {
  margin: 0;
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qr-shelf-card-meta__kcal {
  margin: 0.25rem 0 0;
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
}

/* Ürün yorumları — mobil uyumlu modal [CSS + index.html JS] */
.qr-shelf-reviews-btn {
  margin-top: 0.45rem;
  width: 100%;
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.qr-shelf-reviews-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.qr-pc-modal .qr-modal__panel {
  max-height: min(90vh, 720px);
  display: flex;
  flex-direction: column;
  width: min(100%, 28rem);
}

.qr-pc-modal .qr-modal__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 1rem 1rem;
}

.qr-pc-head {
  margin-bottom: 0.75rem;
}

.qr-pc-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.qr-pc-sub {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.72;
}

.qr-pc-lock {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: #7f1d1d;
}

.qr-pc-lock--ok {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
  color: #14532d;
}

.qr-pc-section-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

.qr-pc-star-row {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.qr-pc-star-row__label {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
}

.qr-pc-star-input {
  display: flex;
  gap: 0.12rem;
  flex-wrap: nowrap;
}

.qr-pc-star-input button {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  color: #d1b464;
  opacity: 0.28;
  transition: opacity 0.12s ease, transform 0.1s ease;
}

.qr-pc-star-input button.is-on {
  opacity: 1;
}

.qr-pc-star-input button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
  border-radius: 4px;
}

.qr-pc-stars-readonly {
  display: inline-flex;
  gap: 0.05rem;
  letter-spacing: -0.02em;
}

.qr-pc-stars-readonly span {
  color: #c9a227;
  font-size: 0.82rem;
  line-height: 1;
}

.qr-pc-stars-readonly span.is-off {
  color: rgba(0, 0, 0, 0.12);
}

.qr-pc-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.82rem;
  font-family: inherit;
  resize: vertical;
  min-height: 4.5rem;
}

.qr-pc-submit {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  border: none;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.qr-pc-submit:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.qr-pc-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.qr-pc-card {
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.qr-pc-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.qr-pc-card__who {
  font-size: 0.78rem;
  font-weight: 800;
}

.qr-pc-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #166534, #22c55e);
  color: #ecfdf5;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.qr-pc-card__meta {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.5;
  margin-left: auto;
}

.qr-pc-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

.qr-pc-ratings span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.qr-pc-card__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.82);
  white-space: pre-wrap;
  word-break: break-word;
}

.qr-pc-empty {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.55;
  text-align: center;
  padding: 0.75rem;
}

.qr-card-meta {
  margin: 0.35rem 0 0;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
}

.qr-state {
  max-width: 1120px;
  margin: 0 auto 1.25rem;
  padding: 0 1.25rem;
}

.qr-loading-skel {
  display: grid;
  gap: 0.75rem;
}

.qr-loading-skel__bar {
  height: 4.5rem;
  border-radius: 16px;
  background: linear-gradient(90deg, #fff9c4, #fffef0, #fff9c4);
  background-size: 200% 100%;
  animation: qr-shimmer 1.4s ease-in-out infinite;
}

@keyframes qr-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.qr-error {
  border-radius: 18px;
  border: 2px solid var(--black);
  background: #fff5f5;
  padding: 1rem 1.25rem;
}

.qr-error__title {
  margin: 0;
  font-weight: 800;
  font-size: 0.9rem;
}

.qr-error__text {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

.qr-btn {
  margin-top: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--yellow);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
}

.qr-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.45);
}

.safe-bottom {
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.qr-cart-bar-wrap {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
}

.qr-cart-bar-inner {
  max-width: 560px;
  margin: 0 auto 0.75rem;
  padding: 0 1rem;
}

.qr-cart-bar-card {
  border-radius: 20px;
  border: 2px solid var(--black);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.qr-cart-bar-card button {
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.qr-modal--high {
  z-index: 55;
}

.qr-modal--toast {
  z-index: 60;
}

.qr-modal--ready {
  z-index: 65;
}

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.qr-modal__panel {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 520px;
  max-height: min(88vh, 640px);
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .qr-modal__panel {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.qr-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.qr-modal__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.qr-modal__sub {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.65;
}

.qr-modal__close {
  border-radius: 12px;
  border: 2px solid var(--black);
  background: var(--cream);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}

.qr-modal__body {
  padding: 0.85rem 1.1rem 1rem;
  overflow: auto;
  flex: 1;
  min-height: 0;
}

.qr-modal__foot {
  padding: 0.85rem 1.1rem 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.qr-cart-empty {
  text-align: center;
  padding: 1.25rem;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}

.qr-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.qr-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: var(--cream);
}

.qr-cart-row__thumb-slot {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.qr-cart-row__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: block;
  background: var(--white);
}

.qr-cart-row__thumb--placeholder {
  background: linear-gradient(135deg, #e8e8e0, #f5f5f0);
  border: 2px dashed rgba(0, 0, 0, 0.12);
}

.qr-cart-row__body {
  flex: 1;
  min-width: 0;
}

.qr-cart-row__name {
  font-size: 0.82rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qr-cart-row__meta {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.65;
}

.qr-cart-row__detail {
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qr-cart-row__btns {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.qr-cart-row__btns button {
  border-radius: 10px;
  border: 2px solid var(--black);
  background: var(--white);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
}

.qr-cart-row__btns .qr-inc {
  background: var(--yellow);
}

.qr-cart-row__btns .qr-rm {
  font-size: 0.65rem;
  padding: 0.35rem 0.45rem;
}

.qr-cart-row__qty {
  width: 1.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.qr-note-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.qr-note {
  margin-top: 0.35rem;
  width: 100%;
  resize: none;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 0.8rem;
}

.qr-cart-foot {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .qr-cart-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.qr-total-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

.qr-total-val {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.qr-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.qr-cart-actions button {
  border-radius: 999px;
  border: 2px solid var(--black);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
}

.qr-cart-actions .qr-pay {
  background: var(--yellow);
}

.qr-cart-actions .qr-muted {
  background: var(--white);
}

.qr-cart-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.qr-hint {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b00020;
}

.qr-pay-status {
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 2px solid #b00020;
  background: #fff0f0;
  font-size: 0.8rem;
  font-weight: 700;
}

.qr-pay-loading {
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
}

.qr-iframe-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--black);
  background: #111;
}

.qr-iframe-wrap iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.qr-pay-footnote {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  opacity: 0.55;
  font-weight: 600;
}

.qr-stub-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .qr-stub-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.qr-stub-row button {
  border-radius: 999px;
  border: 2px solid var(--black);
  background: #22c55e;
  color: var(--white);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.qr-chef-strip {
  pointer-events: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
}

.qr-chef-card {
  max-width: 560px;
  margin: 0 auto 0.75rem;
  padding: 0 1rem;
}

.qr-chef-inner {
  border-radius: 20px;
  border: 2px solid var(--black);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.qr-chef-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.qr-chef-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  animation: qr-chef-pulse 2.2s ease-in-out infinite;
}

.qr-chef-sub {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.55;
}

@keyframes qr-chef-pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

.qr-center-modal .qr-modal__panel {
  max-height: none;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
}

.qr-center-modal .qr-modal__panel--wide {
  max-width: 420px;
}

.qr-big-emoji {
  font-size: 2.5rem;
  margin: 0;
}

.qr-ready-title {
  margin: 0.75rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.qr-ready-text {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0.7;
}

.qr-primary-btn {
  margin-top: 1.25rem;
  width: 100%;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--yellow);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.qr-success-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
}

.qr-success-ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  border: 2px solid #16a34a;
  background: #ecfdf3;
  color: #15803d;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

.qr-success-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

/* Günün sözü — dış kabuk */
.qr-cq {
  background: var(--cream);
  padding: 0.6rem 0 1.65rem;
  margin-top: -0.2rem;
}

.qr-cq__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.85rem;
}

/* #testimonials-container — modern testimonial kartları */
#testimonials-container.testimonials-container {
  margin-bottom: 0.5rem;
  padding: 0.15rem 0 0.35rem;
}

.testimonials-container__title {
  margin: 0 auto 0.65rem;
  max-width: 18rem;
  text-align: center;
  font-size: clamp(0.88rem, 2.2vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
  line-height: 1.35;
}

.testimonials-container__viewport {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0.35rem;
}

.testimonials-nav {
  flex-shrink: 0 !important;
  align-self: center !important;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.45);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-nav:hover {
  background: rgba(255, 252, 235, 0.98);
  color: rgba(0, 0, 0, 0.65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.testimonials-nav:active {
  transform: scale(0.98);
}

.testimonials-scroller {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  padding-bottom: 0.45rem;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  touch-action: pan-x;
}

.testimonials-scroller::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroller::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 99px;
}

.testimonials-strip {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 1.1rem;
  width: max-content !important;
  box-sizing: border-box !important;
  padding: 0.35rem 0.15rem 0.5rem !important;
}

.testimonial-card {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
  flex: 0 0 min(86vw, 300px) !important;
  width: min(86vw, 300px) !important;
  max-width: min(86vw, 300px) !important;
  scroll-snap-align: start !important;
  background: #fffefb !important;
  border-radius: 22px !important;
  padding: 1.05rem 1.15rem 1.1rem !important;
  gap: 1rem !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.testimonial-card--featured {
  position: relative;
  margin-top: 0.55rem;
}

.testimonial-card__crown {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.65rem;
  height: auto;
  max-height: 2.4rem;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.testimonial-card__photo {
  flex: 0 0 60px !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__photo img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card__body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.testimonial-card__name {
  display: block;
  margin: 0 0 0.35rem;
  padding: 0.1rem 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.78);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-card__meta {
  margin: 0 0 0.55rem;
  padding: 0.2rem 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.48);
  line-height: 1.35;
}

.testimonial-card__meta strong {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.68);
}

.testimonial-card__quotehead {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.28rem;
  margin: 0 0 0.45rem;
  padding: 0.32rem 0.65rem 0.34rem 0.55rem;
  align-self: flex-start;
  background: rgba(255, 214, 90, 0.14);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card__dq {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(0, 0, 0, 0.38);
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card__qlab {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.testimonial-card__text {
  margin: 0;
  padding: 0.2rem 0.05rem 0;
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.76);
  word-break: break-word;
}

/* Masaüstü: okları gizle; şerit hâlâ yatay kaydır (4 kart genişliği) */
@media (min-width: 960px) {
  .testimonials-nav {
    display: none !important;
  }

  .testimonials-container__viewport {
    gap: 0 !important;
  }
}

@media (max-width: 959.98px) {
  .testimonials-nav {
    display: flex !important;
  }

  .testimonials-container__viewport {
    gap: 0 !important;
  }
}

.testimonials-empty {
  margin: 0.65rem 0 0;
  text-align: center;
}

.qr-cq-empty {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.65;
}

.qr-cq-compose-box {
  margin-top: 1rem;
  padding: 0 0.75rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.qr-cq-form {
  width: 100%;
  max-width: min(26rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  backdrop-filter: blur(6px);
}

.qr-cq-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.qr-cq-input {
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.75rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  resize: vertical;
  min-height: 3.35rem;
  background: rgba(249, 249, 232, 0.65);
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qr-cq-input:focus {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.22);
}

.qr-cq-input::placeholder {
  font-weight: 500;
  opacity: 0.5;
}

.qr-cq-submit {
  align-self: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #ffe566 0%, #ffcc00 100%);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.75rem;
  min-width: 7.5rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.82);
  transition: box-shadow 0.2s ease, filter 0.2s ease;
}

.qr-cq-submit:hover {
  filter: brightness(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.qr-cq-submit:active {
  filter: brightness(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.qr-cq-hint {
  margin: 0;
  width: 100%;
  max-width: min(26rem, 100%);
  padding: 0.35rem 0.75rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.72;
  text-align: center;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.58);
}

.qr-cq-hint--with-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-top: 0.55rem;
  text-align: center;
}

.qr-cq-hint__text {
  flex: 1 1 12rem;
  min-width: 0;
}

a.qr-cq-submit--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.qr-cq-error {
  margin: 0.55rem auto 0;
  max-width: min(26rem, 100%);
  padding: 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(185, 28, 28, 0.92);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card__story {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
}

.qr-cq-story-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  background: linear-gradient(180deg, rgba(255, 229, 102, 0.35) 0%, rgba(255, 204, 0, 0.22) 100%);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.65rem;
  cursor: pointer;
  color: rgba(40, 32, 8, 0.92);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.qr-cq-story-btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 4px 14px rgba(201, 162, 77, 0.25);
}

.qr-cq-story-btn:active {
  filter: brightness(0.98);
}

.qr-cq-story-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.15);
}

.qr-cq-story-btn__svg {
  flex-shrink: 0;
  opacity: 0.9;
}
