.bestseller-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.int-section-info {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.pop-shop-int-compact-section-info {
    overflow: hidden;
    position: relative;
    display: flex;
    width: 100%
}

.pop-shop-best-seller-title {
    width: 100%;
    padding-left: 115px;
}

.bestseller-section-info {
    display: flex;
    transition: transform 0.25s;
}

.cta-buttons > div > a {
    all: unset;
    cursor: pointer;
}

.bestseller-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80rem;
    margin: 20px;
}

.bestseller-image {
    width: 50%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.bestseller-image > img {
    border-radius: 20px 0 0 20px;;
}

.bestseller-info {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 20px 20px 0;
}

.pop-shop-scroll-buttons {
    display: flex;
    margin-top: 10px;
}

.bestseller-rank {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-size: x-large;
}

.info-heading {
    display: flex;
    align-items: center;
    margin: 40px;
    margin-bottom: 0px;
}

.info-heading > h3 {
    text-align: left;
    font-size: x-large;
}

.product-title {
    margin-left: 40px;
}

.product-title > h2 {
    text-align: left;
    margin-bottom: 0;
}

.view-detail-button {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.view-detail-button > button {
    all: unset;
    padding: 10px;
    border-radius: 5px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.sold-count {
    border-radius: 5px;
    padding: 10px;
    margin-left: 40px;
    margin-top: 20px;
    width: max-content;
}

.ps-price {
    margin-left: 40px;
    font-size: large;
}

.ps-carousel-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
    height: 50px;
    width: 50px;
    border: 2px solid;
    border-radius: 50%;
    cursor: pointer;
}

.arrow-border-color {
    border-color: var(--arrow-border-color);
}

.ps-carousel-button:hover {
    border-color: var(--arrow-hover-border-color);
}

.ps-carousel-button > i {
    border-color: var(--arrow-border-color);
}

.ps-carousel-button:hover > i {
    border-color: var(--arrow-hover-border-color);
}

.ps-right {
    height: 10px;
    width: 10px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: -2px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    display: block;
}

.ps-left {
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-right: -2px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    display: block;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    margin-left: 40px;
    width: 100%;
}

.add-to-cart-container {
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    margin-right: 10px;
}

.add-to-cart-quantity {
    display: flex;
    border: 2px solid;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 10px;
    width: 30%;
    border-radius: 5px;
}

.add-to-cart-button {
    cursor: pointer;
}

.quant-minus, .quant-plus {
    cursor: pointer;
}

.add-to-cart-button > button {
    all: unset;
    padding: 10px;
    border-radius: 5px;
}

.pop-shop-card-description {
    margin: 40px;
}

.pop-shop-campaign-text-heading {
    text-align: center;
}

.pop-shop-sale-tag {
    width: fit-content;
    position: absolute;
    padding: 0 15px;
    border-radius: 40px;
}

.pop-shop-bestseller-price {
    font-size: 22px;
}

.pop-shop-compare-at-price {
    padding-right: 10px;
    font-size: 20px;
}

@media screen and (max-width: 900px) {
    .bestseller-card {
        flex-direction: column;
        width: 30rem;
        margin: 5px;
    }

    .int-section-info {
        height: 100%;
    }

    .pop-shop-best-seller-title {
        width: inherit;
        padding-left: 0;
    }

    .bestseller-image {
        width: 100%;
        height: 80%;
    }

    .bestseller-image > img {
        border-radius: 20px 20px 0 0;
    }

    .bestseller-info {
        width: 100%;
        height: inherit;
        border-radius: 0 0 20px 20px;
        justify-content: center;
        align-items: center;
    }

    .info-text {
        justify-content: center;
        align-items: center;
    }

    .info-heading {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-heading > h3 {
        text-align: center;
    }

    .product-title {
        margin-left: 0;
        text-align: center;
    }

    .product-title > h2 {
        text-align: center;
        margin-bottom: 0;
    }

    .ps-price {
        margin-left: 0;
    }

    .sold-count {
        border-radius: 5px;
        padding: 10px;
        width: max-content;
        margin-left: 0;
    }    
    
    .add-to-cart-container {
        margin-top: 40px;
        margin-right: 0;
    }

    .view-detail-button {
        margin-left: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        justify-content: center;
        margin-left: 0;
    }
    
    .pop-shop-card-description {
        display: none;
    }

    .int-section-info {
        overflow-x: scroll;
    }

    .pop-shop-int-compact-section-info {
        overflow-x: auto;
    }

    .pop-shop-scroll-buttons {
        display: none;
    }
}
