.woocommerce .product .variations .kt-radio-variation-container fieldset.kad_radio_variations label {
	cursor: pointer;
}

table.variations a.reset_variations {
	display: none !important;
	visibility: hidden !important;
}

.woocommerce div.product form.cart .reset_variations {
    display: none !important;
	visibility: hidden !important;
}

/*
*   Woocommerce review order grid styles
*/
.review-order-header,
.review-order-item,
.review-order-footer > div {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 10px 0;
}

.review-order-header,
.review-order-footer > div {
	border-bottom: 1px solid #ccc;
}

.review-order-header {
    font-weight: bold;
}

.product-name {
    grid-column: 1;
}

.review-order-item.cart_item .product-name .item-name a,
.review-order-item.cart_item .product-quantity {
	font-size: 15px;
}

.product-total {
    grid-column: 2;
    text-align: right;
}

.review-order-footer > div {
    grid-column: span 2;
}

.review-order-footer > div > div:first-child {
    grid-column: 1;
}

.review-order-footer > div > div:last-child {
    grid-column: 2;
    text-align: right;
}

.review-order-item.cart_item dl.variation {
	display: grid;
    grid-template-columns: auto 1fr;
}

.review-order-item.cart_item dl.variation dd.variation- {
	margin: 0 0 0 10px;
}

.review-order-item.cart_item dl.variation dt.variation-,
.review-order-item.cart_item dl.variation dd p {
	font-size: 15px;
}

.woocommerce a.remove {
	background: #fff;
}

.woocommerce-checkout-review-order .cart-item-subtotal-image {
	position: relative;
}

.woocommerce-checkout-review-order .remove-item-link {
	display: flex;
	justify-content: end;
	margin-bottom: 10px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.review-order-item-footer {
    display: flex;
    align-items: center;
	border-bottom: 1px solid #ccc;
}

.review-order-item-footer .product-quantity {
    flex: 1;
}

@media (max-width: 768px) {
    .review-order-header,
    .review-order-footer > div {
        grid-template-columns: 1fr;
    }

    .product-total {
        margin-top: 5px;
    }

    .review-order-header .product-total {
        display: none;
    }
	
	.review-order-item.cart_item {
        display: flex;
        flex-direction: column-reverse;
    }
}

.kb-sku-copy .wp-block-kadence-icon {
    cursor: pointer;
}

.kb-sku-tooltip {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background-color: #f8f8f8;
    border-radius: 3px;
    font-size: 12px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Скрываю кнопку корзины */
.woocommerce-mini-cart__buttons .button.wc-forward {
    display: none;
}

.woocommerce-mini-cart__buttons .button.checkout.wc-forward {
    display: inline-block;
}

/* Результаты поиска */
#search-drawer .drawer-inner .drawer-content {
    flex-direction: column;
}

#search-drawer .drawer-inner .drawer-content form input.search-field {
    color: var(--global-palette6);
}

#search-drawer .drawer-inner .drawer-content .search__results {
    position: relative;
    display: none;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

#search-drawer .drawer-inner .drawer-content .search__results.active {
    display: block;
}

#search-drawer .drawer-inner .drawer-content .search__results-inner {
    position: absolute;
    width: 100%;
    padding: 0.7rem;
    background: #fff;
}

.result__products-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--global-palette5);
}

.result__products-item:hover {
    color: var(--global-palette-highlight);
}

.result__products-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.result__products-item .result__item-title {
    margin-right: 15px;
}

.result__products-item .result__item-info {
    display: flex;
    flex-direction: column;
}

.search__all a {
    display: block;
    padding: 0.6em 1em;
    background-color: var(--global-palette-btn-bg);
    color: var(--global-palette-btn);
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-decoration: none;
}

.search__all a:hover {
    background-color: var(--global-palette-btn-bg-hover);
    color: var(--global-palette-btn-hover);
}

@media (max-width: 576px) {
    body #search-drawer .drawer-inner .drawer-content {
        display: flex;
        justify-content: start;
        align-items: center;
        position: absolute;
        top: 1em;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2em;
    }
}