.price-grid-image {
    max-width: 100vw;
    max-height: 100%;
    object-fit: contain;
}

.tarifaire-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tarifaire-img-wrapper .price-grid-image {
    width: 100%;
    height: auto;
    display: block;
}

.tarifaire-img-wrapper .download-btn {
    position: absolute;
    bottom: 2vw;
    z-index: 2;
    padding: 0.8rem 1.5rem;
    background-color: #ead4bc;
    border: none;
    border-radius: 0.3rem;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.tarifaire-img-wrapper .download-btn:hover,
.tarifaire-img-wrapper .download-btn:focus {
    background-color: #d2bea9;
    color: #fff;
    text-decoration: none;
    transform: scale(1.25);
}

/* Appareils sans hover (écran tactile) */
@media (hover: none) {
  .tarifaire-img-wrapper .download-btn {
    background-color: #d2bea9;
  }
}

/* Appareils sans hover (écran tactile) */
@media (max-height: 600px) {
  .tarifaire-img-wrapper .download-btn {
    font-size: 0.8rem;
    bottom: 1vw;
    padding: 0.4rem 0.75rem;
  }
}

.icon-download {
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    vertical-align: middle;
}