/*
 * TripTook Destination Itinerary Popup
 * Generated from the approved Elementor HTML baseline.
 * Visual values intentionally match the original widget.
 */

html.tt-product-popup-scrollbar-stable {
  scrollbar-gutter: stable;
}

.tt-product-popup-block {
  --ttpp-black: #000000;
  --ttpp-wine: #300505;
  --ttpp-rust: #AA5432;
  --ttpp-gold: #B98532;
  --ttpp-ivory: #FFFDF7;
  --ttpp-sand: #F4E8D5;
  --ttpp-brown: #332621;

  position: relative;
  width: 100%;
  isolation: isolate;
}

/*
 * Body-level popup portal.
 *
 * The live modal is moved here before interaction. This removes it from
 * Elementor columns/containers that may use transform, filter, isolation,
 * overflow or their own z-index stacking context. The maximum practical
 * z-index keeps the popup above headers, menus, sticky sections and widgets.
 */
.tt-product-popup-block.tt-product-popup-portal-root {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: none;
  isolation: isolate !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
  contain: none !important;
}

.tt-product-popup-block.tt-product-popup-portal-root
.tt-product-popup-overlay {
  position: absolute;
  inset: 0;
  z-index: 2147483647 !important;
}

.tt-product-popup-block *,
.tt-product-popup-block *::before,
.tt-product-popup-block *::after {
  box-sizing: border-box;
}

/* =========================================================
   FULL-WIDTH TRIPTOOK TRIGGER
========================================================= */

.tt-product-popup-block .tt-product-popup-trigger {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 84px;
  padding: 17px 22px;
  overflow: hidden;

  border: 1px solid rgba(129, 84, 25, 0.72);
  border-radius: 13px;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(170, 84, 50, 0.10),
      transparent 27%
    ),
    radial-gradient(
      circle at 93% 8%,
      rgba(185, 133, 50, 0.10),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ttpp-ivory),
      var(--ttpp-sand)
    );

  color: var(--ttpp-brown);
  text-align: left;
  cursor: pointer;

  box-shadow:
    0 24px 54px rgba(51, 38, 33, 0.12),
    0 7px 18px rgba(51, 38, 33, 0.06);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.tt-product-popup-block .tt-product-popup-trigger::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(129, 84, 25, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-popup-trigger::after {
  content: attr(data-destination-watermark);
  position: absolute;
  right: 72px;
  bottom: -20px;
  z-index: 0;
  color: rgba(48, 5, 5, 0.035);
  font-family: "Expletus Sans", sans-serif;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-popup-trigger:hover,
.tt-product-popup-block .tt-product-popup-trigger:focus-visible {
  border-color: rgba(170, 84, 50, 0.92);
  transform: translateY(-3px);
  box-shadow:
    0 30px 62px rgba(51, 38, 33, 0.16),
    0 10px 22px rgba(51, 38, 33, 0.08);
}

.tt-product-popup-block .tt-product-popup-trigger:focus-visible {
  outline: 2px solid rgba(185, 133, 50, 0.72);
  outline-offset: 4px;
}

.tt-product-popup-block .tt-product-trigger-ornament,
.tt-product-popup-block .tt-product-trigger-copy,
.tt-product-popup-block .tt-product-trigger-action {
  position: relative;
  z-index: 3;
}

.tt-product-popup-block .tt-product-trigger-ornament {
  display: flex;
  justify-self: start;
  align-items: center;
  gap: 7px;
  width: 62px;
}

.tt-product-popup-block .tt-product-trigger-ornament i {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--ttpp-rust),
    rgba(170, 84, 50, 0.10)
  );
}

.tt-product-popup-block .tt-product-trigger-ornament b {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ttpp-gold);
  transform: rotate(45deg);
}

.tt-product-popup-block .tt-product-trigger-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: stretch;
  text-align: left;
  gap: 3px;
  min-width: 0;
}

