/* ==========================================================================
   DISCOVER — place detail page (modern redesign)
   Namespaced under .dcx so nothing here leaks into the Discover index,
   admin catalog screens, or the legacy .discover-* rules in catalog.css.
   Palette matches the site: #667eea → #764ba2 brand, #ff6b35 accent.
   ========================================================================== */

.dcx {
    --dcx-brand: #667eea;
    --dcx-brand-2: #764ba2;
    --dcx-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dcx-accent: #ff6b35;
    --dcx-ink: #1e2a3a;
    --dcx-ink-2: #46536a;
    --dcx-muted: #7a8699;
    --dcx-line: #e7e9f3;
    --dcx-tint: #f6f7fe;
    --dcx-radius: 20px;
    --dcx-shadow: 0 2px 14px rgba(18, 41, 63, .06);
    --dcx-shadow-lg: 0 18px 44px rgba(18, 41, 63, .13);

    /* Sticky offsets. The site header's height varies by breakpoint (the
       desktop two-tier bar is taller than the mobile one), so discover-detail.js
       measures it and overwrites these; the values below are safe fallbacks. */
    --dcx-stick: 112px;
    --dcx-stick-2: 160px;

    display: block;
    background: #fff;
    color: var(--dcx-ink);
}

/* Self-contained sizing so the component's min-height/padding math holds even
   if this page is ever rendered without main.css's global reset. */
.dcx,
.dcx *,
.dcx *::before,
.dcx *::after {
    box-sizing: border-box;
}

.dcx-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.dcx-hero {
    position: relative;
    overflow: hidden;
    padding: 26px 0 34px;
    background: var(--dcx-tint);
    isolation: isolate;
}

/* Blurred wash of the venue photo behind the hero — gives the page a sense
   of place without hurting the legibility of the text on top. */
.dcx-hero-wash {
    position: absolute;
    inset: -60px;
    background-image: var(--dcx-hero-img);
    background-size: cover;
    background-position: center;
    filter: blur(38px) saturate(1.15);
    opacity: .3;
    z-index: -2;
}

.dcx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .93) 60%, #fff 100%);
    z-index: -1;
}

/* ---------- Breadcrumbs ---------- */
.dcx-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: .84rem;
    color: var(--dcx-muted);
}

.dcx-crumbs a {
    color: var(--dcx-ink-2);
    text-decoration: none;
    border-radius: 6px;
    transition: color .15s;
}

.dcx-crumbs a:hover {
    color: var(--dcx-brand);
}

.dcx-crumbs i {
    font-size: .6rem;
    opacity: .55;
}

.dcx-crumbs [aria-current] {
    color: var(--dcx-ink);
    font-weight: 600;
}

/* ---------- Hero grid ---------- */
.dcx-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
}

.dcx-hero-media {
    position: relative;
    border-radius: var(--dcx-radius);
    overflow: hidden;
    box-shadow: var(--dcx-shadow-lg);
    background: var(--dcx-tint);
}

.dcx-hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.dcx-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    font-size: 3rem;
    color: var(--dcx-brand);
    background: linear-gradient(135deg, #eef1fe 0%, #f3eefb 100%);
}

.dcx-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--dcx-accent);
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(255, 107, 53, .38);
}

.dcx-hero-body {
    min-width: 0;
}

/* ---------- Tag pills ---------- */
.dcx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.dcx-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--dcx-line);
    background: #fff;
    color: var(--dcx-ink-2);
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, color .15s, box-shadow .15s, transform .15s;
}

.dcx-pill i {
    color: var(--dcx-brand);
    font-size: .82rem;
}

a.dcx-pill:hover {
    color: var(--dcx-brand);
    border-color: rgba(102, 126, 234, .45);
    box-shadow: 0 6px 16px rgba(102, 126, 234, .14);
    transform: translateY(-1px);
}

.dcx-pill.is-brand {
    background: var(--dcx-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(102, 126, 234, .26);
}

.dcx-pill.is-brand i {
    color: #fff;
}

.dcx-hero-body h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--dcx-ink);
}

.dcx-lede {
    margin: 0 0 18px;
    max-width: 62ch;
    font-size: 1.06rem;
    line-height: 1.65;
    color: var(--dcx-ink-2);
}

/* ---------- At-a-glance stat strip ---------- */
.dcx-glance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.dcx-glance li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .92rem;
    color: var(--dcx-ink-2);
}

.dcx-glance i {
    color: var(--dcx-brand);
    width: 16px;
    text-align: center;
}

.dcx-glance strong {
    color: var(--dcx-ink);
    font-weight: 700;
}

/* ---------- Hero action buttons ---------- */
.dcx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dcx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--dcx-line);
    border-radius: 12px;
    background: #fff;
    color: var(--dcx-ink);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, border-color .15s, background .15s, color .15s;
}

.dcx-btn i {
    font-size: .95rem;
}

.dcx-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, .4);
    box-shadow: 0 10px 22px rgba(102, 126, 234, .15);
    color: var(--dcx-brand);
}

