#gatard-popup-app,
#gatard-popup-app * {
  box-sizing: border-box;
}

#gatard-popup-app {
  --gatard-popup-layer: 2147483200;
  --gatard-popup-toast-layer: 2147483300;
  --gatard-popup-bg: #fbf7f2;
  --gatard-popup-surface: #fffdf7;
  --gatard-popup-text: #17140f;
  --gatard-popup-accent: #9a8550;
  --gatard-popup-accent-soft: #a7a590;
  --gatard-popup-button: #17140f;
  --gatard-popup-button-text: #fff;
  --gatard-popup-footer: #b88131;
  --gatard-popup-date-card-bg: #fffdf7;
  --gatard-popup-tag-bg: #d3a56a;
  --gatard-popup-radius: 22px;
  --gatard-popup-overlay-opacity: .74;
  --gatard-popup-overlay-blur: 5px;
  --gatard-popup-reference-width: 890px;
  --gatard-popup-reference-ratio: .838;
  --gatard-popup-reference-header: 43%;
  --gatard-popup-date-card-top: 40.5%;
  --gatard-popup-date-card-width: 73%;
  --gatard-popup-title-size: 82px;
  --gatard-popup-subtitle-size: 30px;
  --gatard-popup-date-size: 60px;
  --gatard-popup-lead-size: 34px;
  --gatard-popup-brand-size: 66px;
  --gatard-popup-tag-width: 186px;
  --gatard-popup-tag-rotation: 4deg;
  --gatard-popup-footer-height: 120px;
  --gatard-popup-close-size: 50px;
  --gatard-popup-texture-opacity: .7;
  --gatard-popup-tag-right: 56px;
  --gatard-popup-tag-bottom: 42px;
  --gatard-popup-tag-font-size: 23px;
  --gatard-popup-title-spacing: .04em;
  --gatard-popup-subtitle-spacing: .13em;
  --gatard-popup-title-weight: 900;
  --gatard-popup-text-align: center;
  --gatard-popup-cheese-x: 9%;
  --gatard-popup-cheese-y: 7%;
  --gatard-popup-fries-x: 4%;
  --gatard-popup-fries-y: 11%;
  --gatard-popup-drink-x: 5%;
  --gatard-popup-drink-y: 27%;
  --gatard-popup-leaf-x: 20%;
  --gatard-popup-leaf-y: 12%;
  --gatard-popup-photo-x: 50%;
  --gatard-popup-photo-y: 58%;
  font-family: Poppins, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gatard-popup-text);
}

#gatard-popup-app [hidden] {
  display: none !important;
}

.gatard-popup-entry {
  position: fixed;
  z-index: var(--gatard-popup-layer);
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  padding:
    max(15px, env(safe-area-inset-top))
    max(15px, env(safe-area-inset-right))
    max(15px, env(safe-area-inset-bottom))
    max(15px, env(safe-area-inset-left));
  place-items: center;
  isolation: isolate;
  overscroll-behavior: contain;
}

.gatard-popup-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 0;
  background: rgb(18 16 13 / var(--gatard-popup-overlay-opacity));
  -webkit-backdrop-filter: blur(var(--gatard-popup-overlay-blur));
  backdrop-filter: blur(var(--gatard-popup-overlay-blur));
}