.tt-product-popup-block .tt-product-trigger-copy small {
  display: block;
  width: 100%;
  color: var(--ttpp-rust);
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 7.8px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tt-product-popup-block [data-tt-destination] {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.tt-product-popup-block .tt-product-trigger-copy strong {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--ttpp-black);
  text-align: left;
  white-space: nowrap;
  font-family: "Expletus Sans", sans-serif;
  font-size: clamp(16px, 1.75vw, 23px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.tt-product-popup-block .tt-product-trigger-action {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 142px;
  min-height: 38px;
  padding: 8px 14px;

  border: 1px solid var(--ttpp-black);
  border-radius: 8px;
  background: var(--ttpp-black);
  color: #ffffff;

  box-shadow:
    0 11px 23px rgba(17, 17, 17, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);

  font-family: "Montserrat", sans-serif;
  font-size: 9.3px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;

  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.tt-product-popup-block .tt-product-trigger-action::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-trigger-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.tt-product-popup-block
.tt-product-popup-trigger:hover
.tt-product-trigger-action {
  background: var(--ttpp-rust);
  border-color: var(--ttpp-rust);
  transform: translateX(2px);
}

.tt-product-popup-block
.tt-product-popup-trigger:hover
.tt-product-trigger-action svg {
  transform: translateX(3px);
}


.tt-product-popup-block .tt-product-trigger-clouds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tt-product-popup-block .tt-cloud-belt {
  position: absolute;
  left: -100%;
  top: 0;
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
  animation: ttCloudBeltFlow 48s linear infinite;
  animation-delay: -24s;
  animation-fill-mode: both;
}

.tt-product-popup-block .tt-cloud-group {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
}

.tt-product-popup-block .tt-cloud-item {
  position: absolute;
  display: block;
  opacity: 0.34;
  will-change: transform;
}

.tt-product-popup-block .tt-cloud-item svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tt-product-popup-block .tt-cloud-item path {
  fill: rgba(255, 250, 240, 0.96);
  stroke: rgba(170, 84, 50, 0.40);
  stroke-width: 0.95;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 2px 3px rgba(48, 5, 5, 0.08))
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.52));
}

.tt-product-popup-block .tt-cloud-item-one {
  left: 5%;
  top: 6px;
  width: 62px;
  height: 33px;
  opacity: 0.64;
}

.tt-product-popup-block .tt-cloud-item-two {
  left: 30%;
  top: 35px;
  width: 52px;
  height: 28px;
  opacity: 0.52;
}

.tt-product-popup-block .tt-cloud-item-three {
  left: 55%;
  top: 2px;
  width: 44px;
  height: 24px;
  opacity: 0.46;
}

.tt-product-popup-block .tt-cloud-item-four {
  left: 80%;
  top: 28px;
  width: 66px;
  height: 33px;
  opacity: 0.55;
}

.tt-product-popup-block .tt-cloud-item-one svg,
.tt-product-popup-block .tt-cloud-item-three svg {
  animation: ttCloudSoftFloatA 8s ease-in-out infinite alternate;
}

.tt-product-popup-block .tt-cloud-item-two svg,
.tt-product-popup-block .tt-cloud-item-four svg {
  animation: ttCloudSoftFloatB 10s ease-in-out infinite alternate;
}

@keyframes ttCloudBeltFlow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(50%, 0, 0);
  }
}

@keyframes ttCloudSoftFloatA {
  from {
    transform: translate3d(0, -0.45px, 0);
  }
  to {
    transform: translate3d(0, 0.65px, 0);
  }
}

@keyframes ttCloudSoftFloatB {
  from {
    transform: translate3d(0, 0.55px, 0);
  }
  to {
    transform: translate3d(0, -0.4px, 0);
  }
}

.tt-product-popup-block .tt-product-trigger-balloon {
  position: absolute;
  right: 285px;
  bottom: -62px;
  z-index: 1;
  width: 42px;
  height: 58px;
  opacity: 0;
  pointer-events: none;
  animation: ttBalloonRise 14.5s linear infinite;
}

.tt-product-popup-block .tt-product-trigger-balloon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(170, 84, 50, 0.58);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.tt-product-popup-block .tt-balloon-envelope {
  fill: rgba(185, 133, 50, 0.065);
}

.tt-product-popup-block .tt-balloon-panel {
  stroke: rgba(48, 5, 5, 0.28);
}

.tt-product-popup-block .tt-balloon-rope,
.tt-product-popup-block .tt-balloon-basket {
  stroke: rgba(48, 5, 5, 0.48);
}

.tt-product-popup-block .tt-balloon-basket {
  fill: rgba(48, 5, 5, 0.045);
}

.tt-product-popup-block .tt-balloon-sway {
  transform-origin: 32px 45px;
  animation: ttBalloonSway 5.2s ease-in-out infinite alternate;
}

