/* DRIP'IN — Desktop Responsive — Mobile INCHANGE */

/* Cache le panneau sur mobile par defaut */
.desktop-panel { display: none; }

@media (min-width: 501px) {

  html { height: 100%; }

  body {
    background: #0d0d0d !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .desktop-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    min-width: 0;
  }

  .desktop-panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .desktop-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.85) 100%);
  }

  .desktop-panel-content { position: relative; z-index: 2; }

  .desktop-panel-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .desktop-panel-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .desktop-panel-logo span { color: #c9a96e; }

  .desktop-panel-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 2rem;
  }

  .desktop-panel-features { display: flex; flex-direction: column; gap: 0.65rem; }

  .desktop-panel-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
  }

  .desktop-panel-feature-ic { color: #c9a96e; font-size: 11px; flex-shrink: 0; }

  .frame {
    width: 420px !important;
    min-width: 420px !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4) !important;
    flex-shrink: 0 !important;
    border-left: 1px solid rgba(201,169,110,0.12) !important;
  }

  .notch { display: none !important; }
}

/* Tablette - pas de panneau gauche */
@media (min-width: 501px) and (max-width: 900px) {
  .desktop-panel { display: none !important; }
  body { justify-content: center !important; }
  .frame {
    width: 100% !important;
    min-width: unset !important;
    border-left: none !important;
    box-shadow: none !important;
  }
}
