body {
    background: var(--c5);
}
main {
    background: var(--b1);
    color: var(--l2);
}
.h-t {
    color: var(--l2);
}
.sh-section-a {
    background: var(--l1);
    width: calc(100% - 2rem - 4px - 3rem);
    height: calc(100% - 8rem - 4px - 3rem);
    display: flex;
    flex-direction: row;
    padding: 3rem;
    justify-content: space-between;
}
.sh-section-a-img::-webkit-scrollbar {
    display: none;
}
.sh-section-a-img {
    display: flex;
    flex-direction: column ;
    overflow: visible;
    width: 40vw;
    gap: 2px;
    position: relative;
    img {
    border-radius: .2rem;
        height: 3.5rem;
        width: 5rem;
        object-fit: cover;
    }
}
.sh-img {
    border-radius: 1.2rem;
    top: 0;
    right: 0;
    position: absolute;
    width: 85%;
    height: 80%;
    background-image: url("../images/cans/c4.png")  ;
    background-size: cover;
    background-position: center center;
}
.sh-1:hover ~ .sh-img {
    background-image: url("../images/cans/c1.png")  ;
}

.sh-2:hover ~ .sh-img {
    background-image: url("../images/cans/c2.png")  ;
}
.sh-3:hover ~ .sh-img {
    background-image: url("../images/cans/c3.png")  ;
}
.sh-4:hover ~ .sh-img {
    background-image: url("../images/cans/c4.png")  ;
}
.sh-5:hover ~ .sh-img {
    background-image: url("../images/cans/c5.png")  ;
}
.sh-6:hover ~ .sh-img {
    background-image: url("../images/cans/c6.png")  ;
}

.sh-section-a-2 {
    background: var(--c4);
    width: 40vw;
    border-radius: 15px;
    border: 2px solid var(--b2);
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    color: black;
    font-size: 1.2em;
}
.sh-opt-c {
    border-top: 2px solid var(--b2);
    display: flex;
    flex-direction: column;
    color: var(--b2);
    input {
    }
}
.b-buy {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border: 0;
        position: relative;
        overflow: hidden;
        border-radius: 10rem;
        transition: all 0.02s;
        font-weight: bold;
        cursor: pointer;
        color: rgb(37, 37, 37);
        z-index: 0;
        box-shadow: 0 0 7px -5px rgba(0, 0, 0, 0.5);
    }
.b-buy:hover {
        background: rgb(193, 228, 248);
        color: rgb(33, 0, 85);
    }
    .hoverEffect {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
