/*
 * 193.travel shop design system
 * Shared visual language for Gutenberg homepage blocks + WooCommerce screens.
 */
:root {
  --t193-bg: #f7f5ef;
  --t193-surface: #ffffff;
  --t193-surface-soft: #f1eee6;
  --t193-text: #171717;
  --t193-muted: #706e68;
  --t193-line: rgba(23, 23, 23, 0.12);
  --t193-line-strong: rgba(23, 23, 23, 0.2);
  --t193-accent: #ff5a1f;
  --t193-accent-contrast: #ffffff;
  --t193-radius-sm: 14px;
  --t193-radius-md: 20px;
  --t193-radius: 26px;
  --t193-radius-lg: 34px;
  --t193-shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.06);
  --t193-shadow: 0 22px 60px rgba(17, 17, 17, 0.10);
  --t193-speed: 180ms;
}

.travel193-shell {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

/* Let the homepage Hero meet the header without block-theme wrapper spacing. */
body.home .wp-site-blocks > .wp-block-group:has(.travel193-hero),
body.home main.wp-block-group:has(.travel193-hero) {
  margin-block-start: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.home main.wp-block-group:has(.travel193-hero) > .wp-block-group.alignfull {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.home .wp-block-post-content:has(> .travel193-hero) {
  margin-block-start: 0 !important;
  padding-inline: 0 !important;
  padding-top: 0 !important;
}

body.home .wp-block-post-content:has(> .travel193-hero) > .travel193-hero:first-child {
  margin-block-start: 0 !important;
}

/* ---------- Site header ---------- */
header.wp-block-template-part {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--t193-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.045);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

header.wp-block-template-part > .wp-block-group {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

header.wp-block-template-part .wp-block-group.alignwide {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto !important;
  padding-block: 12px !important;
}

header.wp-block-template-part .wp-block-site-logo img {
  width: auto;
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
}

header.wp-block-template-part .wp-block-site-title {
  margin: 0;
  color: var(--t193-text);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

header.wp-block-template-part .wp-block-site-title a,
header.wp-block-template-part .wp-block-navigation a {
  color: inherit;
  text-decoration: none;
}

header.wp-block-template-part .wp-block-navigation-item__content {
  position: relative;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 750;
}

header.wp-block-template-part .wp-block-navigation-item__content::after {
  position: absolute;
  right: 4px;
  bottom: 5px;
  left: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--t193-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t193-speed) ease;
}

header.wp-block-template-part .wp-block-navigation-item__content:hover::after,
header.wp-block-template-part .current-menu-item > .wp-block-navigation-item__content::after {
  transform: scaleX(1);
  transform-origin: left;
}

header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
  padding: 28px;
  background: var(--t193-text) !important;
  color: #fff !important;
}

header.wp-block-template-part .wp-block-navigation__responsive-container-open,
header.wp-block-template-part .wp-block-navigation__responsive-container-close {
  padding: 10px;
  border-radius: 999px;
}

/* ---------- Site footer ---------- */
footer.wp-block-template-part {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #171717;
  color: rgba(255, 255, 255, 0.76);
}

footer.wp-block-template-part::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

footer.wp-block-template-part > .wp-block-group {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto !important;
  padding-block: clamp(64px, 8vw, 104px) 34px !important;
}

footer.wp-block-template-part .wp-block-site-logo img {
  width: auto;
  max-width: 190px;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

footer.wp-block-template-part .wp-block-site-title,
footer.wp-block-template-part h2,
footer.wp-block-template-part h3,
footer.wp-block-template-part strong {
  color: #fff;
}

footer.wp-block-template-part .wp-block-site-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

footer.wp-block-template-part a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
  transition: color var(--t193-speed) ease;
}

footer.wp-block-template-part a:hover { color: var(--t193-accent); }

footer.wp-block-template-part .wp-block-navigation-item__content {
  padding-block: 5px;
  font-weight: 700;
}

footer.wp-block-template-part .wp-block-separator {
  border-color: rgba(255, 255, 255, 0.14);
}

/* ---------- Shared interactive primitives ---------- */
.travel193-button,
body.travel193-shop-ui .woocommerce a.button,
body.travel193-shop-ui .woocommerce button.button,
body.travel193-shop-ui .woocommerce input.button,
body.travel193-shop-ui .woocommerce #respond input#submit,
body.travel193-shop-ui .wc-block-components-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--t193-text) !important;
  border-radius: 999px !important;
  background: var(--t193-text) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: transform var(--t193-speed) ease, background var(--t193-speed) ease, border-color var(--t193-speed) ease, box-shadow var(--t193-speed) ease;
}

.travel193-button {
  margin-top: 32px;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--t193-text) !important;
}

.travel193-button:hover,
body.travel193-shop-ui .woocommerce a.button:hover,
body.travel193-shop-ui .woocommerce button.button:hover,
body.travel193-shop-ui .woocommerce input.button:hover,
body.travel193-shop-ui .woocommerce #respond input#submit:hover,
body.travel193-shop-ui .wc-block-components-button:hover {
  transform: translateY(-2px);
  border-color: var(--t193-accent) !important;
  background: var(--t193-accent) !important;
  color: var(--t193-accent-contrast) !important;
  box-shadow: var(--t193-shadow-sm) !important;
}

.travel193-button:focus-visible,
.travel193-category-card:focus-visible,
body.travel193-shop-ui .woocommerce a:focus-visible,
body.travel193-shop-ui .woocommerce button:focus-visible,
body.travel193-shop-ui .woocommerce input:focus-visible,
body.travel193-shop-ui .woocommerce select:focus-visible,
body.travel193-shop-ui .woocommerce textarea:focus-visible,
body.travel193-shop-ui .wc-block-components-button:focus-visible,
body.travel193-shop-ui .wc-block-components-text-input input:focus-visible {
  outline: 3px solid var(--t193-accent) !important;
  outline-offset: 3px;
}

/* ---------- Homepage hero ---------- */
.travel193-hero {
  position: relative;
  min-height: clamp(520px, 72svh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #171717 var(--travel193-hero-image, linear-gradient(135deg, #202020, #3a3a3a)) center / cover no-repeat;
  color: #fff;
}

.travel193-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 12%, rgba(0, 0, 0, 0.72) 100%);
}

.travel193-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 96px 56px;
}

.travel193-hero__content { max-width: 820px; }

.travel193-hero__logo {
  display: block;
  width: auto;
  max-width: min(280px, 70vw);
  max-height: 100px;
  margin: 0 0 28px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.18));
}

.travel193-hero__eyebrow,
.travel193-section-heading__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.travel193-hero__title {
  margin: 0;
  max-width: 11ch;
  color: inherit;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  font-weight: 850;
  text-wrap: balance;
}

.travel193-hero__subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

/* ---------- Homepage categories ---------- */
.travel193-categories {
  background: var(--t193-bg);
  color: var(--t193-text);
  padding-block: 72px 88px;
}

.travel193-section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.travel193-section-heading__kicker { color: var(--t193-accent); }

.travel193-section-heading h2 {
  margin: 0;
  color: var(--t193-text);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 850;
  text-wrap: balance;
}

.travel193-section-heading p:not(.travel193-section-heading__kicker) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--t193-muted);
  font-size: 17px;
  line-height: 1.62;
}

.travel193-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.travel193-category-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-md);
  background: var(--t193-surface);
  color: var(--t193-text);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
  transition: transform var(--t193-speed) ease, box-shadow var(--t193-speed) ease, border-color var(--t193-speed) ease;
}

.travel193-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--t193-line-strong);
  box-shadow: var(--t193-shadow);
  color: var(--t193-text);
}

.travel193-category-card.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.travel193-category-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--t193-surface-soft);
}

.travel193-category-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel193-category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel193-category-card__body { min-width: 0; }

.travel193-category-card__title {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.travel193-category-card__count {
  display: block;
  margin-top: 6px;
  color: var(--t193-muted);
  font-size: 13px;
  line-height: 1.4;
}

.travel193-category-card__arrow {
  font-size: 26px;
  line-height: 1;
  transition: transform var(--t193-speed) ease, color var(--t193-speed) ease;
}

.travel193-category-card:hover .travel193-category-card__arrow {
  transform: translate(3px, -3px);
  color: var(--t193-accent);
}

.travel193-categories__empty {
  padding: 20px 22px;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-sm);
  background: var(--t193-surface);
}