.gatard-popup-positioner {
  display: grid;
  width: min(960px, 100%);
  max-height: calc(100vh - max(30px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
  max-height: calc(100dvh - max(30px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
  place-items: center;
}

.gatard-popup-entry--reference_launch .gatard-popup-positioner {
  width: min(var(--gatard-popup-reference-width), 80vh, 100%);
  width: min(var(--gatard-popup-reference-width), 80dvh, 100%);
}

.gatard-popup-dialog {
  position: relative;
  display: block;
  width: 100%;
  max-height: inherit;
  overflow: hidden;
  border: 1px solid rgb(154 133 80 / .18);
  border-radius: var(--gatard-popup-radius);
  outline: 0;
  background:
    radial-gradient(circle at 12% 9%, rgb(154 133 80 / .06) 0 1px, transparent 1.3px) 0 0 / 17px 17px,
    linear-gradient(145deg, rgb(255 253 247 / .98), var(--gatard-popup-bg));
  box-shadow:
    0 32px 90px rgb(0 0 0 / .34),
    0 3px 12px rgb(23 20 15 / .12);
  color: var(--gatard-popup-text);
  transform-origin: center center;
  container-type: inline-size;
}

.gatard-popup-dialog:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gatard-popup-accent) 75%, white);
  outline-offset: 4px;
}

.gatard-popup-close {
  position: absolute;
  z-index: 10;
  top: clamp(10px, 1.8vw, 18px);
  right: clamp(10px, 1.8vw, 18px);
  display: grid;
  width: var(--gatard-popup-close-size);
  height: var(--gatard-popup-close-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #17140f;
  box-shadow: 0 6px 18px rgb(0 0 0 / .2);
  color: #fff;
  cursor: pointer;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.gatard-popup-close svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.gatard-popup-close:hover {
  background: #2d2923;
}

.gatard-popup-close:focus-visible,
.gatard-popup-primary-button:focus-visible,
.gatard-popup-secondary-button:focus-visible,
.gatard-popup-notification-button:focus-visible,
.gatard-popup-coupon button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gatard-popup-accent);
}

.gatard-popup-reference {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  max-height: inherit;
  overflow: hidden;
  grid-template-rows:
    var(--gatard-popup-reference-header)
    minmax(0, 1fr)
    var(--gatard-popup-footer-height);
  scrollbar-color: var(--gatard-popup-accent) transparent;
  scrollbar-width: thin;
}

.gatard-popup-entry--reference_launch .gatard-popup-dialog {
  aspect-ratio: var(--gatard-popup-reference-ratio);
}

.gatard-popup-reference-head {
  position: static;
  z-index: 2;
  min-height: 0;
  padding: clamp(22px, 3.2vh, 34px) clamp(48px, 7vw, 82px) 0;
  text-align: var(--gatard-popup-text-align);
}

.gatard-popup-reference-head::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: var(--gatard-popup-reference-header);
  background:
    radial-gradient(circle at 14% 18%, rgb(177 123 37 / .08) 0 1px, transparent 1.4px) 0 0 / 17px 17px,
    linear-gradient(145deg, rgb(255 253 247 / .98), var(--gatard-popup-bg));
  content: "";
  opacity: var(--gatard-popup-texture-opacity);
}

.gatard-popup-brand {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 154px;
  gap: 5px;
  align-content: center;
  place-items: center;
}

.gatard-popup-brand-image {
  display: block;
  width: min(270px, 48%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.gatard-popup-brand-fallback {
  position: relative;
  display: inline-grid;
  min-width: 230px;
  color: #0c0b09;
  line-height: .85;
  place-items: center;
}

.gatard-popup-brand-script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(42px, var(--gatard-popup-brand-size), 90px);
  font-weight: 700;
  letter-spacing: -.06em;
  transform: rotate(-2deg);
}

.gatard-popup-brand-amp {
  margin: -5px 0 -8px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 800;
}

.gatard-popup-brand-strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(26px, 3.6vh, 37px);
  font-weight: 900;
  letter-spacing: .055em;
}

