.vxed-wrap {
  display: block;
  color: var(--vx-text);
  font-family: var(--vx-font-family);
  font-size: var(--vx-font-size-base);
}

.vxed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin: 0 auto;
}

.vxed-col-left {
  min-width: 0;
  border-right: 0px solid var(--vx-border);padding: 10px;
}

.vxed-col-right { min-width: 0; }

.vxed-sticky {
	position: sticky;
    top: 60px;
    padding: clamp(20px, 3vw, 28px);
    padding-top: 0px;
}
.vxed-addtologo{display:block;}
.vxed-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid var(--vx-border);
  border-bottom: 1px solid var(--vx-border);
}

.vxed-hero-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: opacity;
}

.vxed-hero.is-loaded .vxed-hero-img { opacity: 1; }
.vxed-hero.is-loaded { min-height: 0; }

.vxed-hero-caption {
    position: absolute;
    z-index: 2;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    bottom: 15%;
}

.vxed-hero-sub {
	color: #fff;
    font-size: clamp(1.1rem, 1vw, 1.2rem);
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 5px 23px rgb(0 0 0 / 75%);
    bottom: 0px;
    margin: 0 auto;
}
.vxed-hero-sub:empty { display: none; }

.vxed-hero-type {
  position: absolute;
  top: clamp(16px, 2.5vw, 32px);
  left: clamp(16px, 2.5vw, 32px);
  z-index: 2;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vx-text-inv);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  line-height: 1.05;
  max-width: 60%;
}

.vxed-countdown {
  position: absolute;
  top: clamp(16px, 2.5vw, 32px);
  right: clamp(16px, 2.5vw, 32px);
  z-index: 2;
  background: var(--vx-overlay);
  padding: 15px 20px;
  backdrop-filter: blur(4px);
  border-radius: var(--vx-radius);
}

.vxed-countdown-lbl {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vx-text-inv);
  margin-bottom: 8px;
  opacity: .85;
}

.vxed-countdown-grid { display: flex; gap: 14px; }

.vxed-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
}

.vxed-cd-num {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--vx-text-inv);
  font-variant-numeric: tabular-nums;
}

.vxed-cd-lbl {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vx-text-inv);
  opacity: .7;
  margin-top: 4px;
}

.vxed-live {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vx-danger);
  color: var(--vx-text-inv);
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  border-radius: var(--vx-radius);
}

.vxed-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vx-text-inv);
  animation: vxed-pulse 1.4s ease-in-out infinite;
}

@keyframes vxed-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.vxed-section {
  padding: clamp(20px, 3vw, 20px);

}

.vxed-section-title {
	font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--vx-text-3);
    margin: 0 0 10px;
}

.vxed-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vx-text-3);
  margin-bottom: 12px;
}

.vxed-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--vx-text);
}

.vxed-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--vx-text-2);
  margin: 0 0 20px;
}

.vxed-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--vx-border);
  margin-bottom: 20px;
  padding: 20px;
  background: var(--vx-bg-card);
  border-radius: var(--vx-radius);
}

.vxed-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--vx-text);
}

.vxed-meta-item:empty { display: none; }
.vxed-meta-item svg { flex: 0 0 auto; color: var(--vx-text-3); }

.vxed-prose {
	font-size: .95rem;
    line-height: 1.65;
    color: var(--vx-text-2);
    margin-bottom: 24px;
    padding: 20px;
    background: var(--vx-bg-card);
    border-radius: var(--vx-radius);
	border-bottom: 1px solid var(--vx-border);
}

.vxed-prose p { margin: 0 0 12px; }
.vxed-prose p:last-child { margin-bottom: 0; }

.vxed-ticket-wrap {

  padding: 20px;
  background: var(--vx-bg-card);
  border-radius: var(--vx-radius);
  border-bottom: 1px solid var(--vx-border);
}

.vxed-box-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 6px; }
.vxed-box-sub   { font-size: .85rem; color: var(--vx-text-3); margin: 0 0 18px; }
.vxed-box-subtitle { font-size: .95rem; font-weight: 700; margin: 0 0 14px; }

.vxed-tk-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--vx-border);
}

