/* ============================================
   КОРЗИНА В СТИЛЕ WILDBERRIES
   Интеграция с темным фоном сайта
   ============================================ */

/* Интеграция с общим фоном сайта */
body .site-content {
    background: transparent !important;
}

body .single-product-page,
body .page {
    background: transparent !important;
}

.wb-cart-wrapper {
    max-width: 1400px;
    width: 1200px !important; /* ТОЧНАЯ фиксация как в эталоне */
    margin: 0 auto;
    padding: 5px 20px; /* Еще выше: 15px → 5px */
    background: transparent;
    min-height: calc(100vh - 160px);
    box-sizing: border-box !important; /* padding ВХОДИТ в width */
}

.wb-cart-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    overflow: visible;
}

/* ============================================
   ЗАГОЛОВОК КОРЗИНЫ
   ============================================ */

.wb-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 5px 20px; /* Уменьшили отступ снизу: 10px → 5px */
    background: transparent;
    border-bottom: none;
}

.wb-cart-title {
    color: #fff;
    font-size: 24px; /* Уменьшили: 32px → 24px */
    font-weight: 700;
    margin: 0;
}

.wb-cart-select-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 4px 20px; /* Еще меньше: 8px → 4px */
    min-height: auto; /* Убрали фиксированную высоту */
    visibility: visible; /* По умолчанию видим */
}

/* Чекбокс идентичный чекбоксам товаров */
.wb-select-all-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #e8732e;
    cursor: pointer;
    margin: 0;
    vertical-align: middle;
    flex-shrink: 0;
    border-radius: 4px; /* Закругленные углы */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.wb-select-all-checkbox:checked {
    background: #e8732e;
    border-color: #e8732e;
}

.wb-select-all-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.wb-cart-select-all label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

/* ============================================
   ОСНОВНОЙ КОНТЕНТ
   ============================================ */

.wb-cart-content {
    display: grid;
    grid-template-columns: 730px 400px; /* ФИКСИРОВАННЫЕ размеры из эталона */
    gap: 30px;
    padding: 0;
    margin-top: 4px; /* Минимальный отступ: 8px → 4px */
    align-items: start;
}

.wb-cart-items {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

/* ============================================
   СПИСОК ТОВАРОВ
   ============================================ */

.wb-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* Максимально близко - без отступов */
}

.wb-cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto; /* auto - блок фото подстраивается под фото */
    gap: 17px; /* Увеличено на 15%: 15px → 17px */
    align-items: start; /* Выравнивание по верху - название на уровне верха фото */
    padding: 17px; /* Увеличено на 15%: 15px → 17px */
    background: transparent; /* Убрали серый фон */
    border-radius: 12px;
    border: none; /* Убрали серые контуры */
    transition: none; /* Убрали все анимации */
}

.wb-cart-item:hover {
    background: transparent; /* Убрали серый фон при наведении */
    border: none; /* Убрали контуры при наведении */
    transform: none !important; /* Убрали подскакивание */
}

/* Убираем ВСЕ анимации и подпрыгивания для элементов внутри товара */
.wb-cart-item,
.wb-cart-item *,
.wb-cart-item *:hover,
.wb-cart-item *:active,
.wb-cart-item *:focus,
.wb-cart-item::before,
.wb-cart-item::after,
.wb-cart-item *::before,
.wb-cart-item *::after {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
}

/* Разрешаем transition для кнопок и чекбоксов */
.wb-cart-item a,
.wb-cart-item button,
.wb-cart-item .wb-qty-btn {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
    -webkit-transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
    -moz-transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}

/* ВАЖНО: Восстанавливаем работу чекбоксов и галочек */
.wb-cart-item input[type="checkbox"],
.wb-cart-item input[type="checkbox"]::before,
.wb-cart-item input[type="checkbox"]::after {
    transition: all 0.2s ease !important;
    -webkit-transition: all 0.2s ease !important;
    -moz-transition: all 0.2s ease !important;
}