/* ---------- Certificates information page ---------- */
.travel193-certificates {
  background: var(--t193-bg);
  color: var(--t193-text);
  padding-block: 44px 88px;
}

.travel193-certificates__hero {
  display: grid;
  gap: 24px;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-lg);
  background: var(--t193-surface);
  box-shadow: var(--t193-shadow-sm);
}

.travel193-certificates__badge {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: var(--t193-surface-soft);
  color: var(--t193-text);
}

.travel193-certificates__badge svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.travel193-certificates__intro { max-width: 860px; }

.travel193-certificates__intro h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--t193-text);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 850;
  text-wrap: balance;
}

.travel193-certificates__intro > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--t193-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.62;
}

.travel193-certificates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.travel193-certificates__card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-md);
  background: var(--t193-surface);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
}

.travel193-certificates__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--t193-surface-soft);
  color: var(--t193-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.travel193-certificates__card h2 {
  margin: 38px 0 12px;
  color: var(--t193-text);
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 850;
}

.travel193-certificates__card p {
  margin: 0;
  color: var(--t193-muted);
  font-size: 15px;
  line-height: 1.65;
}

.travel193-certificates__gallery {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(92, 80, 255, 0.15), transparent 38%),
    #0f1218;
}

.travel193-certificates__gallery-heading {
  display: flex;
  gap: 12px 28px;
  margin-bottom: 24px;
  align-items: end;
  justify-content: space-between;
}

.travel193-certificates__gallery-heading .travel193-section-heading__kicker {
  margin: 0;
}

.travel193-certificates__gallery-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: right;
  text-wrap: balance;
}

.travel193-certificates__gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.travel193-certificates__gallery-item {
  min-width: 0;
  margin: 0;
}

.travel193-certificates__gallery-link {
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(190px, 22vw, 280px);
  min-height: 0;
  padding: clamp(10px, 1.6vw, 18px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 50, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 10%, rgba(200, 255, 50, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    #090c11;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: border-color var(--t193-speed) ease, transform var(--t193-speed) ease, box-shadow var(--t193-speed) ease;
}

.travel193-certificates__gallery-image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.travel193-certificates__gallery-action {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(200, 255, 50, 0.3);
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.88);
  color: var(--t193-accent);
  font-size: 18px;
  line-height: 1;
  transition: background var(--t193-speed) ease, color var(--t193-speed) ease;
}

.travel193-certificates__gallery-link:hover {
  border-color: var(--t193-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.travel193-certificates__gallery-link:hover .travel193-certificates__gallery-image {
  transform: scale(1.018);
}

.travel193-certificates__gallery-link:hover .travel193-certificates__gallery-action {
  background: var(--t193-accent);
  color: #080a0e;
}

.travel193-certificates__gallery-item figcaption {
  margin: 10px 4px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.fancybox__container {
  --fancybox-bg: rgba(3, 4, 7, 0.96);
  --fancybox-color: #fff;
  --fancybox-hover-color: var(--t193-accent);
  font-family: var(--t193-font);
}

.fancybox__backdrop {
  background:
    radial-gradient(circle at 90% 4%, rgba(200, 255, 50, 0.1), transparent 30%),
    rgba(3, 4, 7, 0.96);
  backdrop-filter: blur(8px);
}

.fancybox__slide {
  padding: clamp(12px, 3vw, 34px);
}

.fancybox__content,
.fancybox__content > img {
  max-width: 100%;
  max-height: 100%;
}

.fancybox__content > img {
  object-fit: contain;
}

.fancybox__container .f-button {
  border: 1px solid rgba(200, 255, 50, 0.3);
  background: rgba(8, 10, 14, 0.88);
  color: #fff;
}

.fancybox__container .f-button:hover {
  border-color: var(--t193-accent);
  background: var(--t193-accent);
  color: #080a0e;
}

.fancybox__container [data-panzoom-action],
.fancybox__container [data-autoplay-action],
.fancybox__container [data-fullscreen-action],
.fancybox__container [data-thumbs-action],
.fancybox__container .fancybox__thumbs {
  display: none !important;
}

.travel193-certificates__cta {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--t193-radius-lg);
  background: var(--t193-text);
  color: #fff;
}

.travel193-certificates__cta-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.travel193-certificates__cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 850;
  text-wrap: balance;
}

.travel193-certificates__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--t193-text);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--t193-speed) ease, background var(--t193-speed) ease, border-color var(--t193-speed) ease, color var(--t193-speed) ease;
}

.travel193-certificates__button:hover {
  transform: translateY(-2px);
  border-color: var(--t193-accent);
  background: var(--t193-accent);
  color: var(--t193-accent-contrast);
}

.travel193-certificates__button:focus-visible {
  outline: 3px solid var(--t193-accent);
  outline-offset: 3px;
}

.travel193-certificates__button span {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

/* ---------- WooCommerce shared page shell ---------- */
body.travel193-shop-ui {
  background: var(--t193-bg);
  color: var(--t193-text);
}

body.travel193-shop-ui .woocommerce,
body.travel193-shop-ui .woocommerce-page .woocommerce,
body.travel193-shop-ui .wc-block-cart,
body.travel193-shop-ui .wc-block-checkout {
  color: var(--t193-text);
}

body.travel193-shop-ui .woocommerce h1,
body.travel193-shop-ui .woocommerce h2,
body.travel193-shop-ui .woocommerce h3,
body.travel193-shop-ui .woocommerce-page h1,
body.travel193-shop-ui .woocommerce-page h2,
body.travel193-shop-ui .woocommerce-page h3 {
  color: var(--t193-text);
  font-family: inherit;
  font-weight: 850;
  letter-spacing: -0.03em;
}

body.travel193-shop-ui .woocommerce-products-header,
body.travel193-shop-ui .woocommerce .woocommerce-breadcrumb,
body.travel193-shop-ui .woocommerce .woocommerce-result-count,
body.travel193-shop-ui .woocommerce .woocommerce-ordering,
body.travel193-shop-ui .woocommerce ul.products,
body.travel193-shop-ui .woocommerce div.product,
body.travel193-shop-ui .woocommerce-cart-form,
body.travel193-shop-ui .cart-collaterals,
body.travel193-shop-ui .woocommerce-checkout,
body.travel193-shop-ui .woocommerce-account .woocommerce,
body.travel193-shop-ui .woocommerce-notices-wrapper {
  box-sizing: border-box;
}

body.travel193-shop-ui .woocommerce-products-header {
  margin: 0 0 34px;
}

body.travel193-shop-ui .woocommerce-products-header__title.page-title,
body.travel193-shop-ui .woocommerce h1.page-title {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.travel193-shop-ui .term-description,
body.travel193-shop-ui .woocommerce-products-header .term-description {
  max-width: 720px;
  color: var(--t193-muted);
  font-size: 16px;
  line-height: 1.65;
}

body.travel193-shop-ui .woocommerce .woocommerce-breadcrumb {
  margin: 0 0 24px;
  color: var(--t193-muted);
  font-size: 13px;
  line-height: 1.5;
}

body.travel193-shop-ui .woocommerce .woocommerce-breadcrumb a {
  color: var(--t193-text);
  text-decoration: none;
}

body.travel193-shop-ui .woocommerce .woocommerce-breadcrumb a:hover { color: var(--t193-accent); }

body.travel193-shop-ui .woocommerce .woocommerce-result-count {
  margin: 0 0 20px;
  color: var(--t193-muted);
  font-size: 14px;
}

body.travel193-shop-ui .woocommerce .woocommerce-ordering { margin: 0 0 24px; }

body.travel193-shop-ui .woocommerce .woocommerce-ordering select,
body.travel193-shop-ui .woocommerce select,
body.travel193-shop-ui .woocommerce input.input-text,
body.travel193-shop-ui .woocommerce textarea,
body.travel193-shop-ui .woocommerce .quantity .qty,
body.travel193-shop-ui .wc-block-components-text-input input,
body.travel193-shop-ui .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 50px;
  border: 1px solid var(--t193-line-strong) !important;
  border-radius: var(--t193-radius-sm) !important;
  background: var(--t193-surface) !important;
  color: var(--t193-text) !important;
  font-family: inherit;
  font-size: 15px !important;
  box-shadow: none !important;
}

body.travel193-shop-ui .woocommerce .woocommerce-ordering select,
body.travel193-shop-ui .woocommerce select {
  padding: 0 44px 0 16px;
}

body.travel193-shop-ui .woocommerce input.input-text,
body.travel193-shop-ui .woocommerce textarea,
body.travel193-shop-ui .wc-block-components-text-input input {
  padding: 12px 15px;
}

body.travel193-shop-ui .woocommerce textarea { min-height: 130px; }

/* ---------- Product loop / catalog ---------- */
body.travel193-shop-ui .woocommerce ul.products,
body.travel193-shop-ui .woocommerce-page ul.products,
body.travel193-shop-ui .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
  margin: 0 !important;
  padding: 0 !important;
}

