/* ═══════════════════════════════════════════════════════════════
   Detail.css — JustNow Event Detail (v2)
   Dark glassmorphism + portrait/landscape covers + gallery
   ═══════════════════════════════════════════════════════════════ */

:root {
    --dt-accent: #ff6b35;
    --dt-accent-hover: #ff8555;
    --dt-surface: rgba(26, 27, 30, 0.92);
    --dt-surface-light: rgba(255, 255, 255, 0.06);
    --dt-text: #f0f0f0;
    --dt-text-muted: #8a8a8a;
    --dt-radius: 14px;
    --dt-radius-sm: 8px;
    --dt-border: rgba(255, 255, 255, 0.08);
    --dt-green: #25d366;
    --dt-blue: #1877f2;
}

/* ─── Page layout ─── */

.dt-page {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.dt-page__backdrop {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.25) saturate(1.3);
    -webkit-filter: blur(40px) brightness(0.25) saturate(1.3);
    transform: scale(1.2);
    z-index: 0;
}

/* ─── Loading ─── */

.dt-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: var(--dt-text-muted);
    gap: 1rem;
}

.dt-loading__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--dt-surface-light);
    border-top-color: var(--dt-accent);
    border-radius: 50%;
    animation: dt-spin 0.8s linear infinite;
}

@keyframes dt-spin {
    to { transform: rotate(360deg); }
}

/* ─── Card ─── */

.dt-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    background: var(--dt-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--dt-radius);
    border: 1px solid var(--dt-border);
    overflow: hidden;
    margin: 0 auto;
}

/* ─── Header / Cover ─── */

.dt-card__header {
    position: relative;
}

.dt-card__cover {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* ─── Hero layout (cover + thumbnails) ─── */

.dt-card__hero {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.dt-card__hero--with-thumbs {
    /* La hauteur est dictée par la cover portrait */
    align-items: stretch;
}

.dt-card__hero--with-thumbs .dt-card__cover {
    flex: 1;
    min-width: 0;
}

/* La cover garde TOUJOURS son ratio portrait */
.dt-card__cover--portrait {
    aspect-ratio: 10 / 16;
    max-height: 520px;
}

/* ─── Miniatures verticales ─── */

.dt-card__thumbs {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100px;
    flex-shrink: 0;
    /* Les thumbs occupent la hauteur de la cover */
    align-self: stretch;
}

.dt-card__thumb {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    background: var(--dt-surface-light);
    transition: opacity 0.2s;
}

.dt-card__thumb:hover {
    opacity: 0.85;
}

.dt-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dt-card__thumb-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.dt-card__thumb-more {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

/* PORTRAIT : aspect ratio 10:16 (~5:8) pour l'événement */
.dt-card__cover--portrait {
    aspect-ratio: 10 / 16;
    max-height: 520px;
}

.dt-card__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dt-card__cover:hover .dt-card__cover-img {
    transform: scale(1.03);
}

.dt-card__cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.3) 65%,
            rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
}

.dt-card__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
}

.dt-card__close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Price badge */
.dt-card__price {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--dt-accent);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    z-index: 3;
}

.dt-card__price--promo {
    font-weight: 700;
}

.dt-card__price--original {
    text-decoration: line-through;
    opacity: 0.65;
    font-size: 0.8rem;
}

/* Media count badge */
.dt-card__media-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 12px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* ─── Body ─── */

.dt-card__body {
    padding: 1.5rem 1.5rem 1rem;
}

.dt-card__date {
    display: block;
    color: var(--dt-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.dt-card__title {
    color: var(--dt-text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.8rem;
}

.dt-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--dt-accent);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--dt-radius-sm);
    margin-bottom: 1rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.dt-card__cta:hover {
    background: var(--dt-accent-hover);
    transform: translateY(-1px);
    text-decoration: none;
}

.dt-card__desc {
    color: var(--dt-text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.dt-card__desc p {
    margin: 0.5em 0;
}

/* ─── Gallery ─── */

.dt-gallery {
    padding: 0 1.5rem;
    margin-bottom: 1.2rem;
}

.dt-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dt-gallery__title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dt-text);
    font-size: 0.95rem;
    font-weight: 600;
}

.dt-gallery__title svg {
    stroke: var(--dt-accent);
}

.dt-gallery__count {
    background: var(--dt-surface-light);
    color: var(--dt-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

.dt-gallery__strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.dt-gallery__strip::-webkit-scrollbar {
    display: none;
}

.dt-gallery__thumb {
    flex-shrink: 0;
    width: 100px;
    height: 130px;
    border-radius: var(--dt-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--dt-surface-light);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
    scroll-snap-align: start;
}

.dt-gallery__thumb:hover {
    border-color: var(--dt-accent);
    transform: scale(1.04);
}

.dt-gallery__thumb--cover {
    border-color: rgba(255, 107, 53, 0.4);
}

.dt-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dt-gallery__badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--dt-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dt-gallery__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

/* ─── Lightbox ─── */

.dt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: grid;
    place-items: center;
    animation: dt-fade-in 0.2s ease;
}

@keyframes dt-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dt-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.dt-lightbox__video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    background: black;
}

.dt-lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
}