/* Разрешаем transform для галочки (центрирование) */
.wb-cart-item input[type="checkbox"]:checked::after,
.wb-select-all-checkbox:checked::after {
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
}

/* Чекбокс - теперь в левом верхнем углу фото */
.wb-cart-item-checkbox {
    position: absolute;
    top: 2px;  /* Еще ближе к краю */
    left: 2px; /* Еще ближе к краю */
    z-index: 10;
}

.wb-cart-item-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e8732e;
    cursor: pointer;
    border-radius: 4px; /* Закругленные углы */
    appearance: none; /* Убираем стандартный стиль для кастомизации */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Галочка при отметке */
.wb-cart-item-checkbox input[type="checkbox"]:checked {
    background: #e8732e;
    border-color: #e8732e;
}

.wb-cart-item-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Изображение товара - подстраивается под размер фото */
.wb-cart-item-image {
    position: relative; /* Для позиционирования чекбокса */
    width: auto; /* Ширина подстраивается под фото */
    height: 173px; /* Увеличено на 15%: 150px → 173px */
    max-width: 173px; /* Увеличено на 15%: 150px → 173px */
    border-radius: 12px; /* Закругление углов - НЕ ТРОГАЕМ */
    overflow: hidden;
    background: transparent; /* Убрали серый фон */
    display: inline-block; /* Чтобы ширина подстраивалась */
}

.wb-cart-item-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain; /* Показываем полное фото без обрезки */
    border-radius: 12px; /* Закругление углов фото */
    display: block;
}

.wb-cart-item-image a {
    display: inline-block;
    height: 100%;
    line-height: 0;
}

.wb-cart-item-image a img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain; /* Полное фото и в ссылке */
    border-radius: 12px; /* Закругление углов */
}

/* Информация о товаре */
.wb-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0; /* Убираем gap, используем margin у элементов */
    justify-content: space-between; /* Название вверху, кнопки внизу */
    min-height: 173px; /* Минимальная высота = высоте фото */
}

.wb-cart-item-info > * {
    margin-bottom: 8px; /* Отступы между элементами */
}

.wb-cart-item-info > *:last-child {
    margin-bottom: 0; /* Убираем у последнего */
}

.wb-cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.wb-cart-item-name a {
    color: #fff;
    text-decoration: none;
}

.wb-cart-item-name a:hover {
    color: #e8732e;
}

.wb-cart-item-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Краткое описание товара - посередине */
.wb-cart-item-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    flex: 1; /* Занимает все доступное пространство между названием и кнопками */
    display: flex;
    align-items: center; /* Центрируем по вертикали */
}

.wb-cart-item-actions-under-name {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 0; /* Убрали отступ - кнопки на уровне низа фото */
    flex-shrink: 0; /* Не сжимаются, всегда внизу */
}

