html,
body {
    margin:0;
    padding:0;
    width:100%;
    height:100%;
}

#psd-slideshow {
    width:100vw;
    height:100vh;
    background:#111;
    overflow:hidden;
    position:relative;
}

.psd-slide {
    display:none;
    width:100%;
    height:100%;
    color:white;
}

.psd-slide.active {
    display:flex;
}

.psd-left {
    width:40%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000;
}

.psd-left img {
    max-width:95%;
    max-height:95%;
    object-fit:contain;
}

.psd-right {
    width:60%;
    padding:60px;
    overflow:auto;
}

.psd-right h1 {
    font-size:3rem;
    margin-bottom:20px;
}

.psd-price {
    font-size:2rem;
    color:#4ade80;
    margin-bottom:30px;
}

.psd-description {
    font-size:1.2rem;
    line-height:1.6;
    margin-bottom:25px;
}

.psd-categories {
    font-size:1rem;
}