@keyframes ttBalloonRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0;
  }
  10% {
    transform: translate3d(-2px, -17px, 0) scale(0.92);
    opacity: 0.56;
  }
  28% {
    transform: translate3d(3px, -58px, 0) scale(0.95);
    opacity: 0.6;
  }
  48% {
    transform: translate3d(-3px, -101px, 0) scale(0.98);
    opacity: 0.6;
  }
  68% {
    transform: translate3d(2px, -143px, 0) scale(1);
    opacity: 0.58;
  }
  84% {
    transform: translate3d(-1px, -174px, 0) scale(1.01);
    opacity: 0.42;
  }
  100% {
    transform: translate3d(2px, -205px, 0) scale(1.02);
    opacity: 0;
  }
}

@keyframes ttBalloonSway {
  from {
    transform: translate3d(-2.5px, 1.5px, 0) rotate(-1.2deg);
  }
  to {
    transform: translate3d(2.5px, -1.5px, 0) rotate(1.2deg);
  }
}

/* =========================================================
   POPUP
========================================================= */

.tt-product-popup-block .tt-product-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647 !important;
  display: grid;
  place-items: center;
  padding:
    clamp(58px, 7vh, 78px)
    clamp(72px, 6vw, 96px);

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  /*
   * A deliberate premium ease-out fade. The modal is fully prepared at
   * opacity 0 first, then eased into view without movement or scale flashes.
   */
  transition-property: opacity;
  transition-duration: 0.62s;
  transition-timing-function: cubic-bezier(.16, 1, .30, 1);
  transition-delay: 0s;
}

.tt-product-popup-block
.tt-product-popup-overlay.is-preparing,
.tt-product-popup-block
.tt-product-popup-overlay.is-open,
.tt-product-popup-block
.tt-product-popup-overlay.is-closing {
  visibility: visible;
}

.tt-product-popup-block .tt-product-popup-overlay.is-preparing {
  opacity: 0;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tt-product-popup-block .tt-product-popup-overlay.is-closing {
  opacity: 0;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-popup-backdrop {
  position: absolute;
  inset: 0;

  /*
   * A static translucent veil preserves the darkened popup backdrop
   * without nesting backdrop-filter behind Equal Gallery's animated
   * image filters. Nested blur compositing was the main whole-dialog
   * flash trigger on mobile browsers.
   */
  background: rgba(17, 10, 8, 0.82);
}

.tt-product-popup-block .tt-product-popup-dialog {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(1020px, 100%);
  max-height: min(72dvh, 720px);
  padding: 22px 24px 25px;
  overflow: hidden;

  border: 1px solid rgba(185, 133, 50, 0.78);
  border-radius: 15px;

  background:
    radial-gradient(
      circle at 5% 4%,
      rgba(170, 84, 50, 0.09),
      transparent 29%
    ),
    radial-gradient(
      circle at 96% 0,
      rgba(185, 133, 50, 0.08),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      var(--ttpp-ivory),
      var(--ttpp-sand)
    );

  box-shadow:
    0 38px 95px rgba(0, 0, 0, 0.36),
    0 12px 32px rgba(0, 0, 0, 0.19);

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: none;
}


.tt-product-popup-block .tt-product-popup-dialog::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(129, 84, 25, 0.14);
  border-radius: 9px;
  pointer-events: none;
}

.tt-product-popup-block .tt-product-popup-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 1px 1px 11px;
}

.tt-product-popup-block .tt-product-popup-heading {
  max-width: 620px;
}

.tt-product-popup-block .tt-product-popup-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--ttpp-rust);
  font-family: "Montserrat", sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.tt-product-popup-block .tt-product-popup-heading h2 {
  margin: 0;
  color: var(--ttpp-black);
  white-space: nowrap;
  font-family: "Expletus Sans", sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.tt-product-popup-block .tt-product-popup-close {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 0;

  border: 1px solid rgba(48, 5, 5, 0.22);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.82);
  color: var(--ttpp-wine);
  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.tt-product-popup-block .tt-product-popup-close svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.tt-product-popup-block .tt-product-popup-close:hover,
.tt-product-popup-block .tt-product-popup-close:focus-visible {
  background: var(--ttpp-rust);
  border-color: var(--ttpp-rust);
  color: #ffffff;
  transform: rotate(5deg);
}

.tt-product-popup-block .tt-product-popup-divider {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
}

.tt-product-popup-block .tt-product-popup-divider span {
  width: 45px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--ttpp-rust),
    rgba(170, 84, 50, 0.08)
  );
}