.gatard-popup-brand-claim {
  display: block;
  margin: -1px 0 0;
  color: var(--gatard-popup-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .45em;
  line-height: 1;
  text-indent: .45em;
  text-transform: uppercase;
}

.gatard-popup-brand-fallback::before,
.gatard-popup-brand-fallback::after {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 16px;
  border-top: 3px solid var(--gatard-popup-accent);
  content: "";
}

.gatard-popup-brand-fallback::before {
  right: calc(100% + 15px);
  transform: rotate(34deg);
}

.gatard-popup-brand-fallback::after {
  left: calc(100% + 15px);
  transform: rotate(-34deg);
}

.gatard-popup-eyebrow {
  margin: 5px 0 0;
  color: var(--gatard-popup-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gatard-popup-heading {
  position: relative;
  z-index: 2;
  margin-top: clamp(3px, .7vh, 8px);
}

.gatard-popup-title {
  margin: 0;
  color: var(--gatard-popup-text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(44px, min(var(--gatard-popup-title-size), 10cqw), 110px);
  font-weight: var(--gatard-popup-title-weight);
  letter-spacing: var(--gatard-popup-title-spacing);
  line-height: .93;
  text-transform: uppercase;
}

.gatard-popup-title::before,
.gatard-popup-title::after {
  display: inline-block;
  width: clamp(24px, 5vw, 50px);
  height: 18px;
  margin: 0 clamp(10px, 2.4vw, 22px);
  border-top: 3px solid var(--gatard-popup-accent);
  content: "";
  transform: translateY(-.25em) rotate(10deg);
}

.gatard-popup-title::after {
  transform: translateY(-.25em) rotate(-10deg);
}

.gatard-popup-subtitle {
  margin: 7px 0 0;
  color: var(--gatard-popup-accent);
  font-size: clamp(16px, min(var(--gatard-popup-subtitle-size), 3.65cqw), 48px);
  font-weight: 800;
  letter-spacing: var(--gatard-popup-subtitle-spacing);
  line-height: 1.1;
  text-transform: uppercase;
}

.gatard-popup-reference-divider {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(320px, 56%);
  margin: clamp(16px, 2.2vh, 23px) auto 0;
  color: var(--gatard-popup-accent);
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.gatard-popup-reference-divider span {
  height: 1px;
  background: currentColor;
}

.gatard-popup-reference-divider b {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1;
}

.gatard-popup-date-card {
  position: absolute;
  z-index: 5;
  top: var(--gatard-popup-date-card-top);
  left: 50%;
  display: grid;
  width: var(--gatard-popup-date-card-width);
  min-height: 22%;
  margin: 0;
  padding: clamp(15px, 2.2vh, 23px) clamp(20px, 4vw, 42px);
  border: 1px solid rgb(154 133 80 / .16);
  border-radius: 17px;
  background: color-mix(in srgb, var(--gatard-popup-date-card-bg) 94%, transparent);
  box-shadow: 0 10px 30px rgb(72 56 31 / .16);
  transform: translateX(-50%);
  place-items: center;
}

.gatard-popup-date-prefix {
  margin-bottom: -2px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(25px, 3.7vh, 37px);
  font-weight: 700;
  line-height: 1;
}

.gatard-popup-date-main {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, min(var(--gatard-popup-date-size), 7.15cqw), 82px);
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.gatard-popup-date-lead {
  margin-top: 8px;
  color: var(--gatard-popup-accent);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(18px, min(var(--gatard-popup-lead-size), 4cqw), 52px);
  font-weight: 600;
  line-height: 1.1;
}

.gatard-popup-date-heart {
  margin-top: 3px;
  color: var(--gatard-popup-accent);
  font-size: 17px;
  letter-spacing: .28em;
}

.gatard-popup-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #6c5839;
}

.gatard-popup-photo picture,
.gatard-popup-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.gatard-popup-photo picture {
  position: absolute;
  inset: 0;
}

.gatard-popup-photo img {
  object-fit: cover;
  object-position: var(--gatard-popup-photo-x) var(--gatard-popup-photo-y);
}

.gatard-popup-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(34 22 11 / .02), transparent 50%),
    linear-gradient(90deg, rgb(15 11 7 / .08), transparent 35%, rgb(15 11 7 / .04));
  content: "";
  pointer-events: none;
}

.gatard-popup-hanging-tag {
  position: absolute;
  z-index: 2;
  right: var(--gatard-popup-tag-right);
  bottom: var(--gatard-popup-tag-bottom);
  display: grid;
  width: var(--gatard-popup-tag-width);
  min-height: 150px;
  padding: 33px 18px 18px;
  border: 1px solid rgb(65 43 18 / .25);
  border-radius: 7px;
  background:
    radial-gradient(circle at 16px 12px, rgb(91 63 27 / .08) 0 1px, transparent 1.5px) 0 0 / 20px 20px,
    var(--gatard-popup-tag-bg);
  box-shadow: 0 12px 28px rgb(0 0 0 / .23);
  color: #231b12;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(12px, var(--gatard-popup-tag-font-size), 36px);
  line-height: 1.14;
  text-align: center;
  transform: rotate(var(--gatard-popup-tag-rotation));
  place-items: center;
}

.gatard-popup-hanging-tag::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid rgb(67 46 23 / .65);
  border-radius: 50%;
  background: #b7844a;
  content: "";
  transform: translateX(-50%);
}

.gatard-popup-hanging-tag::after {
  position: absolute;
  top: -88px;
  left: 50%;
  width: 61px;
  height: 94px;
  border: 3px solid #b89563;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: translateX(-50%);
}

.gatard-popup-hanging-tag span,
.gatard-popup-hanging-tag b {
  position: relative;
  z-index: 1;
}

.gatard-popup-hanging-tag b {
  display: block;
  font-family: Georgia, serif;
  font-size: 25px;
}

.gatard-popup-hanging-tag span {
  white-space: pre-line;
}

.gatard-popup-reference-footer {
  position: sticky;
  z-index: 4;
  bottom: 0;
  display: grid;
  min-height: var(--gatard-popup-footer-height);
  padding:
    15px
    max(28px, env(safe-area-inset-right))
    max(15px, env(safe-area-inset-bottom))
    max(28px, env(safe-area-inset-left));
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--gatard-popup-footer) 90%, #6f4719),
      color-mix(in srgb, var(--gatard-popup-footer) 82%, #e1b15e) 48%,
      color-mix(in srgb, var(--gatard-popup-footer) 90%, #6f4719)
    );
  box-shadow: 0 -1px 0 rgb(255 255 255 / .2) inset;
  grid-template-columns: minmax(0, 1fr) 1px minmax(210px, .65fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}

.gatard-popup-reference-footer--cta-only {
  grid-template-columns: minmax(190px, 300px);
  justify-content: end;
}

.gatard-popup-notification-button {
  display: flex;
  min-width: 0;
  min-height: 56px;
  padding: 7px 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  gap: 15px;
  align-items: center;
  text-align: left;
}

.gatard-popup-notification-button:hover:not(:disabled) {
  background: rgb(255 255 255 / .1);
}

.gatard-popup-notification-button--active,
.gatard-popup-notification-button--active:disabled {
  border: 1px solid rgb(255 255 255 / .35);
  background: rgb(255 255 255 / .14);
  box-shadow: 0 8px 22px rgb(66 42 13 / .12) inset;
  color: #fff;
  cursor: default;
  opacity: 1;
}

.gatard-popup-notification-button--active .gatard-popup-bell-icon {
  filter: drop-shadow(0 2px 5px rgb(0 0 0 / .16));
}

.gatard-popup-notification-button--active strong::before {
  margin-right: 7px;
  content: "✓";
}

.gatard-popup-notification-button--pending {
  border: 1px dashed rgb(255 255 255 / .42);
  background: rgb(255 255 255 / .08);
}

.gatard-popup-bell-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gatard-popup-notification-button span {
  display: grid;
  min-width: 0;
}

.gatard-popup-notification-button strong {
  overflow: hidden;
  font-size: clamp(14px, 1.65vw, 18px);
  letter-spacing: .035em;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.gatard-popup-notification-button small {
  font-size: clamp(13px, 1.55vw, 17px);
  line-height: 1.3;
}

.gatard-popup-footer-divider {
  width: 1px;
  height: 50px;
  background: rgb(255 255 255 / .42);
}

.gatard-popup-primary-button,
.gatard-popup-secondary-button {
  min-width: 0;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 9px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gatard-popup-primary-button {
  border: 1px solid var(--gatard-popup-button);
  background: var(--gatard-popup-button);
  color: var(--gatard-popup-button-text);
  box-shadow: 0 10px 20px rgb(0 0 0 / .13);
}

.gatard-popup-primary-button:hover {
  filter: brightness(1.12);
}

.gatard-popup-secondary-button {
  border: 1px solid rgb(154 133 80 / .3);
  background: var(--gatard-popup-surface);
  color: var(--gatard-popup-text);
}

.gatard-popup-notification-consent {
  position: absolute;
  z-index: 8;
  right: 20px;
  bottom: 112px;
  left: 20px;
  display: grid;
  padding: 20px;
  border: 1px solid rgb(154 133 80 / .24);
  border-radius: 17px;
  background: rgb(255 253 247 / .98);
  box-shadow: 0 22px 55px rgb(0 0 0 / .28);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
}

.gatard-popup-notification-consent-icon {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--gatard-popup-accent) 16%, white);
  color: var(--gatard-popup-accent);
  place-items: center;
}

.gatard-popup-notification-consent strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.gatard-popup-notification-consent p {
  margin: 0;
  color: color-mix(in srgb, var(--gatard-popup-text) 74%, white);
  font-size: 13px;
  line-height: 1.45;
}

.gatard-popup-notification-consent-actions {
  display: flex;
  gap: 10px;
}

.gatard-popup-decorations {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--gatard-popup-accent) 84%, #d89c43);
  opacity: var(--gatard-popup-texture-opacity);
  pointer-events: none;
}

.gatard-popup-decoration {
  position: absolute;
  display: block;
}

.gatard-popup-decoration path,
.gatard-popup-decoration circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gatard-popup-decoration--cheese {
  top: var(--gatard-popup-cheese-y);
  left: var(--gatard-popup-cheese-x);
  width: clamp(70px, 10vw, 104px);
  transform: rotate(-9deg);
}

.gatard-popup-decoration--leaf {
  top: var(--gatard-popup-leaf-y);
  right: var(--gatard-popup-leaf-x);
  width: clamp(38px, 5vw, 54px);
  transform: rotate(16deg);
}

.gatard-popup-decoration--leaf-two {
  top: 17%;
  left: 23%;
  width: clamp(31px, 4vw, 44px);
  transform: rotate(-20deg) scaleX(-1);
}

.gatard-popup-decoration--fries {
  top: var(--gatard-popup-fries-y);
  right: var(--gatard-popup-fries-x);
  width: clamp(64px, 8vw, 88px);
  transform: rotate(7deg);
}

.gatard-popup-decoration--drink {
  top: var(--gatard-popup-drink-y);
  left: var(--gatard-popup-drink-x);
  width: clamp(54px, 7vw, 74px);
  transform: rotate(-8deg);
}

.gatard-popup-decoration--crest {
  top: 1.4%;
  left: 50%;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  transform: translateX(-50%);
}

.gatard-popup-decoration--spark-one {
  top: 25%;
  left: 8%;
  font-size: 18px;
}

.gatard-popup-decoration--spark-two {
  top: 31%;
  right: 5%;
  font-size: 13px;
}

.gatard-popup-decoration--spark-three {
  top: 39%;
  right: 5%;
  font-size: 15px;
}

.gatard-popup-standard {
  max-height: inherit;
  padding: clamp(34px, 6vw, 72px);
  overflow: auto;
}

.gatard-popup-entry--fullscreen {
  padding: 0;
}

.gatard-popup-entry--fullscreen .gatard-popup-positioner,
.gatard-popup-entry--fullscreen .gatard-popup-dialog {
  width: 100%;
  height: 100dvh;
  max-height: none;
}

.gatard-popup-entry--fullscreen .gatard-popup-dialog {
  border: 0;
  border-radius: 0;
}

.gatard-popup-entry--fullscreen .gatard-popup-standard {
  display: grid;
  min-height: 100%;
  align-content: center;
}

.gatard-popup-entry--floating_bar {
  padding-top: 0;
  place-items: end center;
  pointer-events: none;
}

.gatard-popup-entry--floating_bar .gatard-popup-overlay {
  display: none;
}

.gatard-popup-entry--floating_bar .gatard-popup-positioner {
  width: min(1180px, 100%);
  max-height: min(46dvh, 340px);
  pointer-events: auto;
}

.gatard-popup-entry--floating_bar .gatard-popup-dialog {
  border-radius: var(--gatard-popup-radius) var(--gatard-popup-radius) 0 0;
}

.gatard-popup-entry--floating_bar .gatard-popup-standard {
  padding: clamp(18px, 3vw, 32px) clamp(56px, 6vw, 82px) clamp(18px, 3vw, 32px) clamp(24px, 4vw, 50px);
}

.gatard-popup-entry--floating_bar .gatard-popup-blocks {
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  align-items: center;
}

.gatard-popup-entry--drawer {
  place-items: center end;
}

.gatard-popup-entry--drawer .gatard-popup-positioner {
  width: min(460px, 100%);
  height: calc(100dvh - max(30px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
  max-height: none;
}

.gatard-popup-entry--drawer .gatard-popup-dialog,
.gatard-popup-entry--drawer .gatard-popup-standard {
  height: 100%;
}

.gatard-popup-blocks {
  display: grid;
  gap: 18px;
}

.gatard-popup-block {
  min-width: 0;
  width: var(--gatard-widget-width, 100%);
  max-width: var(--gatard-widget-max-width, none);
  margin-top: var(--gatard-widget-margin-top, 0);
  margin-bottom: var(--gatard-widget-margin-bottom, 0);
  padding:
    var(--gatard-widget-padding-y, 0)
    var(--gatard-widget-padding-x, 0);
  border: var(--gatard-widget-border-width, 0) solid var(--gatard-widget-border-color, transparent);
  border-radius: var(--gatard-widget-radius, 0);
  background: var(--gatard-widget-background, transparent);
  color: var(--gatard-widget-color, inherit);
  letter-spacing: var(--gatard-widget-letter-spacing, 0);
}

.gatard-popup-widget-align--left {
  justify-self: start;
  text-align: left;
}

.gatard-popup-widget-align--center {
  justify-self: center;
  text-align: center;
}

.gatard-popup-widget-align--right {
  justify-self: end;
  text-align: right;
}

.gatard-popup-widget-shadow--soft {
  box-shadow: 0 8px 22px rgb(32 25 17 / .09);
}

.gatard-popup-widget-shadow--medium {
  box-shadow: 0 14px 38px rgb(32 25 17 / .16);
}

.gatard-popup-widget-shadow--strong {
  box-shadow: 0 22px 58px rgb(25 18 10 / .24);
}

.gatard-popup-block h3,
.gatard-popup-block h4,
.gatard-popup-block p {
  margin: 0;
  color: inherit;
  letter-spacing: inherit;
}

.gatard-popup-block h3 {
  font-size: var(--gatard-widget-font-size, clamp(30px, 5vw, 56px));
  font-weight: var(--gatard-widget-font-weight, 800);
  line-height: var(--gatard-widget-line-height, 1.05);
}

.gatard-popup-block h4 {
  color: var(--gatard-widget-color, var(--gatard-popup-accent));
  font-size: var(--gatard-widget-font-size, clamp(17px, 2.5vw, 25px));
  font-weight: var(--gatard-widget-font-weight, 700);
  line-height: var(--gatard-widget-line-height, 1.2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gatard-popup-block p {
  font-size: var(--gatard-widget-font-size, clamp(15px, 2vw, 19px));
  font-weight: var(--gatard-widget-font-weight, 400);
  line-height: var(--gatard-widget-line-height, 1.65);
}

.gatard-popup-block--handwritten p {
  color: var(--gatard-popup-accent);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: var(--gatard-widget-font-size, clamp(24px, 4vw, 38px));
  font-weight: var(--gatard-widget-font-weight, 400);
  line-height: var(--gatard-widget-line-height, 1.2);
}

.gatard-popup-block img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: max(var(--gatard-widget-radius, 0px), calc(var(--gatard-popup-radius) * .6));
  object-fit: cover;
}

.gatard-popup-block .gatard-popup-primary-button,
.gatard-popup-block .gatard-popup-secondary-button {
  background: var(--gatard-widget-button-background, var(--gatard-popup-button));
  color: var(--gatard-widget-button-color, var(--gatard-popup-button-text));
}

.gatard-popup-widget-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: inherit;
}

.gatard-popup-widget-buttons .gatard-popup-primary-button,
.gatard-popup-widget-buttons .gatard-popup-secondary-button {
  flex: 1 1 150px;
}

.gatard-popup-widget-video {
  display: block;
  width: 100%;
  max-height: min(55dvh, 620px);
  border-radius: max(var(--gatard-widget-radius, 0px), calc(var(--gatard-popup-radius) * .6));
  background: #17140f;
  object-fit: contain;
}

.gatard-popup-widget-icon {
  display: inline-grid;
  min-width: 1.6em;
  min-height: 1.6em;
  font-size: var(--gatard-widget-font-size, clamp(34px, 5vw, 64px));
  line-height: 1;
  place-items: center;
}

.gatard-popup-widget-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.gatard-popup-widget-list li {
  display: flex;
  font-size: var(--gatard-widget-font-size, clamp(14px, 1.8vw, 18px));
  gap: 9px;
  align-items: flex-start;
}

.gatard-popup-widget-list li span {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gatard-popup-accent) 14%, transparent);
  color: var(--gatard-popup-accent);
  flex: 0 0 22px;
  font-size: 12px;
  place-items: center;
}

.gatard-popup-widget-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.gatard-popup-widget-social strong {
  width: 100%;
}

.gatard-popup-widget-social a {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--gatard-popup-accent) 30%, transparent);
  border-radius: 999px;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  align-items: center;
}

