/** Shared frontend components — DealZeno Ticket System. */

/* Header */
.announcement-bar {
  background: var(--dzh-ink);
  color: #fff;
  font-size: var(--font-sm);
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 8px;
}

.announcement-bar a { color: inherit; }

.site-header {
  position: relative;
  z-index: 100;
  min-height: 70px;
  border-bottom: 1px solid var(--dzh-border);
  background: rgba(255, 255, 255, .98);
  box-shadow: none;
}

.site-header-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 22px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--dzh-ink);
  text-decoration: none;
}

.site-branding:hover { color: var(--dzh-ink); }

.site-branding-custom-logo,
.site-branding-custom-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-branding-custom-logo img,
.custom-logo {
  width: 170px;
  height: 42px;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
}

.site-branding-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--dzh-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}

.site-branding-text {
  display: grid;
  line-height: 1.15;
}

.site-branding-name {
  color: inherit;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -.025em;
}

.site-branding-tagline {
  margin-top: 3px;
  color: var(--dzh-muted);
  font-size: 11px;
  font-weight: 600;
}

.site-navigation {
  min-width: 0;
  margin-right: auto;
}

.site-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation .nav-menu > li { position: relative; }

.site-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--dzh-ink);
  font-size: var(--font-sm);
  font-weight: 700;
  text-decoration: none;
}

.site-navigation a:hover,
.site-navigation .current-menu-item > a {
  background: var(--dzh-blue-soft);
  color: var(--dzh-blue-dark);
}

.site-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  list-style: none;
}

.site-navigation li:hover > .sub-menu,
.site-navigation li:focus-within > .sub-menu { display: block; }

.site-navigation .sub-menu a { width: 100%; }

.dzh-region-switcher {
  position: relative;
  flex: 0 0 auto;
}

.dzh-region-switcher summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--dzh-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  list-style: none;
}

.dzh-region-switcher summary::-webkit-details-marker { display: none; }
.dzh-region-switcher summary::after { display: none; content: none; }
.dzh-region-switcher summary:hover,
.dzh-region-switcher summary:focus-visible,
.dzh-region-switcher[open] summary {
  border-color: var(--dzh-border);
  background: #f7f8fa;
  color: var(--dzh-ink);
}

.dzh-region-switcher__globe,
.dzh-region-switcher__chevron {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.dzh-region-switcher__globe { color: var(--dzh-blue-dark); }
.dzh-region-switcher__globe svg,
.dzh-region-switcher__chevron svg { display: block; }
.dzh-region-switcher__flag { flex: 0 0 auto; font-size: 16px; line-height: 1; }
.dzh-region-switcher__copy { display: inline-flex; align-items: baseline; min-width: 0; gap: 4px; white-space: nowrap; }
.dzh-region-switcher__prefix { display: none; }
.dzh-region-switcher__copy strong { overflow: hidden; color: var(--dzh-ink); text-overflow: ellipsis; }
.dzh-region-switcher__chevron { transition: transform var(--transition-fast); }
.dzh-region-switcher[open] .dzh-region-switcher__chevron { transform: rotate(180deg); }

.dzh-region-switcher:not([open]) > .dzh-region-switcher__menu { display: none; }
.dzh-region-switcher[open] > .dzh-region-switcher__menu { display: block; }

.dzh-region-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 230px;
  max-height: min(420px, 70vh);
  padding: 8px;
  overflow: auto;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-floating);
}

.dzh-region-switcher__menu a,
.dzh-region-switcher__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--dzh-text);
  font-size: var(--font-sm);
  text-decoration: none;
	width: 100%;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.dzh-region-switcher__menu a:hover,
.dzh-region-switcher__menu a.is-active,
.dzh-region-switcher__menu button:hover,
.dzh-region-switcher__menu button.is-active { background: var(--dzh-blue-soft); color: var(--dzh-blue-dark); }

[data-dzh-store-countries][hidden],
[data-dzh-offer-countries][hidden] { display: none !important; }
.dzh-region-ineligible { display: none !important; }