.tt-product-popup-block .tt-product-popup-divider i {
  width: 6px;
  height: 6px;
  border: 1px solid var(--ttpp-gold);
  transform: rotate(45deg);
}

.tt-product-popup-block .tt-product-popup-content {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(72dvh - 115px);
  padding: 3px 4px 9px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;

  scrollbar-width: thin;
  scrollbar-color:
    rgba(170, 84, 50, 0.40)
    rgba(255, 253, 247, 0.24);
}

.tt-product-popup-block
.tt-product-popup-content::-webkit-scrollbar {
  width: 6px;
}

.tt-product-popup-block
.tt-product-popup-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(170, 84, 50, 0.40);
}

.tt-product-popup-block .tt-product-popup-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 9px;
  z-index: 6;
  display: none;
  align-items: center;
  gap: 5px;
  padding: 5px 9px 5px 10px;

  border: 1px solid rgba(170, 84, 50, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 4px 15px rgba(48, 5, 5, 0.08);
  color: rgba(48, 5, 5, 0.74);

  font-family: "Montserrat", sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.tt-product-popup-block .tt-product-popup-scroll-cue svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: ttProductScrollCue 1.8s ease-in-out infinite;
}

@keyframes ttProductScrollCue {
  0%,
  100% {
    transform: translateY(-0.5px);
  }

  50% {
    transform: translateY(1.5px);
  }
}

@media (min-width: 1025px) {
  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable {
    cursor: grab;
  }

  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable
  a[href],
  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable
  button,
  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable
  input,
  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable
  select,
  .tt-product-popup-block
  .tt-product-popup-content.is-drag-scrollable
  textarea {
    cursor: pointer;
  }

  .tt-product-popup-block
  .tt-product-popup-content.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
  }

  .tt-product-popup-block
  .tt-product-popup-content.is-dragging * {
    user-select: none;
  }
}

.tt-product-popup-block .tt-product-popup-loading {
  padding: 42px 15px;
  text-align: center;
  color: var(--ttpp-brown);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
}

/* =========================================================
   PRODUCT GRID STABILITY

   The WooCommerce grid keeps its original theme/plugin styling.
   Only entrance animations are suppressed to prevent flicker.
========================================================= */

.tt-product-popup-block
.tt-product-popup-content.tt-product-grid-preparing {
  visibility: hidden;
}

.tt-product-popup-block
.tt-product-popup-content
.woocommerce,
.tt-product-popup-block
.tt-product-popup-content
ul.products,
.tt-product-popup-block
.tt-product-popup-content
li.product {
  animation: none !important;
  -webkit-animation: none !important;
}

/*
 * Static product images inside this popup.
 *
 * Equal Gallery may still provide its normal card structure,
 * reflections, radius logic and equal-height styling, but its
 * multi-image slider is disabled before initialisation. These rules
 * are a final defensive layer: only the permanent first image may be
 * painted, and temporary transition frames can never appear.
 */
.tt-product-popup-block
.tt-product-popup-content
.pc-wesg-image-area,
.tt-product-popup-block
.tt-product-popup-content
.pc-wesg-reflection {
  isolation: isolate;
}

.tt-product-popup-block
.tt-product-popup-content
.pc-wesg-image-area
> img:not(.pc-wesg-gallery-frame) {
  visibility: visible !important;
  opacity: 1 !important;
}

