/* =========================
   GALERIE PRODUIT
   ========================= */

/* CONTENEUR GENERAL */
.annonce-detail-image .ag-format-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* GALERIE */
.annonce-detail-image .ag-photo-gallery_list {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: repeat(12, 46px);
  gap: 12px;
  margin: 20px 0;
  align-items: start;
}

/* ITEM PAR DEFAUT */
.annonce-detail-image .ag-photo-gallery_item {
  position: relative;
  overflow: hidden;
  display: block;
  grid-column: 1;
  height: 100%;
  border-radius: 12px;
}

/* IMAGE PRINCIPALE = 1er ITEM */
.annonce-detail-image .ag-photo-gallery_item:first-child {
  grid-column: 2;
  grid-row: 1 / span 8;
  min-height: 420px;
  border-radius: 28px;
}

/* MINIATURES */
.annonce-detail-image .ag-photo-gallery_item:not(:first-child) {
  grid-column: 1;
  height: 100%;
}

/* POSITIONNEMENT DES MINIATURES */
.annonce-detail-image .ag-photo-gallery_item:nth-child(2) {
  grid-row: 1 / span 2;
}
.annonce-detail-image .ag-photo-gallery_item:nth-child(3) {
  grid-row: 3 / span 2;
}
.annonce-detail-image .ag-photo-gallery_item:nth-child(4) {
  grid-row: 5 / span 2;
}
.annonce-detail-image .ag-photo-gallery_item:nth-child(5) {
  grid-row: 7 / span 2;
}
.annonce-detail-image .ag-photo-gallery_item:nth-child(6) {
  grid-row: 9 / span 2;
}
.annonce-detail-image .ag-photo-gallery_item:nth-child(7) {
  grid-row: 11 / span 2;
}

/* NETTOYAGE DES CLASSES DE LARGEUR EXISTANTES */
.annonce-detail-image .ag-photo-gallery_item__wide,
.annonce-detail-image .ag-photo-gallery_item__middle,
.annonce-detail-image .ag-photo-gallery_item__narrow,
.annonce-detail-image .ag-photo-gallery_item__plus {
  grid-column-end: auto;
}

/* LIEN ET FIGURE */
.annonce-detail-image .ag-photo-gallery_item a,
.annonce-detail-image .ag-photo-gallery_figure {
  display: block;
  width: 100%;
  height: 100%;
}

/* IMAGES */
.annonce-detail-image .ag-photo-gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* HOVER MINIATURES */
.annonce-detail-image .ag-photo-gallery_item:not(:first-child):hover {
  transform: translateY(-1px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

/* COMPTEUR +X SI BESOIN */
.annonce-detail-image .compteur_plus {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
}

/* =========================
   TRES GRANDS ECRANS
   ========================= */
@media (min-width: 1400px) {
  .annonce-detail-image .ag-photo-gallery_list {
    grid-template-columns: 100px minmax(0, 1fr);
    grid-template-rows: repeat(12, 34px);
    gap: 14px;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 470px;
    border-radius: 30px;
  }

  .annonce-detail-image .ag-photo-gallery_item {
    border-radius: 14px;
  }
}

/* =========================
   DESKTOP / LAPTOP
   ========================= */
@media (min-width: 1200px) and (max-width: 1399px) {
  .annonce-detail-image .ag-photo-gallery_list {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: repeat(12, 46px);
    gap: 12px;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 420px;
    border-radius: 28px;
  }
}

/* =========================
   PETIT LAPTOP / GRANDE TABLETTE
   ========================= */
@media (min-width: 992px) and (max-width: 1199px) {
  .annonce-detail-image .ag-photo-gallery_list {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: repeat(12, 42px);
    gap: 11px;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 380px;
    border-radius: 24px;
  }

  .annonce-detail-image .ag-photo-gallery_item {
    border-radius: 10px;
  }
}

/* =========================
   TABLETTE
   ========================= */
@media (min-width: 768px) and (max-width: 991px) {
  .annonce-detail-image .ag-photo-gallery_list {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: repeat(12, 36px);
    gap: 10px;
    margin: 16px 0;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 320px;
    border-radius: 20px;
  }

  .annonce-detail-image .ag-photo-gallery_item {
    border-radius: 9px;
  }

  .annonce-detail-image .compteur_plus {
    font-size: 1.6rem;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 767px) {
  .annonce-detail-image .ag-photo-gallery_list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    margin: 15px 0;
  }

  .annonce-detail-image .ag-photo-gallery_item,
  .annonce-detail-image .ag-photo-gallery_item:first-child,
  .annonce-detail-image .ag-photo-gallery_item:not(:first-child),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(2),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(3),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(4),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(5),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(6),
  .annonce-detail-image .ag-photo-gallery_item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 280px;
    height: 280px;
    margin-bottom: 2px;
    border-radius: 18px;
  }

  .annonce-detail-image .ag-photo-gallery_item:not(:first-child) {
    height: 88px;
    border-radius: 10px;
  }

  .annonce-detail-image .compteur_plus {
    font-size: 1.4rem;
  }
}

/* =========================
   PETIT MOBILE
   ========================= */
@media (max-width: 575px) {
  .annonce-detail-image .ag-photo-gallery_list {
    gap: 8px;
    margin: 12px 0;
  }

  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 240px;
    height: 240px;
    border-radius: 16px;
  }

  .annonce-detail-image .ag-photo-gallery_item:not(:first-child) {
    height: 76px;
    border-radius: 8px;
  }

  .annonce-detail-image .compteur_plus {
    width: 45%;
    font-size: 1.2rem;
  }
}

/* =========================
   TRES PETIT MOBILE
   ========================= */
@media (max-width: 380px) {
  .annonce-detail-image .ag-photo-gallery_item:first-child {
    min-height: 210px;
    height: 210px;
    border-radius: 14px;
  }

  .annonce-detail-image .ag-photo-gallery_item:not(:first-child) {
    height: 68px;
  }
}