.vxed-tk-thumb {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: var(--vx-radius);
  overflow: hidden;
  background: var(--vx-bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vxed-tk-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vxed-tk-thumb-ph {
  color: var(--vx-text-3);
}

.vxed-tk-row:first-child { border-top: 0; }
.vxed-tk-row.is-selected {
  background: var(--vx-bg-hover);
  margin: 0 -10px;
  padding: 16px 10px;
  border-radius: var(--vx-radius);
}
.vxed-tk-row[data-soldout="1"] { opacity: .5; }

.vxed-tk-info { min-width: 0; flex: 1; }

.vxed-tk-name {
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vxed-tk-soldout { color: var(--vx-danger); font-weight: 600; font-size: .82rem; }

.vxed-tk-badge {
  background: var(--vx-success);
  color: var(--vx-text-inv);
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 7px;
  letter-spacing: .04em;
  border-radius: var(--vx-radius);
}

.vxed-tk-desc {
  font-size: .82rem;
  color: var(--vx-text-3);
  margin-top: 4px;
  line-height: 1.45;
}

.vxed-tk-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.vxed-tk-price.is-old { text-decoration: line-through; color: var(--vx-text-3); font-size: .88rem; }
.vxed-tk-price.is-new { font-weight: 800; font-size: 1.05rem; color: var(--vx-text); }
.vxed-tk-save { font-size: .76rem; color: var(--vx-success); font-weight: 600; }

.vxed-tk-qty {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  overflow: hidden;
}

.vxed-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--vx-bg-input);
  color: var(--vx-text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.vxed-qty-btn:hover:not(:disabled) { background: var(--vx-bg-hover); }
.vxed-qty-btn:disabled { opacity: .4; cursor: not-allowed; }

.vxed-qty-val {
  width: 38px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--vx-border);
  border-right: 1px solid var(--vx-border);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vxed-ticket-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  margin-top: 0px;
  border-top: 1px solid var(--vx-border);
  font-weight: 600;
}

.vxed-ticket-summary-val { font-size: 1.2rem; font-weight: 800; font-variant-numeric: tabular-nums; }

.vxed-form-actions { display: flex; gap: 10px; margin-top: 16px; }

.vxed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .15s ease, opacity .15s ease;
  border-radius: var(--vx-radius);
}

.vxed-btn-block { width: 100%; }

.vxed-btn-primary { background: var(--vx-primary); color: var(--vx-text-inv); }
.vxed-btn-primary:hover:not(:disabled) { background: var(--vx-primary-hover); }
.vxed-btn-primary:disabled { opacity: .4; cursor: not-allowed; }

.vxed-btn-ghost { background: transparent; color: var(--vx-text); border-color: var(--vx-border); }
.vxed-btn-ghost:hover { background: var(--vx-bg-hover); }

.vxed-checkout-user {
  padding: 14px;
  background: var(--vx-bg-hover);
  margin-bottom: 14px;
  border-radius: var(--vx-radius);
}

.vxed-ck-user-name { font-weight: 700; }
.vxed-ck-user-mail { font-size: .85rem; color: var(--vx-text-3); margin-top: 2px; }

.vxed-checkout-items { display: flex; flex-direction: column; gap: 8px; }

.vxed-ck-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--vx-border);
  font-size: .9rem;
}

.vxed-ck-item-qty { color: var(--vx-text-3); }

.vxed-success { text-align: center; padding: 10px 0; }

.vxed-success-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vx-success);
  color: var(--vx-text-inv);
  border-radius: var(--vx-radius);
}

.vxed-success h3 { margin: 0 0 6px; font-size: 1.15rem; }
.vxed-success p { color: var(--vx-text-3); font-size: .88rem; margin: 0 0 16px; }

.vxed-success-code {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 14px;
  background: var(--vx-bg-hover);
  border: 1px dashed var(--vx-border);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  border-radius: var(--vx-radius);
}

.vxed-alert {
  padding: 12px 14px;
  margin-top: 12px;
  font-size: .86rem;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
}

.vxed-alert.is-error { background: var(--vx-bg-hover); border-color: var(--vx-danger); color: var(--vx-danger);    margin-bottom: 10px;font-weight:700; }

.vxed-grid-exh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.vxed-exh-card {
  background: var(--vx-bg-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--vx-radius);
  border-bottom: 1px solid var(--vx-border);
}

.vxed-exh-head { display: flex; align-items: center; gap: 12px; }

.vxed-exh-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vx-bg-hover);
  overflow: hidden;
  border-radius: var(--vx-radius);
}

