@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Onest:wght@100..900&display=swap');

body {
    font-family: Onest, sans-serif;
    margin: 0;
    background: #D7D6D6;
    color: #313131;
}

b,
strong {
    font-weight: 800;
}

a,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #000000;
    text-decoration: none;
}

.header a.nav-link {
    color: #313131;
}

.nav-link,
.header a {
    text-decoration: none;
    color: #000000;
}

footer .nav-link {
    font-weight: 400;
}

h2 {
    color: #000000;
    font-family: Onest;
}
.woocommerce{
    color: #000;
}
.woocommerce-form-login,
.woocommerce-form-register {
    background: #F1F0ED;
    color: #000000;
}
.white{
    color: #fff;
}
.video h2 {
    color: #fff;
}
.accordion{
    --bs-accordion-bg: none!important;
}
.header {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 9;
}

h1.entry-title {
    color: #000000;
}
.tringl h4{
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 50px ;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1440px;
    margin: 0 auto;
}

nav {
    height: 64px;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
}

.products {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 0 20px;
    
}

.teg,
.cat-item {
    display: inline-block;
    padding: 9px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #FFF;
}

.product_b,
.single_add_to_cart_button {
    padding: 25px;
    width: 32%;
    margin: 8px;
    border-radius: 6px;
    background: #FFF;
    background-image: none;
}

.marquee {
    overflow: hidden;
    /* ховаємо текст за межами контейнера */
    white-space: nowrap;
    /* всі слова в один рядок */
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    color: #313131;
    text-transform: uppercase;
}

.marquee span {
    display: inline-block;
    padding-right: 10px;
    /* відстань між повтореннями */
    animation: marquee 10s linear infinite;
}
.bloomer .container {
    background: #fff;

}
.free-shipping2 {
    padding: 25px; background: #fff;   
}
.tringl .container{
    padding: 0;
}
/*********************************************/

    .flip-carousel { max-width:1100px; margin:0 auto; position:relative; padding:20px 0; }
    .flip-track { display:flex; align-items:center; justify-content:center; gap:20px; perspective:1200px; }

    .flip-item {
      width: var(--card-w-sm);
      height: var(--card-h-sm);
      transform-style: preserve-3d;
      transition: transform 600ms cubic-bezier(.2,.9,.2,1), opacity 300ms ease, filter 300ms ease;
      will-change: transform, opacity;
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .flip-card {
      width:100%;
      height:100%;
      overflow:hidden;
      box-shadow:0 10px 28px rgba(10,10,10,0.08);
      backface-visibility:hidden;
      background:#fff;
    }
    .flip-card img { width:100%; height:100%; object-fit:cover; display:block; }

    /* центральний (активний) — більший і спереду */
    .flip-item.active {
      width: var(--card-w-lg);
      height: var(--card-h-lg);
      transform: translateZ(40px) scale(1.02) rotateY(0deg);
      z-index:5;
      box-shadow:0 30px 70px rgba(10,10,10,0.18);
    }

    /* бокові — трохи повернуті і зменшені */
    .flip-item.prev {
      transform:  translateZ(-20px) scale(.88);
      opacity:1;
      z-index:3;
    }
    .flip-item.next {
      transform: translateZ(-20px) scale(.88);
      opacity:1;
      z-index:3;
    }
    #fcPrev, #fcNext {
        display: none;
    } 

    /* Дрібна адаптація */
    @media (max-width: 880px) {
      :root{
        --card-w-lg: 320px;
        --card-h-lg: 360px;
        --card-w-sm: 220px;
        --card-h-sm: 260px;
      }
      .flip-item.prev, .flip-item.next { transform: translateZ(-10px) scale(.9) rotateY(10deg); }
    }
    @media (max-width: 520px) {
      .flip-track { gap:12px; }
      :root{
        --card-w-lg: 86%;
        --card-h-lg: 300px;
        --card-w-sm: 60%;
        --card-h-sm: 210px;
      }
      .flip-item { width:60%; height:210px; }
      .flip-item.active { width:86%; height:300px; transform:translateZ(20px) scale(1) rotateY(0deg); }
      .flip-item.prev, .flip-item.next { transform: translateZ(-6px) scale(.92) rotateY(6deg); }
    }

    /* controls */
    .fc-control {
      position:absolute; top:50%; transform:translateY(-50%);
      background:rgba(255,255,255,0.94); border:0; width:44px; height:44px; border-radius:8px;
      display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(10,10,10,0.08); cursor:pointer;
    }
    .fc-prev { left:8px; } .fc-next { right:8px; }
    .fc-control svg{ width:18px;height:18px; }


/********************************************/
/* Анімація руху тексту з права наліво */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.old-price {
    text-decoration: line-through;
    color: #888;
}

.coming-soon {
    opacity: 0.6;
}

