:root{

	--text-color: #21201F;
	--body-color: #F5F4F2;
	--main-color: #3265ff;
	--size: 32px;

    --bdrs: 28px;
    --gap: 24px;

    --sale-color: #ec1f25;
    --gray: #9E9B98;

    --maw: 1200px;

    --ttff: "Roboto", sans-serif;
    --hhff: "Roboto Condensed", sans-serif;
}

*{
	box-sizing: border-box;
}



body{
    font-variation-settings: "wdth" 100;
    font-family: 'Arial', sans-serif;
    font-family: var(--ttff);
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 2048px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    background-color: var(--body-color);
    position: relative;
    padding-bottom: 109px;
}

.wrapper{
    /*max-width: 480px;*/
    max-width: var(--maw);
    padding: var(--gap);
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    border-top-right-radius: var(--bdrs);
    border-top-left-radius: var(--bdrs);
    border-radius: var(--bdrs);
}

.section-title {
    margin: 26px 0 24px 0;
    font-size: 32px;
    line-height: 37px;
    font-weight: 700;
}

b, strong{
	font-weight: bold;
}


body.menu-open{
	height: 100vh;
	overflow: hidden;
}


svg{
	/*fill: var(--fill);*/
	width: var(--size);
	height: var(--size);
}

ul,ol{
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6{
	line-height: 1.4;
    font-family: var(--hhff);

}

.logo{
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
}

.logo,
.popup-product-name,
.section-title{
    font-family: var(--hhff);
    letter-spacing: -0.8px;
}

img {
	max-width: 100%;
	height: auto;
}

.hidden{
	display: none !important;
}


.section{
	position: relative;
	margin-top: var(--section-padding);
	margin-bottom: var(--section-padding);
}



.gallery .gallery-item {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	width: 33.33333333%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item{
	width: 33.33333333%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item{
	width: 16.66666667%;
}


a.link-absolute {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}









header.main-header {
    max-width: var(--maw);
    padding: var(--gap) 12px 12px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 0 var(--bdrs) var(--bdrs);
    margin-bottom: 12px;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.main-header-container .header-icon {
    --size: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header-container .btn-back.header-icon {
    --size: 16px;
    opacity: 1;
}

.home .main-header-container .btn-back.header-icon{
    visibility: hidden;
    opacity: 0;
}


.popup-menu-container{
    display: none;
    right: 0;
    top: 100%;
    z-index: 99;
    position: absolute;
    padding: 24px;
    border-radius: var(--bdrs);
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.popup-menu-container.active{
    display: block;
}

ul.menu li {
    display: block;
    border-bottom: 1px solid #d0cfce;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

ul.menu li a {
    color: var(--text-color);
    text-decoration: none;
}

ul.menu {
    font-size: 16px;
}

ul.menu li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}








.main-header-icons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.main-header-icon-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    border-radius: 24px;
    /*line-height: 1;*/
    color: var(--text-color);
    text-decoration: none;
}

.main-header-icon-item .item-img{
    flex-shrink: 0;
}

.main-header-icon-item .item-img img {
    --size: 24px;
    width: var(--size);
    height: var(--size);
}

.main-header-icon-item .item-title {
    font-size: 16px;
    margin: 0;
    font-family: var(--ttff);
}

.main-header-icon-item .item-text {
    font-size: 14px;
    margin: 0;
    color: var(--gray);
}

.main-header-icon-item .item-text svg {
    --size: 8px;
    vertical-align: 0px;
    fill: var(--gray);
}

a.main-header-icon-item:hover {
    background: var(--body-color);
    text-decoration: none;
    color: var(--text-color);
}































.home-categories{
    position: relative;
}


.category-section{
    scroll-margin-top: 72px;
}


.category-nav{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    margin: -24px -24px 0;
    padding: 0 24px;
    border-top-right-radius: var(--bdrs);
    border-top-left-radius: var(--bdrs);
    /*border-bottom: 1px solid #d0cfce;*/
}

.category-nav:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d0cfce;
}



.category-nav a {
    font-weight: 500;
    display: block;
    border-bottom: 2px solid transparent;
    color: var(--text-color);
    padding: 18px 0 15px;
    text-decoration: none;
    opacity: 0.4;
}


.category-nav-slider a.active {
  opacity: 1;
  border-color: var(--text-color);
}


.category-nav-slider .swiper-slide {
  width: auto;          /* ← вот это важно */
  margin-right: 24px;
}

.category-nav-slider a {
  display: inline-block;
  white-space: nowrap;  /* чтобы текст не переносился */
}













.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}



.product-card {
    max-width: 300px;
    --pos: 8px;
    position: relative;
}

.price {
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    display: flex;
    gap: 5px;
}

.price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
    font-weight: 400;
}

.sale-price {
    color: var(--sale-color);
    font-weight: bold;
}

.product-image{
    position: relative;
}

.product-image img{
    border-radius: var(--bdrs);
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-controls{
    position: absolute;
    bottom: var(--pos);
    right: var(--pos);
    z-index: 1;
}


.popup-content .discount,
.product-card .discount{
    position: absolute;
    --pos: 12px;
    top: var(--pos);
    left: var(--pos);
    font-size: 16px;
    padding: 0 8px;
    border-radius: 8px;
    background-color: var(--sale-color);
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    font-weight: 500;
}

.popup-content .discount {
    --pos: 52px;
}



.product-card .product-info {
    padding: 8px 6px;
}

.product-card .product-name{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin: 3px 0 0;
    font-family: var(--ttff);
}

.product-weight,
.product-card .product-weight{
    color: var(--gray);
    font-size: 14px;
    line-height: 16px;
}

.product-card .product-content{
    display: none;
}




.cart-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    --size: 40px;
    width: var(--size);
    overflow: hidden;
    background: #fff;
    border-radius: 40px;
    transition: all .5s;
}

a.variable-popup,
.cart-controls button {
 --size: 40px;
 width: var(--size);
 height: var(--size);
 color: var(--text-color);
 border-radius: 50%;
 background: #fff;
 border: 0;
 outline: none;
 flex-shrink: 0;
 z-index: 1;
 font-size: 22px;
 line-height: 1;
}

.cart-controls input {
    font-size: 18px;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    /*flex: 1;*/
    border: 0;
    outline: none;
}

a.variable-popup{
    position: absolute;
    bottom: var(--pos);
    right: var(--pos);
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}


.cart-controls.expanded {
  left: var(--pos);
  width: auto;
}


.cart-controls .qty-minus,
.cart-controls .qty-input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: -1;
}

.cart-controls.expanded .qty-minus,
.cart-controls.expanded .qty-input {
    position: static;
    opacity: 1;
    visibility: visible;
}

.shop-info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px 0 24px;
    gap: 8px;
    z-index: 99;
    box-shadow: 0px -8px 20px 0px rgba(0, 0, 0, 0.07);


    /*max-width: var(--maw);*/
    margin-left: auto;
    margin-right: auto;
    border-top-right-radius: var(--bdrs);
    border-top-left-radius: var(--bdrs);
}