.vxed-exh-logo img { width: 100%; height: 100%; object-fit: contain; }
.vxed-exh-logo-fallback { font-weight: 800; font-size: 1rem; color: var(--vx-text-3); }

.vxed-exh-headinfo { min-width: 0; }
.vxed-exh-name { font-size: .95rem; font-weight: 700; margin: 0; line-height: 1.25; }
.vxed-exh-sector { font-size: .78rem; color: var(--vx-text-3); margin-top: 2px; }

.vxed-exh-desc {
  margin: 0;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--vx-text-2);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vxed-exh-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--vx-border);
}

.vxed-exh-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--vx-text-2);
  text-decoration: none;
}

.vxed-exh-row svg { flex: 0 0 auto; color: var(--vx-text-3); }
.vxed-exh-link { color: var(--vx-primary); }
.vxed-exh-link:hover { text-decoration: underline; }
.vxed-exh-link span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vxed-grid-spk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.vxed-spk-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--vx-bg-card);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  padding: 14px;
}
.vxed-spk-photo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  aspect-ratio: 1;
  background: var(--vx-bg-hover);
  overflow: hidden;
  border-radius: var(--vx-radius);
}
.vxed-spk-photo img { width: 100%; height: 100%; object-fit: cover; }
.vxed-spk-body { flex: 1; min-width: 0; }
.vxed-spk-name { font-size: .95rem; font-weight: 700; margin: 0 0 2px; }
.vxed-spk-role { font-size: .82rem; color: var(--vx-text-3); margin: 0 0 8px; }
.vxed-spk-bio  { font-size: .82rem; color: var(--vx-text-2); line-height: 1.5; margin: 0; }
.vxed-sch-day { margin-bottom: 28px; }
.vxed-sch-day:last-child { margin-bottom: 0; }

.vxed-sch-day-header {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--vx-text);
}

.vxed-sch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.vxed-sch-card {
  background: var(--vx-bg-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--vx-radius);
  border-bottom: 1px solid var(--vx-border);
}

.vxed-sch-time { font-weight: 700; font-size: .82rem; font-variant-numeric: tabular-nums; color: var(--vx-primary); }
.vxed-sch-title { margin: 0; font-size: .95rem; }
.vxed-sch-desc { margin: 0; font-size: .84rem; color: var(--vx-text-2); line-height: 1.5; }
.vxed-sch-tags { margin-top: auto; padding-top: 6px; font-size: .76rem; color: var(--vx-text-3); }

.vxed-ven {
  background: var(--vx-bg-card);
  margin-bottom: 24px;
  border-radius: var(--vx-radius);
  overflow: hidden;
  border-bottom: 1px solid var(--vx-border);
}

.vxed-ven:last-child { margin-bottom: 0; }

.vxed-ven-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  padding:15px;
}

.vxed-ven-photo {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--vx-bg-hover);
  display: block;
  border-radius: var(--vx-radius);
}

.vxed-ven-photo img { width: 100%; height: 100%; object-fit: cover; }

.vxed-ven-body { padding: 16px; }
.vxed-ven-body h3 { margin: 0 0 6px; font-size: 1rem; }
.vxed-ven-meta { font-size: .82rem; color: var(--vx-text-3); margin-bottom: 8px; }
.vxed-ven-desc { font-size: .85rem; color: var(--vx-text-2); line-height: 1.5; margin-bottom: 10px; }

.vxed-ven-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--vx-primary);
  text-decoration: none;
}

.vxed-ven-link:hover { text-decoration: underline; }

.vxed-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  padding: 20px;
  background: var(--vx-bg-card);
  border-radius: var(--vx-radius);
  border-bottom: 1px solid var(--vx-border);
}

.vxed-ga-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--vx-bg-hover);
  border-radius: var(--vx-radius);
}

.vxed-ga-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
}

.vxed-ga-cell img.is-loaded { opacity: 1; }

.vxed-loading {
  height: 3px;
  background: var(--vx-bg-hover);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--vx-radius);
}

.vxed-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--vx-primary);
  animation: vxed-load 1.1s ease-in-out infinite;
}

.vxed-loading.is-done { display: none; }

