.section-photos-download {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    align-items: center;
}

.h1-photos-download {
    text-align: center;
    font-weight: 200;
    font-size: 32px;
    margin-bottom: 20px;
}

.product-photo-name {
    font-size: 20px;
}

.photos-download {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
    column-gap: 30px;
    row-gap: 30px;
    justify-content: center;
}

.product-photo-image-name {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.product-photo-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    align-items: center;
}

.product-photo-image {
    width: 100%;
    height: 320px;
    cursor: zoom-in;
}

.product-image-download {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-photos-download.still-life-photos .product-image-download {
    object-fit: contain;
}

.generic-btn-width  {
    width: 100%;
}

.download-all-button {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.download-all-button .button-right {
    font-size: 16px;
    font-weight: 700;
}

.product-photo-modal {
    display: none;
    position: absolute;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.product-photo-image-modal {
    /* object-fit: cover; */
    height: 80%;
    max-height: 700px;
}

.product-photo-image-modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.product-photo-modal-content {
    color: white;
    display: flex;
    /* flex-direction: column; */
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.product-photo-modal-download {
    width: 24px;
    height: 24px;
}

.product-photo-modal-download-image {
    filter: brightness(0) invert(1);
}

.product-modal-content {
    width: 90%;
    height: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
}

.product-photo-caption {
    color: white;
}