body.travel193-shop-ui .woocommerce ul.products::before,
body.travel193-shop-ui .woocommerce ul.products::after { display: none !important; }

body.travel193-shop-ui .woocommerce ul.products li.product,
body.travel193-shop-ui .woocommerce-page ul.products li.product,
body.travel193-shop-ui .wc-block-grid__product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 18px !important;
  overflow: hidden;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-md);
  background: var(--t193-surface);
  text-align: left !important;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
  transition: transform var(--t193-speed) ease, box-shadow var(--t193-speed) ease, border-color var(--t193-speed) ease;
}

body.travel193-shop-ui .woocommerce ul.products li.product:hover,
body.travel193-shop-ui .wc-block-grid__product:hover {
  transform: translateY(-4px);
  border-color: var(--t193-line-strong);
  box-shadow: var(--t193-shadow);
}

body.travel193-shop-ui .woocommerce ul.products li.product > a.woocommerce-LoopProduct-link,
body.travel193-shop-ui .wc-block-grid__product-link {
  color: inherit;
  text-decoration: none !important;
}

body.travel193-shop-ui .woocommerce ul.products li.product a img,
body.travel193-shop-ui .woocommerce-page ul.products li.product a img,
body.travel193-shop-ui .wc-block-grid__product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 16px !important;
  object-fit: cover;
  background: var(--t193-surface-soft);
  transition: transform 320ms ease;
}

body.travel193-shop-ui .woocommerce ul.products li.product:hover a img,
body.travel193-shop-ui .wc-block-grid__product:hover .wc-block-grid__product-image img { transform: scale(1.025); }

body.travel193-shop-ui .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.travel193-shop-ui .wc-block-grid__product-title {
  margin: 0 !important;
  padding: 0 16px !important;
  color: var(--t193-text);
  font-size: clamp(15px, 1.5vw, 18px) !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

body.travel193-shop-ui .woocommerce ul.products li.product .price,
body.travel193-shop-ui .wc-block-grid__product-price {
  display: block;
  margin: 10px 0 0 !important;
  padding: 0 16px;
  color: var(--t193-text) !important;
  font-size: 16px !important;
  line-height: 1.3;
  font-weight: 850 !important;
}

body.travel193-shop-ui .woocommerce ul.products li.product .price del { color: var(--t193-muted); opacity: 0.7; }
body.travel193-shop-ui .woocommerce ul.products li.product .price ins { color: var(--t193-accent); text-decoration: none; }

body.travel193-shop-ui .woocommerce ul.products li.product .button,
body.travel193-shop-ui .wc-block-grid__product-add-to-cart .wp-block-button__link {
  width: calc(100% - 32px);
  min-height: 46px;
  margin: 16px 16px 0 !important;
  padding: 0 18px !important;
}

body.travel193-shop-ui .woocommerce span.onsale {
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 8px 11px !important;
  border-radius: 999px !important;
  background: var(--t193-accent) !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  text-transform: uppercase;
}

/* ---------- Single product ---------- */
body.travel193-shop-ui .woocommerce div.product {
  display: flow-root;
}

body.travel193-shop-ui .woocommerce div.product div.images,
body.travel193-shop-ui .woocommerce div.product div.summary {
  margin-bottom: 36px;
}

body.travel193-shop-ui .woocommerce div.product div.images img {
  border-radius: var(--t193-radius);
  background: var(--t193-surface-soft);
}

body.travel193-shop-ui .woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

body.travel193-shop-ui .woocommerce div.product div.images .flex-control-thumbs li { width: auto !important; }

body.travel193-shop-ui .woocommerce div.product div.images .flex-control-thumbs img {
  border: 1px solid transparent;
  border-radius: var(--t193-radius-sm);
}

body.travel193-shop-ui .woocommerce div.product div.images .flex-control-thumbs img.flex-active {
  border-color: var(--t193-text);
}

body.travel193-shop-ui .woocommerce div.product .product_title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

body.travel193-shop-ui .woocommerce div.product p.price,
body.travel193-shop-ui .woocommerce div.product span.price {
  margin: 0 0 22px;
  color: var(--t193-text);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 850;
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-product-details__short-description,
body.travel193-shop-ui .woocommerce div.product .woocommerce-product-details__short-description p {
  color: var(--t193-muted);
  font-size: 16px;
  line-height: 1.7;
}

body.travel193-shop-ui .woocommerce div.product form.cart {
  margin: 28px 0 0;
}

body.travel193-shop-ui .woocommerce div.product form.cart .variations {
  margin-bottom: 18px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

body.travel193-shop-ui .woocommerce div.product form.cart .variations th,
body.travel193-shop-ui .woocommerce div.product form.cart .variations td {
  padding: 0 0 8px !important;
  text-align: left;
  vertical-align: middle;
}

body.travel193-shop-ui .woocommerce div.product form.cart .variations label {
  color: var(--t193-text);
  font-size: 14px;
  font-weight: 800;
}

body.travel193-shop-ui .woocommerce div.product form.cart .variations select {
  width: 100%;
  min-width: 0;
  margin-right: 0;
}

body.travel193-shop-ui .woocommerce div.product form.cart .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--t193-muted);
  font-size: 13px;
}

body.travel193-shop-ui .woocommerce div.product form.cart .quantity {
  margin-right: 10px;
}

body.travel193-shop-ui .woocommerce div.product form.cart .quantity .qty {
  width: 78px;
  padding: 0 8px;
  text-align: center;
}

body.travel193-shop-ui .woocommerce div.product .product_meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--t193-line);
  color: var(--t193-muted);
  font-size: 13px;
  line-height: 1.7;
}

body.travel193-shop-ui .woocommerce div.product .product_meta a { color: var(--t193-text); }

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 24px;
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 22px !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--t193-line);
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 22px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 0 !important;
  border-bottom: 2px solid transparent;
  color: var(--t193-muted) !important;
  font-size: 14px;
  font-weight: 800 !important;
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom-color: var(--t193-accent);
  color: var(--t193-text) !important;
}

body.travel193-shop-ui .woocommerce div.product .woocommerce-tabs .panel {
  max-width: 800px;
  color: var(--t193-muted);
  font-size: 16px;
  line-height: 1.75;
}

body.travel193-shop-ui .woocommerce .related.products,
body.travel193-shop-ui .woocommerce .upsells.products { margin-top: 64px; }

body.travel193-shop-ui .woocommerce .related.products > h2,
body.travel193-shop-ui .woocommerce .upsells.products > h2 {
  margin-bottom: 26px;
  font-size: clamp(28px, 4vw, 42px);
}

/* ---------- Notices ---------- */
body.travel193-shop-ui .woocommerce-message,
body.travel193-shop-ui .woocommerce-info,
body.travel193-shop-ui .woocommerce-error,
body.travel193-shop-ui .wc-block-components-notice-banner {
  margin: 0 0 24px !important;
  padding: 16px 18px 16px 52px !important;
  border: 1px solid var(--t193-line) !important;
  border-top: 1px solid var(--t193-line) !important;
  border-radius: var(--t193-radius-sm) !important;
  background: var(--t193-surface) !important;
  color: var(--t193-text) !important;
  box-shadow: none !important;
}