.floating-cart-message {
    font-size: 14px;
}

.shop-info-btns {
    display: flex;
    gap: 12px;
}


.shop-info-btns {
    display: flex;
    gap: 6px;
    width: 100%;
    padding: 0 6px;
    max-width: 420px;
}
.wc-block-components-button,
a.btn {
    background: #191817;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    outline: none;
    border: 2px solid #191817;
    display: flex;
    align-items: center;
    gap: 8px;
}

a.btn svg {
    flex-shrink: 0;
    fill: #fff;
    --size: 16px;
}

.shop-info-btns .btn {
    line-height: 1;
    border-radius: 100px;
    padding: 16px;
    text-align: center;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    font-size: 18px;
}

.shop-info-btns a#floating-cart {
    width: auto;
    flex: 0;
    padding: 16px 24px;
}

a.btn svg {
    --size: 18px;
}

a.btn.show-mobile {
    display: none;
}

a.btn.show-pc {
    display: flex;
}








.product-popup {
    padding: 40px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.product-popup.active{
    display: block;
    display: flex;
}

.product-popup .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.3);
}

.product-popup .popup-content {
    margin: auto;
    background: #fff;
    /*padding: 40px;*/
    width: 100%;
    position: relative;
    z-index: 9;
    max-width: var(--maw);
    border-radius: var(--bdrs);
    /*max-height: calc(100dvh - 80px);*/
    /*overflow: auto;*/
    overflow: hidden;
}

.popup-body-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 40px;
}

.popup-body-content {
    border-top: 1px solid #d0cfce;
    padding: 30px 40px;
}


.popup-body-header img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: var(--bdrs);
    object-fit: cover;
}


.popup-content .popup-close {
    background: transparent;
    border: 0;
    position: absolute;
    right: 30px;
    top: 30px;
    --size: 18px;
    z-index: 2;
}

.popup-content .popup-close svg {
    fill: #868686;
}