.dcx-btn-primary {
    border-color: transparent;
    background: var(--dcx-grad);
    color: #fff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, .3);
}

.dcx-btn-primary:hover {
    color: #fff;
    box-shadow: 0 14px 30px rgba(102, 126, 234, .38);
}

.dcx-btn-icon {
    padding: 12px;
    width: 48px;
}

/* ==========================================================================
   STICKY SECTION NAV
   ========================================================================== */

.dcx-subnav {
    position: sticky;
    top: var(--dcx-stick);
    z-index: 40;
    /* Matches the header's own scrolled bar so the two read as one surface. */
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--dcx-line);
}

.dcx-subnav-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dcx-subnav-inner::-webkit-scrollbar {
    display: none;
}

.dcx-subnav a {
    flex: 0 0 auto;
    position: relative;
    padding: 16px 16px 14px;
    color: var(--dcx-muted);
    font-size: .94rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s;
}

.dcx-subnav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--dcx-grad);
    transform: scaleX(0);
    transition: transform .22s ease;
}

.dcx-subnav a:hover {
    color: var(--dcx-ink);
}

.dcx-subnav a.is-active {
    color: var(--dcx-brand);
}

.dcx-subnav a.is-active::after {
    transform: scaleX(1);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.dcx-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
    padding: 40px 0 80px;
}

.dcx-main {
    min-width: 0;
}

.dcx-section + .dcx-section {
    margin-top: 46px;
}

/* Offset for the sticky header + subnav when jumping to an anchor. */
.dcx-section {
    scroll-margin-top: calc(var(--dcx-stick-2) + 20px);
}

.dcx-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 20px;
}

.dcx-section-head h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: var(--dcx-ink);
}

.dcx-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--dcx-tint);
    border: 1px solid var(--dcx-line);
    color: var(--dcx-brand-2);
    font-size: .8rem;
    font-weight: 700;
}

/* ---------- Prose ---------- */
.dcx-prose p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--dcx-ink-2);
}

.dcx-prose p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   LOCATIONS
   ========================================================================== */

.dcx-locations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.dcx-loc {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--dcx-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--dcx-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dcx-loc:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, .35);
    box-shadow: 0 14px 30px rgba(102, 126, 234, .14);
}

.dcx-loc.is-primary {
    border-color: rgba(102, 126, 234, .45);
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 55%);
}

.dcx-loc-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

/* Letter avatar keeps the card grid readable when venues share a photo-less
   dataset — cheaper and calmer than a stock icon on every card. */
.dcx-loc-avatar {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--dcx-grad);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(102, 126, 234, .26);
}

.dcx-loc-title {
    min-width: 0;
}

.dcx-loc-title h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--dcx-ink);
}

.dcx-loc-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    color: var(--dcx-muted);
}

.dcx-loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--dcx-grad);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.dcx-loc-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dcx-loc-lines li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    line-height: 1.5;
    color: var(--dcx-ink-2);
}

.dcx-loc-lines i {
    flex-shrink: 0;
    width: 16px;
    margin-top: 3px;
    text-align: center;
    color: var(--dcx-brand);
    font-size: .85rem;
}

.dcx-loc-lines a {
    color: var(--dcx-ink-2);
    text-decoration: none;
}

.dcx-loc-lines a:hover {
    color: var(--dcx-brand);
    text-decoration: underline;
}

.dcx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.dcx-chips li {
    padding: 4px 11px;
    border-radius: 999px;
    background: #eef1fe;
    border: 1px solid #dfe3fb;
    color: var(--dcx-brand-2);
    font-size: .78rem;
    font-weight: 600;
}

.dcx-loc-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--dcx-line);
}

.dcx-loc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    color: var(--dcx-brand);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.dcx-loc-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.dcx-pricing {
    list-style: none;
    margin: 0 0 16px;
    padding: 6px 22px;
    border: 1px solid var(--dcx-line);
    border-radius: 16px;
    background: var(--dcx-tint);
}

.dcx-pricing li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--dcx-line);
}

.dcx-pricing li:last-child {
    border-bottom: none;
}

.dcx-pricing-label {
    font-weight: 600;
    line-height: 1.45;
    color: var(--dcx-ink);
}

.dcx-pricing-label small {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    color: var(--dcx-muted);
}

.dcx-pricing-price {
    white-space: nowrap;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dcx-brand-2);
}

.dcx-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: var(--dcx-brand);
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
}

.dcx-inline-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   LINKED MARKETPLACE SERVICES
   ========================================================================== */

.dcx-services-intro {
    margin: -8px 0 20px;
    color: var(--dcx-muted);
    font-size: .96rem;
}

.dcx-services-intro a {
    color: var(--dcx-brand);
    font-weight: 700;
    text-decoration: none;
}

.dcx-services-intro a:hover {
    text-decoration: underline;
}

.dcx-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.dcx-svc {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dcx-line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--dcx-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dcx-svc:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, .35);
    box-shadow: 0 16px 32px rgba(102, 126, 234, .16);
}