.gatard-popup-widget-progress-wrap {
  display: grid;
  gap: 8px;
}

.gatard-popup-widget-progress-wrap > span:first-child {
  display: flex;
  font-size: 13px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.gatard-popup-widget-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gatard-popup-accent) 14%, transparent);
}

.gatard-popup-widget-progress::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--gatard-popup-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gatard-popup-accent), var(--gatard-popup-accent-soft));
  content: "";
}

.gatard-popup-widget-product {
  display: grid;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gatard-popup-accent) 24%, transparent);
  border-radius: max(var(--gatard-widget-radius, 0px), 14px);
  background: var(--gatard-popup-surface);
  grid-template-columns: minmax(110px, 34%) minmax(0, 1fr);
}

.gatard-popup-widget-product > img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: 0;
  object-fit: cover;
}

.gatard-popup-widget-product > span {
  display: grid;
  padding: 18px;
  gap: 10px;
  align-content: center;
}

.gatard-popup-widget-product strong {
  font-size: clamp(17px, 2vw, 23px);
}

.gatard-popup-widget-product small {
  color: var(--gatard-popup-accent);
  font-size: 16px;
  font-weight: 800;
}

.gatard-popup-widget-rating {
  display: grid;
  margin: 0;
  gap: 8px;
}

.gatard-popup-widget-rating > span {
  color: #c28c37;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .08em;
}