.popup-body {
    background: #fff;
    overflow: auto;
    height: 100%;
    max-height: calc(100dvh - 120px);
    position: relative;
}



.popup-product-name {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.16px;
    margin: 0 0 8px;
}

.popup-product-weight {
    color: var(--gray);
    font-size: 16px;
}

.popup-product-price {
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: -0.16px;
}

/*.popup-product-price .woocommerce-Price-currencySymbol {
    font-size: 0.75em;
    font-weight: 500;
}*/

.popup-product-price .old-price{
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
    font-weight: 400;
}



.popup-controls{
    display: flex;
    align-items: center;
    gap: 30px;
}

.popup-cart-controls {
    display: inline-flex;
    align-items: center;
    background: #f5f4f2;
    border-radius: 16px;
    padding: 0;
    gap: 10px;
    font-size: 24px;
}

.popup-cart-controls button {
    --size: 56px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    color: var(--text-color);
    font-size: 24px;
}

.popup-cart-controls .popup-qty-input {
    width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    outline: none;
    pointer-events: none;
}

/* Убираем стрелки у input type=number */
.popupqty-input::-webkit-outer-spin-button,
.qty-input::-webkit-outer-spin-button,
.popupqty-input::-webkit-inner-spin-button ,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.popup-qty-input,
.qty-input {
    -moz-appearance: textfield;
}

.popup-add-to-cart {
    background: #191817;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    outline: none;
    border: 2px solid #191817;
    width: 180px;
    text-align: center;
}


.popup-add-to-cart.active {
    color: #191817;
    background: #FCE001;
    border-color: #FCE001;
}

.main-footer-container {
    display: flex;
    max-width: var(--maw);
    margin: 40px auto;
    justify-content: space-around;
    gap: 30px;
}

.main-footer-container p {
    font-size: 14px;
    margin: 0;
    color: var(--gray);
}

.main-footer-container a {
    color: var(--gray);
    text-decoration: none;
}



.map-container{
    overflow: hidden;
    border-radius: var(--bdrs);
}



p.gray.sub-title {
    /*margin-top: -12px;*/
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gray);
}


.wp-content *:last-child {
    margin-bottom: 0;
}

.wp-content p{
    margin-bottom: 12px;
}



.delivery-zones {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.show-mobile{
    display: none;
}

.show-pc{
    display: block;
}










.wc-block-components-product-metadata__description {
    display: none;
}


.wp-content a.wp-element-button {
    background: #191817;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    outline: none;
    border: 2px solid #191817;
    display: flex;
    align-items: center;
    outline: none!important;
    box-shadow: none!important;
    gap: 8px;
}



/*
.variation-btn {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    margin: 4px;
}

.variation-btn.selected-variation {
    background: #000;
    color: #fff;
}
*/

.product-card .custom-variations {
    display: none;
}

.variation-group {
    display: flex;
    background: #f3f3f7;
    background: #f5f4f2;
    border-radius: 40px;
}

.custom-variations {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 30px 0;
}

.variation-group .variation-btn {
    flex: 1;
    border-radius: 40px;
    background: transparent;
    margin: 3px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: bold;
    border: 0;
    outline: none;
}

.variation-group .variation-btn.selected-variation {
    background: #fff;
    /* box-shadow: rgba(6, 5, 50, 0.19) 0px 6px 20px; */
}


.woocommerce-checkout .shop-info,
.woocommerce-cart .shop-info {
    display: none;
}

a.wc-block-components-product-name {
    color: var(--text-color);
    text-decoration: none;
}

button.wc-block-cart-item__remove-link {
    --size: 24px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 0;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label:before {
    content: 'Сумма к оплате';
    font-size: var(--wp--preset--font-size--medium, 22px);
}

.wc-block-cart-items a{
    cursor: default;
}

.wc-block-checkout__use-address-for-billing {
    display: none;
}

.wc-block-checkout__shipping-fields .wc-block-components-address-form .wc-block-components-text-input:first-child+.wc-block-components-text-input{
    margin-top: 12px !important;
}
.wc-block-components-text-input.wc-block-components-address-form__address_1 {
    /*margin-top: 12px!important;*/
}

.wc-block-components-address-form__country{
    display: none !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
    --size: 24px;
}















.woocommerce span.onsale {
    position: absolute;
    --pos: 12px;
    top: var(--pos);
    left: var(--pos);
    font-size: 16px;
    padding: 0 8px;
    border-radius: 8px;
    background-color: var(--sale-color);
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    font-weight: 500;
    min-height: 0;
    min-width: 0;
}

.woocommerce div.product .product_title {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.16px;
    margin: 0 0 8px;
}

div.product .summary p.price {
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    letter-spacing: -0.16px;
}


div.product .summary p.price ins {
    color: red;
    text-decoration: none;
}

div.product .summary p.price del {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}


.product_meta {
    display: none;
}


.woocommerce div.product div.images img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--bdrs);
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    width: 400px;
}