body.travel193-shop-ui .woocommerce-message::before,
body.travel193-shop-ui .woocommerce-info::before { color: var(--t193-accent) !important; }
body.travel193-shop-ui .woocommerce-error::before { color: #c93434 !important; }

/* ---------- Cart & checkout ---------- */
body.travel193-shop-ui .woocommerce table.shop_table,
body.travel193-shop-ui .woocommerce-cart-form,
body.travel193-shop-ui .cart_totals,
body.travel193-shop-ui .woocommerce-checkout-review-order,
body.travel193-shop-ui .woocommerce form.checkout_coupon,
body.travel193-shop-ui .woocommerce form.login,
body.travel193-shop-ui .woocommerce form.register {
  border: 1px solid var(--t193-line) !important;
  border-radius: var(--t193-radius-md) !important;
  background: var(--t193-surface);
  box-shadow: none;
}

body.travel193-shop-ui .woocommerce table.shop_table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

body.travel193-shop-ui .woocommerce table.shop_table th,
body.travel193-shop-ui .woocommerce table.shop_table td {
  padding: 16px !important;
  border-top-color: var(--t193-line) !important;
}

body.travel193-shop-ui .woocommerce table.shop_table th {
  font-size: 13px;
  font-weight: 850;
}

body.travel193-shop-ui .woocommerce-cart table.cart img {
  width: 76px;
  border-radius: 12px;
}

body.travel193-shop-ui .woocommerce-cart .cart-collaterals .cart_totals,
body.travel193-shop-ui .woocommerce-checkout #payment {
  padding: 22px;
}

body.travel193-shop-ui .woocommerce-checkout #payment {
  border-radius: var(--t193-radius-md);
  background: var(--t193-surface-soft);
}

body.travel193-shop-ui .woocommerce-checkout #payment div.payment_box {
  border-radius: var(--t193-radius-sm);
  background: var(--t193-surface);
  color: var(--t193-muted);
}

body.travel193-shop-ui .woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--t193-surface); }

body.travel193-shop-ui .woocommerce form .form-row label {
  margin-bottom: 7px;
  color: var(--t193-text);
  font-size: 13px;
  font-weight: 800;
}

body.travel193-shop-ui .woocommerce form .form-row .required { color: var(--t193-accent); }

body.travel193-shop-ui .select2-container--default .select2-selection--single {
  height: 50px;
  border: 1px solid var(--t193-line-strong);
  border-radius: var(--t193-radius-sm);
  background: var(--t193-surface);
}

body.travel193-shop-ui .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
}

body.travel193-shop-ui .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; }

/* WooCommerce Blocks cart/checkout */
body.travel193-shop-ui .wc-block-components-sidebar,
body.travel193-shop-ui .wc-block-components-main {
  box-sizing: border-box;
}

body.travel193-shop-ui .wc-block-components-order-summary,
body.travel193-shop-ui .wc-block-components-totals-wrapper,
body.travel193-shop-ui .wc-block-components-address-card,
body.travel193-shop-ui .wc-block-cart-items {
  border-color: var(--t193-line) !important;
}

body.travel193-shop-ui .wc-block-components-product-name {
  color: var(--t193-text) !important;
  font-weight: 800;
  text-decoration: none !important;
}

/* ---------- Gutenberg editor preview ---------- */
.travel193-editor-card {
  padding: 28px;
  border: 1px solid var(--t193-line);
  border-radius: var(--t193-radius-md);
  background: var(--t193-surface);
  color: var(--t193-text);
  box-shadow: var(--t193-shadow-sm);
}

.travel193-editor-card h2 {
  margin: 12px 0;
  font-size: 30px;
  line-height: 1.05;
}

/* ---------- Responsive ---------- */
@media (min-width: 700px) {
  .travel193-shell { width: min(1240px, calc(100% - 56px)); }


  .travel193-certificates { padding-block: 64px 104px; }

  .travel193-certificates__hero {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 34px;
    padding: 38px;
  }

  .travel193-certificates__badge {
    width: 112px;
    height: 112px;
    border-radius: 30px;
  }

  .travel193-certificates__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .travel193-certificates__card { padding: 28px; }

  .travel193-certificates__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .travel193-certificates__cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    padding: 38px;
  }

  .travel193-certificates__button {
    width: auto;
    min-width: 280px;
  }

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

  .travel193-category-card {
    min-height: 150px;
    grid-template-columns: 80px 1fr auto;
    padding: 26px;
  }

  .travel193-category-card__icon {
    width: 80px;
    height: 80px;
  }

  .travel193-category-card__icon svg {
    width: 42px;
    height: 42px;
  }

  body.travel193-shop-ui .woocommerce ul.products,
  body.travel193-shop-ui .woocommerce-page ul.products,
  body.travel193-shop-ui .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 18px;
  }
}

@media (min-width: 980px) {
  body.travel193-shop-ui .woocommerce div.product div.images { width: 55%; }
  body.travel193-shop-ui .woocommerce div.product div.summary { width: 39%; }
}

@media (min-width: 1100px) {
  .travel193-categories { padding-block: 104px 120px; }

  .travel193-certificates__gallery-grid--columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .travel193-certificates__gallery-grid--columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .travel193-certificates__gallery-grid--columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

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

  .travel193-category-card {
    min-height: 220px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    align-items: start;
  }

  .travel193-category-card__icon {
    grid-column: 1 / -1;
    width: 94px;
    height: 94px;
    border-radius: 24px;
  }

  .travel193-category-card__body { align-self: end; }
  .travel193-category-card__arrow { align-self: end; }

  body.travel193-shop-ui .woocommerce ul.products,
  body.travel193-shop-ui .woocommerce-page ul.products,
  body.travel193-shop-ui .wc-block-grid__products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
  }
}

@media (max-width: 699px) {
  header.wp-block-template-part .wp-block-group.alignwide {
    min-height: 68px;
    padding-block: 8px !important;
  }

  header.wp-block-template-part .wp-block-site-logo img {
    max-width: 138px;
    max-height: 46px;
  }

  footer.wp-block-template-part .wp-block-columns { gap: 28px; }

  footer.wp-block-template-part > .wp-block-group {
    padding-block: 56px 28px !important;
  }

  .travel193-certificates__gallery {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .travel193-certificates__gallery-heading {
    display: block;
    margin-bottom: 18px;
  }

  .travel193-certificates__gallery-heading h2 {
    margin-top: 10px;
    font-size: clamp(26px, 9vw, 38px);
    line-height: 1.04;
    text-align: left;
  }

  .travel193-certificates__gallery-link {
    height: 200px;
    min-height: 0;
    border-radius: 12px;
  }

  .travel193-hero__logo {
    max-width: min(220px, 68vw);
    max-height: 78px;
    margin-bottom: 22px;
  }

  body.travel193-shop-ui .woocommerce .woocommerce-ordering,
  body.travel193-shop-ui .woocommerce .woocommerce-result-count {
    float: none;
    width: 100%;
  }

  body.travel193-shop-ui .woocommerce .woocommerce-ordering select { width: 100%; }

  body.travel193-shop-ui .woocommerce div.product form.cart .button {
    width: calc(100% - 88px);
    padding-inline: 12px !important;
  }

  body.travel193-shop-ui .woocommerce table.shop_table_responsive tr td,
  body.travel193-shop-ui .woocommerce-page table.shop_table_responsive tr td {
    padding-block: 13px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .travel193-button,
  .travel193-hero__logo--product,
  .travel193-category-card,
  .travel193-category-card__arrow,
  .travel193-certificates__button,
  body.travel193-shop-ui .woocommerce ul.products li.product,
  body.travel193-shop-ui .woocommerce ul.products li.product a img,
  body.travel193-shop-ui .wc-block-grid__product,
  body.travel193-shop-ui .wc-block-grid__product-image img,
  body.travel193-shop-ui .woocommerce a.button,
  body.travel193-shop-ui .woocommerce button.button,
  body.travel193-shop-ui .wc-block-components-button {
    transition: none !important;
    animation: none !important;
  }
}

/* Certificates page integration with common classic/block themes. */
body.travel193-certificates-page {
  background: var(--t193-bg);
}

body.travel193-certificates-page .entry-header > .entry-title,
body.travel193-certificates-page .wp-block-post-title {
  display: none;
}

/* ========================================================================== 
   193.travel editorial commerce refresh
   ========================================================================== */
:root {
  --t193-bg: #f2f3f7;
  --t193-surface: #ffffff;
  --t193-surface-soft: #e8eaf0;
  --t193-text: #0a0c10;
  --t193-muted: #666b76;
  --t193-line: rgba(10, 12, 16, 0.11);
  --t193-line-strong: rgba(10, 12, 16, 0.22);
  --t193-accent: #c8ff32;
  --t193-accent-contrast: #080a0d;
  --t193-radius-sm: 10px;
  --t193-radius-md: 18px;
  --t193-radius: 26px;
  --t193-radius-lg: 40px;
  --t193-shadow-sm: 0 12px 30px rgba(5, 8, 15, 0.08);
  --t193-shadow: 0 34px 90px rgba(5, 8, 15, 0.16);
}

html { scroll-behavior: smooth; }

html,
body,
.wp-site-blocks {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  .wp-site-blocks { overflow-x: clip; }
}

.wp-site-blocks > *,
main,
.entry-content,
.wp-block-post-content {
  min-width: 0;
  max-width: 100%;
}

body {
  background: var(--t193-bg);
  color: var(--t193-text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Floating glass navigation. */
header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 100;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 10, 14, 0.84);
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

body.admin-bar header.wp-block-template-part { top: 32px; }

header.wp-block-template-part .wp-block-group.alignwide {
  min-height: 72px;
  padding-block: 9px !important;
}

header.wp-block-template-part .wp-block-site-title,
header.wp-block-template-part .wp-block-navigation { color: #fff; }

header.wp-block-template-part .wp-block-site-title {
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

header.wp-block-template-part .wp-block-site-logo img {
  max-width: 162px;
  max-height: 50px;
  filter: brightness(0) invert(1);
}

header.wp-block-template-part .wp-block-navigation-item__content {
  padding: 9px 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

header.wp-block-template-part .wp-block-navigation-item__content:hover,
header.wp-block-template-part .current-menu-item > .wp-block-navigation-item__content {
  color: #fff;
}

header.wp-block-template-part .wp-block-navigation-item__content::after {
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 3px;
  background: var(--t193-accent);
}

header.wp-block-template-part .wp-block-navigation__responsive-container-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
  background: #090b0f !important;
}

/* Cinematic, editorial Hero. */
.travel193-hero {
  isolation: isolate;
  min-height: clamp(650px, calc(100svh - 72px), 940px);
  align-items: center;
  background-color: #080a0e;
  background-position: center;
}

.travel193-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 23%, rgba(200, 255, 50, 0.22), transparent 25%),
    linear-gradient(115deg, rgba(5, 7, 10, 0.98) 9%, rgba(5, 7, 10, 0.62) 52%, rgba(5, 7, 10, 0.18) 78%);
  content: "";
}

.travel193-hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: clamp(110px, 16vw, 260px);
  height: 10px;
  background: var(--t193-accent);
  content: "";
}

.travel193-hero__overlay {
  background:
    linear-gradient(180deg, transparent 60%, rgba(5, 7, 10, 0.48)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.25), transparent 60%);
}

.travel193-hero__inner {
  padding-block: clamp(76px, 10vw, 140px);
}

.travel193-hero__content {
  position: relative;
  max-width: none;
  padding-left: clamp(18px, 4vw, 58px);
}

.travel193-hero__content::before {
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--t193-accent), rgba(200, 255, 50, 0));
  content: "";
}