.slogan {
    padding: 30px;
    background: #eaeaea;
    text-align: center;
}

.banner {
    background: url(assets/img/slide.jpg) no-repeat center #F1F0ED;
    background-size: cover;
    padding-bottom: 10px;
}

.bg_aboutus {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 50px;
    margin: 90px 0;
}

.bg_aboutus p {
    text-align: justify;
    text-align-last: justify;
    font-family: "Onest", sans-serif;
    font-size: 20px;
    line-height: 23px;
    font-weight: 300;
    margin-bottom: 5px;
}

.bg_aboutus h1 {
    margin-bottom: 20px;
}

.min-vh-80 {
    min-height: 86vh !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.min-vh-100 {
    min-height: 110vh !important;
}

.products header {
    /* display: none;*/
}

.banner button {
    margin-top: 20px;
    padding: 10px 20px;
}

.free-shipping {
    background: #ffefef;
    padding: 10px;
    text-align: center;
}

.free-line {
    background: #ffefef;
    padding: 10px;
    text-align: center;
    height: 81px;
    background: url(assets/img/Somethingbefore.png) repeat-x #B12324 center;
}

.info {
    background-color: #FFFEEF;
}

.footer-links,
.footer-contact {
    margin-bottom: 10px;
}

.footer-links a {
    color: #eee;
    margin: 0 10px;
    text-decoration: none;
}

.read-more {
    width: 183px;
    height: 50px;
    background: #FFFEEF;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    margin: 50px auto 0;
    display: block;
}

.products .product_b img {}

.products .product_b h4 {
    font-size: 18px;
    padding: 15px 0 0 0;
}

a.button,
.woocommerce a.button,
.woocommerce-button {
    height: 50px;
    border-radius: 6px;
    background: #313131 !important;
    color: #fff !important;
    text-decoration: none;
    padding: 16px 20px 15px 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.selo {
    border-radius: 6px;
    padding: 130px 190px;
    text-align: center;
    border-radius: 6px;
    color: #000000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    background-color: #F1F0ED;
    position: relative;
}

.selo::before {
    background: url(assets/img/selo.png) no-repeat bottom center;
    background-size: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-size: contain;
}

h4 .woocommerce-Price-amount {
    float: right;
}

.rounded-start {
    border-bottom-left-radius: 8px !important;
    border-top-left-radius: 8px !important;
}

.short {
    display: inline-block !important;
    padding: 16px 65px !important;
    margin: 25px 0 0 0 !important;
}

.wc-block-components-button__text {
    border-radius: 6px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px 15px 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.img-fluid img {
    margin: 0 auto;
    display: block;
}

.colorbg {
    background-color: #F1F0ED;
    color: #000000;
}

.rounded-end {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.mask {
    height: 750px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.colorbg h5 {
    color: #000000;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    text-transform: uppercase;
}

a.button:hover,
.woocommerce a.button:hover {
    border-radius: 6px;
    background: #F1F0ED;
    color: #000000;
}

a.button-read {
    border-radius: 6px;
    background: #F1F0ED;
    color: #000000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    display: inline-block;
    padding: 16px 60px;
}

a.button-read:hover {
    background: #000000;
    color: #FFF;
}

.wc-block-components-button {
    border: none;
}

.button-card {
    border-radius: 6px;
    background: #000000;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    padding: 10px 60px;
    border: 1px solid;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: left;
    width: 100%;
    font-size: 1rem;

    text-align: center;
    background-color: none;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.accordion-button:not(.collapsed) {
    background-color: inherit;
    box-shadow: none;
    border: none;
    color: #000;

}

.accordion-button:not(.collapsed)::before {
    background-image: url(assets/img/-.svg);
}

.accordion-button::before {
    background-image: url(assets/img/+.svg);
}

.accordion-button::after {
    display: none;
}

.accordion,
.accordion-item {
    border: 0px;
}

.accordion-button::before {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    content: "";
    background-image: url(assets/img/+.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    margin-right: 12px;
    transition: var(--bs-accordion-btn-icon-transition);
}

.button-card:hover {
    background: #F1F0ED;
    color: #000000;
}

.post-navigation {
    display: none;
}

.input-group,
.colorbtn {
    background: #F1F0ED;
    border: 0px;
}

.product_b:hover {

    background-size: cover;
}

.product_b:hover img {
    z-index: -3;
    position: relative
}

.product_b:hover h4 {
    color: #fff;
}

.free-shipping {
    background: #fff;
}

.logos {
    background-color: #FFFEEF;
    padding: 20px 0;
}

.navbar-brand img {
    margin-top: -10px;
}

.footer-up {
    background: url(assets/img/bg_un_footer.jpg) no-repeat center #111;
    background-size: cover;
    color: #fff;
    display: inherit;
    font-size: 18px;
    font-family: "Onest", sans-serif;
}

.footer1 {
    position: absolute;
    z-index: 3;
    width: 183px;
    left: 0;
    top: 100px;
    display: block;
}

.footer2 {
    position: absolute;
    width: 212px;
    left: 60px;
    z-index: 2;
    display: block;
    top: 200px;
}

.footer3 {
    position: absolute;
    z-index: 1;
    width: 216px;
    left: 110px;
    display: block;
    top: 60px;
}

.footer4 {
    position: absolute;
    z-index: 1;
    width: 316px;
    display: block;
    left: 0;
    bottom: 40px;
}


.footer5 {
    position: absolute;
    z-index: 2;
    width: 300px;
    display: block;
    right: 180px;
    top: 40px;
}

.footer6 {
    position: absolute;
    z-index: 1;
    width: 390px;
    display: block;
    right: 0;
    top: 200px;
}

.footer7 {
    position: absolute;
    z-index: 2;
    width: 320px;
    display: block;
    right: 220px;
    bottom: 40px;
}

.footer8 {
    position: absolute;
    z-index: 2;
    width: 180px;
    display: block;
    right: 10px;
    bottom: -70px;
}

.link {
    color: #fff;
    text-decoration: none;
    z-index: 5;
}

footer {
    border-top: 1px solid #313131;
    background: #313131;
    color: #FFFFFF;
    padding: 20px;

    padding-top: 50px !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

footer ul {
    padding: 0;
    margin: 0;
}

.logo-footer {
    width: 188px;
    margin-bottom: 30px;
    display: block;
}

footer li {
    list-style: none;
    text-transform: uppercase;
    padding: 5px 0;

}

footer h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.support {
    border-top: 1px solid #000;
    margin-top: 20px;
    padding: 30px 0;
}

footer.black .support {
    border-top: 1px solid #fff;
}


.copy {
    padding: 30px 0;
}

.banner-2 {
    height: 253px;
    width: 100%;
    background: url(assets/img/bg_top.jpg) no-repeat center;
    display: block;
    background-size: cover;
}
.navbar-toggler {
    border: none;
}
.button-read-more{
    display: block;
    background-color: #313131;
    border-radius: 6px;
    color: #fff;
    padding: 10px 0;
    margin: 0 -30px 0 -8px;
}


/*            відео на фон                    */


.video .container {
     background-color: #313131;
     color:#fff ;
}
.video .container .row{
    padding: 50px;
}

.page-cont a{
    color: #fff;
}
/***********************************************************/
.product h3 {
    color: #000;
    font-family: Onest;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product p.text-success {
    color: #313131 !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 22.5px
}

.insta-block {
    border-radius: 10px;
    overflow: hidden;
}

.insta-image {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.insta-text {
    background-color: #7b8c7c;
    /* приблизно як на зображенні */
    color: #FFF;
    font-family: Onest;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;

    padding: 20px;
}

.h-100 {
    height: 100%;
}

.rounded-custom {
    border-radius: 8px;
}

.custom-mini-cart {
    display: none;
    position: absolute;
    top: 70px;
    max-width: 700px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 15px;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    border-radius: 0;
}

@media (max-width: 768px) {
    .col-custom {
        aspect-ratio: auto;
    }
}

/* Гамбургер завжди видимий */
.always-toggler {
    display: block !important;
}

/* FULLSCREEN меню */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    display: none;

    /* Центрування */

    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 40px;
}

/* Кнопка закриття */
.close-fullscreen {
    position: absolute;
    top: 50px;

}

/* Список меню */
.fullscreen-menu .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-menu .menu-list li {
    margin: 5px 0;
}

.fullscreen-menu a {
    font-size: 20px;
    text-decoration: none;
    color: #000;
    font-weight: normal !important;
}

/* Плавне відкривання */
.fullscreen-menu.show {
    display: flex;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/**********************************************************/
.block {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 18px;
}

.block-number {
    position: absolute;
    top: 22px;
    right: 22px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-size: 16px;
}

.block-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px;
}

.textfront {
    color: #000000;
    margin: 20px 0 20px 0;
}

.block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
footer a{
    color: #fff!important;
}
.block h3 {
    font-size: 34px;
}
.product-categories{
    display: none;
}
.bg-block {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding: 33px;
}

.text-page {
    border-radius: 5px;
    background: #fff;
}

.height80 {
    height: 60px;
}
.entry-header{
    display: none;
}
/**************************************************************/
#post-61 h2.entry-title {
    display: none;
}


@media (max-width: 1400px) {

    p.slogan_text {
        font-size: 110px;
        line-height: 110px;
    }

}

@media (max-width: 991px) {
    .cartnumber {
        position: absolute;
        top: 5px;
        right: -8px;
    }


    .cart-contents {
        position: relative;
    }

    .navbar-collapse {
        z-index: 1051 !important;
        position: absolute !important;
        top: 100%;
        left: 0;
        background-color: #FFFEEF;
        padding: 0 20px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;

    }

    p.slogan_text {
        font-size: 80px;
        line-height: 80px;
    }

}

@media (max-width: 1400px) {
    .product_b {
        margin: 0;
    }


}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .woocommerce-Price-amount {
        float: none;

    }

    .navbar-brand img {
        margin-top: -5px;
    }

    .cat-item {
        font-size: 14px;
    }

    .products {
        padding: 0;
    }

    .product_b {
        margin: 0;
    }

    .custom-mini-cart {
        width: 100% !important;
        right: 0;
        left: 0;
    }

    nav {
        height: auto;
    }

    .height80 {
        height: 20px;
    }

    p.woocommerce-mini-cart__buttons a.button {
        display: block !important;
        width: 100% !important;
        margin: 10px 0;
    }

    #post-7 header.entry-header {
        position: relative;
    }

    .woocommerce-mini-cart__buttons {
        display: block !important;
    }

    .selo {
        padding: 20px;
    }

    .products {
        flex-direction: column;
        align-items: center;
    }

    .navbar-toggler {
        border: none;
        color: #FFFEEF;
    }

    p.slogan_text {
        font-size: 60px;
        line-height: 60px;
    }

    .product_b .single_add_to_cart_button {
        width: 90%;
        margin-bottom: 20px;
    }

    .product_b {
        padding: 25px;
        width: 100%;

    }

    footer h4 {
        margin: 20px 0;
    }

    .copy {
        text-align: left !important;
        padding: 20px 0 0 0;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .banner h2 {
        font-size: 1.5em;
    }

    .banner button {
        width: 100%;
    }
}

/* Додаткова адаптація для екранів до 480px */
@media (max-width: 480px) {


    .navbar-collapse {
        z-index: 1051 !important;
        position: absolute !important;
        top: 100%;
        left: 0;
        width: 100vw;
        background-color: #FFFEEF;
        padding: 0 20px;
    }

    /*header {
        position: fixed;
        width: 100%;
    }
*/
    body {
        font-size: 16px;
    }

    .logo {
        font-size: 1.2em;
        margin: 20px 0;
    }

    footer ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .menu {
        width: 100%;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .product_b .single_add_to_cart_button {
        padding: 10px;
        font-size: 0.95em;
    }

    .product_b h3 {
        font-size: 1em;
    }

    .product_b button {
        width: 100%;
        padding: 10px;
        font-size: 1em;
    }

    .slogan {
        font-size: 0.95em;
        padding: 20px 10px;
    }

    .banner h2 {
        font-size: 1.2em;
    }

    .banner button {
        padding: 10px;
        font-size: 1em;
    }

    .footer-links a {
        display: block;
        margin: 5px 0;
    }

    .free-shipping {
        font-size: 0.9em;
        padding: 5px;
    }

    .apple {
        display: none;
    }

    .lips {
        bottom: -190px !important;
        width: 30%;
    }

}

.slogan_position {
    max-width: 100%;
    height: auto;
    display: block;
}

.slogan_text {
    padding-top: 20%;
}

.slogan {
    background: #000;
    color: #fff;
}

.p-8 {
    padding: 8% 5%;
}

.text_description {
    font-family: "Onest", sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    text-align: justify;
    text-align-last: justify;
    position: relative;
}

.text_description b {
    font-weight: 600;
}

.apple {
    position: absolute;
    top: -240px;
    left: -65px;

}

.lips {
    position: absolute;
    bottom: -310px;
    right: 0px;
    z-index: 3;
}

.woocommerce-mini-cart-item {
    display: flex;
    /* горизонтальне розташування */
    align-items: center;
    justify-content: flex-start;

}

.remove_from_cart_button {
    width: 25px !important;
    height: 25px !important;

}

.product-mini-card {
    width: 450px !important;
    display: flex !important;
    align-items: center;
}


a.product-mini-card img {
    width: 81px !important;
    margin-right: 10px;
    height: auto;
}

.mini-cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-cart-qty-wrap button {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.mini-cart-qty-wrap input.qty {
    width: 40px;
    text-align: center;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: inherit !important;
}

.woocommerce-info {
    border-top-color: #000;
}

.woocommerce-notices-wrapper {
    display: none;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    background-color: #000;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
    background: #FFFEEF;
    box-shadow: 0 0 0 1px #000 inset;
    color: #000;
}

.woocommerce-mini-cart__buttons {
    display: flex;
}

.woocommerce-mini-cart__total {
    text-align: right;
    padding-right: 50px;
}
.entry-content{
    min-height: 50vh;
}
.wp-block-woocommerce-cart{
color: #000;
}
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before{
    display: none!important;
}