/*
 * digital-menu.css
 *
 * Scoped stylesheet for the QR Code / Digital Menu page (v2 stack).
 * Sources ported:
 *   1. assets/digital-menu/css/style.css      — ported IN FULL
 *   2. assets/digital-menu/css/responsive.css — ported IN FULL (all @media blocks)
 *   3. assets/styles/blog.css                 — SUBSET only (selectors used by
 *      template-parts/dingdoong/digital-menu/*.php)
 *
 * Scoping rule: every selector is prefixed with `.v2-page ` so the shared
 * header/footer (which also carry body.v2-page) are unaffected because those
 * selectors only match inside `<section class="qr-code">` or its descendants.
 *
 * Typography + palette use the v2 design tokens (Nunito, --cr/--ye/--ch/--t1)
 * so the page reads as part of the v2 system; the bold border/offset-shadow
 * layout is preserved. Nunito is loaded globally via assets/css/core/fonts.css.
 *
 * @keyframes, @media wrappers, and :root vars are NOT scoped per spec.
 */

/* ═══════════════════════════════════════════════════════════════════════════
   KEYFRAMES (from style.css — unscoped per spec)
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(300px);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(-300px);
  }
}

@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE — style.css: .qr-code root + CSS custom properties
   Scoped to .v2-page .qr-code so the shared header/footer font is NOT
   overridden (the h1-h6/body font is declared only on .qr-code, never on body).
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code {
  --heading-font-family: 'Nunito', sans-serif;
  --heading-sub-font-family: 'Nunito', sans-serif;
  --heading-main-color: var(--t1);
  --heading-subtitle-color: var(--t1);
  --input-height: 52px;
  --input-background-color: #ffffff;
  --input-border-color: #d8d6de;
  --input-border-radius: 8px;
  --input-submit-padding: 11px 30px;
  --input-placehoder-textcolor: #b9b9c3;
  --input-invalid-color: #dc3545;

  --heading-display-sm: 26px;
  --heading-display-line-sm: 34px;
  --heading-display-md: 36px;
  --heading-display-line-md: 48px;
  --heading-display-lg: 54px;
  --heading-display-line-lg: 74px;

  --heading-sub-display-sm: 16px;
  --heading-sub-display-line-sm: 24px;
  --heading-sub-display-md: 18px;
  --heading-sub-display-line-md: 25px;
  --heading-sub-display-lg: 20px;
  --heading-sub-display-line-lg: 26px;

  --heading-1-sm: 32px;
  --heading-1-line-sm: 42px;
  --heading-1-md: 40px;
  --heading-1-line-md: 50px;
  --heading-1-lg: 52px;
  --heading-1-line-lg: 64px;

  --heading-2-sm: 26px;
  --heading-2-line-sm: 34px;
  --heading-2-md: 26px;
  --heading-2-line-md: 34px;
  --heading-2-lg: 36px;
  --heading-2-line-lg: 50px;

  --heading-3-sm: 20px;
  --heading-3-line-sm: 26px;
  --heading-3-md: 22px;
  --heading-3-line-md: 28px;
  --heading-3-lg: 24px;
  --heading-3-line-lg: 30px;

  --heading-5-sm: 16px;
  --heading-5-line-sm: 22px;
  --heading-5-md: 16px;
  --heading-5-line-md: 22px;
  --heading-5-lg: 18px;
  --heading-5-line-lg: 22px;

  background-color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  min-height: 100vh;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL HELPERS — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-image,
.v2-page .qr-code-video {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.v2-page .qr-code-video {
  clip-path: inset(1px 1px);
}

/* Content container: legacy relied on Bootstrap's .container (absent in v2).
   Match the site-wide v2 width — content capped at 1200px and centered, while
   full-width colored section backgrounds (steps/marquee) stay edge-to-edge. */