.travel193-hero__logo {
  max-width: min(250px, 64vw);
  max-height: 88px;
  margin-bottom: clamp(32px, 5vw, 58px);
  filter: brightness(0) invert(1) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.3));
}

.travel193-hero__product-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(-120px, -7vw, -42px);
  width: min(66vw, 850px);
  aspect-ratio: 1.5;
  pointer-events: none;
  transform: translateY(-50%) rotate(-3deg);
}

.travel193-hero__product-visual::before {
  position: absolute;
  z-index: -2;
  inset: 7% 4% 3% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 50, 0.3), rgba(93, 80, 255, 0.13) 43%, transparent 70%);
  content: "";
  filter: blur(34px);
}

.travel193-hero__product-orbit {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: 5%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 255, 50, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(200, 255, 50, 0.04);
  transform: rotate(18deg);
}

.travel193-hero__product-orbit::before,
.travel193-hero__product-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.travel193-hero__product-orbit::before {
  top: 11%;
  left: 2%;
  width: 12px;
  height: 12px;
  background: var(--t193-accent);
  box-shadow: 0 0 26px rgba(200, 255, 50, 0.85);
}

.travel193-hero__product-orbit::after {
  inset: 11%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.travel193-hero__logo--product {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 38px 50px rgba(0, 0, 0, 0.58));
  animation: travel193-product-float 6s ease-in-out infinite;
}

/* Ordinary studio uploads receive the same composition without filename rules. */
.travel193-hero__logo--raw-product {
  border-radius: 42%;
  mix-blend-mode: multiply;
  opacity: 0.94;
  -webkit-mask-image: radial-gradient(ellipse 68% 64% at 52% 50%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 64% at 52% 50%, #000 58%, transparent 100%);
}

@keyframes travel193-product-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

.travel193-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
}

