.product-placer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100vw - 96px);
    height: auto;
    padding: 96px 48px;
    gap: 24px;
    background: linear-gradient(#f000, #f002 20%, #00f3 90%, #00f0);
}

.product-placer .homepage-title {
    margin: 48px 0 24px 0;
}

.product-placer h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    font-family: Bebas Neue;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.product-placer .image-aligner {
    display: flex;
    flex-direction: row;
    gap: 36px;
}

.product-placer .image-aligner .free {
    position: absolute;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 12px 28px;
    border-radius: 12px;
    top: -12px;
    right: -18px;
    animation: freeButtonOscillate 1.5s infinite;
    transition: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-placer .image-aligner .image {
    transition: all 0.3s ease;
    position: relative;
    width: 40vw;
}

.product-placer .image-aligner .image p {
    top: 0;
    position: absolute;
    display: flex;
    width: inherit;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    font-weight: 600;
    font-family: Bebas Neue;
    color: black;
    transition: inherit;
    filter: opacity(0);
}

.product-placer .image-aligner .image img {
    width: inherit;
    margin-bottom: 24px;
    border-radius: 16px;
    transition: inherit;
    aspect-ratio: 5.5/3;
    background-position: center;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-placer .image-aligner .image:hover {
    cursor: pointer;
}

.product-placer .image-aligner .image:hover img {
    filter: brightness(50%) blur(1px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.product-placer .image-aligner .image:hover p {
    filter: unset;
    color: var(--text-color);
}

.product-placer .image-aligner .image:hover .free {
    opacity: 0.5;
}

.product-placer .product-lead {
    color: var(--text-color);
    text-shadow: -2px 2px 3px #000f, 0px 0px 8px #000f;
    font-weight: 600;
    font-size: 24px;
    max-width: 50vw;
    text-align: center;
}

@keyframes freeButtonOscillate {
    0% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0) rotate(10deg); }
}

/* responsive */
@media (max-width: 796px) {
    .product-placer {
        display: none;
    }
}