@keyframes vxed-load {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.vxed-empty-state {
  padding: 24px;
  text-align: center;
  color: var(--vx-text-3);
  font-size: .88rem;
  border: 1px dashed var(--vx-border);
  border-radius: var(--vx-radius);
}

.vxed-404 { text-align: center; padding: 80px 20px; color: var(--vx-text-3); }
.vxed-404 svg { color: var(--vx-text-3); margin-bottom: 20px; }
.vxed-404 h1 { font-size: 1.6rem; color: var(--vx-text); margin: 0 0 10px; }
.vxed-404 p { margin: 0 0 24px; }

.vxed-lb {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--vx-overlay);
  backdrop-filter: blur(8px);
}

.vxed-lb.open { display: flex; animation: vxed-lb-bg .25s ease; }

@keyframes vxed-lb-bg { from { opacity: 0; } to { opacity: 1; } }

.vxed-lb-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px);
  cursor: zoom-out;
}

.vxed-lb-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.vxed-lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: block;
  border-radius: var(--vx-radius);
  transition: opacity .28s ease, transform .28s ease;
}

.vxed-lb-caption {
  color: var(--vx-text-inv);
  font-size: .9rem;
  text-align: center;
  max-width: 600px;
  opacity: .9;
}

.vxed-lb-fade .vxed-lb-img { opacity: 0; transform: scale(.97); }
.vxed-lb-in-right .vxed-lb-img { animation: vxed-slide-r .3s ease; }
.vxed-lb-in-left  .vxed-lb-img { animation: vxed-slide-l .3s ease; }

@keyframes vxed-slide-r {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes vxed-slide-l {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.vxed-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  background: var(--vx-bg-card);
  color: var(--vx-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  transition: opacity .15s ease, transform .15s ease;
  border-radius: var(--vx-radius);
}

.vxed-lb-nav:hover { opacity: 1; }
.vxed-lb-prev { left: clamp(12px, 2vw, 28px); }
.vxed-lb-next { right: clamp(12px, 2vw, 28px); }
.vxed-lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
.vxed-lb-next:hover { transform: translateY(-50%) translateX(2px); }

.vxed-lb-close {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--vx-bg-card);
  color: var(--vx-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  border-radius: var(--vx-radius);
}

.vxed-lb-close:hover { opacity: 1; }

.vxed-lb-counter {
  position: absolute;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--vx-bg-card);
  color: var(--vx-text);
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border-radius: var(--vx-radius);
}

@media (max-width: 600px) {
  .vxed-lb-nav { width: 44px; height: 44px; }
  .vxed-lb-img { max-height: 70vh; }
}

.vxed-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--vx-overlay);
  z-index: 500;
  backdrop-filter: blur(2px);
}

.vxed-modal-overlay.open { display: block; }

.vxed-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  max-width: 95vw;
  max-height: 90vh;
  background: var(--vx-bg-card);
  border: 1px solid var(--vx-border);
  box-shadow: var(--vx-shadow-lg);
  z-index: 501;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--vx-radius);
}

.vxed-modal.open { display: flex; }

.vxed-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--vx-border);
}

.vxed-modal-head h3 { margin: 0; font-size: 1.05rem; }

.vxed-modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--vx-text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vx-radius);
}

.vxed-modal-close:hover { background: var(--vx-bg-hover); }
.vxed-modal-body { padding: 20px; overflow-y: auto; }

@media (max-width: 860px) {
  .vxed-layout { grid-template-columns: 1fr; }

  .vxed-col-left { border-right: 0; order: 2; }

  .vxed-col-right {
    order: 1;
    border-bottom: 1px solid var(--vx-border);
  }

  .vxed-sticky { position: static; }

  .vxed-section:first-child { border-top: 0; }
}

.vxed-hero-type {
  color: #fff;
}

.vxed-countdown-lbl { color: #fff; }
.vxed-cd-num        { color: #fff; }
.vxed-cd-lbl        { color: #fff; }

.vxed-exhslider {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgb(0 0 0 / 0%));
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000000 92%, #000000bf);
}

.vxed-exhslider-track {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  animation: vxed-exhscroll 30s linear infinite;
}

.vxed-exhslider:hover .vxed-exhslider-track {
  animation-play-state: paused;
}

@keyframes vxed-exhscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vxed-exhslide {
  flex: 0 0 auto;
  height: 56px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 5px;
  background: #fff;
  border-radius: var(--vx-radius);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.vxed-exhslide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.vxed-exhslide img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

.vxed-exhslide-fallback {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--vx-text-3);
  letter-spacing: .05em;
}

@media (prefers-reduced-motion: reduce) {
  .vxed-exhslider-track { animation: none; }
}

.vxed-modal-reg { width: 760px; }
.vxed-modal-reg .vxed-modal-body { max-height: 78vh; }

.vxed-reg-search {
  margin-bottom: 18px;
}
.vxed-reg-search-title {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vx-text-3);
  margin-bottom: 12px;
}

.vxed-geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.vxed-geo-field { position: relative; }

.vxed-reg-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--vx-text-2);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 4px;
}

