main {
    height: 130vh;
}

.container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 5%;
}

.container img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.container h4 {
    font-weight: 400;
    font-size: 18px;
}

.container article,
p,
ul {
    color: rgb(126, 124, 124);
    font-size: 14px;
}

.container select {
    border: none;
    background-color: white;
}

.size-selectors {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgb(197, 194, 194);
    border-bottom: 1px solid rgb(197, 194, 194);
}

.quantity-selectors {
    display: flex;
    border-bottom: 1px solid rgb(197, 194, 194);
    padding: 8px;
}

.container h6 {
    font-size: 12px;
}

.container ul li {
    margin-left: 10%;
}

.button-class {
    position: fixed;
    bottom: 0;
    background-color: #172c50;
    color: white;
    border: none;
    height: 7%;
    padding-top: 4%;
    text-align: center;
}

.add-to-cart-button {
    display: none;
}

.shop-tabs {
    display: none;
}

@media (min-width: 1500px) {

    .container {
        width: 60%;
        display: grid;
        grid-template-columns: 1fr 0.6fr;
        grid-template-rows: repeat(11, 1fr);
    }

    .container img {
        grid-row: 1 / 11;
    }

    .shop-tabs {
        width: 30%;
        margin: auto;
        display: flex;
        margin-top: 1%;
        margin-bottom: 5%;
    }

    .button-class {
        display: none;
    }

    .add-to-cart-button {
        grid-column: 2;
        position: relative;
        box-sizing: border-box;
        border: 2px solid #000;
        background-color: #FFF;
        font-size: 14px;
        font-weight: 500;
        color: var(--app-primary-color);
        margin: 0;
        padding: 8px 44px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 0;
        outline: none;
        display: inline;
        width: 10vw;
    }

}