.dt-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dt-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
    z-index: 5;
}

.dt-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.dt-lightbox__nav--prev {
    left: -60px;
}

.dt-lightbox__nav--next {
    right: -60px;
}

.dt-lightbox__counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 14px;
}

/* ─── Company ─── */

.dt-company {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 1rem;
    padding: 1.2rem;
    background: var(--dt-surface-light);
    border-radius: var(--dt-radius);
    border: 1px solid var(--dt-border);
    margin-bottom: 1rem;
}

.dt-company__row {
    display: flex;
    gap: 1rem;
}

.dt-company__info {
    flex: 1;
    min-width: 0;
}

.dt-company__name {
    color: var(--dt-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.dt-company__addr {
    color: var(--dt-text-muted);
    font-size: 0.85rem;
    font-style: italic;
    display: block;
    margin-bottom: 8px;
}

.dt-company__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dt-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.dt-company__phone:hover {
    color: var(--dt-accent-hover);
    text-decoration: none;
}

.dt-company__phone svg {
    stroke: currentColor;
}

.dt-company__detail {
    color: var(--dt-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 6px;
}

.dt-company__note {
    color: var(--dt-text-muted);
    font-size: 0.82rem;
    font-style: italic;
    margin-top: 8px;
}

/* PAYSAGE : aspect ratio 5:4 (~landscape) pour l'établissement */
.dt-company__img-wrap {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--dt-radius-sm);
}

.dt-company__img-wrap--landscape {
    width: 200px;
    aspect-ratio: 5 / 4;
}

.dt-company__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.dt-company__img-wrap:hover .dt-company__img {
    transform: scale(1.05);
}

/* ─── Sharing (modernized) ─── */

.dt-sharing {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--dt-border);
    border-bottom: 1px solid var(--dt-border);
    margin: 0 0 1rem;
}

.dt-sharing__label {
    color: var(--dt-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}

.dt-sharing__buttons {
    display: flex;
    gap: 8px;
    flex: 1;
}

/* Boutons share avec glow au hover */
.dt-sharing__btn {
    transition: transform 0.2s, filter 0.2s !important;
    border-radius: 50%;
}

.dt-sharing__btn:hover {
    transform: scale(1.15) !important;
    filter: brightness(1.15);
}

.dt-sharing__btn--facebook:hover {
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.5));
}

.dt-sharing__btn--whatsapp:hover {
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5));
}

.dt-sharing__btn--tumblr:hover {
    filter: drop-shadow(0 0 8px rgba(53, 70, 93, 0.5));
}

.dt-sharing__report {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--dt-border);
    color: var(--dt-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.dt-sharing__report:hover:not(:disabled) {
    border-color: var(--dt-accent);
    color: var(--dt-accent);
}

.dt-sharing__report--done {
    opacity: 0.5;
    cursor: default;
}

/* ─── Confirm modal ─── */

.dt-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: grid;
    place-items: center;
    z-index: 100;
    backdrop-filter: blur(4px);
}

.dt-confirm {
    background: #1a1b1e;
    border-radius: var(--dt-radius);
    border: 1px solid var(--dt-border);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: var(--dt-text);
    animation: dt-slide-up 0.25s ease;
}

@keyframes dt-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dt-confirm__icon {
    color: var(--dt-accent);
    margin-bottom: 0.8rem;
}

.dt-confirm__icon svg {
    stroke: var(--dt-accent);
}