.wb-cart-item-actions-under-name .wb-favorite-btn,
.wb-cart-item-actions-under-name .wb-remove-btn {
    background: transparent;
    border: none; /* Убрали квадратные контуры */
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.wb-cart-item-actions-under-name .wb-favorite-btn:hover {
    color: #e8732e;
    background: transparent;
}

.wb-cart-item-actions-under-name .wb-favorite-btn.active {
    color: #e8732e;
    background: transparent;
}

.wb-cart-item-actions-under-name .wb-favorite-btn.active i {
    font-weight: 900;
}

.wb-cart-item-actions-under-name .wb-remove-btn:hover {
    color: #ef4444;
    background: transparent;
}

/* Правая секция с количеством и ценой */
.wb-cart-item-right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* Контролы количества */
.wb-cart-item-quantity {
    display: flex;
    justify-content: center;
}

.wb-quantity-controls {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: visible;
    gap: 5px;
}

.wb-qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.wb-qty-btn:hover {
    background: rgba(232, 115, 46, 0.2);
    color: #e8732e;
    border-color: #e8732e;
}

.wb-qty-input {
    width: 50px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.wb-qty-input:focus {
    border-color: #e8732e;
    background: rgba(255, 255, 255, 0.1);
}

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

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

/* Итого за товар */
.wb-cart-item-total {
    font-size: 20px;
    font-weight: 700;
    color: #e8732e;
    text-align: center;
}


/* ============================================
   ПУСТАЯ КОРЗИНА
   ============================================ */

.wb-cart-empty {
    text-align: center;
    padding: 80px 20px;
    color: #fff;
    width: 100%; /* Во всю ширину родителя */
}

.wb-cart-empty-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.wb-cart-empty h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wb-cart-empty p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.wb-back-to-shop-btn {
    background: #e8732e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.wb-back-to-shop-btn:hover {
    background: #d16525;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 115, 46, 0.4);
}

/* ============================================
   ФУТЕР КОРЗИНЫ
   ============================================ */

.wb-cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 0 0;
    border-top: none;
    margin-top: 30px;
}

.wb-coupon-form {
    display: flex;
    gap: 10px;
}

.wb-coupon-input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    width: 200px;
}

.wb-coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wb-coupon-input:focus {
    outline: none;
    border-color: #e8732e;
}

.wb-coupon-btn {
    background: #e8732e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wb-coupon-btn:hover {
    background: #d16525;
}

/* Промокод в боковой панели */
.wb-sidebar-coupon {
    margin: 20px 0;
}

.wb-sidebar-coupon .wb-coupon-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.wb-sidebar-coupon .wb-coupon-input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    flex: 1;
}

.wb-sidebar-coupon .wb-coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.wb-sidebar-coupon .wb-coupon-btn {
    background: #e8732e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wb-sidebar-coupon .wb-coupon-btn:hover {
    background: #d16525;
}

.wb-update-cart-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wb-update-cart-btn:hover {
    background: rgba(232, 115, 46, 0.2);
    border-color: #e8732e;
}

/* ============================================
   БОКОВАЯ ПАНЕЛЬ
   ============================================ */

.wb-cart-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.wb-order-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wb-order-summary-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.wb-order-summary-items {
    margin-bottom: 30px;
}

.wb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.wb-summary-row:last-child {
    border-bottom: none;
}

.wb-summary-quantity {
    padding: 12px 0;
}

.wb-summary-quantity span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.wb-summary-quantity-value {
    background: rgba(232, 115, 46, 0.15);
    color: #e8732e;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(232, 115, 46, 0.3);
}

.wb-summary-price {
    font-weight: 600;
    color: #e8732e;
}

.wb-summary-total {
    background: rgba(232, 115, 46, 0.1);
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
}

.wb-summary-total-price {
    font-size: 20px;
    color: #e8732e;
}

/* Кнопки действий */
.wb-order-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.wb-checkout-btn {
    background: linear-gradient(135deg, #8B3FFD 0%, #6A2FD1 100%); /* Фирменный фиолетовый ЮMoney */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(139, 63, 253, 0.3);
}

.wb-checkout-btn:hover {
    background: linear-gradient(135deg, #9B4FFD 0%, #7A3FE1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 63, 253, 0.5);
}

.wb-checkout-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}

.wb-checkout-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Кнопка тестовой оплаты */
.wb-test-payment-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.wb-test-payment-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.wb-test-payment-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}

.wb-continue-shopping-btn {
    background: transparent;
    color: #e8732e;
    border: 2px solid #e8732e;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.wb-continue-shopping-btn:hover {
    background: #e8732e;
    color: #fff;
}

/* Способы оплаты */
.wb-payment-methods {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wb-payment-methods p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.wb-payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1240px) {
    .wb-cart-wrapper {
        width: auto !important; /* На мобильных адаптивная ширина */
        max-width: 100%;
    }
    
    .wb-cart-content {
        grid-template-columns: 1fr 350px; /* Адаптивная левая колонка */
    }
}