.woocommerce div.product div.summary {
    float: left;
    padding-top: 40px;
    padding-left: 40px;
    width: calc(100% - 400px);
}

.woocommerce .quantity .qty {
    display: inline-block;
    align-items: center;
    background: #f5f4f2;
    border-radius: 16px;
    padding: 0;
    font-size: 24px;
    text-align: center;
    padding: 10px 12px;
    outline: none;
    border: 0;
    width: 90px;
    appearance: none;
    margin-right: 30px;
}



.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce .quantity .qty {
    -moz-appearance: textfield;
}

.woocommerce div.product form.cart .button {
    background: #191817;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 12px;
    border-radius: 12px;
    text-decoration: none;
    outline: none;
    border: 2px solid #191817;
    width: 180px;
    text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
    border-top: 1px solid #d0cfce;
    padding: 30px 0 0;
    margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    display: none;
}

/*
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    display: inline-block;
    border-bottom: 2px solid transparent;
    color: #a6a6a5;
    padding: 18px 0 15px;
    text-decoration: none;
    font-size: 16px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: 16px;
    color: #a6a6a5;
    font-weight: 500;
}
*/

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
    display: none;
}

h1.woocommerce-products-header__title.page-title {
    margin: -12px 0 24px 0;
    font-size: 32px;
    line-height: 37px;
    font-weight: 700;
    font-family: var(--hhff);
    letter-spacing: -0.8px;
}

.woocommerce .products ul, .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
    display: none;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: none;
    position: relative;
    padding: 0;
    width: 100%;
    margin: 0;
}

.woocommerce ul.products li.product a img {
    margin: 0;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--bdrs);
}

.woocommerce ul.products li.product .onsale {
    margin: 0;
    --pos: 12px;
    top: var(--pos);
    left: var(--pos);
    right: auto;
}

.woocommerce ul.products li.product .price ins {
    color: var(--sale-color);
    font-weight: bold;
    text-decoration: none;
}

.woocommerce ul.products li.product .price {
    margin: 8px 0 0;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    display: flex;
    gap: 5px;
    color: var(--text-color);
}

.woocommerce ul.products li.product .price del {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
    font-weight: 400;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin: 3px 0 0;
    font-family: var(--ttff);
    color: var(--text-color);
    padding: 0;
}


.woocommerce ul.products li.product .button {
    position: absolute;
    top: 224px;
    right: 8px;
    z-index: 999;
    font-size: 0;
    --size: 40px;
    width: var(--size);
    height: var(--size);
    color: var(--text-color);
    border-radius: 50%;
    background: #fff;
    border: 0;
    outline: none;
    flex-shrink: 0;
    z-index: 8;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-weight: 400;
}


.woocommerce ul.products li.product .button:after {
    content: '+';
    font-size: 22px;
    margin: 0;
}

.woocommerce ul.products li.product a.button.added::after{
    font-family: WooCommerce;
    content: "\e017";
    font-size: 18px;
}

.woocommerce a.added_to_cart {
    color: var(--text-color);
    display: block;
    position: absolute;
    bottom: 65px;
    left: 79px;
    z-index: 1;
    font-weight: bold;
    background: #fff;
    padding: 13px 20px 13px 15px;
    border-radius: 40px 0 0 40px;
    font-size: 14px;
    line-height: 1;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.woocommerce div.product:after {
    content: '';
    display: table;
    clear: both;
}


.woocommerce div.product.product-type-variable p.price {
    display: none;
}

.woocommerce div.product.product-type-variable .woocommerce-variation-price span.price {
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    letter-spacing: -0.16px;
}


.woocommerce div.product form.cart .variations select {
    width: auto;
    background-color: #f5f4f2;
    border: 0;
    padding: 6px 22px;
    border-radius: var(--bdrs);
    max-width: 180px;
    min-width: 0;
    width: 100%;
    font-weight: 500;
    outline: none;
}

.woocommerce div.product form.cart .variations label {
    margin: 0;
}

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
    vertical-align: middle;
}

.woocommerce div.product form.cart .reset_variations {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}