.dt-confirm h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.dt-confirm p {
    color: var(--dt-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.dt-confirm__actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.dt-confirm__cancel,
.dt-confirm__ok {
    padding: 0.55rem 1.2rem;
    border-radius: var(--dt-radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dt-confirm__cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dt-text);
}

.dt-confirm__cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.dt-confirm__ok {
    background: var(--dt-accent);
    color: #fff;
}

.dt-confirm__ok:hover {
    background: var(--dt-accent-hover);
}

/* ─── Map ─── */

.dt-map {
    margin: 1rem;
    border-radius: var(--dt-radius);
    overflow: hidden;
}

.dt-map__loading {
    text-align: center;
    color: var(--dt-text-muted);
    padding: 2rem;
}

/* ─── Placeholder (pas d'image) ─── */

.dt-card__cover--placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1b1e 0%, #2a2b2e 50%, #1a1b1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dt-card__placeholder-icon {
    stroke: var(--dt-text-muted);
    opacity: 0.3;
}

.dt-card__placeholder-text {
    color: var(--dt-text-muted);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ─── Cover centrée (pas de galerie, image seule) ─── */

.dt-card__cover--centered {
    max-width: 480px;
    margin: 0 auto;
}

.dt-card__cover--centered .dt-card__cover-img {
    border-radius: 0 0 var(--dt-radius) var(--dt-radius);
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
    .dt-lightbox__nav--prev { left: 8px; }
    .dt-lightbox__nav--next { right: 8px; }
    .dt-lightbox__close { top: 8px; right: 8px; position: fixed; }
    .dt-lightbox__counter { bottom: 20px; }
}

@media (max-width: 640px) {
    .dt-page { padding: 0; }

    .dt-card {
        margin: 0;
        border-radius: 0;
        border: none;
    }

    .dt-card__cover--portrait {
        aspect-ratio: 3 / 4;
        max-height: 70vh;
    }

    .dt-card__body {
        padding: 1.2rem;
    }

    .dt-card__title {
        font-size: 1.3rem;
    }

    .dt-gallery {
        padding: 0 1.2rem;
    }

    .dt-company {
        flex-direction: column;
        margin: 0 0.8rem;
    }

    .dt-company__img-wrap--landscape {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .dt-sharing {
        padding: 1rem 1.2rem;
        flex-wrap: wrap;
        gap: 10px;
    }

    .dt-sharing__label {
        width: 100%;
    }

    .dt-card__cover--centered {
        max-width: 100%;
    }

    .dt-card__cover--centered .dt-card__cover-img {
        border-radius: 0;
    }

    .dt-card__hero {
        flex-direction: column;
    }

    .dt-card__thumbs {
        flex-direction: row;
        width: 100%;
        height: 70px;
    }

    .dt-card__thumb {
        flex: 1;
    }
}

/*!* ─── Variables ─── *!*/
/*:root {*/
/*    --dt-accent: #e85d2a;*/
/*    --dt-accent-hover: #ff6b35;*/
/*    --dt-bg-dark: rgba(15, 16, 16, 0.85);*/
/*    --dt-bg-glass: rgba(255, 255, 255, 0.05);*/
/*    --dt-text: #ededed;*/
/*    --dt-text-muted: #a0a0a0;*/
/*    --dt-radius: 12px;*/
/*    --dt-radius-sm: 8px;*/
/*}*/

/*!* ─── Loading ─── *!*/
/*.dt-loading {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 100vh;*/
/*    color: var(--dt-text-muted);*/
/*    gap: 1rem;*/
/*}*/
/*.dt-loading__spinner {*/
/*    width: 36px; height: 36px;*/
/*    border: 3px solid var(--dt-bg-glass);*/
/*    border-top-color: var(--dt-accent);*/
/*    border-radius: 50%;*/
/*    animation: spin 0.8s linear infinite;*/
/*}*/
/*@keyframes spin { to { transform: rotate(360deg); } }*/

/*!* ─── Page layout ─── *!*/
/*.dt-page {*/
/*    min-height: 100vh;*/
/*    position: relative;*/
/*    overflow-x: hidden;*/
/*}*/
/*.dt-page__backdrop {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    background: center / cover no-repeat;*/
/*    filter: blur(30px) brightness(0.25);*/
/*    transform: scale(1.1);*/
/*    z-index: 0;*/
/*}*/

/*!* ─── Card principale ─── *!*/
/*.dt-card {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    max-width: 780px;*/
/*    margin: 2rem auto;*/
/*    background: var(--dt-bg-dark);*/
/*    border-radius: var(--dt-radius);*/
/*    overflow: hidden;*/
/*    backdrop-filter: blur(20px);*/
/*    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);*/
/*}*/

/*!* ─── Header / Image ─── *!*/
/*.dt-card__header {*/
/*    position: relative;*/
/*}*/
/*.dt-card__img-wrap {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/
/*.dt-card__img {*/
/*    width: 100%;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*    max-height: 500px;*/
/*}*/
/*.dt-card__close {*/
/*    position: absolute;*/
/*    top: 1rem; right: 1rem;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    border: none;*/
/*    color: #fff;*/
/*    width: 40px; height: 40px;*/
/*    border-radius: 50%;*/
/*    cursor: pointer;*/
/*    display: grid;*/
/*    place-items: center;*/
/*    transition: background 0.2s;*/
/*    z-index: 2;*/
/*}*/
/*.dt-card__close:hover {*/
/*    background: rgba(0, 0, 0, 0.8);*/
/*}*/

/*!* Prix *!*/
/*.dt-card__price {*/
/*    position: absolute;*/
/*    bottom: 1rem; left: 1rem;*/
/*    background: var(--dt-accent);*/
/*    color: #fff;*/
/*    padding: 0.4rem 0.9rem;*/
/*    border-radius: var(--dt-radius-sm);*/
/*    font-weight: 700;*/
/*    font-size: 0.95rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*}*/
/*.dt-card__price--original {*/
/*    text-decoration: line-through;*/
/*    opacity: 0.7;*/
/*    font-weight: 400;*/
/*    font-size: 0.85rem;*/
/*}*/
/*.dt-card__price--promo {*/
/*    font-size: 1.1rem;*/
/*}*/

/*!* ─── Body ─── *!*/
/*.dt-card__body {*/
/*    padding: 1.5rem 2rem;*/
/*}*/
/*.dt-card__date {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 0.4rem;*/
/*    color: var(--dt-accent);*/
/*    font-size: 0.85rem;*/
/*    font-weight: 600;*/
/*    text-transform: capitalize;*/
/*}*/
/*.dt-card__title {*/
/*    color: var(--dt-text);*/
/*    font-size: 1.6rem;*/
/*    font-weight: 700;*/
/*    margin: 0.5rem 0 1rem;*/
/*    line-height: 1.3;*/
/*}*/
/*.dt-card__cta {*/
/*    display: inline-block;*/
/*    background: var(--dt-accent);*/
/*    color: #fff;*/
/*    padding: 0.65rem 1.4rem;*/
/*    border-radius: var(--dt-radius-sm);*/
/*    font-weight: 600;*/
/*    font-size: 0.95rem;*/
/*    text-decoration: none;*/
/*    margin-bottom: 1.2rem;*/
/*    transition: background 0.3s, transform 0.2s;*/
/*}*/
/*.dt-card__cta:hover {*/
/*    background: var(--dt-accent-hover);*/
/*    transform: translateY(-1px);*/
/*}*/
/*.dt-card__desc {*/
/*    color: var(--dt-text-muted);*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.65;*/
/*}*/

/*!* ─── Établissement ─── *!*/
/*.dt-company {*/
/*    display: flex;*/
/*    gap: 1.5rem;*/
/*    padding: 1.5rem 2rem;*/
/*    margin: 0 1rem;*/
/*    background: var(--dt-bg-glass);*/
/*    border-radius: var(--dt-radius);*/
/*    border: 1px solid rgba(255, 255, 255, 0.06);*/
/*}*/
/*.dt-company__info { flex: 1; }*/
/*.dt-company__name {*/
/*    color: var(--dt-text);*/
/*    font-size: 1.1rem;*/
/*    margin: 0 0 0.3rem;*/
/*}*/
/*.dt-company__addr {*/
/*    color: var(--dt-text-muted);*/
/*    font-style: italic;*/
/*    font-size: 0.85rem;*/
/*    margin-bottom: 0.6rem;*/
/*}*/
/*.dt-company__phone {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 0.3rem;*/
/*    color: var(--dt-accent);*/
/*    text-decoration: none;*/
/*    font-size: 0.9rem;*/
/*    font-weight: 600;*/
/*    transition: color 0.2s;*/
/*}*/
/*.dt-company__phone:hover { color: var(--dt-accent-hover); }*/
/*.dt-company__detail {*/
/*    margin-top: 0.8rem;*/
/*    color: var(--dt-text-muted);*/
/*    font-size: 0.9rem;*/
/*    line-height: 1.5;*/
/*}*/
/*.dt-company__note {*/
/*    margin-top: 0.8rem;*/
/*    color: var(--dt-text-muted);*/
/*    font-size: 0.85rem;*/
/*    font-style: italic;*/
/*}*/
/*.dt-company__img {*/
/*    width: 180px;*/
/*    height: 140px;*/
/*    object-fit: cover;*/
/*    border-radius: var(--dt-radius-sm);*/
/*    flex-shrink: 0;*/
/*}*/

/*!* ─── Partage ─── *!*/
/*.dt-sharing {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 1rem;*/
/*    padding: 1.2rem 2rem;*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.06);*/
/*}*/
/*.dt-sharing__label {*/
/*    color: var(--dt-text-muted);*/
/*    font-size: 0.8rem;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.05em;*/
/*}*/
/*.dt-sharing__buttons {*/
/*    display: flex;*/
/*    gap: 0.6rem;*/
/*}*/
/*.dt-sharing__report {*/
/*    margin-left: auto;*/
/*    background: none;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    color: var(--dt-text-muted);*/
/*    padding: 0.4rem 0.8rem;*/
/*    border-radius: var(--dt-radius-sm);*/
/*    cursor: pointer;*/
/*    font-size: 0.8rem;*/
/*    transition: all 0.2s;*/
/*}*/
/*.dt-sharing__report:hover:not(:disabled) {*/
/*    border-color: var(--dt-accent);*/
/*    color: var(--dt-accent);*/
/*}*/
/*.dt-sharing__report--done {*/
/*    opacity: 0.5;*/
/*    cursor: default;*/
/*}*/

/*!* ─── Modale confirmation ─── *!*/
/*.dt-confirm-overlay {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    background: rgba(0, 0, 0, 0.6);*/
/*    display: grid;*/
/*    place-items: center;*/
/*    z-index: 100;*/
/*}*/
/*.dt-confirm {*/
/*    background: #1a1b1e;*/
/*    border-radius: var(--dt-radius);*/
/*    padding: 2rem;*/
/*    max-width: 400px;*/
/*    width: 90%;*/
/*    text-align: center;*/
/*    color: var(--dt-text);*/
/*}*/
/*.dt-confirm h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }*/
/*.dt-confirm p { color: var(--dt-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }*/
/*.dt-confirm__actions { display: flex; gap: 0.8rem; justify-content: center; }*/
/*.dt-confirm__cancel,*/
/*.dt-confirm__ok {*/
/*    padding: 0.55rem 1.2rem;*/
/*    border-radius: var(--dt-radius-sm);*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    font-weight: 600;*/
/*    font-size: 0.9rem;*/
/*    transition: all 0.2s;*/
/*}*/
/*.dt-confirm__cancel {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    color: var(--dt-text);*/
/*}*/
/*.dt-confirm__ok {*/
/*    background: var(--dt-accent);*/
/*    color: #fff;*/
/*}*/
/*.dt-confirm__ok:hover { background: var(--dt-accent-hover); }*/

/*!* ─── Carte ─── *!*/
/*.dt-map {*/
/*    margin: 1rem;*/
/*    border-radius: var(--dt-radius);*/
/*    overflow: hidden;*/
/*}*/
/*.dt-map__loading {*/
/*    text-align: center;*/
/*    color: var(--dt-text-muted);*/
/*    padding: 2rem;*/
/*}*/

/*!* ─── Responsive ─── *!*/
/*@media (max-width: 640px) {*/
/*    .dt-card {*/
/*        margin: 0;*/
/*        border-radius: 0;*/
/*    }*/
/*    .dt-card__body { padding: 1.2rem 1.2rem; }*/
/*    .dt-card__title { font-size: 1.3rem; }*/
/*    .dt-company {*/
/*        flex-direction: column;*/
/*        margin: 0 0.8rem;*/
/*    }*/
/*    .dt-company__img {*/
/*        width: 100%;*/
/*        height: 160px;*/
/*    }*/
/*    .dt-sharing { padding: 1rem 1.2rem; flex-wrap: wrap; }*/
/*}*/
