/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 29 2026 | 23:13:47 */
/* ===== УМЕНЬШАЕМ ОТСТУПЫ МЕЖДУ ТОВАРАМИ В КОРЗИНЕ ===== */
.woocommerce-cart-form__contents tr {
    padding: 8px 0 !important; /* Было ~20px, стало 8px */
    margin-bottom: 0 !important;
}

.woocommerce-cart-form__contents td {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Скрываем дублирующийся заголовок "СУММА КОРЗИНЫ" */
.cart-collaterals h2,
.woocommerce-cart-form__contents h2 {
    display: none !important;
}

/* Скрываем первый "Итог" (под таблицей товаров) */
.cart-subtotal {
    display: none !important;
}

/* ===== ОКОНЧАТЕЛЬНО СКРЫВАЕМ ФРАЗУ ПРО НАЛОГИ И ДОСТАВКУ ===== */
/* Прямое скрытие по тексту */
p:contains("Taxes and Shipping"),
p:contains("calculated at Checkout"),
small:contains("Taxes"),
span:contains("Shipping are calculated") {
    display: none !important;
}

/* Если фраза внутри конкретного класса */
.cart-collaterals .cart_totals p:last-child,
.cart-collaterals .cart_totals > p:nth-of-type(3),
.rey-cart-sidebar .cart_totals p:last-child,
.woocommerce-shipping-totals + p,
.tax-rate + p,
.shipping-calculator-button + p {
    display: none !important;
}

/* Если есть пустые блоки после фразы */
.cart-collaterals .cart_totals > p:empty,
.cart-collaterals .cart_totals > br + p,
.cart-collaterals .cart_totals > div:empty {
    display: none !important;
}

/* Дополнительно — если Rey добавляет через свой хук */
.rey-cart-note,
.rey-shipping-note,
.woocommerce-cart-form__contents .cart-note {
    display: none !important;
}