/* ==========================================================================
   AD!KTED — components.css
   Buttons, cards, badges, forms, countdown, misc UI
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              transform 0.25s ease;
  cursor: pointer;
}

/* Yellow color cover / fill transition on hover & click */
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--brand-yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-pill);
}

/* Arrow hidden by default */
.btn svg {
  width: 18px;
  height: 18px;
  opacity: 0;
  max-width: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              margin-left 0.35s ease;
  margin-left: 0;
}

.btn--primary {
  background: var(--brand-orange);
  color: var(--brand-white);
}

.btn--light {
  background: var(--brand-white);
  color: var(--brand-blue);
}

.btn--outline {
  background: transparent;
  color: currentColor;
  border: 2px solid currentColor;
}

.btn--outline-brand {
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}

/* Hover, active, focus & click states for ALL button variants */
.btn:hover::before,
.btn:focus-visible::before,
.btn:active::before {
  transform: scaleX(1);
}

.btn:hover,
.btn:focus-visible,
.btn:active,
.btn--primary:hover,
.btn--light:hover,
.btn--outline:hover,
.btn--outline-brand:hover {
  background: var(--brand-yellow) !important;
  background-color: var(--brand-yellow) !important;
  color: var(--brand-ink) !important;
  border-color: var(--brand-yellow) !important;
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.4);
  transform: translateY(-2px);
}

/* Arrow animates into view on hover / click */
.btn:hover svg,
.btn:focus-visible svg,
.btn:active svg {
  opacity: 1;
  max-width: 24px;
  transform: translateX(0);
  margin-left: 8px;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
}

.btn--sm svg {
  width: 15px;
  height: 15px;
}

.btn--play {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn--play .btn--play__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--play:hover .btn--play__circle {
  background: var(--brand-white);
  color: var(--brand-blue);
}

.btn--play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--must-try {
  background: var(--brand-yellow);
  color: var(--brand-ink);
}

.badge--sale {
  background: var(--brand-red);
  color: var(--brand-white);
}

.badge--open {
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge--open::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
}

.badge--closed {
  color: #9a2a2a;
  font-weight: 700;
  font-size: 0.78rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--brand-cream);
  color: var(--brand-black);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
}

.chip:hover {
  background: rgba(253, 108, 3, 0.12);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

.chip.is-active {
  background: var(--brand-orange);
  color: var(--brand-white);
  border-color: var(--brand-orange);
  box-shadow: none;
  transform: none;
}

.spice {
  display: inline-flex;
  gap: 2px;
}

.spice svg {
  width: 14px;
  height: 14px;
  color: var(--brand-red);
}

/* ---------- Product / card components ---------- */
.card {
  background: var(--brand-white);
  color: var(--brand-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-card {
  position: relative;
  background: var(--brand-white);
  color: var(--brand-ink);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card__media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--space-3);
  background: var(--brand-cream);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card[data-category="kids"] .product-card__media img {
  object-fit: contain;
  padding: 4px;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.product-card__foot {
  margin-top: auto;
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-orange);
}

.add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--brand-orange);
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  background: var(--brand-orange-dark);
}

.add-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Category tile ----------
   A cream panel holding a smaller inset photo, the name, a short line of
   copy, and a circular arrow that fills in on hover. */
.category-tile {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 1.8rem 0.9rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: 170px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-base, 0.25s ease), box-shadow var(--transition-base, 0.25s ease);
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.category-tile__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: var(--brand-ink);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.category-tile__desc {
  font-size: 0.8rem;
  color: #7a7a7a;
  line-height: 1.3;
  margin-bottom: auto;
}

.category-tile__arrow {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--brand-orange);
  background: transparent;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-tile__arrow svg {
  width: 16px;
  height: 16px;
}

.category-tile:hover .category-tile__arrow {
  background: var(--brand-orange);
  color: var(--brand-white);
  transform: scale(1.06);
}

/* ---------- Location card ---------- */
.location-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: var(--shadow-sm);
}

.location-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.location-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__body {
  padding: var(--space-4);
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.location-card__addr {
  font-size: 0.85rem;
  color: #6b6b6b;
  margin-bottom: var(--space-2);
}

.location-card__actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.location-card__actions .btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
}

.location-card--cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: var(--space-6);
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
  cursor: pointer;
}

/* Yellow circular fill wave expanding smoothly from bottom-left corner */
.location-card--cta::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--brand-yellow);
  z-index: 1;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

/* Ensure inner elements sit above the expanding yellow layer */
.location-card--cta > * {
  position: relative;
  z-index: 2;
}