.v2-page .qr-code .container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTON — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-btn {
  padding: 14px 32px;
  background-color: var(--cr);
  border: none;
  border-radius: 9999px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  font-family: var(--heading-font-family);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 23, 93, 0.35);
  transition: background 200ms, transform 150ms, border-color 200ms, color 200ms;
}

.v2-page .qr-code-btn--white {
  background-color: var(--wh);
  color: var(--t1);
  border: 2px solid var(--bl);
  box-shadow: none;
}

.v2-page .qr-code-btn:hover {
  background-color: var(--crd);
  color: #fff;
  transform: translateY(-1px);
}

.v2-page .qr-code-btn--black:hover {
  color: var(--cr);
  background-color: #ffffff;
}

.v2-page .qr-code-btn--white:hover {
  background-color: var(--wh);
  border-color: var(--cr);
  color: var(--cr);
  transform: none;
}

.v2-page .qr-code-btn--black {
  background-color: var(--ch);
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-display {
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: var(--heading-display-sm);
  line-height: var(--heading-display-line-sm);
  font-family: var(--heading-font-family);
  color: var(--heading-main-color);
}

.v2-page .qr-code-subdisplay {
  font-style: normal;
  font-weight: 400!important;
  font-size: var(--heading-sub-display-sm)!important;
  line-height: var(--heading-sub-display-line-sm)!important;
  font-family: var(--heading-sub-font-family)!important;
  color: var(--heading-main-color);
}

.v2-page .qr-code-heading-2 {
  font-family: var(--heading-font-family)!important;
  font-style: normal;
  font-weight: 800!important;
  letter-spacing: -0.02em;
  color: var(--heading-main-color);
  font-size: var(--heading-2-sm)!important;
  line-height: var(--heading-2-line-sm)!important;
}

.v2-page .qr-code-heading-3 {
  font-family: var(--heading-font-family)!important;
  font-style: normal;
  font-weight: 800!important;
  letter-spacing: -0.02em;
  color: var(--heading-main-color);
  font-size: var(--heading-3-sm)!important;
  line-height: var(--heading-3-line-sm)!important;
}

.v2-page .qr-code-heading-5 {
  font-family: var(--heading-font-family)!important;
  font-style: normal;
  font-weight: 800!important;
  letter-spacing: -0.02em;
  color: var(--heading-main-color);
  font-size: var(--heading-5-sm)!important;
  line-height: var(--heading-5-line-sm)!important;
}

.v2-page .qr-code-heading-1 {
  font-family: var(--heading-font-family)!important;
  font-style: normal;
  font-weight: 800!important;
  letter-spacing: -0.02em;
  color: var(--heading-main-color);
  font-size: var(--heading-1-sm)!important;
  line-height: var(--heading-1-line-sm)!important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-hero {
  position: relative;
  padding: 2rem 0 3rem;
}

.v2-page .qr-code-hero > .container {
  display: flex;
  flex-flow: column wrap;
  overflow: visible;
  gap: 3rem;
}

.v2-page .qr-code-hero-video {
  height: 425px;
}

.v2-page .qr-code-hero-video video {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.v2-page .qr-code-hero__left {
  flex: 1;
  display: flex;
  flex-flow: column wrap;
  gap: 40px;
  width: 100%;
  animation: fadeInTop 1000ms ease-in-out forwards;
}

.v2-page .qr-code-hero__banner {
  animation: fadeInTop 1000ms ease-in-out forwards;
}

.v2-page .qr-code-hero-left-heading {
  display: flex;
  flex-flow: column wrap;
  gap: 16px;
}

.v2-page .qr-code-hero-left-heading__title,
.v2-page .qr-code-hero-left-heading__subtitle {
  margin: 0;
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QR CODE BOX / FORM — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-box {
  position: relative;
  display: block;
  width: 100%;
}

.v2-page .qr-code-box form {
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
}

.v2-page .qr-code-box form > div:first-child {
  flex: 1;
  overflow: auto;
  width: 100%;
}

.v2-page .qr-code-box-form__input {
  height: var(--input-height);
  background: var(--input-background-color);
  border: 2px solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
}

.v2-page .qr-code-box-form__input.invalid {
  border-color: var(--input-invalid-color);
}

.v2-page .qr-code-box-form__input .subfix {
  flex: 0;
  color: var(--heading-main-color);
}

.v2-page .qr-code-box-form__input .subfix::before {
  content: ".";
  color: var(--input-placehoder-textcolor);
  margin-right: 2px;
  margin-left: 2px;
}

.v2-page .changed .qr-code-box-form__input__domain,
.v2-page .changed .subfix::before {
  color: var(--heading-main-color);
}

.v2-page .qr-code-box-form__input__domain {
  border: none;
  outline: none;
  height: auto;
  width: auto;
  padding: 0;
  color: var(--input-placehoder-textcolor);
  cursor: text;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: auto;
  position: relative;
  flex: 1;
}

.v2-page .qr-code-box-form__input__domain::-webkit-scrollbar {
  display: none;
}

.v2-page .qr-code-box-form__input__domain::before {
  color: inherit;
}

.v2-page .qr-code-box-form__input__domain:empty:before {
  content: attr(data-default);
}

.v2-page .qr-code-box-form__submit {
  font-family: var(--heading-font-family);
  padding: var(--input-submit-padding);
  height: 100%;
  flex: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-features-heading {
  text-align: center;
}

.v2-page .qr-code-features {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f4f5;
}

.v2-page .qr-code-features-actions {
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
  text-align: center;
  margin-top: 3.75rem;
  margin-bottom: 5rem;
}

.v2-page .qr-code-features-sections {
  display: flex;
  flex-flow: column wrap;
  gap: 10.625rem;
}

.v2-page .qr-code-feature {
  display: flex;
  gap: 4rem;
  flex-flow: column wrap;
  width: 100%;
}

.v2-page .qr-code-feature__content,
.v2-page .qr-code-feature__media {
  flex: 1;
}

.v2-page .qr-code-feature__content {
  max-width: 477px;
  width: 100%;
}

.v2-page .qr-code-feature-name {
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INTRODUCES SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-introduces {
  width: 100%;
  background-color: #ffffff;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  display: flex;
  flex-flow: column wrap;
  position: relative;
}

.v2-page .qr-code-introduce-heading {
  text-align: center;
  z-index: 1;
}

.v2-page .qr-code-introduce {
  display: flex;
  flex-flow: column wrap;
  gap: 3.75rem;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.v2-page .qr-code-introduces .previewer {
  margin-top: 2rem;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce {
  align-items: stretch;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce,
.v2-page .qr-code-introduces .previewer .qr-code-introduce__media {
  height: 100%;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce__media img {
  width: auto;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce {
  visibility: visible;
  opacity: 1;
}

.v2-page .qr-code-introduces .previewer img,
.v2-page .qr-code-introduces .active img {
  animation: fadeInLeft 1s;
  animation-fill-mode: forwards;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce__content > *,
.v2-page .qr-code-introduces .active .qr-code-introduce__content > * {
  animation: fadeInRight 1s;
  animation-fill-mode: forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-page .qr-code-introduces .previewer .owl-dots {
  margin-top: 3rem;
}

.v2-page .qr-code-introduces .previewer .qr-code-introduce__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-page .qr-code-introduce__media,
.v2-page .qr-code-introduce__content,
.v2-page .qr-code-introduce-content {
  flex: 1;
}

.v2-page .qr-code-introduce__media {
  max-width: 683px;
  width: 100%;
}

.v2-page .qr-code-introduce-content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  visibility: hidden;
  z-index: -1;
}

.v2-page .qr-code-introduce-list {
  margin-top: 1.875rem;
  padding-left: 0;
  list-style: none;
}

.v2-page .qr-code-introduce-list__item {
  display: block;
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.v2-page .qr-code-introduce-list__item:not(:last-child) {
  margin-bottom: 0.75rem;
}

.v2-page .qr-code-introduce-list__item::before {
  content: '';
  background: var(--cr);
  font-weight: bold;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 16px;
  position: absolute;
  left: 0;
  top: 7px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SLIDER / TESTIMONIALS — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-questions,
.v2-page .qr-code-steps {
  background-size: 100%;
  background-repeat: repeat;
}

.v2-page .qr-code-slider {
  padding: 5.688rem 0;
}

.v2-page .qr-code-slider__heading,
.v2-page .qr-code-articles-heading {
  text-align: center;
  margin-bottom: 2rem;
}

/* Owl carousel dot selectors — vanilla shim emits identical DOM */
.v2-page .qr-code-slider__content .owl-dots,
.v2-page .transform-steps .owl-dots,
.v2-page .qr-code-articles .owl-dots {
  margin-top: 2.5rem;
}

.v2-page .qr-code-slider__content .owl-dots .owl-dot,
.v2-page .transform-steps .owl-dots .owl-dot,
.v2-page .qr-code-articles .owl-dot {
  width: 10px!important;
  height: 10px!important;
  border-radius: 10px!important;
  transition: all .25s ease;
}

.v2-page .qr-code-slider__content .owl-dots .owl-dot.active,
.v2-page .transform-steps .owl-dots .owl-dot.active,
.v2-page .qr-code-articles .owl-dot.active {
  background-color: var(--heading-main-color)!important;
  width: 40px!important;
}

.v2-page .qr-code-slider__content .qr-code-img {
  border: 1px solid var(--bl);
  border-radius: 16px;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .marquee {
  --gap: 2rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  padding: 20px 0;
  background: var(--cr);
  border: 1px solid var(--bl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.v2-page .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
  animation-direction: reverse;
}

.v2-page .marquee:hover .marquee__content {
  animation-play-state: paused;
  cursor: pointer;
}

.v2-page .marquee__content .qr-code-heading-3 {
  color: #fff;
}

.v2-page .marquee__content .qr-code-heading-3 svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-left: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .v2-page .marquee__content {
    animation-play-state: paused !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INTRODUCES PROGRESS INDICATOR — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-introduces .process {
  position: absolute;
  top: 50%;
  right: .5rem;
  transform: translateY(-50%);
  height: 200px;
  max-height: 100%;
  width: 8px;
  background: #FFFFFF;
  border: 1px solid var(--bl);
  border-top: none;
  border-radius: 4px;
  display: none;
  transition: all .25s ease;
}

.v2-page .qr-code-introduces .process::before,
.v2-page .qr-code-introduces .process::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  bottom: calc(100% + 8px);
}

.v2-page .qr-code-introduces .process::before {
  content: attr(data-index);
}

.v2-page .qr-code-introduces .process::after {
  content: attr(data-length);
  bottom: auto;
  top: calc(100% + 8px);
}

.v2-page .qr-code-introduces .process.ended {
  border-bottom: none;
}

.v2-page .qr-code-introduces .process-inner {
  background: var(--cr);
  border: 1px solid var(--bl);
  border-left: none;
  border-right: none;
  border-radius: 2px;
  transition: all .25s ease;
}

.v2-page .qr-code-introduces .qr-code-features-actions {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STEPS SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-steps {
  background-color: var(--ye);
  padding: 3rem 0 3.15rem;
}

.v2-page .qr-code-steps-heading {
  margin-bottom: 3.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   OPPORTUNITY SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-opportunity {
  padding: 3rem 0 3rem;
  background-size: cover;
}

.v2-page .qr-code-opportunity .qr-code-features-actions {
  margin-bottom: 0;
}

.v2-page .qr-code-opportunity-content {
  margin-top: 4.875rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRANSFORM STEPS / OWL CAROUSEL NAV — style.css
   Vanilla shim emits owl's exact DOM so these selectors work unchanged.
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .transform-steps {
  padding: 0;
}

.v2-page .transform-steps .owl-nav button {
  background-color: #ffffff!important;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: none!important;
}

.v2-page .transform-steps .owl-nav .owl-prev {
  left: 0;
}

.v2-page .transform-steps .owl-nav .owl-next {
  right: 0;
}

.v2-page .transform-step {
  display: flex;
  gap: 1rem;
  flex-flow: column wrap;
  margin: 0 auto;
}

.v2-page .transform-steps .owl-dots .owl-dot:not(.active) {
  background-color: rgba(29, 29, 29, 0.2)!important;
}

.v2-page .transform-step span {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--ch);
}

.v2-page .qr-code-steps-actions {
  margin-top: 3.75rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EMPOWERING SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-empowering,
.v2-page .qr-code-articles {
  padding: 3rem 0;
}

.v2-page .empowers {
  margin-top: 5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  gap: 40px;
}

.v2-page .empower {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: var(--ch);
  gap: 22px;
  flex-basis: 100%;
}

.v2-page .empower > div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--bl);
}

.v2-page .empower > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.v2-page .empower > div:hover img {
  transform: scale(1.15);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLES SECTION + OWL NAV — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-articles .owl-nav button {
  width: 56px;
  height: 56px;
}

.v2-page .qr-code-articles .owl-nav .owl-prev {
  right: calc(100% + 1rem);
}

.v2-page .qr-code-articles .owl-nav .owl-next {
  left: calc(100% + 1rem);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVAMP SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-revamp {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-page .qr-code-revamp-heading {
  color: #ffffff;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUESTIONS / FAQ SECTION — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code-questions .more {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--cr);
  margin-top: 24px;
  display: block;
}

.v2-page .qr-code-articles-slider .owl-stage-outer {
  overflow: initial;
  padding: 1rem 0;
}

.v2-page .qr-code-articles-slider .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: all .25s ease;
  padding: 0;
}

.v2-page .qr-code-articles-slider .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL OWL NAV BUTTONS — style.css
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-page .qr-code .owl-nav button {
  width: 56px!important;
  height: 56px!important;
  background: #FFFFFF;
  border: 1px solid var(--bl)!important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08)!important;
  transition: all .25s ease;
}

.v2-page .qr-code .owl-nav button:hover {
  background-color: var(--cr)!important;
}

.v2-page .qr-code .owl-nav button:hover svg {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(60deg) brightness(115%) contrast(114%);
}

.v2-page .qr-code-articles .dd-blog-item__thumbnail img {
  height: 100%;
  object-fit: cover;
}

.v2-page .qr-code-articles .owl-nav {
  display: none;
}

.v2-page .qr-code .img-fluid {
  width: 100%;
  height: auto;
  display: block;
}

.v2-page .qr-code-questions .dd-ask-question__title {
  margin-bottom: 3rem;
}

.v2-page .qr-code-questions {
  padding: 3rem 0;
}

/* ── FAQ accordion ──
   digital-menu carries its own page CSS (product-sections.css is not loaded
   here), so the Bootstrap-accordion mechanics the ported markup needs live
   below. Scoped to .dd-ask-question so nothing else on the page is touched. */
.v2-page .dd-ask-question .collapse {
  display: none;
}
.v2-page .dd-ask-question .collapse.show {
  display: block;
}
.v2-page .dd-ask-question .card {
  margin-bottom: 10px;
  border: 0;
  /* Neutralize the v2-core design-system .card (white bg + 16px radius + 26px
     pad + drop shadow); the accordion reuses the bare .card class, which would
     otherwise wrap every FAQ item in a stray outer panel. */
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.v2-page .dd-ask-question .card-header {
  border: 0;
  border-radius: 2px;
  padding: 0;
  margin-bottom: -3px;
}
.v2-page .dd-ask-question .card-body {
  flex: 1 1 auto;
  padding: 1rem;
}
.v2-page .dd-ask-question .card-header .btn-header-link {
  display: block;
  text-align: left;
  background: rgb(255, 255, 255);
  padding: 20px;
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  border-width: 4px 4px 0;
  border-top: 4px solid rgb(29, 29, 29);
  border-right: 4px solid rgb(29, 29, 29);
  border-left: 4px solid rgb(29, 29, 29);
  border-bottom: 0;
  color: rgb(29, 29, 29);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-decoration: none;
}
.v2-page .dd-ask-question .card .collapse.show {
  background: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-right: 4px solid rgb(29, 29, 29);
  border-bottom: 4px solid rgb(29, 29, 29);
  border-left: 4px solid rgb(29, 29, 29);
  border-top: 0;
  color: rgb(29, 29, 29);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.v2-page .dd-ask-question .card-header .btn-header-link.collapsed {
  background: rgb(255, 255, 255);
  border: 2px solid rgb(216, 214, 222);
  border-radius: 10px;
  font-family: 'Nunito';
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  padding-top: 25px;
  display: block;
  overflow: hidden;
  height: auto;
}
.v2-page .dd-ask-question .card-header .btn-header-link::after {
  content: "\e91e";
  font-family: icomoon;
  font-weight: 900;
  float: right;
}
.v2-page .dd-ask-question .card-header .btn-header-link.collapsed::after {
  content: "\e921";
}

.v2-page .qr-code .owl-nav button.disabled {
  display: none!important;
}

.v2-page .is-start-scrolling div[data-scroll-holder] {
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — responsive.css (all @media blocks, selectors scoped with .v2-page)
   ═══════════════════════════════════════════════════════════════════════════ */

@media screen and (min-width: 400px) {
  .v2-page .empower {
    flex-basis: calc(100% / 2 - 40px);
  }
}

@media screen and (min-width: 600px) {
  .v2-page .qr-code-articles .owl-nav {
    display: block;
  }

  .v2-page .qr-code-articles .owl-nav button {
    width: 30px!important;
    height: 30px!important;
  }

  .v2-page .qr-code-articles .owl-nav .owl-prev {
    right: calc(100% + .5rem);
  }

  .v2-page .qr-code-articles .owl-nav .owl-next {
    left: calc(100% + .5rem);
  }
}

@media screen and (min-width: 768px) {
  .v2-page .qr-code-btn {
    padding: 14px 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .v2-page .qr-code-questions .dd-ask-question__title {
    margin-bottom: 100px;
  }

  .v2-page .qr-code-opportunity,
  .v2-page .qr-code-questions {
    padding: 5.688rem 0 3rem;
  }

  .v2-page .qr-code-questions .dd-ask-question .card-header .btn-header-link {
    font-size: 18px;
  }

  .v2-page .transform-steps {
    padding: 0 70px;
  }

  .v2-page .transform-steps .owl-nav button {
    display: block!important;
  }

  .v2-page .qr-code-hero {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .v2-page .qr-code-features-actions {
    flex-flow: row wrap;
    justify-content: center;
  }

  .v2-page .qr-code-box form {
    flex-flow: row wrap;
    height: var(--input-height);
  }

  .v2-page .qr-code-box-form__input {
    flex: 1;
  }

  .v2-page .qr-code-feature {
    flex-flow: row;
    align-items: center;
  }

  .v2-page .qr-code-feature:nth-child(even) {
    flex-flow: row-reverse wrap;
  }

  .v2-page .qr-code-introduce {
    flex-flow: row wrap;
  }

  .v2-page .qr-code-introduces .process {
    display: block;
  }

  .v2-page .empower {
    flex-basis: calc(33.333333% - 40px);
  }

  .v2-page .qr-code-revamp {
    height: 600px;
  }

  .v2-page .qr-code-questions .dd-ask-question .card-header .btn-header-link {
    font-size: 18px;
  }
}

@media screen and (min-width: 992px) {
  .v2-page .qr-code-hero > .container {
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
  }

  .v2-page .qr-code-hero__left {
    max-width: 620px;
  }

  .v2-page .qr-code-hero__banner {
    flex: 1;
    display: block;
  }

  .v2-page .qr-code-display {
    font-size: var(--heading-display-md)!important;
    line-height: var(--heading-display-line-md)!important;
  }

  .v2-page .qr-code-subdisplay {
    font-size: var(--heading-sub-display-md)!important;
    line-height: var(--heading-sub-display-line-md)!important;
  }

  .v2-page .qr-code-heading-2 {
    font-size: var(--heading-2-md)!important;
    line-height: var(--heading-2-line-md)!important;
  }

  .v2-page .qr-code-heading-3 {
    font-size: var(--heading-3-md)!important;
    line-height: var(--heading-3-line-md)!important;
  }

  .v2-page .qr-code-heading-1 {
    font-size: var(--heading-1-md)!important;
    line-height: var(--heading-1-line-md)!important;
  }

  .v2-page .qr-code-steps {
    padding: 6.563rem 0 6.25rem;
  }

  .v2-page .qr-code-introduces .previewer {
    margin-top: 5rem;
  }

  .v2-page .qr-code-opportunity {
    padding-bottom: 5.75rem;
  }

  .v2-page .qr-code-empowering,
  .v2-page .qr-code-articles {
    padding: 6.25rem 0;
  }

  .v2-page .qr-code-slider__heading,
  .v2-page .qr-code-articles-heading {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .v2-page .qr-code .owl-nav button {
    border: 1px solid var(--bl)!important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .v2-page .qr-code-hero-video {
    height: auto;
  }

  .v2-page .qr-code-hero {
    padding-top: 5rem;
    padding-bottom: 192px;
  }

  .v2-page .qr-code-display {
    font-size: var(--heading-display-lg)!important;
    line-height: var(--heading-display-line-lg)!important;
  }

  .v2-page .qr-code-subdisplay {
    font-size: var(--heading-sub-display-lg);
    line-height: var(--heading-sub-display-line-lg);
  }

  .v2-page .qr-code-heading-2 {
    font-size: var(--heading-2-lg)!important;
    line-height: var(--heading-2-line-lg)!important;
  }

  .v2-page .qr-code-heading-3 {
    font-size: var(--heading-3-lg)!important;
    line-height: var(--heading-3-line-lg)!important;
  }

  .v2-page .qr-code-heading-1 {
    font-size: var(--heading-1-lg)!important;
    line-height: var(--heading-1-line-lg)!important;
  }

  .v2-page .qr-code-hero__banner {
    flex: 1;
    max-width: 479px;
    position: relative;
  }

  .v2-page .qr-code-articles .owl-nav button {
    width: 56px!important;
    height: 56px!important;
  }

  .v2-page .transform-step {
    gap: 2.5rem;
  }

  .v2-page .qr-code-introduces .process {
    right: 1.688rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FROM blog.css — SUBSET used by digital-menu markup only
   Selectors verified against template-parts/dingdoong/digital-menu/*.php
   OMITTED: body, h1-h6, bare a, .container, .wrapper, article, .timeline__nav,
             .dd-navbar-blog, .dd-blog-breadcrumb, .dd-blog-section, .dd-blog-detail,
             .dd-our-recent, .dd-table-of-content, .dd-subscribe, .dd-our-featured,
             .dd-list-tag, .dd-blog-pagination, .dd-comments, .dd-highlight-area,
             .dd-email-*, .dd-social-*, .dd-custom-block, .dd-changelog-tag,
             .owl-carousel--blog, .owl-carousel--banner*, .dd-blog-detail__description,
             .dd-change_log-content, comment form controls, and all tag-* color classes.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Blog Item — used by our-articles.php */
.v2-page .dd-blog-item {
  border: 1px solid var(--bl);
  border-radius: 20px;
  transition: background-color 0.3s linear, transform 200ms ease, box-shadow 200ms ease;
  width: 100%;
  height: 100%;
  display: block;
}

.v2-page .dd-blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.v2-page .dd-blog-item__thumbnail {
  min-height: 214px;
  position: relative;
}

.v2-page .dd-blog-item__thumbnail img {
  border-radius: 15px 15px 0 0;
  margin: auto;
  max-height: 100%;
  width: 100%;
  position: absolute;
}

.v2-page .dd-blog-item__content {
  padding: 10px 20px 20px 20px;
}

.v2-page .dd-blog-item__content-category {
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--cr);
}

.v2-page .dd-blog-item__content-tag {
  background: rgba(255, 203, 71, 0.5);
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--t2);
  padding: 3px 9px;
  text-transform: capitalize;
}

.v2-page .dd-blog-item__content-title,
.v2-page .dd-blog-item__content-title a {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: var(--ch);
  line-height: 24px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
}

.v2-page .dd-blog-item__content-description {
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--t2);
  margin-top: 22px;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: hidden;
}

.v2-page .dd-blog-item__content-writer {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--cr);
  margin-top: 0;
}

.v2-page .dd-blog-item__content-creator {
  padding-right: 10px;
  border-right: 1px solid var(--cr);
}

.v2-page .dd-blog-item__content-date {
  padding-left: 10px;
}

.v2-page .dd-blog-item__content-writer .icon-right2 {
  font-size: 30px;
}

@media (max-width: 425px) {
  .v2-page .dd-blog-item__content-title,
  .v2-page .dd-blog-item__content-title a {
    font-size: 16px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   v2 carousel slides — "Transform your menu" steps + "Our Articles" cards.
   Plug into the shared .cw/.ct carousel engine (v2-core.js + carousel-controls)
   so these sections match the homepage "What Our Customers Say" carousel.
   ────────────────────────────────────────────────────────────────────────── */

/* Center the carousel prev/next + dots controls (default core layout is
   left-aligned; digital-menu.css only loads on this page so this is scoped). */
.v2-page .qr-code .cc-btns {
  justify-content: center;
}

/* Client QR menu card */
.v2-page .dm-qr {
  min-width: 373px;
  width: 373px;
  border-radius: 18px;
  overflow: hidden;
}

.v2-page .dm-qr img {
  display: block;
  width: 100%;
  height: auto;
}

/* Step screenshot card */
.v2-page .dm-step {
  min-width: 600px;
  background: var(--wh);
  border-radius: 18px;
  border: 1px solid var(--bl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.v2-page .dm-step img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-page .dm-step span {
  display: block;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1.4;
}

/* Article card */
.v2-page .dm-art {
  display: flex;
  flex-direction: column;
  min-width: 360px;
  width: 360px;
  background: var(--wh);
  border-radius: 18px;
  border: 1px solid var(--bl);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 200ms;
}

.v2-page .dm-art:hover {
  transform: translateY(-3px);
}

.v2-page .dm-art__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.v2-page .dm-art__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-page .dm-art__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.v2-page .dm-art__cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--cr);
}

.v2-page .dm-art__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1.4;
}

.v2-page .dm-art__meta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--tm);
}

.v2-page .dm-art__tag {
  align-self: flex-start;
  display: inline-flex;
  background: var(--yet);
  border: 1px solid var(--ye);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ch);
}

/* Mobile: mirror the core .cw scroll-snap behaviour (cards fill the viewport). */
@media (max-width: 768px) {
  .v2-page .cw .dm-step,
  .v2-page .cw .dm-art,
  .v2-page .cw .dm-qr {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-width: 0;
    width: 85vw;
  }
}

@media (max-width: 480px) {
  .v2-page .cw .dm-step,
  .v2-page .cw .dm-art,
  .v2-page .cw .dm-qr {
    width: 90vw;
  }
}