.dzh-region-empty-state {
	grid-column: 1 / -1;
	margin: 16px 0;
	padding: 18px;
	border: 1px dashed var(--dzh-border);
	border-radius: var(--radius-card);
	color: var(--dzh-muted);
	text-align: center;
}

.dzh-badge--country { background: #eef6ff; color: #315b82; border-color: #cfe3f7; }

.dzh-home-region-block__links a,
.dzh-home-region-block__links button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 12px;
	border: 1px solid var(--dzh-border);
	border-radius: 999px;
	background: #fff;
	color: #0f172a;
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
	text-decoration: none;
}
.dzh-home-region-block__links a.is-active,
.dzh-home-region-block__links button.is-active { border-color: var(--dzh-primary); background: var(--dzh-blue-soft); color: var(--dzh-blue-dark); }

.header-search-shell { position: relative; flex: 0 0 auto; }
.header-search-icon-button,
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--dzh-ink);
  cursor: pointer;
}
.header-search-icon-button:hover,
.mobile-menu-toggle:hover { border-color: var(--dzh-border); background: #f8fafc; }

.header-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  width: min(520px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-floating);
}

.mobile-menu-toggle { display: none; gap: 7px; }
.mobile-menu-toggle__icon { display: grid; gap: 4px; width: 20px; }
.mobile-menu-toggle__icon span { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; }
.mobile-menu-toggle__label { font-size: 13px; font-weight: 700; }