/* Icon & text transitions */
.location-card--cta svg,
.location-card--cta .location-card__name {
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              stroke 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover, active, focus states */
.location-card--cta:hover::before,
.location-card--cta:focus-visible::before,
.location-card--cta:active::before {
  transform: scale(6.5);
}

.location-card--cta:hover,
.location-card--cta:focus-visible,
.location-card--cta:active {
  color: var(--brand-ink) !important;
  box-shadow: 0 14px 36px rgba(255, 212, 0, 0.45);
  transform: translateY(-4px);
}

.location-card--cta:hover svg,
.location-card--cta:focus-visible svg,
.location-card--cta:active svg {
  transform: scale(1.15);
  stroke: var(--brand-ink);
}

/* ---------- Countdown ---------- */
/* Sized with clamp() throughout so the four units scale smoothly between
   phone and desktop instead of jumping at a breakpoint. flex-wrap is a
   safety net for very narrow screens. */
.countdown {
  display: flex;
  gap: clamp(5px, 0.9vw, 10px);
  flex-wrap: wrap;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--brand-ink);
  color: var(--brand-white);
  border-radius: var(--radius-sm);
  padding: clamp(5px, 0.8vw, 8px) clamp(6px, 1vw, 10px);
  min-width: clamp(40px, 6vw, 50px);
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: clamp(0.48rem, 0.85vw, 0.56rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-top: 2px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--brand-white);
  color: var(--brand-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
  max-width: 680px;
  margin-inline: auto;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.form-field label {
  font-weight: 700;
  font-size: 0.85rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 2px solid #e4e0d8;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: var(--brand-white);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand-orange);
  outline: 2px solid var(--brand-orange);
  outline-offset: 1px;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--brand-red);
}

.form-field__error {
  font-size: 0.78rem;
  color: var(--brand-red);
  display: none;
}

.form-field.has-error .form-field__error {
  display: block;
}

.form-row {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  display: none;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: #eafaf0;
  color: var(--brand-green);
  font-weight: 700;
}

.form-success.is-visible {
  display: flex;
}

.form-success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: none;
  border: none;
  padding: var(--space-4) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: none;
}

.accordion__toggle {
  font-size: 1.4rem;
  color: var(--brand-orange);
  line-height: 1;
  font-weight: 600;
  user-select: none;
  transition: color 0.2s;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
}

.accordion__panel p {
  padding-bottom: var(--space-4);
  color: #555;
  max-width: 640px;
}

/* ---------- Search bar ---------- */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--brand-white);
  border-radius: var(--radius-pill);
  padding: var(--space-1);
  padding-left: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.search-bar:focus-within {
  border-color: var(--brand-orange);
}

.search-bar svg {
  width: 18px;
  height: 18px;
  color: #9a9a9a;
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.6rem 0;
  min-width: 0;
}

.search-bar input:focus {
  outline: none;
}

.search-bar .btn {
  flex-shrink: 0;
}

/* ---------- Job / value cards ---------- */
.job-card {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.job-card__meta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b6b6b;
}

.value-card {
  text-align: center;
  padding: var(--space-5);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: var(--space-3);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

/* ---------- Step list ---------- */
.step-list {
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
}

@media (min-width: 760px) {
  .step-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding-top: var(--space-6);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-orange);
  opacity: 0.4;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-block: var(--space-2) var(--space-1);
}

.step__desc {
  font-size: 0.88rem;
  color: #6b6b6b;
}

/* ---------- Diagonal stripe / promo ---------- */
.stripe-bg {
  background-image: repeating-linear-gradient(
    45deg,
    var(--brand-yellow),
    var(--brand-yellow) 22px,
    var(--brand-orange) 22px,
    var(--brand-orange) 44px
  );
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-white);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-md);
  z-index: 90;
}

.back-to-top.is-visible {
  display: inline-flex;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Make It A Meal Banner ---------- */
.meal-banner {
  background: var(--brand-orange);
  border-radius: var(--radius-lg, 16px);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  box-shadow: 0 8px 30px rgba(253, 108, 3, 0.25);
}

.meal-banner__main {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.meal-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.meal-banner__sub {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

.meal-banner__price {
  color: #ffffff;
}

.meal-banner__side {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  color: var(--brand-blue);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .meal-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }

  .meal-banner__side {
    text-align: center;
    white-space: normal;
  }
}

/* ---------- Add-On Layout & List Card ---------- */
.addon-section-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-6);
  align-items: stretch;
}

@media (max-width: 1024px) {
  .addon-section-layout {
    grid-template-columns: 1fr;
  }
}

.addon-list-card {
  background: var(--brand-white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.addon-list-card__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brand-blue, #0551f6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  line-height: 1;
}

.addon-list-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.addon-list-card__items li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.addon-item__name {
  color: var(--brand-blue, #0551f6);
  letter-spacing: 0.02em;
}

.addon-item__price {
  color: var(--brand-orange, #fd6c03);
  letter-spacing: 0.02em;
}

/* ---------- Boba Add-On Banner ---------- */
.boba-banner {
  margin-top: 2.5rem;
  background: var(--brand-white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.boba-banner__graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.boba-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-base, 0.25s ease);
}

.boba-img:hover {
  transform: translateY(-4px) scale(1.05);
}

.boba-banner__text {
  text-align: center;
}

.boba-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--brand-blue, #0551f6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.boba-banner__price {
  color: var(--brand-orange, #fd6c03);
}

.boba-banner__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--brand-blue, #0551f6);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .boba-banner {
    padding: 1.8rem 1.25rem 1.5rem;
  }
  .boba-banner__graphics {
    gap: 0.75rem;
  }
  .boba-img {
    height: 80px;
  }
}

/* ---------- Nuggets Add-On Banner ---------- */
.nuggets-banner {
  margin-top: 2.5rem;
  background: var(--brand-white, #ffffff);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nuggets-banner__graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nuggets-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-base, 0.25s ease);
}

.nuggets-img:hover {
  transform: translateY(-4px) scale(1.04);
}

.nuggets-banner__text {
  text-align: center;
}

.nuggets-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: var(--brand-orange, #fd6c03);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.nuggets-banner__sub {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  color: var(--brand-blue, #0551f6);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.nuggets-banner__pricing {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  color: var(--brand-orange, #fd6c03);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .nuggets-banner {
    padding: 1.8rem 1.25rem 1.5rem;
  }
  .nuggets-img {
    height: 120px;
  }
}