.gatard-popup-widget-rating blockquote {
  margin: 0;
  font-size: var(--gatard-widget-font-size, clamp(15px, 2vw, 19px));
  font-style: italic;
  line-height: 1.6;
}

@keyframes gatard-popup-widget-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gatard-popup-widget-slide-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gatard-popup-widget-zoom {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

.gatard-popup-is-opening .gatard-popup-widget-animation--fade {
  animation: gatard-popup-widget-fade .55s ease both;
}

.gatard-popup-is-opening .gatard-popup-widget-animation--slide_up {
  animation: gatard-popup-widget-slide-up .55s cubic-bezier(.2, .8, .2, 1) both;
}

.gatard-popup-is-opening .gatard-popup-widget-animation--zoom {
  animation: gatard-popup-widget-zoom .5s cubic-bezier(.2, .8, .2, 1) both;
}

.gatard-popup-separator {
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(154 133 80 / .22);
}

.gatard-popup-spacer {
  display: block;
  height: var(--gatard-popup-spacer, 24px);
}

.gatard-popup-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgb(154 133 80 / .25);
  border-radius: 999px;
  background: color-mix(in srgb, var(--gatard-popup-accent) 10%, white);
  color: var(--gatard-popup-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  align-items: center;
  text-transform: uppercase;
}

.gatard-popup-coupon {
  display: flex;
  min-height: 52px;
  border: 1px dashed var(--gatard-popup-accent);
  border-radius: 11px;
  overflow: hidden;
}

.gatard-popup-coupon code {
  flex: 1;
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 800;
}

.gatard-popup-coupon button {
  min-width: 100px;
  border: 0;
  background: var(--gatard-popup-accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.gatard-popup-countdown {
  display: flex;
  margin-top: 8px;
  gap: 7px;
  justify-content: center;
}

.gatard-popup-countdown-unit {
  display: grid;
  min-width: 54px;
  padding: 7px;
  border: 1px solid rgb(154 133 80 / .2);
  border-radius: 8px;
  background: rgb(255 255 255 / .66);
  place-items: center;
}

.gatard-popup-countdown-unit strong {
  font-size: 19px;
  line-height: 1;
}

.gatard-popup-countdown-unit small {
  margin-top: 3px;
  color: var(--gatard-popup-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gatard-popup-notification-app {
  position: fixed;
  z-index: var(--gatard-popup-toast-layer);
  right: max(15px, env(safe-area-inset-right));
  bottom: max(15px, env(safe-area-inset-bottom));
  display: grid;
  width: min(390px, calc(100vw - 30px));
  gap: 10px;
  pointer-events: none;
}

.gatard-popup-toast {
  padding: 14px 17px;
  border: 1px solid rgb(154 133 80 / .22);
  border-left: 4px solid var(--gatard-popup-accent);
  border-radius: 12px;
  background: #fffdf7;
  box-shadow: 0 15px 40px rgb(0 0 0 / .24);
  color: #17140f;
  font-size: 14px;
  pointer-events: auto;
}

.gatard-popup-toast--error {
  border-left-color: #b23b31;
}

.gatard-popup-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gatard-popup-entry.gatard-popup-is-opening .gatard-popup-dialog,
.gatard-popup-entry.gatard-popup-is-opening .gatard-popup-overlay,
.gatard-popup-entry.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-entry.gatard-popup-is-closing .gatard-popup-overlay {
  animation-duration: var(--gatard-popup-animation-duration, 420ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.2, .78, .22, 1);
}

.gatard-popup-entry.gatard-popup-is-opening .gatard-popup-overlay {
  animation-name: gatard-popup-overlay-in;
}

.gatard-popup-entry.gatard-popup-is-closing .gatard-popup-overlay {
  animation-name: gatard-popup-overlay-out;
}

.gatard-popup-animation--fade.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-fade-in;
}

.gatard-popup-animation--fade.gatard-popup-is-closing .gatard-popup-dialog {
  animation-name: gatard-popup-fade-out;
}

.gatard-popup-animation--slide_top.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-slide-top-in;
}

.gatard-popup-animation--slide_bottom.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-slide-bottom-in;
}

.gatard-popup-animation--slide_left.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-slide-left-in;
}

.gatard-popup-animation--slide_right.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-slide-right-in;
}

.gatard-popup-animation--soft_zoom.gatard-popup-is-opening .gatard-popup-dialog,
.gatard-popup-animation--elegant.gatard-popup-is-opening .gatard-popup-dialog {
  animation-name: gatard-popup-elegant-in;
}

.gatard-popup-animation--slide_top.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-animation--slide_bottom.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-animation--slide_left.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-animation--slide_right.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-animation--soft_zoom.gatard-popup-is-closing .gatard-popup-dialog,
.gatard-popup-animation--elegant.gatard-popup-is-closing .gatard-popup-dialog {
  animation-name: gatard-popup-elegant-out;
}

@keyframes gatard-popup-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gatard-popup-overlay-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes gatard-popup-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gatard-popup-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes gatard-popup-elegant-in {
  from { opacity: 0; transform: translateY(24px) scale(.965); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes gatard-popup-elegant-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(15px) scale(.98); }
}

@keyframes gatard-popup-slide-top-in {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gatard-popup-slide-bottom-in {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gatard-popup-slide-left-in {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gatard-popup-slide-right-in {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