/* Buttons and inputs */
.btn,
button.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  cursor: pointer;
  font-size: var(--font-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn--primary {
  border-color: var(--dzh-blue);
  background: var(--dzh-blue);
  color: #fff;
}

.btn--primary:hover {
  border-color: var(--dzh-blue-dark);
  background: var(--dzh-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--secondary {
  border-color: var(--dzh-border-strong);
  background: #fff;
  color: var(--dzh-ink);
}

.btn--secondary:hover {
  border-color: var(--dzh-blue);
  background: var(--dzh-blue-soft);
  color: var(--dzh-blue-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--dzh-blue);
}

.btn--disabled {
  border-color: var(--dzh-border);
  background: #eef1f5;
  color: #8b95a5;
  cursor: not-allowed;
}

.dzh-search-combo,
.hero-search-form {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.dzh-search-combo input[type="search"],
.hero-search-field,
.coupon-filter-input,
.store-directory-search {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid var(--dzh-border-strong);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--dzh-text);
  box-shadow: inset 0 1px 2px rgba(16, 35, 62, .03);
}

.dzh-search-combo input[type="search"]:focus,
.hero-search-field:focus,
.coupon-filter-input:focus,
.store-directory-search:focus {
  border-color: var(--dzh-blue);
  outline: 3px solid rgba(45, 91, 255, .15);
  outline-offset: 0;
}

.store-search-results {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(480px, 65vh);
  overflow: auto;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-floating);
}

.store-search-group__label {
  padding: 10px 14px 4px;
  color: var(--dzh-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-search-results [data-search-item] {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--dzh-text);
  text-decoration: none;
}
.store-search-results [data-search-item]:hover,
.store-search-results [data-search-item][aria-selected="true"] { background: var(--dzh-blue-soft); }
.store-search-results img,
.store-search-fallback { width: 38px; height: 38px; object-fit: contain; border: 1px solid var(--dzh-border); border-radius: 9px; padding: 5px; background: #fff; }
.store-search-results strong,
.store-search-results small { display: block; }
.store-search-results small { color: var(--dzh-muted); font-size: 12px; }
.store-search-state { padding: 16px; color: var(--dzh-muted); font-size: var(--font-sm); }

/* Badges */
.dzh-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.dzh-badge--verified { background: var(--dzh-mint-soft); color: #11795f; }
.dzh-badge--verified::before { content: "✓"; margin-right: 4px; }
.dzh-badge--special { background: var(--dzh-gold-soft); color: #8a5600; }

/* Ticket coupon card */
.coupons-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.dzh-ticket-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: visible;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: var(--dzh-surface);
  box-shadow: var(--shadow-small);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.dzh-ticket-card:hover {
  border-color: #c8d3e5;
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.dzh-ticket-card--recommended { border-color: rgba(255, 184, 77, .75); }

.dzh-ticket-card::before,
.dzh-ticket-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 14px;
  height: 28px;
  border: 1px solid var(--dzh-border);
  background: var(--dzh-canvas);
  transform: translateY(-50%);
}
.dzh-ticket-card::before { left: -1px; border-left: 0; border-radius: 0 16px 16px 0; }
.dzh-ticket-card::after { right: -1px; border-right: 0; border-radius: 16px 0 0 16px; }

.dzh-ticket-card__inner {
  display: grid;
  grid-template-columns: minmax(124px, 144px) minmax(0, 1fr) minmax(190px, 210px);
  min-height: 164px;
  align-items: stretch;
}

.dzh-ticket-card__saving {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px dashed var(--dzh-border-strong);
  background: linear-gradient(180deg, #fffaf0, #fff7e8);
  border-radius: calc(var(--radius-card) - 1px) 0 0 calc(var(--radius-card) - 1px);
  text-align: center;
}
.dzh-ticket-card--deal .dzh-ticket-card__saving { background: linear-gradient(180deg, #f1f6ff, #eef2ff); }
.dzh-ticket-card__saving strong { max-width: 100%; color: var(--dzh-ink); font-size: clamp(22px, 3vw, 30px); font-weight: 880; line-height: 1; overflow-wrap: normal; word-break: normal; hyphens: none; text-wrap: balance; }
.dzh-ticket-card__saving span { margin-top: 7px; color: var(--dzh-muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.dzh-ticket-card__content {
  min-width: 0;
  padding: 20px 22px;
}

.dzh-ticket-card__labels { display: flex; flex-wrap: wrap; gap: 6px; min-height: 25px; margin-bottom: 9px; }
.dzh-ticket-card__store { margin: 0 0 3px; color: var(--dzh-muted); font-size: 12px; font-weight: 750; }
.dzh-ticket-card__store a { color: inherit; text-decoration: none; }
.dzh-ticket-card__store a:hover { color: var(--dzh-blue); }
.dzh-ticket-card__title { margin: 0; font-size: clamp(17px, 2vw, 20px); line-height: 1.3; }
.dzh-ticket-card__title-button { display: inline; padding: 0; border: 0; background: transparent; color: var(--dzh-ink); cursor: pointer; font: inherit; font-weight: inherit; line-height: inherit; text-align: left; }
.dzh-ticket-card__title-button:hover { color: var(--dzh-blue-dark); }
.dzh-ticket-card__condition { display: -webkit-box; margin: 7px 0 0; overflow: hidden; color: #475467; font-size: var(--font-sm); line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.dzh-ticket-card__meta { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 11px; color: var(--dzh-muted); font-size: 12px; }
.dzh-ticket-card__meta span { position: relative; }
.dzh-ticket-card__meta span + span::before { content: "•"; position: absolute; left: -9px; color: #b2bac6; }
.dzh-ticket-card__meta .is-expired { color: var(--dzh-danger); }

.dzh-ticket-details { margin-top: 8px; color: var(--dzh-muted); font-size: 12px; }
.dzh-ticket-details summary { width: max-content; cursor: pointer; color: var(--dzh-blue); font-weight: 750; }
.dzh-ticket-details p { margin: 8px 0 0; padding: 10px 12px; border-radius: 8px; background: #f7f9fc; color: #475467; }

.dzh-ticket-card__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 190px;
  padding: 20px 22px;
  border-left: 1px dashed var(--dzh-border-strong);
}
.dzh-ticket-card__action .btn { width: 100%; min-width: 0; white-space: nowrap; }

/* Store card */
.stores-grid,
.dzh-store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dzh-store-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--dzh-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.dzh-store-card:hover { border-color: #c8d3e5; box-shadow: var(--shadow-card); transform: translateY(-2px); }
.dzh-store-card__link { display: flex; flex-direction: column; min-height: 100%; padding: 18px; color: var(--dzh-text); text-decoration: none; }
.dzh-store-card__logo { display: grid; place-items: center; width: 82px; height: 82px; margin-bottom: 14px; border: 1px solid var(--dzh-border); border-radius: 14px; background: #fff; }
.dzh-store-card__logo img { width: 70px; height: 70px; padding: 8px; object-fit: contain; }
.logo-placeholder { display: grid; place-items: center; width: 100%; height: 100%; border-radius: inherit; background: var(--dzh-blue-soft); color: var(--dzh-blue-dark); font-size: 24px; font-weight: 850; }
.dzh-store-card__body { display: block; min-width: 0; }
.dzh-store-card .store-title { margin: 0; color: var(--dzh-ink); font-size: 18px; line-height: 1.25; overflow-wrap: anywhere; }
.dzh-store-card__meta { display: grid; gap: 2px; margin-top: 8px; color: var(--dzh-muted); font-size: 12px; line-height: 1.45; }
.dzh-store-card__cta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 16px; color: var(--dzh-blue); font-size: var(--font-sm); font-weight: 800; }

/* Filters */
.coupon-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.coupon-filter-search { flex: 1 1 230px; }
.coupon-filter-input { min-height: 42px; }
.coupon-filter-chip,
.store-letter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--dzh-border);
  border-radius: 999px;
  background: #fff;
  color: var(--dzh-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.coupon-filter-chip:hover,
.coupon-filter-chip.active,
.store-letter-chip:hover,
.store-letter-chip.active { border-color: var(--dzh-blue); background: var(--dzh-blue-soft); color: var(--dzh-blue-dark); }
.store-letter-chip:disabled { opacity: .35; cursor: not-allowed; }

/* Empty state */
.dzh-empty-state,
.no-results,
.no-coupons-message {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px dashed var(--dzh-border-strong);
  border-radius: var(--radius-card);
  background: #fff;
  color: var(--dzh-muted);
  text-align: center;
}
.dzh-empty-state h2,
.dzh-empty-state h3 { margin-bottom: 8px; }
.dzh-empty-state p { max-width: 620px; margin-inline: auto; }
.dzh-empty-state--compact { padding: 20px; text-align: left; }
.dzh-empty-state__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 34px 0; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 42px; padding: 7px 11px; border: 1px solid var(--dzh-border); border-radius: var(--radius-control); background: #fff; color: var(--dzh-text); font-size: var(--font-sm); font-weight: 700; text-decoration: none; }
.pagination .page-numbers:hover,
.pagination .page-numbers.current { border-color: var(--dzh-blue); background: var(--dzh-blue); color: #fff; }

/* Coupon modal */
body.dzh-modal-open { overflow: hidden; }
.dzh-coupon-modal { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 20px; }
.dzh-coupon-modal[hidden] { display: none; }
.dzh-coupon-modal__overlay { position: absolute; inset: 0; background: rgba(8, 19, 35, .68); opacity: 0; transition: opacity var(--transition-fast); }
.dzh-coupon-modal__dialog { position: relative; z-index: 1; width: min(680px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 26px; border: 1px solid var(--dzh-border); border-radius: var(--radius-panel); background: #fff; box-shadow: var(--shadow-floating); opacity: 0; transform: translateY(10px) scale(.99); transition: opacity var(--transition-fast), transform var(--transition-fast); }
.dzh-coupon-modal.is-open .dzh-coupon-modal__overlay { opacity: 1; }
.dzh-coupon-modal.is-open .dzh-coupon-modal__dialog { opacity: 1; transform: none; }
.dzh-coupon-modal__close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--dzh-border); border-radius: var(--radius-control); background: #fff; color: var(--dzh-ink); cursor: pointer; font-size: 26px; line-height: 1; }
.dzh-coupon-modal__header { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding-right: 48px; }
.dzh-coupon-modal__logo { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid var(--dzh-border); border-radius: 14px; background: #fff; }
.dzh-coupon-modal__logo img { width: 64px; height: 64px; padding: 7px; object-fit: contain; }
.dzh-coupon-modal__logo span { color: var(--dzh-blue); font-size: 25px; font-weight: 850; }
.dzh-coupon-modal__kicker { margin: 0 0 5px; color: var(--dzh-muted); font-size: 12px; font-weight: 750; }
.dzh-coupon-modal__header h2 { margin: 0; font-size: 24px; }
.dzh-coupon-modal__summary { margin: 7px 0 0; color: var(--dzh-muted); font-size: var(--font-sm); }
.dzh-coupon-modal__deal-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; margin-top: 22px; padding: 18px; border: 1px dashed var(--dzh-border-strong); border-radius: var(--radius-card); background: #f9fbff; }
.dzh-coupon-modal__saving { display: grid; align-content: center; }
.dzh-coupon-modal__saving span,
.dzh-coupon-modal__code-label { color: var(--dzh-muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.dzh-coupon-modal__saving strong { color: var(--dzh-ink); font-size: 26px; }
.dzh-coupon-modal__code-row { display: flex; gap: 8px; margin-top: 5px; }
.dzh-coupon-modal__code-row code { display: flex; align-items: center; flex: 1; min-width: 0; min-height: 46px; padding: 8px 12px; overflow-wrap: anywhere; border: 1px dashed var(--dzh-blue); border-radius: var(--radius-control); background: #fff; color: var(--dzh-blue-dark); font-size: 18px; font-weight: 850; letter-spacing: .08em; }
.dzh-coupon-modal__code-row button { min-height: 46px; padding: 8px 13px; border: 0; border-radius: var(--radius-control); background: var(--dzh-ink); color: #fff; cursor: pointer; font-size: 12px; font-weight: 800; }
.dzh-coupon-modal__copy-status { display: block; min-height: 18px; margin-top: 4px; color: var(--dzh-mint); font-size: 12px; }
.dzh-coupon-modal__code-wrap small { color: var(--dzh-muted); }
.dzh-coupon-modal__deal-note { grid-column: 1 / -1; margin: 0; color: #475467; }
.dzh-coupon-modal__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.dzh-coupon-modal__store-btn,
.dzh-coupon-modal__single-link { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 16px; border-radius: var(--radius-control); font-size: var(--font-sm); font-weight: 800; text-decoration: none; }
.dzh-coupon-modal__store-btn { background: var(--dzh-blue); color: #fff; }
.dzh-coupon-modal__store-btn:hover { background: var(--dzh-blue-dark); color: #fff; }
.dzh-coupon-modal__single-link { border: 1px solid var(--dzh-border); background: #fff; color: var(--dzh-ink); }
.dzh-coupon-modal__trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.dzh-coupon-modal__trust-grid > div { padding: 11px; border: 1px solid var(--dzh-border); border-radius: 10px; background: #fff; }
.dzh-coupon-modal__trust-grid span,
.dzh-coupon-modal__trust-grid strong { display: block; }
.dzh-coupon-modal__trust-grid span { color: var(--dzh-muted); font-size: 11px; }
.dzh-coupon-modal__trust-grid strong { margin-top: 2px; color: var(--dzh-ink); font-size: 13px; }
.dzh-coupon-modal__terms { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--dzh-border); }
.dzh-coupon-modal__terms h3 { margin-bottom: 6px; font-size: 16px; }
.dzh-coupon-modal__terms p { margin: 0; color: var(--dzh-muted); font-size: var(--font-sm); }

/* Footer */
.dzh-affiliate-disclosure {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid var(--dzh-border, #e2e8f0);
  border-bottom: 1px solid var(--dzh-border, #e2e8f0);
  background: var(--dzh-surface, #fff);
  color: var(--dzh-muted, #64748b);
}
.dzh-affiliate-disclosure .container { width: 100%; }
.dzh-affiliate-disclosure p {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
}
.dzh-affiliate-disclosure strong { color: var(--dzh-ink, #0f172a); }

.dzh-site-footer { margin-top: 64px; padding: 54px 0 22px; background: var(--dzh-ink); color: #cbd5e1; }
.dzh-footer-grid { display: grid; grid-template-columns: minmax(250px, .9fr) minmax(0, 1.6fr); gap: 56px; }
.dzh-footer-brand .site-branding { color: #fff; }
.dzh-footer-brand .site-branding-custom-logo img { filter: brightness(0) invert(1); }
.dzh-footer-brand p { max-width: 330px; margin: 14px 0; color: #aebbd0; }
.dzh-footer-trust { display: flex; flex-wrap: wrap; gap: 7px 16px; margin: 0; padding: 0; list-style: none; font-size: 12px; }
.dzh-footer-trust li::before { content: "✓"; margin-right: 5px; color: #69d8ba; }
.dzh-footer-widget-grid,
.dzh-footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.dzh-footer-widget-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dzh-site-footer h2,
.dzh-site-footer .widget-title { margin: 0 0 12px; color: #fff; font-size: 14px; letter-spacing: .02em; }
.dzh-site-footer ul { margin: 0; padding: 0; list-style: none; }
.dzh-site-footer li + li { margin-top: 7px; }
.dzh-site-footer a { color: #cbd5e1; font-size: var(--font-sm); text-decoration: none; }
.dzh-site-footer a:hover { color: #fff; text-decoration: underline; }
.dzh-footer-links > div { display: grid; align-content: start; gap: 7px; }
.dzh-footer-social { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px; margin-top: 28px; }
.dzh-footer-social__label { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.dzh-footer-social__list { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.dzh-footer-social__list li,
.dzh-footer-social__list li + li { margin: 0; }
.dzh-footer-social__link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(203, 213, 225, .35); border-radius: 50%; background: rgba(255, 255, 255, .06); color: #e2e8f0; line-height: 1; }
.dzh-footer-social__link svg { width: 20px; height: 20px; fill: currentColor; }
.dzh-footer-social__link:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .14); color: #fff; text-decoration: none; transform: translateY(-1px); }
.dzh-footer-social__link:focus-visible { outline: 3px solid var(--dzh-focus-ring, #93c5fd); outline-offset: 3px; }
.dzh-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); color: #9faec3; font-size: 12px; }
.dzh-footer-bottom ul { display: flex; flex-wrap: wrap; gap: 14px; }


/* Store coupon card refinements */
.dzh-badge--type { background: #e8f7f5; color: #0f7d7b; }
.dzh-ticket-card__label { flex: 0 0 auto; max-width: 100%; }
.dzh-ticket-card__label--exclusive { order: 1; }
.dzh-ticket-card__label--recommended { order: 2; }
.dzh-ticket-card__label--staff { order: 3; }
.dzh-ticket-card__label--country { order: 4; }
.dzh-ticket-card__label--verified { order: 5; }
.dzh-ticket-card__label--type { order: 6; }
.dzh-ticket-card__label-compact { display: none; }
.dzh-ticket-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dzh-ticket-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dzh-ticket-card__brand-logo {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.dzh-ticket-card__brand-logo img { width: 28px; height: 28px; object-fit: contain; }
.dzh-ticket-card__store-link {
  color: var(--dzh-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}
.dzh-ticket-card__store-link:hover { color: var(--dzh-blue-dark); }
.dzh-ticket-card__labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-height: 25px;
  margin-bottom: 0;
}
.dzh-ticket-card__action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}
.dzh-ticket-card__cta-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}
.dzh-ticket-card__cta-code {
  flex: 0 0 auto;
  min-width: 56px;
  margin-left: 14px;
  padding: 13px 14px;
  border-left: 2px dashed rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dzh-ticket-card--deal .dzh-ticket-card__cta-code { display: none; }

/* Stable coupon buttons and store cards - v3.14.89 */
.dzh-ticket-card__action .copy-coupon-btn,
.dzh-ticket-card__action .visit-store-btn,
.dzh-ticket-card__action a.btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  justify-content: stretch;
  min-width: 0;
  min-height: 46px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-control);
  line-height: 1.1;
  box-shadow: none;
}

.dzh-ticket-card--deal .dzh-ticket-card__action .visit-store-btn,
.dzh-ticket-card__action a.btn {
  grid-template-columns: minmax(0, 1fr);
}

.dzh-ticket-card__action .copy-coupon-btn:hover,
.dzh-ticket-card__action .visit-store-btn:hover,
.dzh-ticket-card__action a.btn:hover {
  transform: none;
}

.dzh-ticket-card__action .dzh-ticket-card__cta-text {
  min-height: 46px;
  padding: 11px 14px;
  overflow: hidden;
  overflow-wrap: normal;
  word-break: normal;
  text-overflow: clip;
  white-space: normal;
}

.dzh-ticket-card__action .dzh-ticket-card__cta-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  max-width: 78px;
  margin-left: 0;
  padding: 11px 12px;
  overflow: hidden;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stores-grid,
.dzh-store-grid,
.dzh-directory-grid {
  align-items: stretch;
}

.dzh-store-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
}

.dzh-store-card__link {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  min-width: 0;
  gap: 14px;
}

.dzh-store-card__logo {
  margin: 0 auto;
}

.dzh-store-card__body {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.dzh-store-card .store-title {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}

.dzh-store-card__meta {
  justify-items: center;
  min-height: 34px;
}

.dzh-store-card__meta:empty {
  display: none;
}

.dzh-store-card__cta {
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding-top: 12px;
  border-top: 1px solid var(--dzh-border);
  text-align: center;
}

.dzh-store-card__cta > span:last-child {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--dzh-blue-soft);
  color: var(--dzh-blue-dark);
}

/* Header identity and reliable announcement rendering — v3.14.87 */
.announcement-bar[role="note"] {
  display: block;
  visibility: visible;
  opacity: 1;
}

.site-branding--logo-only {
  gap: 0;
  min-width: 0;
}

.site-branding--logo-only .site-branding-custom-logo,
.site-branding--logo-only .site-branding-custom-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-branding--logo-only .site-branding-custom-logo img,
.site-branding--logo-only .custom-logo {
  width: 170px;
  height: 42px;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
}

/* Mobile shopping-region selector lives in the footer instead of competing
   with search and menu controls in the phone header. */
.dzh-footer-region {
  display: none;
}

.dzh-footer-region-switcher {
  width: 100%;
}

.dzh-footer-region-switcher summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.dzh-footer-region-switcher summary::-webkit-details-marker {
  display: none;
}

.dzh-footer-region-switcher summary:hover,
.dzh-footer-region-switcher summary:focus-visible {
  border-color: rgba(105, 216, 186, .7);
  background: rgba(255, 255, 255, .1);
}

.dzh-footer-region-switcher__flag {
  font-size: 24px;
  line-height: 1;
}

.dzh-footer-region-switcher__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.dzh-footer-region-switcher__copy small {
  color: #9fb0c7;
  font-size: 11px;
  font-weight: 650;
}

.dzh-footer-region-switcher__copy strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.dzh-footer-region-switcher__chevron {
  color: #69d8ba;
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.dzh-footer-region-switcher[open] .dzh-footer-region-switcher__chevron {
  transform: rotate(180deg);
}

.dzh-footer-region-switcher__menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.dzh-footer-region-switcher__menu a,
.dzh-footer-region-switcher__menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
	width: 100%;
	cursor: pointer;
}

.dzh-footer-region-switcher__menu a:hover,
.dzh-footer-region-switcher__menu a:focus-visible,
.dzh-footer-region-switcher__menu a.is-active,
.dzh-footer-region-switcher__menu button:hover,
.dzh-footer-region-switcher__menu button:focus-visible,
.dzh-footer-region-switcher__menu button.is-active {
  border-color: rgba(105, 216, 186, .55);
  background: rgba(105, 216, 186, .12);
  color: #fff;
  text-decoration: none;
}