.vxed-reg-input,
.vxed-geo-input {
  width: 100%;
  padding: 10px 12px;
  font-size: .92rem;
  color: var(--vx-text);
  background: var(--vx-bg-input);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  outline: none;
  transition: border-color .15s ease;
  box-sizing: border-box;
}
.vxed-reg-input:focus,
.vxed-geo-input:focus { border-color: var(--vx-primary); }

textarea.vxed-reg-input { resize: vertical; min-height: 70px; }

.vxed-geo-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--vx-bg-card);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  max-height: 220px;
  overflow-y: auto;
  margin-top: 3px;
}
.vxed-geo-item {
  padding: 9px 12px;
  font-size: .88rem;
  cursor: pointer;
  border-bottom: 1px solid var(--vx-border);
}
.vxed-geo-item:last-child { border-bottom: none; }
.vxed-geo-item:hover { background: var(--vx-bg-hover); }

.vxed-company-results {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
}
.vxed-company-item {
  padding: 10px 12px;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.vxed-company-item:hover { background: var(--vx-bg-hover); }
.vxed-company-item.is-selected {
  border-color: var(--vx-primary);
  background: var(--vx-bg-hover);
}
.vxed-company-name { font-weight: 700; font-size: .9rem; }
.vxed-company-meta { font-size: .78rem; color: var(--vx-text-3); margin-top: 2px; }

.vxed-geo-loading,
.vxed-geo-empty {
  padding: 14px;
  text-align: center;
  font-size: .85rem;
  color: var(--vx-text-3);
}

.vxed-reg-sep {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0 6px;
  color: var(--vx-text-3);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vxed-reg-sep::before,
.vxed-reg-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vx-border);
}
.vxed-reg-sep span { padding: 0 12px; }

.vxed-reg-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 14px;
}
.vxed-reg-fields .vxed-reg-field { margin: 0; }

.vxed-cf-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vxed-cf-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--vx-text-2);
  cursor: pointer;
}

.vxed-reg-success { text-align: center; padding: 10px 0; }
.vxed-reg-success h3 { margin: 0 0 12px; font-size: 1.1rem; }

@media (max-width: 600px) {
  .vxed-modal-reg { width: 95vw; }
  .vxed-geo-grid { grid-template-columns: 1fr; }
}

.vxed-reg-fields .vxed-reg-field.is-full { grid-column: 1 / -1; }
.vxed-reg-fields .vxed-reg-field:has(textarea) { grid-column: 1 / -1; }
.vxed-thanks-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vx-success);
  color: #fff;
  border-radius: 50%;
}
.vxed-thanks-sub {
  color: var(--vx-text-2);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 18px;
}
.vxed-barcode-wrap {
  display: flex;
  justify-content: center;
  padding: 14px 10px 6px;
  background: #fff;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  margin-bottom: 8px;
}
.vxed-barcode-wrap svg { max-width: 100%; height: auto; }
.vxed-success-actions { margin-top: 14px; }
.vxed-reg-choice { text-align: center; padding: 10px 0; }
.vxed-choice-title { margin: 0 0 8px; font-size: 1.15rem; }
.vxed-choice-text { color: var(--vx-text-2); font-size: .92rem; margin: 0 0 18px; }
.vxed-choice-actions { display: flex; flex-direction: column; gap: 10px; }

.vxed-meta-sub {
  margin: 6px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--vx-border);
  font-size: .82rem;
  line-height: 1.5;
  color: var(--vx-text-3);
  font-style: italic;
}
.vxed-meta-sub:empty { display: none; }

.vxed-adsgrid {
	position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: clamp(16px, 3vw, 34px);
    align-content: center;
    overflow: hidden;
}
.vxed-adsgrid.is-hidden { display: none; }