.travel193-hero__title {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  font-size: clamp(54px, 10.4vw, 144px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
}

.travel193-hero__subtitle {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin-top: clamp(28px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.travel193-button {
  position: relative;
  z-index: 3;
  min-height: 58px;
  margin-top: 38px;
  padding-inline: 28px;
  border: 0 !important;
  border-radius: 3px !important;
  background: var(--t193-accent) !important;
  color: var(--t193-accent-contrast) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.travel193-button::after {
  margin-left: 20px;
  font-size: 20px;
  content: "↗";
  transition: transform var(--t193-speed) ease;
}

.travel193-button:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #080a0d !important;
}

.travel193-button:hover::after { transform: translate(3px, -3px); }

/* Editorial category field below the Hero. */
.travel193-categories {
  padding-block: clamp(86px, 11vw, 150px);
  background:
    radial-gradient(circle at 6% 4%, rgba(95, 78, 255, 0.11), transparent 28%),
    var(--t193-bg);
}

.travel193-section-heading { margin-bottom: clamp(44px, 7vw, 76px); }

.travel193-section-heading__kicker {
  color: #5550ff;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.travel193-section-heading h2 {
  max-width: 12ch;
  font-size: clamp(43px, 7.4vw, 90px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.travel193-category-grid { gap: 12px; }

.travel193-category-card {
  border-color: rgba(10, 12, 16, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.travel193-category-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(200, 255, 50, 0.2), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity var(--t193-speed) ease;
}

.travel193-category-card:hover {
  border-color: rgba(10, 12, 16, 0.2);
  background: #fff;
  box-shadow: 0 28px 60px rgba(16, 20, 31, 0.12);
  transform: translateY(-7px);
}

.travel193-category-card:hover::before { opacity: 1; }

.travel193-category-card__icon {
  border-radius: 50%;
  background: #10131a;
  color: var(--t193-accent);
}

.travel193-category-card__title {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.travel193-category-card__arrow {
  border-radius: 50%;
  background: var(--t193-surface-soft);
}

.travel193-category-card:hover .travel193-category-card__arrow {
  background: var(--t193-accent);
  color: #080a0d;
}

/* High-impact footer with quiet utility navigation. */
footer.wp-block-template-part {
  background: #080a0e;
  color: rgba(255, 255, 255, 0.58);
}

footer.wp-block-template-part::before {
  top: auto;
  right: -10vw;
  bottom: -300px;
  width: min(720px, 70vw);
  height: min(720px, 70vw);
  background: radial-gradient(circle, rgba(92, 80, 255, 0.3), transparent 67%);
}

footer.wp-block-template-part::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t193-accent) 25%, transparent 58%);
  content: "";
}

footer.wp-block-template-part > .wp-block-group {
  padding-block: clamp(82px, 10vw, 140px) 32px !important;
}

footer.wp-block-template-part .wp-block-site-title {
  max-width: 11ch;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
}

footer.wp-block-template-part .wp-block-site-tagline {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.6;
}

footer.wp-block-template-part .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer.wp-block-template-part .wp-block-navigation-item__content:hover { color: var(--t193-accent); }

@media (max-width: 782px) {
  body.admin-bar header.wp-block-template-part { top: 46px; }
}

@media (max-width: 699px) {
  .travel193-hero {
    min-height: calc(100svh - 68px);
    background-position: 62% center;
  }

  .travel193-hero::before {
    background:
      radial-gradient(circle at 85% 18%, rgba(200, 255, 50, 0.17), transparent 28%),
      linear-gradient(110deg, rgba(5, 7, 10, 0.96) 12%, rgba(5, 7, 10, 0.58) 100%);
  }

  .travel193-hero__content { padding-left: 18px; }
  .travel193-hero__product-visual {
    top: 30%;
    right: -36%;
    width: 108vw;
    opacity: 0.52;
    transform: translateY(-50%) rotate(-5deg);
  }
  .travel193-hero__product-orbit { opacity: 0.6; }
  .travel193-hero__title { font-size: clamp(50px, 16vw, 78px); }
  .travel193-button { width: auto; }
  footer.wp-block-template-part .wp-block-site-title { font-size: clamp(42px, 15vw, 68px); }
}

/* Optimized site-logo treatment: preserve the navy/gold artwork on dark chrome. */
header.wp-block-template-part .wp-block-site-logo,
footer.wp-block-template-part .wp-block-site-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  border: 1px solid rgba(8, 10, 14, 0.08);
  background: #fff;
}

header.wp-block-template-part .wp-block-site-logo {
  margin: 0;
  padding: 7px 11px;
  border-radius: 12px;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.16);
}

header.wp-block-template-part .wp-block-site-logo .custom-logo-link,
header.wp-block-template-part .wp-block-site-logo img,
footer.wp-block-template-part .wp-block-site-logo .custom-logo-link,
footer.wp-block-template-part .wp-block-site-logo img {
  background: transparent !important;
}

header.wp-block-template-part .wp-block-site-logo img {
  display: block;
  width: auto;
  max-width: 154px;
  max-height: 48px;
  object-fit: contain;
  filter: none;
}

footer.wp-block-template-part .wp-block-site-logo {
  margin: 0 0 34px;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

footer.wp-block-template-part .wp-block-site-logo img {
  display: block;
  width: auto;
  max-width: min(260px, 66vw);
  max-height: 98px;
  object-fit: contain;
  filter: none;
}

@media (max-width: 699px) {
  header.wp-block-template-part .wp-block-site-logo { padding: 6px 9px; }
  header.wp-block-template-part .wp-block-site-logo img { max-width: 126px; max-height: 42px; }
  footer.wp-block-template-part .wp-block-site-logo { padding: 12px 15px; }
}

/* Unified storefront: carry the header's editorial language through WooCommerce. */
body.travel193-shop-ui {
  background:
    radial-gradient(circle at 92% 4%, rgba(92, 80, 255, 0.09), transparent 28%),
    #eef0f4;
}

body.travel193-shop-ui main,
body.travel193-shop-ui .wp-site-blocks > main {
  color: var(--t193-text);
}

body.travel193-shop-ui .woocommerce-breadcrumb {
  color: #747985;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.travel193-shop-ui .woocommerce-breadcrumb a { color: #151820; }

body.travel193-shop-ui .woocommerce-products-header__title,
body.travel193-shop-ui .woocommerce div.product .product_title,
body.travel193-shop-ui .wp-block-query-title,
body.travel193-shop-ui .wp-block-post-title {
  color: #090b0f;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 900;
  text-transform: uppercase;
}

body.travel193-shop-ui .woocommerce-result-count {
  color: var(--t193-muted);
  font-size: 12px;
  font-weight: 750;
}

body.travel193-shop-ui .woocommerce-ordering select {
  min-height: 48px;
  padding-inline: 16px 42px;
  border: 1px solid rgba(10, 12, 16, 0.16);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

body.travel193-shop-ui .woocommerce ul.products,
body.travel193-shop-ui .woocommerce-page ul.products,
body.travel193-shop-ui .wc-block-grid__products {
  gap: clamp(20px, 3vw, 38px) clamp(12px, 2vw, 24px);
}

body.travel193-shop-ui .woocommerce ul.products li.product,
body.travel193-shop-ui .wc-block-grid__product {
  overflow: visible;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(10, 12, 16, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.travel193-shop-ui .woocommerce ul.products li.product:hover,
body.travel193-shop-ui .wc-block-grid__product:hover {
  border-bottom-color: #090b0f;
  background: transparent;
  box-shadow: none;
  transform: translateY(-5px);
}

/* Product PNGs share one neutral stage; white studio backgrounds disappear visually. */
body.travel193-shop-ui .woocommerce ul.products li.product a img,
body.travel193-shop-ui .wc-block-grid__product-image img,
body.travel193-shop-ui .woocommerce div.product div.images img,
body.travel193-shop-ui .wc-block-components-product-image img,
body.travel193-shop-ui .wc-block-cart-item__image img,
body.travel193-shop-ui .wc-block-components-order-summary-item__image img {
  background: transparent !important;
  mix-blend-mode: multiply;
}

body.travel193-shop-ui .woocommerce ul.products li.product a img,
body.travel193-shop-ui .wc-block-grid__product-image {
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

body.travel193-shop-ui .woocommerce ul.products li.product:hover a img,
body.travel193-shop-ui .wc-block-grid__product:hover .wc-block-grid__product-image img {
  filter: contrast(1.03);
  transform: scale(1.035) rotate(-1deg);
}

body.travel193-shop-ui .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.travel193-shop-ui .wc-block-grid__product-title {
  margin-top: 18px;
  color: #0a0c10;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 850;
}

body.travel193-shop-ui .woocommerce ul.products li.product .price,
body.travel193-shop-ui .wc-block-grid__product-price {
  color: #5550ff;
  font-size: 15px;
  font-weight: 900;
}

body.travel193-shop-ui .woocommerce ul.products li.product .button {
  min-height: 44px;
  margin-top: 14px;
  padding-inline: 18px;
  border-radius: 3px !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.travel193-shop-ui .woocommerce span.onsale {
  min-width: 0;
  min-height: 0;
  padding: 8px 11px;
  border-radius: 3px;
  background: var(--t193-accent);
  color: #090b0f;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Single product: gallery and buying panel feel like one campaign page. */
body.travel193-shop-ui.single-product .woocommerce div.product {
  display: flow-root;
}

body.travel193-shop-ui.single-product .woocommerce div.product div.images {
  padding: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(10, 12, 16, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
}

body.travel193-shop-ui.single-product .woocommerce div.product div.summary {
  padding-top: clamp(10px, 3vw, 38px);
}

body.travel193-shop-ui.single-product .woocommerce div.product .product_title {
  font-size: clamp(38px, 5.2vw, 70px);
}

body.travel193-shop-ui.single-product .woocommerce div.product p.price,
body.travel193-shop-ui.single-product .woocommerce div.product span.price {
  color: #5550ff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
}

body.travel193-shop-ui.single-product .woocommerce-product-details__short-description {
  color: #5f6470;
  font-size: 17px;
  line-height: 1.7;
}

body.travel193-shop-ui .woocommerce div.product form.cart .variations,
body.travel193-shop-ui .woocommerce table.shop_table,
body.travel193-shop-ui .wc-block-components-sidebar,
body.travel193-shop-ui .wc-block-components-main {
  border-color: rgba(10, 12, 16, 0.12);
}

body.travel193-shop-ui .woocommerce-message,
body.travel193-shop-ui .woocommerce-info,
body.travel193-shop-ui .woocommerce-error {
  border: 0;
  border-left: 5px solid var(--t193-accent);
  border-radius: 8px;
  background: #0b0d12;
  color: #fff;
  box-shadow: var(--t193-shadow-sm);
}

body.travel193-shop-ui .woocommerce-message::before,
body.travel193-shop-ui .woocommerce-info::before { color: var(--t193-accent); }

body.travel193-shop-ui .woocommerce form .form-row input.input-text,
body.travel193-shop-ui .woocommerce form .form-row textarea,
body.travel193-shop-ui .wc-block-components-text-input input,
body.travel193-shop-ui .wc-block-components-combobox-control input {
  border: 1px solid rgba(10, 12, 16, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
}

body.travel193-shop-ui .woocommerce form .form-row input.input-text:focus,
body.travel193-shop-ui .woocommerce form .form-row textarea:focus,
body.travel193-shop-ui .wc-block-components-text-input input:focus {
  border-color: #5550ff;
  box-shadow: 0 0 0 3px rgba(85, 80, 255, 0.12);
  outline: 0;
}

/* Final dark system: every public surface follows the header's visual language. */
body:not(.wp-admin),
body:not(.wp-admin) .wp-site-blocks,
body:not(.wp-admin) main {
  background-color: #080a0e;
  color: rgba(255, 255, 255, 0.76);
}

body:not(.wp-admin) main h1,
body:not(.wp-admin) main h2,
body:not(.wp-admin) main h3,
body:not(.wp-admin) main h4,
body:not(.wp-admin) main .wp-block-post-title {
  color: #fff;
}

body:not(.wp-admin) main a:not(.wp-element-button):not(.button) {
  color: inherit;
  text-decoration-color: rgba(200, 255, 50, 0.5);
  text-underline-offset: 4px;
}

body:not(.wp-admin) main a:not(.wp-element-button):not(.button):hover { color: var(--t193-accent); }

.travel193-categories {
  background:
    radial-gradient(circle at 6% 4%, rgba(92, 80, 255, 0.2), transparent 29%),
    #0d1016;
  color: #fff;
}

.travel193-section-heading h2 { color: #fff; }
.travel193-section-heading p:not(.travel193-section-heading__kicker) { color: rgba(255, 255, 255, 0.58); }

.travel193-category-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.travel193-category-card:hover {
  border-color: rgba(200, 255, 50, 0.5);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.travel193-category-card__title { color: #fff; }
.travel193-category-card__count { color: rgba(255, 255, 255, 0.52); }
.travel193-category-card__arrow { background: rgba(255, 255, 255, 0.1); color: #fff; }

body.travel193-shop-ui {
  background:
    radial-gradient(circle at 92% 4%, rgba(92, 80, 255, 0.17), transparent 28%),
    #080a0e;
}

body.travel193-shop-ui .woocommerce-products-header__title,
body.travel193-shop-ui .woocommerce div.product .product_title,
body.travel193-shop-ui .wp-block-query-title,
body.travel193-shop-ui .wp-block-post-title,
body.travel193-shop-ui .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.travel193-shop-ui .wc-block-grid__product-title {
  color: #fff;
}

body.travel193-shop-ui .woocommerce-breadcrumb,
body.travel193-shop-ui .woocommerce-result-count,
body.travel193-shop-ui.single-product .woocommerce-product-details__short-description,
body.travel193-shop-ui .woocommerce-product-details__short-description,
body.travel193-shop-ui .product_meta {
  color: rgba(255, 255, 255, 0.54);
}

body.travel193-shop-ui .woocommerce-breadcrumb a,
body.travel193-shop-ui .product_meta a { color: rgba(255, 255, 255, 0.78); }

body.travel193-shop-ui .woocommerce ul.products li.product,
body.travel193-shop-ui .wc-block-grid__product {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

body.travel193-shop-ui .woocommerce ul.products li.product:hover,
body.travel193-shop-ui .wc-block-grid__product:hover { border-bottom-color: var(--t193-accent); }

/* A common pale stage makes flattened white PNG backgrounds visually vanish. */
body.travel193-shop-ui .wc-block-grid__product-image,
body.travel193-shop-ui.single-product .woocommerce div.product div.images,
body.travel193-shop-ui .wc-block-components-product-image,
body.travel193-shop-ui .wc-block-cart-item__image,
body.travel193-shop-ui .wc-block-components-order-summary-item__image {
  border-radius: 18px;
  background: #eef0f4;
}

body.travel193-shop-ui .woocommerce ul.products li.product a.woocommerce-loop-product__link img {
  margin-bottom: 0;
  border-radius: 18px;
  background: #eef0f4 !important;
}

body.travel193-shop-ui .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.travel193-shop-ui .woocommerce ul.products li.product .price,
body.travel193-shop-ui .woocommerce ul.products li.product .button,
body.travel193-shop-ui .wc-block-grid__product-title,
body.travel193-shop-ui .wc-block-grid__product-price,
body.travel193-shop-ui .wc-block-grid__product-add-to-cart {
  position: relative;
  z-index: 2;
}

body.travel193-shop-ui.single-product .woocommerce div.product div.images {
  border-color: rgba(255, 255, 255, 0.11);
}

body.travel193-shop-ui .woocommerce-ordering select,
body.travel193-shop-ui .woocommerce form .form-row input.input-text,
body.travel193-shop-ui .woocommerce form .form-row textarea,
body.travel193-shop-ui .wc-block-components-text-input input,
body.travel193-shop-ui .wc-block-components-combobox-control input,
body.travel193-shop-ui .select2-container--default .select2-selection--single {
  border-color: rgba(255, 255, 255, 0.17);
  background-color: #11141b;
  color: #fff;
}

body.travel193-shop-ui .woocommerce table.shop_table,
body.travel193-shop-ui .woocommerce-cart .cart-collaterals .cart_totals,
body.travel193-shop-ui .woocommerce-checkout #payment,
body.travel193-shop-ui .wc-block-components-sidebar,
body.travel193-shop-ui .wc-block-components-main {
  border-color: rgba(255, 255, 255, 0.13);
  background: #0f1218;
  color: rgba(255, 255, 255, 0.74);
}

body.travel193-shop-ui .woocommerce table.shop_table th,
body.travel193-shop-ui .woocommerce table.shop_table td,
body.travel193-shop-ui .wc-block-components-totals-wrapper,
body.travel193-shop-ui .wc-block-cart-items {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.travel193-shop-ui .woocommerce a.button,
body.travel193-shop-ui .woocommerce button.button,
body.travel193-shop-ui .woocommerce input.button,
body.travel193-shop-ui .woocommerce #respond input#submit,
body.travel193-shop-ui .wc-block-components-button {
  border-color: var(--t193-accent) !important;
  border-radius: 3px !important;
  background: var(--t193-accent) !important;
  color: #080a0e !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.travel193-shop-ui .woocommerce a.button:hover,
body.travel193-shop-ui .woocommerce button.button:hover,
body.travel193-shop-ui .woocommerce input.button:hover,
body.travel193-shop-ui .wc-block-components-button:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #080a0e !important;
}

/* Contrast lock: prevent older theme/Woo rules from creating invisible text. */
body.travel193-shop-ui .woocommerce,
body.travel193-shop-ui .wc-block-cart,
body.travel193-shop-ui .wc-block-checkout,
body.travel193-shop-ui .wc-block-components-sidebar-layout {
  color: rgba(255, 255, 255, 0.78);
}

body.travel193-shop-ui .woocommerce p,
body.travel193-shop-ui .woocommerce label,
body.travel193-shop-ui .woocommerce legend,
body.travel193-shop-ui .woocommerce dt,
body.travel193-shop-ui .woocommerce dd,
body.travel193-shop-ui .woocommerce th,
body.travel193-shop-ui .woocommerce td,
body.travel193-shop-ui .wc-block-components-title,
body.travel193-shop-ui .wc-block-components-totals-item__label,
body.travel193-shop-ui .wc-block-components-totals-item__value,
body.travel193-shop-ui .wc-block-components-order-summary-item__description,
body.travel193-shop-ui .wc-block-components-product-metadata,
body.travel193-shop-ui .wc-block-components-checkout-step__description,
body.travel193-shop-ui .wc-block-components-radio-control__label,
body.travel193-shop-ui .wc-block-components-checkbox__label,
body.travel193-shop-ui .wc-block-components-address-card address,
body.travel193-shop-ui .wc-block-components-formatted-money-amount {
  color: rgba(255, 255, 255, 0.76) !important;
}

body.travel193-shop-ui .woocommerce h1,
body.travel193-shop-ui .woocommerce h2,
body.travel193-shop-ui .woocommerce h3,
body.travel193-shop-ui .woocommerce h4,
body.travel193-shop-ui .woocommerce strong,
body.travel193-shop-ui .wc-block-components-product-name,
body.travel193-shop-ui .wc-block-components-order-summary-item__individual-price,
body.travel193-shop-ui .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.travel193-shop-ui .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #fff !important;
}

body.travel193-shop-ui .woocommerce a,
body.travel193-shop-ui .wc-block-cart a,
body.travel193-shop-ui .wc-block-checkout a { color: var(--t193-accent); }

body.travel193-shop-ui .woocommerce del,
body.travel193-shop-ui .woocommerce small,
body.travel193-shop-ui .woocommerce .description,
body.travel193-shop-ui .wc-block-components-product-badge,
body.travel193-shop-ui .wc-block-components-validation-error,
body.travel193-shop-ui .wc-block-components-checkout-step__container p {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.travel193-shop-ui input,
body.travel193-shop-ui textarea,
body.travel193-shop-ui select,
body.travel193-shop-ui .select2-selection__rendered {
  color: #fff !important;
  caret-color: var(--t193-accent);
}

body.travel193-shop-ui input::placeholder,
body.travel193-shop-ui textarea::placeholder { color: rgba(255, 255, 255, 0.42) !important; opacity: 1; }

body.travel193-shop-ui select option { background: #11141b; color: #fff; }

/* ---------- Editable 193.travel contact footer block ---------- */
.travel193-site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 88% 12%, rgba(92, 80, 255, 0.26), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(200, 255, 50, 0.09), transparent 26%),
    #080a0e;
  color: rgba(255, 255, 255, 0.74);
}

.travel193-site-footer::before {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(200, 255, 50, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.travel193-site-footer__inner {
  position: relative;
  display: grid;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(72px, 9vw, 132px) clamp(56px, 7vw, 96px);
}

.travel193-site-footer__brand {
  min-width: 0;
}

.travel193-site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(230px, 70vw);
  margin-bottom: clamp(42px, 6vw, 76px);
  padding: 12px 18px;
  border: 1px solid rgba(8, 10, 14, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.travel193-site-footer__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.travel193-site-footer__eyebrow {
  margin: 0 0 14px;
  color: var(--t193-accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.travel193-site-footer__brand h2 {
  max-width: 8ch;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.travel193-site-footer__description {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.travel193-site-footer__contact {
  align-self: end;
  min-width: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.travel193-site-footer__operator {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.travel193-site-footer__operator strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.travel193-site-footer__operator span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel193-site-footer__phone {
  display: inline-block;
  color: #fff !important;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-decoration-color: rgba(200, 255, 50, 0.55) !important;
  text-decoration-thickness: 2px !important;
}

.travel193-site-footer__phone:hover {
  color: var(--t193-accent) !important;
}

.travel193-site-footer__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.travel193-site-footer__messengers a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color var(--t193-speed) ease, background var(--t193-speed) ease, color var(--t193-speed) ease;
}

.travel193-site-footer__messengers a:hover {
  border-color: var(--t193-accent);
  background: var(--t193-accent);
  color: #080a0e !important;
}

.travel193-site-footer__details {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
}

.travel193-site-footer__details > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.travel193-site-footer__details dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel193-site-footer__details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.travel193-site-footer__details a {
  color: #fff !important;
  text-decoration-color: rgba(200, 255, 50, 0.5);
}

.travel193-site-footer__legal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 28px;
  padding-block: 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.travel193-site-footer__legal-name {
  justify-self: start;
  color: #fff;
}

.travel193-site-footer__offer {
  display: inline-flex;
  justify-self: center;
  gap: 8px;
  color: var(--t193-accent) !important;
  text-decoration: none;
}

.travel193-site-footer__copyright {
  justify-self: end;
  text-align: right;
}

a.travel193-site-footer__offer:hover {
  color: #fff !important;
}

.travel193-editor-card--footer {
  display: grid;
  gap: 28px;
  border-color: #262a33;
  background: #080a0e;
  color: rgba(255, 255, 255, 0.74);
}

.travel193-editor-footer__logo {
  display: block;
  max-width: 180px;
  max-height: 64px;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.travel193-editor-footer__eyebrow,
.travel193-editor-footer__legal {
  color: var(--t193-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel193-editor-footer__brand h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 900;
  line-height: 0.9;
}

.travel193-editor-footer__contact {
  display: grid;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.travel193-editor-footer__contact strong,
.travel193-editor-footer__contact span {
  display: block;
  color: #fff;
}

.travel193-editor-footer__labels,
.travel193-editor-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 860px) {
  .travel193-site-footer__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: end;
  }
}

@media (max-width: 700px) {
  .travel193-site-footer__legal {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .travel193-site-footer__legal-name,
  .travel193-site-footer__offer,
  .travel193-site-footer__copyright {
    justify-self: center;
    text-align: center;
  }

  .travel193-site-footer__inner {
    gap: 56px;
    padding-block: 64px 48px;
  }

  .travel193-site-footer__logo {
    margin-bottom: 48px;
  }

  .travel193-site-footer__brand h2 {
    font-size: clamp(50px, 18vw, 74px);
  }

  .travel193-site-footer__details > div {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .travel193-site-footer__legal {
    gap: 10px;
  }
}

body.travel193-shop-ui .quantity .qty {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: #11141b !important;
  color: #fff !important;
}

body.travel193-shop-ui .woocommerce-tabs ul.tabs li,
body.travel193-shop-ui .woocommerce-tabs .panel,
body.travel193-shop-ui .wc-block-components-order-summary,
body.travel193-shop-ui .wc-block-components-totals-wrapper,
body.travel193-shop-ui .wc-block-components-address-card,
body.travel193-shop-ui .wc-block-checkout__payment-method .wc-block-components-radio-control {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: #0f1218 !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

body.travel193-shop-ui .woocommerce-tabs ul.tabs li a { color: rgba(255, 255, 255, 0.58) !important; }
body.travel193-shop-ui .woocommerce-tabs ul.tabs li.active a { color: var(--t193-accent) !important; }

/* Certificates page — same dark editorial system as the header and store. */
body.travel193-certificates-page,
body.travel193-certificates-page main,
.travel193-certificates {
  background:
    radial-gradient(circle at 88% 8%, rgba(92, 80, 255, 0.2), transparent 30%),
    #080a0e !important;
  color: rgba(255, 255, 255, 0.74) !important;
}

.travel193-certificates {
  padding: clamp(8px, 1.2vw, 14px) 0 clamp(72px, 9vw, 128px) !important;
}

.travel193-certificates__hero {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.travel193-certificates__badge {
  background: var(--t193-accent);
  color: #080a0e;
  box-shadow: 0 18px 50px rgba(200, 255, 50, 0.16);
}

.travel193-certificates__intro h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(46px, 8vw, 100px);
  line-height: 0.87;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-transform: uppercase;
}

.travel193-certificates__intro > p:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.travel193-certificates__card {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #0f1218;
  box-shadow: none;
}

.travel193-certificates__card:hover {
  border-color: rgba(200, 255, 50, 0.45);
  transform: translateY(-5px);
}

.travel193-certificates__number {
  background: rgba(200, 255, 50, 0.1);
  color: var(--t193-accent);
}

.travel193-certificates__card h2 { color: #fff; }
.travel193-certificates__card p { color: rgba(255, 255, 255, 0.56); }

.travel193-certificates__cta {
  border: 1px solid rgba(200, 255, 50, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(200, 255, 50, 0.16), transparent 33%),
    #11141b;
}

.travel193-certificates__button {
  border-color: var(--t193-accent);
  border-radius: 3px;
  background: var(--t193-accent);
  color: #080a0e;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.travel193-certificates__button:hover {
  border-color: #fff;
  background: #fff;
  color: #080a0e;
}

/* WooCommerce Coming Soon is the current public storefront; keep it on-brand. */
body .wp-block-woocommerce-coming-soon {
  background:
    radial-gradient(circle at 82% 12%, rgba(92, 80, 255, 0.3), transparent 32%),
    #080a0e !important;
  color: #fff !important;
}

body .wp-block-woocommerce-coming-soon .wp-block-cover,
body .wp-block-woocommerce-coming-soon .wp-block-cover__background {
  background-color: transparent !important;
  color: #fff !important;
}

body .wp-block-woocommerce-coming-soon .woocommerce-coming-soon-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 14, 0.76) !important;
  backdrop-filter: blur(18px);
}

body .wp-block-woocommerce-coming-soon .woocommerce-coming-soon-banner {
  max-width: 15ch;
  color: #fff !important;
  font-size: clamp(42px, 7vw, 88px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em;
  font-weight: 900 !important;
}

body .wp-block-woocommerce-coming-soon .wp-block-site-title,
body .wp-block-woocommerce-coming-soon .wp-block-social-link { color: #fff !important; }

body .wp-block-woocommerce-coming-soon .wp-block-site-logo {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 10px;
  background: #fff;
}

body .wp-block-woocommerce-coming-soon .wp-block-site-logo img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 48px;
}

body .wp-block-woocommerce-coming-soon .wp-block-loginout {
  border: 1px solid var(--t193-accent);
  border-radius: 3px !important;
  background: var(--t193-accent) !important;
}

body .wp-block-woocommerce-coming-soon .wp-block-loginout a { color: #080a0e !important; }
