/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

.content-home {
    width: 100%;
    height: 100%;
    max-height: 640px;
    overflow: hidden; /* Убедитесь, что переполнение скрыто */
    position: relative;
}

/* .landscape{
    display: block;
}
.portrait{
    display: none;
} */
.season-new-header{
    font-size: 24px;
}
.season-new-inner {
    margin: 25px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.season-new-items-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.start-shopping-button {
    position: absolute;
    top: 60%;
    left: 50%;
    background: rgba(255, 255, 255, 0.70);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 20px;
    padding: 15px 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.info{
    background-color: black;
  }

@media (max-width: 1440px) {
    .content-home {
        height: 580px;
    }

}

@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
    .season-new-header {
        font-size: 18px;
    }
    .content-home {
        height: 484px;
    }
    /* .landscape{
        display: none;
    }
    /* .portrait{
        display: block;
    } */ */
    .cart-menu-inner {
        max-width: unset !important;
    }
    .season-new-inner{
        margin: 25px 10px;
    }

    .season-new-items-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
}