/* ========================= */
/* ÉCRAN BOUTIQUE */
/* ========================= */

.boutique-screen {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  z-index: 10;

  background: #020617;
}

/* ========================= */
/* CONTENEUR BOUTIQUE */
/* ========================= */

.boutique-container {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

/* ========================= */
/* IMAGE BOUTIQUE */
/* ========================= */

.boutique-image {
  position: absolute;
  inset: 0;

  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: fill;
}

/* ========================= */
/* SVG BOUTIQUE */
/* ========================= */

.boutique-svg {
  position: absolute;
  inset: 0;

  z-index: 2;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

/* ========================= */
/* SVG INTERNE */
/* ========================= */

.boutique-svg svg {
  display: block;

  width: 100%;
  height: 100%;
}

/* ========================= */
/* ZONES INTERACTIVES */
/* ========================= */

.boutique-svg [data-type],
.boutique-svg .zone-svg {
  pointer-events: auto;
  cursor: pointer;

  fill: transparent;

  transition: filter 0.2s ease;
}

/* ========================= */
/* HOVER ZONES BOUTIQUE */
/* ========================= */

@media (hover: hover) and (pointer: fine) {

  .boutique-svg [data-type]:hover,
  .boutique-svg .zone-svg:hover {

    fill: rgba(255, 220, 120, 0.10);

    filter:
      drop-shadow(0 0 4px rgba(255, 245, 210, 0.95))
      drop-shadow(0 0 10px rgba(255, 210, 90, 0.9))
      drop-shadow(0 0 18px rgba(255, 170, 40, 0.65));

    opacity: 1;
  }

}

/* ========================= */
/* ACTIONS BOUTIQUE */
/* ========================= */

.boutique-actions {
  position: absolute;
  inset: 0;

  z-index: 20;

  pointer-events: none;
}

/* ========================= */
/* BOUTON RETOUR */
/* ========================= */

.boutique-action-btn {
  position: absolute;
  top: 2%;
  left: 2%;

  pointer-events: auto;

  padding: 0.7rem 1.2rem;

  border: none;
  border-radius: 12px;

  background: rgba(15, 23, 42, 0.88);

  color: white;

  font-size: clamp(0.8rem, 1vw, 1rem);

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.boutique-action-btn:hover {
  background: rgba(30, 41, 59, 0.95);

  transform: scale(1.03);
}

/* ========================= */
/* BULLE BOUTIQUE */
/* ========================= */

.boutique-bubble {
  position: absolute;

  top: 2%;
  left: 30%;

  z-index: 15;

  max-width: 26%;

  padding:
    clamp(12px, 1vw, 20px)
    clamp(16px, 1.2vw, 24px);

  border-radius: 26px;

  background: rgba(255, 248, 232, 0.96);

  border: 4px solid rgba(214, 169, 53, 0.95);

  color: #1b1b1b;

  font-size: clamp(14px, 1vw, 22px);
  line-height: 1.4;
  text-align: center;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.28);

  pointer-events: none;
}