.productShowcase-container {
    position: relative;
    /* background-color: red; */
}

.productShowcase-container .showcase-image {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
}

#productShowcase-container-edit {
    height: 100vh;
    background-color: rgb(165, 159, 159);
}


.productShowcase-container .product-name {
    position: absolute;
    right: 10%;
    bottom: 20%;
    color: white;
    z-index: 1;
    font-weight: 600; /*Semi-bold*/
}


.productShowcase-container .input {
    text-align: center;
    font-size: var(--h2-size);
    width: 30vw;
    height: 10vh;
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
    z-index: 100;
}

.productShowcase-container .input:hover {
    background-color: var(--section-color);
    transition: all 0.5s ease-in-out;
}

.productShowcase-container #file-input {
    display: none;
}

.productShowcase-container label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50%;
    display: inline-block;
    text-transform: uppercase;
    color: white;
    background: var(--section-color);
    text-align: center;
    padding: 2vh;
    border-radius: 5px;
    cursor: pointer;
}

.productShowcase-container .scroll-down-button {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%); /* Centre horizontalement */
    z-index: 100;
}

.productShowcase-container .scroll-down-button:hover{
    transform: translate(-50%, 10px);
}

.productShowcase-container .gradient-overlay {
    position: absolute;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0)); 
    z-index: 1;
    bottom: 0;
}