.vxed-adcell {
  position: relative;
  background: #fff;           
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-sm);
  box-shadow: var(--vx-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
    aspect-ratio: 16 / 10;
  cursor: pointer;
  opacity: 0;                                 
  transform: translateY(10px) scale(.96);
  transition: opacity .5s ease, transform .5s ease, box-shadow .2s ease;
}
.vxed-adcell.is-on {
  opacity: .90;                              
  transform: translateY(0) scale(1);
  transition: opacity .5s ease, transform .5s ease, box-shadow .2s ease;
}
.vxed-adcell:hover {
  opacity: 1;
  box-shadow: var(--vx-shadow-lg);
  transform: translateY(-2px) scale(1.32);
}

.vxed-adcell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.vxed-adcell-fallback {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .05em;
  color: var(--vx-text-3);
}

.vxed-adcell-badge {
position: absolute;
    background: #cfcdcd4f;
    color: #b0b1b1;
    text-transform: uppercase;
    padding: 3px 3px;
    border-radius: 100%;
    bottom: 3px;
    right: 2px;
}
.vxed-adcell-badge svg {
  width: 31px;
  height: 31px;
  display: block;
}
@keyframes vxed-badge-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.09); }
}

.vxed-addetail {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--vx-bg-card);
  padding: clamp(16px, 2.5vw, 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.vxed-addetail.is-open {
  opacity: 1;
  visibility: visible;
}

.vxed-addetail-inner {
  display: grid;
  grid-template-columns: minmax(140px, 210px) 1fr;
  gap: clamp(16px, 2.5vw, 30px);
  width: 100%;
  height: 100%;
}

.vxed-addetail-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.vxed-addetail-logo {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--vx-text-inv);
  border-radius: var(--vx-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: var(--vx-shadow-lg);
  animation: vxed-logo-land .45s cubic-bezier(.2,.8,.2,1);
}
.vxed-addetail-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes vxed-logo-land {
  from { transform: translateY(-16px) scale(1.08); opacity: .4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.vxed-addetail-chaptabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  min-height: 0;
}
.vxed-chaptab {
  display: block;
  text-align: left;
  font-size: .84rem;
  line-height: 1.35;
  color: var(--vx-text-2);
  background: var(--vx-bg-hover);
  border: 1px solid var(--vx-border);
  padding: 8px 12px;
  border-radius: var(--vx-radius-sm);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vxed-chaptab:hover { background: var(--vx-bg-active); color: var(--vx-text); }
.vxed-chaptab.is-active {
  background: var(--vx-primary);
  color: var(--vx-text-inv);
  font-weight: 700;
  border-color: var(--vx-primary);
}

.vxed-addetail-right {
  min-width: 0;
  overflow-y: auto;
  padding-right: 8px;
  color: var(--vx-text-2);
}
.vxed-addetail-title {
  margin: 0 0 4px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--vx-text);
}
.vxed-addetail-sub {
  font-size: .84rem;
  color: var(--vx-text-3);
  margin-bottom: 14px;
}
.vxed-addetail-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--vx-text-2);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vx-border);
}
.vxed-addetail-desc:empty { display: none; }

.vxed-adchapter-body {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--vx-text-2);
}
.vxed-adchapter-body p { margin: 0 0 12px; }
.vxed-adchapter-body p:last-child { margin-bottom: 0; }
.vxed-adchapter-body strong { color: var(--vx-text); }
.vxed-adchapter-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--vx-radius-sm);
}
.vxed-adchapter-body img.vxds-img-left  { float: left;  margin: 4px 16px 12px 0; max-width: 45%; }
.vxed-adchapter-body img.vxds-img-right { float: right; margin: 4px 0 12px 16px; max-width: 45%; }
.vxed-adchapter-body img.vxds-img-center{ display: block; margin: 12px auto; }
.vxed-adchapter-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
.vxed-adchapter-body td, .vxed-adchapter-body th {
  border: 1px solid var(--vx-border);
  padding: 6px 8px;
}
.vxed-adchapter-body::after { content: ""; display: block; clear: both; }

.vxed-addetail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--vx-bg-hover);
  color: var(--vx-text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vx-radius-round);
  transition: background .15s ease, color .15s ease;
}
.vxed-addetail-close:hover { background: var(--vx-bg-active); color: var(--vx-text); }

@media (prefers-reduced-motion: reduce) {
  .vxed-adcell { transition: opacity .3s ease; transform: none; }
  .vxed-adcell.is-on { transform: none; }
  .vxed-adcell-badge { animation: none; }
  .vxed-addetail-logo { animation: none; }
}