.tt-product-popup-block
.tt-product-popup-content
.pc-wesg-gallery-frame {
  display: none !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .tt-product-popup-block .tt-product-popup-trigger {
    min-height: 78px;
    padding: 15px 18px;
    gap: 14px;
  }

  .tt-product-popup-block .tt-product-trigger-ornament {
    width: 52px;
  }

  .tt-product-popup-block .tt-product-trigger-copy strong {
    font-size: clamp(14px, 1.75vw, 18px);
  }

  .tt-product-popup-block .tt-product-trigger-action {
    min-width: 132px;
  }

  .tt-product-popup-block .tt-product-trigger-balloon {
    right: 238px;
  }

  .tt-product-popup-block .tt-product-popup-overlay {
    padding:
      max(38px, env(safe-area-inset-top))
      max(30px, env(safe-area-inset-right))
      max(38px, env(safe-area-inset-bottom))
      max(30px, env(safe-area-inset-left));
  }

  .tt-product-popup-block .tt-product-popup-dialog {
    width: min(900px, 100%);
    max-height: calc(100dvh - 76px);
    padding: 20px 19px 22px;
  }

  .tt-product-popup-block .tt-product-popup-content {
    max-height: none;
  }

  .tt-product-popup-block .tt-product-popup-scroll-cue {
    display: flex;
  }

  .tt-product-popup-block
  .tt-product-popup-dialog.has-scroll-below
  .tt-product-popup-scroll-cue {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .tt-product-popup-block
  .tt-product-popup-dialog.has-scroll-below
  .tt-product-popup-content {
    padding-bottom: 36px;
  }

}

@media (max-width: 767px) {
  .tt-product-popup-block .tt-product-popup-trigger {
    grid-template-columns: minmax(0, 58%) auto;
    justify-content: space-between;
    min-height: 72px;
    padding: 13px 14px;
    gap: 10px;
    border-radius: 10px;
  }

  .tt-product-popup-block .tt-product-popup-trigger::before {
    inset: 6px;
    border-radius: 6px;
  }

  .tt-product-popup-block .tt-product-popup-trigger::after {
    right: 18px;
    bottom: -9px;
    font-size: 54px;
  }

  .tt-product-popup-block .tt-product-trigger-ornament {
    display: none;
  }

  .tt-product-popup-block .tt-product-trigger-copy {
    width: 58vw;
    max-width: 58vw;
    justify-self: start;
    gap: 4px;
  }

  .tt-product-popup-block .tt-product-trigger-copy small {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .tt-product-popup-block .tt-product-trigger-copy strong {
    width: max-content;
    max-width: 58vw;
    white-space: nowrap;
    font-size: clamp(9.5px, 2.85vw, 12px);
    line-height: 1;
    letter-spacing: -0.08px;
  }

  .tt-product-popup-block .tt-product-trigger-action {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 50%;
  }

  .tt-product-popup-block .tt-cloud-belt {
    animation-duration: 54s;
    animation-delay: -27s;
  }

  .tt-product-popup-block .tt-cloud-item-one {
    top: 5px;
    width: 42px;
    height: 23px;
  }

  .tt-product-popup-block .tt-cloud-item-two {
    top: 39px;
    width: 35px;
    height: 19px;
  }

  .tt-product-popup-block .tt-cloud-item-three {
    top: 1px;
    width: 30px;
    height: 17px;
  }

  .tt-product-popup-block .tt-cloud-item-four {
    top: 31px;
    width: 44px;
    height: 22px;
  }


  .tt-product-popup-block .tt-product-trigger-balloon {
    right: 118px;
    bottom: -46px;
    width: 31px;
    height: 43px;
    animation-duration: 13.5s;
  }

  .tt-product-popup-block .tt-balloon-sway {
    animation-duration: 4.8s;
  }

  .tt-product-popup-block .tt-product-trigger-action::before,
  .tt-product-popup-block .tt-product-trigger-action span {
    display: none;
  }

  .tt-product-popup-block .tt-product-popup-overlay {
    align-items: center;
    padding:
      max(22px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      max(22px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
  }

  .tt-product-popup-block .tt-product-popup-dialog {
    width: 100%;
    max-height: calc(100dvh - 44px);
    padding: 17px 12px 15px;
    border-radius: 14px;
  }

  .tt-product-popup-block .tt-product-popup-dialog::before {
    inset: 6px;
    border-radius: 8px;
  }

  .tt-product-popup-block .tt-product-popup-header {
    gap: 15px;
  }

  .tt-product-popup-block .tt-product-popup-heading h2 {
    font-size: clamp(13px, 3.8vw, 17px);
    white-space: nowrap;
  }

  .tt-product-popup-block .tt-product-popup-content {
    max-height: none;
    padding-inline: 1px;
  }

  .tt-product-popup-block .tt-product-popup-scroll-cue {
    bottom: 8px;
    padding: 5px 8px 5px 9px;
    font-size: 6.5px;
  }


}

@media (prefers-reduced-motion: reduce) {
  .tt-product-popup-block *,
  .tt-product-popup-block *::before,
  .tt-product-popup-block *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
}