.dcx-svc-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dcx-tint);
}

.dcx-svc-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.dcx-svc:hover .dcx-svc-media img {
    transform: scale(1.06);
}

.dcx-svc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    color: var(--dcx-brand);
    background: linear-gradient(135deg, #eef1fe 0%, #f3eefb 100%);
}

.dcx-svc-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
}

.dcx-svc-body h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--dcx-ink);
}

.dcx-svc-price {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--dcx-brand-2);
}

.dcx-svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 6px;
    color: var(--dcx-brand);
    font-size: .88rem;
    font-weight: 700;
}

.dcx-svc:hover .dcx-svc-cta i {
    transform: translateX(3px);
}

.dcx-svc-cta i {
    transition: transform .2s ease;
}

/* ==========================================================================
   SIDE RAIL
   ========================================================================== */

.dcx-rail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.dcx-card {
    border: 1px solid var(--dcx-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--dcx-shadow);
    overflow: hidden;
}

.dcx-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--dcx-line);
    background: var(--dcx-tint);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dcx-muted);
}

.dcx-card-head i {
    color: var(--dcx-brand);
}

.dcx-card-body {
    padding: 18px 20px 20px;
}

.dcx-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.dcx-info li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid var(--dcx-line);
}

.dcx-info li:first-child {
    padding-top: 0;
}

.dcx-info li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.dcx-info-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: var(--dcx-tint);
    color: var(--dcx-brand);
    font-size: .9rem;
}

.dcx-info-text {
    min-width: 0;
    flex: 1;
}

.dcx-info-label {
    display: block;
    margin-bottom: 2px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--dcx-muted);
}

.dcx-info-value {
    display: block;
    font-size: .95rem;
    line-height: 1.45;
    color: var(--dcx-ink);
    overflow-wrap: anywhere;
}

.dcx-info-value a {
    color: var(--dcx-ink);
    text-decoration: none;
}

.dcx-info-value a:hover {
    color: var(--dcx-brand);
    text-decoration: underline;
}

.dcx-rail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.dcx-rail-actions .dcx-btn {
    width: 100%;
}

/* ==========================================================================
   MAP
   ========================================================================== */

.dcx-map {
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: 6px;
    border: 1px solid var(--dcx-line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--dcx-tint);
    box-shadow: var(--dcx-shadow);
}

.dcx-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */

.dcx-bottombar {
    display: none;
}

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

@media (min-width: 900px) {
    .dcx-hero {
        padding: 30px 0 46px;
    }

    .dcx-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 46px;
    }

    /* Photo sits on the right on desktop: the name and actions read first. */
    .dcx-hero-media {
        order: 2;
    }

    .dcx-hero-body {
        order: 1;
    }

    .dcx-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 48px;
    }

    .dcx-rail {
        position: sticky;
        top: calc(var(--dcx-stick-2) + 20px);
    }
}

@media (max-width: 1100px) and (min-width: 900px) {
    .dcx-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 32px;
    }
}

@media (max-width: 899px) {
    .dcx-shell {
        padding: 0 18px;
    }

    .dcx-layout {
        padding: 30px 0 96px;
        gap: 30px;
    }

    .dcx-hero-media img,
    .dcx-hero-placeholder {
        aspect-ratio: 16 / 10;
    }

    /* The rail's contact details are duplicated by the sticky bottom bar and
       the hero actions, so on small screens it drops below the content. */
    .dcx-rail {
        order: 2;
    }

    .dcx-locations {
        grid-template-columns: 1fr;
    }

    .dcx-services {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }

    .dcx-map {
        aspect-ratio: 4 / 3;
    }

    .dcx-bottombar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        display: flex;
        gap: 10px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .96);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        border-top: 1px solid var(--dcx-line);
        box-shadow: 0 -6px 24px rgba(18, 41, 63, .1);
    }

    .dcx-bottombar .dcx-btn {
        flex: 1;
        min-width: 0;
        min-height: 50px;
        padding: 12px 10px;
        font-size: .92rem;
        /* Two labels share a phone-width row — let them ellipsize rather than
           wrap, which would double the bar's height. */
        white-space: nowrap;
        overflow: hidden;
    }

    .dcx-bottombar .dcx-btn-icon {
        flex: 0 0 50px;
        padding: 12px;
    }

    /* Clear the fixed bar so it never covers the end of the footer. */
    .dcx ~ .footer {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 520px) {
    .dcx-actions .dcx-btn {
        flex: 1 1 100%;
    }

    .dcx-actions .dcx-btn-icon {
        flex: 0 0 48px;
    }

    .dcx-glance {
        gap: 8px 18px;
    }
}

/* ---------- Toast (share → link copied) ---------- */
.dcx-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 1400;
    transform: translate(-50%, 14px);
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--dcx-ink);
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(18, 41, 63, .3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.dcx-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {

    .dcx *,
    .dcx *::after,
    .dcx *::before {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}