@media (max-width: 860px) {
  .vxed-adsgrid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .vxed-addetail-inner { grid-template-columns: 1fr; }
  .vxed-addetail-left { flex-direction: row; align-items: flex-start; }
  .vxed-addetail-logo { width: 120px; flex: 0 0 120px; }
  .vxed-addetail-chaptabs { flex: 1 1 auto; }
  .vxed-addetail-right { max-height: 50%; }
}
@media (max-width: 520px) {
  .vxed-adsgrid { grid-template-columns: repeat(2, 1fr); }
}

.vxed-invite-banner {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--vx-text-inv);
  background: var(--vx-primary);
  border: 0;
  border-radius: var(--vx-radius);
  cursor: pointer;
  animation: vxed-invite-blink 1.6s ease-in-out infinite;
  transition: transform .15s ease;
}
.vxed-invite-banner:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}
.vxed-invite-banner[hidden] { display: none; }

@keyframes vxed-invite-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--vx-primary-light); }
  50%      { opacity: .82; box-shadow: 0 0 0 6px var(--vx-primary-light); }
}

@media (prefers-reduced-motion: reduce) {
  .vxed-invite-banner { animation: none; }
}

.vxed-invite-who {
  padding: 14px 16px;
  background: var(--vx-bg-hover);
  border-radius: var(--vx-radius);
  margin-bottom: 16px;
}
.vxed-invite-who-name { font-weight: 700; font-size: 1rem; color: var(--vx-text); }
.vxed-invite-who-meta { font-size: .85rem; color: var(--vx-text-3); margin-top: 3px; }
.vxed-tk-row.is-locked {
    opacity: .5;
    pointer-events: auto;
    cursor: not-allowed;
}
.vxed-tk-row.is-locked .vxed-qty-btn {
    cursor: not-allowed;
}

.vxed-meta--has-cd #vxedCountdown {
  position: static;
  inset: auto;
  width: 100%;
  margin-top: 6px;
  padding: 12px 0 0;
  border-top: 1px solid var(--vx-border);
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
}

.vxed-meta--has-cd #vxedCountdown .vxed-countdown-lbl {
  color: var(--vx-text-3);
}
.vxed-meta--has-cd #vxedCountdown .vxed-cd-num {
  color: var(--vx-text);
}
.vxed-meta--has-cd #vxedCountdown .vxed-cd-lbl {
  color: var(--vx-text-3);
}

@media (max-width: 860px) {


  .vxed-addetail {
    position: fixed;
    inset: 0;
    z-index: 600;
    padding: 0;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform .32s cubic-bezier(.2,.8,.2,1), visibility .32s ease;
    overflow-y: auto;
  }
  .vxed-addetail.is-open {
    transform: translateX(0);
    visibility: visible;
  }


  .vxed-addetail-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
    min-height: 100%;
  }


  .vxed-addetail-left {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 60px 16px 14px;
    background: var(--vx-bg-card);
    border-bottom: 1px solid var(--vx-border);
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .vxed-addetail-logo {
    width: 140px;
    flex: 0 0 auto;
    align-self: center;
    aspect-ratio: 16 / 10;
  }


  .vxed-addetail-chaptabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .vxed-chaptab {
    flex: 0 0 auto;
    white-space: nowrap;
  }


  .vxed-addetail-right {
    flex: 1 1 auto;
    overflow-y: visible;
    padding: 16px;
    padding-right: 16px;
  }


  .vxed-addetail-close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 7;
  }
}

@media (max-width: 860px) {


  .vxed-hero:has(#vxedAdsGrid) .vxed-hero-img {
    display: none;
  }
  .vxed-hero:has(#vxedAdsGrid) {
    min-height: 0;
    border-radius: 0;
  }


  .vxed-adsgrid {
    position: static;
    inset: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    align-content: start;
  }


  .vxed-adcell {
    aspect-ratio: 16 / 11;
  }
}

.vxed-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--vx-border);
}

.vxed-tab {
  flex: 1 1 auto;
  padding: 12px 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vx-text-3);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
  border-radius: var(--vx-radius-sm) var(--vx-radius-sm) 0 0;
}

.vxed-tab:hover { color: var(--vx-text); background: var(--vx-bg-hover); }

.vxed-tab.is-active {
  color: var(--vx-primary);
  border-bottom-color: var(--vx-primary);
}

.vxed-tabpane { display: none; }
.vxed-tabpane.is-active { display: block; }