@media (max-width: 992px) {
    .wb-cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wb-cart-sidebar {
        position: static;
    }
    
    .wb-cart-item {
        grid-template-columns: auto 1fr auto; /* Без колонки чекбокса */
        gap: 14px; /* Увеличено на 15%: 12px → 14px */
        padding: 14px; /* Увеличено на 15%: 12px → 14px */
    }
    
    .wb-cart-item-image {
        width: auto; /* Подстраивается */
        height: 138px; /* Увеличено на 15%: 120px → 138px */
        max-width: 138px; /* Увеличено на 15%: 120px → 138px */
    }
    
    .wb-cart-item-info {
        min-height: 138px; /* Минимальная высота = высоте фото */
    }
    
    .wb-cart-item-checkbox {
        top: 2px;
        left: 2px;
    }
}

@media (max-width: 768px) {
    .wb-cart-wrapper {
        padding: 15px 15px; /* Компактнее */
    }
    
    .wb-cart-header {
        flex-direction: column;
        gap: 10px; /* Меньше отступ */
        padding: 0 0 8px 0; /* Меньше отступ */
    }
    
    .wb-cart-content {
        padding: 0;
    }
    
    .wb-cart-item {
        grid-template-columns: 1fr;
        gap: 14px; /* Увеличено на 15%: 12px → 14px */
        text-align: center;
        padding: 14px; /* Увеличено на 15%: 12px → 14px */
    }
    
    .wb-cart-item-image {
        order: 1;
        width: auto; /* Подстраивается */
        height: 184px; /* Увеличено на 15%: 160px → 184px */
        max-width: 184px; /* Увеличено на 15%: 160px → 184px */
        margin: 0 auto;
    }
    
    .wb-cart-item-info {
        min-height: auto; /* На мобильных auto */
        order: 3;
    }
    
    .wb-cart-item-quantity {
        order: 4;
    }
    
    .wb-cart-item-total {
        order: 5;
    }
    
    .wb-cart-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .wb-coupon-form {
        flex-direction: column;
    }
    
    .wb-coupon-input {
        width: 100%;
    }
}

/* ============================================
   АНИМАЦИЯ ПЕРЕСЧЁТА ЦЕН (СЧЁТЧИК)
   ============================================ */

.price-counting {
    color: #e8732e !important;
    font-weight: 700 !important;
    animation: priceGlow 0.5s ease infinite;
}

.price-complete {
    animation: priceFlash 0.3s ease;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(232, 115, 46, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(232, 115, 46, 0.8);
    }
}

@keyframes priceFlash {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.wb-cart-item-total,
.wb-summary-price,
.wb-summary-total-price {
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Анимация счётчика (прокрутка цифр) - управляется через JavaScript */
.price-counting {
    transition: all 0.1s ease;
}

.price-complete {
    font-weight: bold;
    transition: all 0.3s ease;
}

/* ============================================
   СКРЫТИЕ УВЕДОМЛЕНИЙ И ЛИШНИХ ФОНОВ WOOCOMMERCE
   ============================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper {
    display: none !important;
}

/* Скрытие стандартных уведомлений в корзине */
.woocommerce-cart-form .woocommerce-message,
.woocommerce-cart-form .woocommerce-info,
.woocommerce-cart-form .woocommerce-error {
    display: none !important;
}

/* Убираем все лишние фоны WooCommerce */
.woocommerce .woocommerce-cart-form,
.woocommerce-page .woocommerce-cart-form,
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce .woocommerce-cart-form .shop_table,
.woocommerce-page .woocommerce-cart-form .shop_table {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Убираем фоны стандартных таблиц */
.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Убираем фоны стандартных контейнеров */
.woocommerce .woocommerce-cart-form .cart-collaterals,
.woocommerce-page .woocommerce-cart-form .cart-collaterals {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}