@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

.wcc-product-item {
    list-style: none;
    height: 100%;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.woocommerce ul.products li.product.wcc-product-item,
.woocommerce-page ul.products li.product.wcc-product-item {
    margin: 0 0 14px !important;
    padding: 0 6px !important;
    display: flex !important;
    align-items: stretch;
    float: none !important;
    height: auto !important;
    align-self: stretch !important;
}

.wcc-card {
    position: relative;
    background: var(--wcc-card-bg);
    border-radius: var(--wcc-card-radius);
    border: var(--wcc-card-border);
    box-shadow: var(--wcc-card-shadow);
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    height: 100% !important;
}

.wcc-card:hover {
    box-shadow: var(--wcc-card-shadow-hover);
    transform: translateY(-2px);
}

.wcc-image-link {
    display: block;
    position: relative;
    border-radius: var(--wcc-image-radius);
    overflow: hidden;
    margin: 10px 10px 8px;
}

.wcc-image-link .wcc-image-frame {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wcc-image-link .wcc-image-frame img,
.wcc-image-link img.wcc-product-image {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.wcc-sale-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: var(--wcc-sale-badge-text);
    background: var(--wcc-sale-badge-bg);
}

.wcc-custom-badges {
    position: absolute;
    right: 10px;
    top: 54px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.wcc-custom-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--wcc-tag-text);
    background: var(--wcc-tag-bg);
}

.wcc-card-body {
    padding: 6px 12px 12px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    flex: 1;
    gap: 8px;
}

.wcc-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.wcc-title a {
    color: #0f172a;
    text-decoration: none;
}

.wcc-meta-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    margin-top: 0;
}

.wcc-prices {
    display: block;
    color: var(--wcc-price-color);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.wcc-prices .wcc-price-main,
.wcc-prices .wcc-price-new {
    display: block;
    font-size: clamp(13px, 0.95vw, 18px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcc-prices .wcc-price-main {
    color: var(--wcc-price-color);
}

.wcc-prices .wcc-price-old {
    display: block;
    margin-bottom: 2px;
}

.wcc-prices .wcc-price-old del {
    display: inline-block !important;
    font-size: clamp(12px, 0.85vw, 15px);
    color: var(--wcc-price-color);
    opacity: .72;
    white-space: nowrap !important;
}

.wcc-prices .wcc-price-new,
.wcc-prices .wcc-price-new .woocommerce-Price-amount,
.wcc-prices .woocommerce-Price-amount,
.wcc-prices .woocommerce-Price-currencySymbol,
.wcc-prices .woocommerce-Price-currencySymbol + * {
    color: inherit;
}

.wcc-prices .wcc-price-new {
    color: var(--wcc-sale-price-color);
}

.wcc-prices .woocommerce-Price-amount,
.wcc-prices .woocommerce-Price-currencySymbol {
    display: inline !important;
    white-space: nowrap !important;
}

.wcc-prices .wcc-price-main br,
.wcc-prices .wcc-price-new br,
.wcc-prices .wcc-price-old br {
    display: none !important;
}

.wcc-prices .wcc-price-main *,
.wcc-prices .wcc-price-new *,
.wcc-prices .wcc-price-old * {
    display: inline !important;
    white-space: nowrap !important;
}

.wcc-loop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 95px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--wcc-button-text);
    background: var(--wcc-button-bg);
    transition: opacity .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.wcc-loop-btn:hover {
    opacity: .88;
    color: var(--wcc-button-text);
}

.wcc-atc-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.wcc-atc-popup-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.wcc-atc-popup {
    width: min(560px, calc(100vw - 24px));
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    position: relative;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .24);
    font-family: 'IBM Plex Sans', sans-serif;
}

.wcc-atc-popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: 0 !important;
    background: transparent !important;
    color: #334155 !important;
    font-size: 28px !important;
    line-height: 1;
    cursor: pointer !important;
    box-shadow: none !important;
    text-decoration: none !important;
    padding: 0 !important;
    min-width: auto !important;
    min-height: auto !important;
}

.wcc-atc-popup-head {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    padding-right: 24px;
}

.wcc-atc-popup-content {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.wcc-atc-popup-image {
    width: 96px;
    height: 96px;
    border: 1px solid #dbe7f3;
    border-radius: 10px;
    overflow: hidden;
}

.wcc-atc-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcc-atc-popup-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
}

.wcc-atc-popup-price {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #0f2d5a;
}

.wcc-atc-popup-qty {
    margin-top: 4px;
    color: #475569;
    font-weight: 500;
}

.wcc-atc-popup-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wcc-atc-btn {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid #c8d8ea !important;
    background: #fff !important;
    color: #15395f !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.wcc-atc-btn.wcc-atc-btn-primary {
    border-color: transparent !important;
    background: var(--wcc-button-bg) !important;
    color: var(--wcc-button-text) !important;
}

.single-product .wcc-single-suggestions {
    margin-top: 24px;
    border-top: 1px solid #dbe7f3;
    padding-top: 18px;
}

.single-product .wcc-single-suggestions h3 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    color: #0f5132;
    font-family: 'IBM Plex Sans', sans-serif;
}

.single-product .wcc-single-suggestions-grid {
    display: grid;
    gap: 10px;
}

.single-product .wcc-single-suggestion-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px 0;
}

.single-product .wcc-single-suggestion-thumb {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    border: 1px solid #dbe7f3;
    overflow: hidden;
}

.single-product .wcc-single-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-product .wcc-single-suggestion-title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f5132;
}

.single-product .wcc-single-suggestion-price {
    display: block;
    margin-top: 6px;
    font-size: 22px;
    font-weight: 600;
    color: #00aab5;
}

.wcc-wishlist-btn {
    border: 1px solid #c6d9ee !important;
    background: #fff !important;
    color: #27486e !important;
    border-radius: 8px !important;
    padding: 7px 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.wcc-wishlist-btn.is-active {
    border-color: #e11d48 !important;
    color: #e11d48 !important;
    background: #fff1f2 !important;
}

.wcc-wishlist-loop-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 5;
    width: 32px !important;
    height: 32px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.wcc-card .wcc-wishlist-loop-btn,
.wcc-card .wcc-wishlist-loop-btn.is-active {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 6px !important;
    padding: 0 !important;
}

.wcc-filters-pro {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr auto auto;
    gap: 10px;
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    background: #fff;
}

.wcc-filters-pro input,
.wcc-filters-pro button {
    min-height: 40px;
}

.wcc-shop-layout {
    display: grid;
    grid-template-columns: var(--wcc-filter-sidebar-width, 25%) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 12px;
}
.wcc-shop-main {
    min-width: 0;
}

.wcc-shop-sidebar {
    position: sticky;
    top: 18px;
}

.wcc-filters-toggle {
    display: none !important;
}

.wcc-sidebar-form {
    border: 1px solid #d8e5d8;
    border-radius: 24px;
    background: #f8fcf9;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.wcc-filter-card {
    margin-bottom: 12px;
    border: 1px solid #dce9dc;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
}

.wcc-filter-card h4 {
    margin: 0 0 8px;
    font-size: 15px !important;
    font-weight: 700;
    color: #1f3b2f;
}

.wcc-filter-input,
.wcc-filter-select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe7db;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 14px !important;
    color: #22324d;
    background: #fff;
    box-sizing: border-box;
}

.wcc-filter-input:focus,
.wcc-filter-select:focus {
    outline: none;
    border-color: #14c58c;
    box-shadow: 0 0 0 3px rgba(20, 197, 140, .14);
}

body .wcc-sidebar-form input.wcc-filter-input,
body .wcc-sidebar-form select.wcc-filter-select,
body .wcc-sidebar-form input.wcc-filter-input:hover,
body .wcc-sidebar-form select.wcc-filter-select:hover,
body .wcc-sidebar-form input.wcc-filter-input:focus,
body .wcc-sidebar-form select.wcc-filter-select:focus {
    min-height: 44px !important;
    border: 1px solid #dbe7db !important;
    border-radius: 10px !important;
    padding: 9px 12px !important;
    font-size: 14px !important;
    color: #22324d !important;
    background: #fff !important;
    box-shadow: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.wcc-filter-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #5a6b86 50%), linear-gradient(135deg, #5a6b86 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.wcc-filter-scroll {
    max-height: calc(var(--wcc-filter-categories-visible, 5) * 38px);
    overflow-y: auto;
    padding: 10px 8px 10px 10px;
    border: 1px solid #dce9dc;
    border-radius: 14px;
}

.wcc-filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 14px !important;
    color: #2a3f34;
}

.wcc-filter-check:last-child {
    margin-bottom: 0;
}

.wcc-filter-check input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #14c58c;
}

.wcc-price-slider {
    position: relative;
    padding: 22px 0 0;
}

.wcc-price-track {
    position: relative;
    height: 22px;
    margin-top: 0;
}

.wcc-price-track-base,
.wcc-price-track-progress {
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
    height: 5px;
    border-radius: 999px;
}

.wcc-price-track-base {
    background: #e5edf7;
}

.wcc-price-track-progress {
    left: var(--wcc-range-left, 0%);
    right: calc(100% - var(--wcc-range-right, 100%));
    background: #14c58c;
}

.wcc-price-slider .wcc-price-range {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 22px;
    margin: 0;
}

.wcc-price-slider .wcc-price-range::-webkit-slider-runnable-track {
    height: 5px;
    background: transparent;
    border: 0;
}

.wcc-price-slider .wcc-price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #14c58c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
    pointer-events: auto;
    cursor: pointer;
    margin-top: 11px;
}

.wcc-price-slider .wcc-price-range::-moz-range-track {
    height: 5px;
    background: transparent;
    border: 0;
}

.wcc-price-slider .wcc-price-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #14c58c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
    pointer-events: auto;
    cursor: pointer;
    transform: translateY(11px);
}

.wcc-price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: #4d5f7c;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.wcc-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.wcc-filter-btn {
    min-height: 42px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #cfe0f2;
    flex: 1 1 50%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif !important;
    line-height: 1.1 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.wcc-filter-btn-primary {
    color: #fff !important;
    border-color: #14c58c;
    background: linear-gradient(90deg, #14c58c 0%, #10b582 100%);
    box-shadow: 0 6px 12px rgba(20, 197, 140, .2);
}

.wcc-filter-actions .wcc-filter-btn,
.wcc-filter-actions .wcc-filter-btn-primary,
.wcc-filter-actions .wcc-filter-btn-light {
    min-height: 42px !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
}

button.wcc-filter-btn.wcc-filter-btn-primary,
input[type="submit"].wcc-filter-btn.wcc-filter-btn-primary,
.elementor a.wcc-filter-btn.wcc-filter-btn-primary,
.elementor button.wcc-filter-btn.wcc-filter-btn-primary {
    background: linear-gradient(90deg, #14c58c 0%, #10b582 100%) !important;
    color: #fff !important;
    border: 1px solid #14c58c !important;
    box-shadow: 0 8px 18px rgba(20, 197, 140, .24) !important;
    text-shadow: none !important;
}

body .wcc-sidebar-form .wcc-filter-btn,
body .wcc-sidebar-form .wcc-filter-btn:hover,
body .wcc-sidebar-form .wcc-filter-btn:focus,
body .wcc-sidebar-form .wcc-filter-btn:active {
    transform: none !important;
    background-image: none;
    box-shadow: none;
}

body .wcc-sidebar-form .wcc-filter-btn.wcc-filter-btn-primary,
body .wcc-sidebar-form .wcc-filter-btn.wcc-filter-btn-primary:hover,
body .wcc-sidebar-form .wcc-filter-btn.wcc-filter-btn-primary:focus,
body .wcc-sidebar-form .wcc-filter-btn.wcc-filter-btn-primary:active {
    background: linear-gradient(90deg, #14c58c 0%, #10b582 100%) !important;
    color: #fff !important;
    border-color: #14c58c !important;
    box-shadow: 0 8px 18px rgba(20, 197, 140, .24) !important;
}

a.wcc-filter-btn.wcc-filter-btn-light,
button.wcc-filter-btn.wcc-filter-btn-light,
.elementor a.wcc-filter-btn.wcc-filter-btn-light,
.elementor button.wcc-filter-btn.wcc-filter-btn-light {
    background: #fff !important;
    color: #2f405d !important;
    border: 1px solid #cfe0f2 !important;
    text-shadow: none !important;
}

.wcc-filter-btn-light {
    color: #2f405d !important;
    background: #fff;
}

.wcc-shop-main ul.products {
    display: grid !important;
    grid-template-columns: repeat(var(--wcc-filter-products-per-row, 3), minmax(0, 1fr));
    gap: 14px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.wcc-shop-main ul.products::before,
.wcc-shop-main ul.products::after {
    display: none !important;
    content: none !important;
}

.wcc-shop-main ul.products li.product.wcc-product-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    grid-column: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.wcc-shop-main ul.products li.product.wcc-product-item.first,
.wcc-shop-main ul.products li.product.wcc-product-item.last,
.wcc-shop-main ul.products li.product.first,
.wcc-shop-main ul.products li.product.last {
    clear: none !important;
    margin-right: 0 !important;
}

.wcc-shop-main ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    grid-column: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.wcc-free-shipping-bar {
    margin-bottom: 12px;
    padding: 10px 14px;
    border: 1px solid #d7f0e3;
    border-radius: 10px;
    background: #f0fdf7;
    color: #0f5132;
    font-weight: 600;
}

.wcc-checkout-upsells {
    margin: 14px 0;
    padding: 12px;
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    background: #fff;
}

.wcc-checkout-upsells h3 {
    margin: 0 0 10px;
}

.wcc-checkout-upsells-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.wcc-checkout-upsell-item {
    border: 1px solid #dbe7f3;
    border-radius: 10px;
    padding: 10px;
}

.wcc-checkout-upsell-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.wcc-checkout-upsell-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

.wcc-checkout-upsell-price {
    margin: 4px 0 8px;
    font-weight: 700;
}

.wcc-sticky-atc {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 99998;
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .18);
    padding: 10px 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wcc-sticky-atc.is-visible {
    display: flex;
}

.wcc-sticky-atc-title {
    font-weight: 700;
}

.wcc-sticky-atc-btn {
    border: 0;
    border-radius: 10px;
    min-height: 40px;
    padding: 8px 16px;
    background: var(--wcc-button-bg);
    color: var(--wcc-button-text);
    font-weight: 700;
    cursor: pointer;
}

.woocommerce-MyAccount-content .wcc-rma-form {
    max-width: 520px;
}

.woocommerce-MyAccount-content .wcc-rma-form select,
.woocommerce-MyAccount-content .wcc-rma-form textarea {
    width: 100%;
}

.wcc-product-item .star-rating,
.wcc-product-item .onsale,
.wcc-product-item .button,
.wcc-product-item .added_to_cart {
    display: none !important;
}

@media (min-width: 768px) {
    .wcc-shop-sidebar .wcc-filters-toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .wcc-shop-layout {
        grid-template-columns: 1fr;
    }

    .wcc-shop-sidebar {
        position: static;
    }

    .wcc-shop-sidebar .wcc-filters-toggle,
    body .wcc-shop-sidebar .wcc-filters-toggle,
    .elementor .wcc-shop-sidebar .wcc-filters-toggle,
    .elementor-widget-container .wcc-shop-sidebar .wcc-filters-toggle {
        display: flex !important;
        width: 100%;
        min-height: 44px;
        border: 1px solid #14c58c !important;
        border-radius: 12px;
        background: linear-gradient(90deg, #14c58c 0%, #10b582 100%) !important;
        color: #fff !important;
        font-size: 14px !important;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(20, 197, 140, .22) !important;
        text-transform: none !important;
        text-decoration: none !important;
        line-height: 1.15 !important;
        font-family: 'IBM Plex Sans', sans-serif !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .wcc-shop-sidebar .wcc-sidebar-form {
        display: none;
    }

    .wcc-shop-sidebar.is-open .wcc-sidebar-form {
        display: block;
    }

    .wcc-filter-card h4 { font-size: 15px; }
    .wcc-filter-check { font-size: 14px; }
    .wcc-filter-input,
    .wcc-filter-select { font-size: 14px; }
}

@media (max-width: 767px) {
    .wcc-title {
        font-size: 16px;
    }

    .wcc-prices .price {
        font-size: 15px;
    }

    .wcc-loop-btn {
        min-width: 78px;
        min-height: 36px;
        padding: 7px 12px;
    }

    .wcc-shop-main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==== My Account styling (reuses catalog/checkout design) ==== */

body.woocommerce-account .woocommerce-MyAccount-navigation {
    margin: 0 0 18px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #d8e5d8;
    background: #f8fcf9;
    color: #1f3b2f;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    border-color: #14c58c;
    background: linear-gradient(90deg, #14c58c 0%, #10b582 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(20, 197, 140, .24);
    transform: translateY(-1px);
}

body.woocommerce-account .woocommerce-MyAccount-content {
    border: 1px solid #d8e5d8;
    border-radius: 16px;
    background: #f8fcf9;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

body.woocommerce-account .woocommerce-MyAccount-content a.button,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button {
    border-radius: 10px;
    min-height: 40px;
    padding: 8px 16px;
    background: var(--wcc-button-bg);
    color: var(--wcc-button-text);
    border: 1px solid var(--wcc-button-bg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .18s ease, transform .18s ease;
}

body.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* My Account tables (orders, addresses) */
body.woocommerce-account table.shop_table,
body.woocommerce-account table.woocommerce-orders-table {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dbe7db;
    background: #ffffff;
}

body.woocommerce-account table.shop_table thead th,
body.woocommerce-account table.woocommerce-orders-table thead th {
    background: #ecfdf3;
    color: #166534;
    font-weight: 700;
    padding: 10px 12px;
}

body.woocommerce-account table.shop_table tbody td,
body.woocommerce-account table.woocommerce-orders-table tbody td {
    padding: 10px 12px;
    border-top: 1px solid #e5efe5;
}

body.woocommerce-account table.woocommerce-orders-table tbody tr:nth-child(odd) {
    background: #f9fdf9;
}

body.woocommerce-account table.woocommerce-orders-table tbody tr:hover {
    background: #edf9f3;
}

/* Status badges */
body.woocommerce-account .woocommerce-orders-table .order-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

body.woocommerce-account .woocommerce-orders-table .order-status.status-processing {
    background: #fef3c7;
    color: #92400e;
}

body.woocommerce-account .woocommerce-orders-table .order-status.status-completed {
    background: #dcfce7;
    color: #166534;
}

body.woocommerce-account .woocommerce-orders-table .order-status.status-on-hold {
    background: #e0f2fe;
    color: #075985;
}

body.woocommerce-account .woocommerce-orders-table .order-status.status-cancelled,
body.woocommerce-account .woocommerce-orders-table .order-status.status-refunded {
    background: #fee2e2;
    color: #991b1b;
}

/* "Нова" значка за най-горния ред */
body.woocommerce-account table.woocommerce-orders-table tbody tr:first-child .woocommerce-orders-table__cell-order-status .order-status::after {
    content: 'Нова';
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #22c55e;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
}

/* My Account order action buttons with tooltips */
body.woocommerce-account .woocommerce-orders-table .woocommerce-button,
body.woocommerce-account .woocommerce-orders-table .button {
    position: relative;
    font-size: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button.view::after,
body.woocommerce-account .woocommerce-orders-table .button.view::after {
    content: 'Преглед на поръчката';
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button:not(.view)::after,
body.woocommerce-account .woocommerce-orders-table .button:not(.view)::after {
    content: 'Повтаря същата поръчка';
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button::after,
body.woocommerce-account .woocommerce-orders-table .button::after {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, -6px);
    background: #111827;
    color: #f9fafb;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    z-index: 20;
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover::after,
body.woocommerce-account .woocommerce-orders-table .button:hover::after {
    opacity: 1;
    transform: translate(-50%, -10px);
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button::before,
body.woocommerce-account .woocommerce-orders-table .button::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button.view::before,
body.woocommerce-account .woocommerce-orders-table .button.view::before {
    content: "\f06e"; /* fa-eye */
}

body.woocommerce-account .woocommerce-orders-table .woocommerce-button:not(.view)::before,
body.woocommerce-account .woocommerce-orders-table .button:not(.view)::before {
    content: "\f01e"; /* fa-rotate-right */
}

/* My Account forms & inputs */
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
    border-radius: 10px;
    border: 1px solid #dbe7db;
    min-height: 40px;
    padding: 8px 10px;
    box-shadow: none;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="text"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    border-color: #14c58c;
    box-shadow: 0 0 0 2px rgba(20, 197, 140, .16);
    outline: none;
}

/* Login & register forms */
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid #d8e5d8;
    border-radius: 16px;
    background: #f8fcf9;
    padding: 18px 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.woocommerce form.login input[type="text"],
.woocommerce form.login input[type="email"],
.woocommerce form.login input[type="password"],
.woocommerce form.register input[type="text"],
.woocommerce form.register input[type="email"],
.woocommerce form.register input[type="password"] {
    border-radius: 10px;
    border: 1px solid #dbe7db;
    min-height: 40px;
    padding: 8px 10px;
}

.woocommerce form.login input:focus,
.woocommerce form.register input:focus {
    border-color: #14c58c;
    box-shadow: 0 0 0 2px rgba(20, 197, 140, .16);
    outline: none;
}

.woocommerce form.login .button,
.woocommerce form.register .button {
    border-radius: 10px;
    min-height: 40px;
    padding: 8px 16px;
    background: var(--wcc-button-bg);
    color: var(--wcc-button-text);
    border: 1px solid var(--wcc-button-bg);
    font-weight: 600;
}

.woocommerce form.login .button:hover,
.woocommerce form.register .button:hover {
    opacity: .9;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
    color: #047857;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #065f46;
}

/* Account summary card */
.wcc-account-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 0 0 14px;
}

.wcc-account-summary-item {
    border-radius: 12px;
    border: 1px solid #d8e5d8;
    background: #f8fcf9;
    padding: 10px 12px;
}

.wcc-account-summary-label {
    display: block;
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 3px;
}

.wcc-account-summary-value {
    font-size: 16px;
    font-weight: 700;
    color: #064e3b;
}

/* Checkout: make shipping methods appear as two buttons side by side */
body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods li {
    flex: 1 1 calc(50% - 5px);
    margin: 0;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods li label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #bbd2ea;
    background: #ffffff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods li input[type="radio"] {
    margin-right: 8px;
}


/* Checkout + Econt branding */
body.wcc-checkout-module.woocommerce-checkout,
body.woocommerce-cart {
    font-family: 'IBM Plex Sans', sans-serif;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-checkout,
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals,
body.wcc-checkout-module.woocommerce-checkout #order_review,
body.wcc-checkout-module.woocommerce-checkout #customer_details > div {
    border-radius: 16px;
}

body.wcc-checkout-module.woocommerce-checkout #customer_details > div,
body.wcc-checkout-module.woocommerce-checkout #order_review,
body.woocommerce-cart .cart_totals {
    background: #ffffff;
    border: 1px solid #d7e4f1;
    box-shadow: 0 8px 20px rgba(15, 41, 64, 0.06);
    padding: 16px;
}

body.wcc-checkout-module.woocommerce-checkout h3,
body.wcc-checkout-module.woocommerce-checkout h2,
body.woocommerce-cart h2 {
    color: #11314c;
    font-weight: 700;
}

body.wcc-checkout-module.woocommerce-checkout .form-row input.input-text,
body.wcc-checkout-module.woocommerce-checkout .form-row select,
body.wcc-checkout-module.woocommerce-checkout .form-row textarea,
body.woocommerce-cart .coupon .input-text {
    border-radius: 10px !important;
    border: 1px solid #bfd1e2 !important;
    min-height: 42px;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.wcc-checkout-module.woocommerce-checkout .form-row input.input-text:focus,
body.wcc-checkout-module.woocommerce-checkout .form-row select:focus,
body.wcc-checkout-module.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-cart .coupon .input-text:focus {
    border-color: #12b886 !important;
    box-shadow: 0 0 0 3px rgba(18, 184, 134, 0.16);
    outline: none;
}

body.wcc-checkout-module.woocommerce-checkout #place_order,
body.wcc-checkout-module.woocommerce-checkout button.button.alt,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart button.button,
body.wcc-checkout-module.woocommerce-checkout .button {
    background: var(--wcc-button-bg) !important;
    color: var(--wcc-button-text) !important;
    border: 1px solid var(--wcc-button-bg) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    min-height: 42px;
    transition: opacity .2s ease, transform .2s ease;
}

body.wcc-checkout-module.woocommerce-checkout #place_order:hover,
body.wcc-checkout-module.woocommerce-checkout button.button.alt:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart button.button:hover,
body.wcc-checkout-module.woocommerce-checkout .button:hover {
    opacity: .92;
    transform: translateY(-1px);
}

body.wcc-checkout-module.woocommerce-checkout table.shop_table th,
body.wcc-checkout-module.woocommerce-checkout table.shop_table td,
body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
    border-color: #e3ecf5 !important;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-info,
body.wcc-checkout-module.woocommerce-checkout .woocommerce-message,
body.wcc-checkout-module.woocommerce-checkout .woocommerce-error,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error {
    border-radius: 10px;
    border-left-width: 4px;
}

/* Econt zone */
body.wcc-checkout-module.woocommerce-checkout #delivery_with_econt_calculate_shipping,
body.wcc-checkout-module.woocommerce-checkout #place_iframe_here {
    position: static !important;
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #f7fbff 0%, #edf7ff 100%);
    border: 1px solid #d4e5f5;
    border-radius: 16px;
    padding: 10px;
    margin-top: 8px;
    box-shadow: 0 10px 24px rgba(17, 49, 76, 0.08);
}

body.wcc-checkout-module.woocommerce-checkout #delivery_with_econt_iframe {
    width: 100%;
    min-height: 470px;
    max-height: 620px;
    border: 1px solid #d8e7f4;
    border-radius: 12px;
    background: #ffffff;
}

body.wcc-checkout-module.woocommerce-checkout .econt-button,
body.wcc-checkout-module.woocommerce-checkout .econt-button-details {
    background: var(--wcc-button-bg) !important;
    color: var(--wcc-button-text) !important;
    border: 1px solid var(--wcc-button-bg) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    min-height: 42px;
    padding: 8px 16px !important;
}

body.wcc-checkout-module.woocommerce-checkout .econt-button-details {
    width: auto;
    margin: 8px 0 0;
}

body.wcc-checkout-module.woocommerce-checkout #econt_detailed_shipping {
    margin: 8px 0 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: #eafaf4;
    border: 1px solid #b9ecd9;
    color: #116b4b;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt {
    border: 1px solid #d8e7f4;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-title {
    margin: 0 0 8px;
    font-size: 18px;
    color: #10304a;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-grid label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-grid label span {
    font-size: 12px;
    font-weight: 600;
    color: #36536d;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-grid input {
    min-height: 38px;
    border-radius: 9px;
    border: 1px solid #bfd1e2;
    padding: 8px 10px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-type {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0;
    font-size: 14px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-econt-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-fast-error {
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-hidden {
    display: none !important;
}

/* Speedy: hide granular address subfields, we use single address line */
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_neighborhood_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_street_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_street_number_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_block_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_entrance_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_floor_field,
body.wcc-checkout-module.wcc-speedy-on.woocommerce-checkout #billing_apartment_field {
    display: none !important;
}

/* Do not hide native checkout fields */
body.wcc-custom-econt-ui #billing_country_field,
body.wcc-custom-econt-ui #shipping_country_field,
body.wcc-custom-econt-ui #billing_postcode_field,
body.wcc-custom-econt-ui #shipping_postcode_field,
body.wcc-custom-econt-ui #billing_state_field,
body.wcc-custom-econt-ui #shipping_state_field,
body.wcc-custom-econt-ui #billing_address_1_field,
body.wcc-custom-econt-ui #shipping_address_1_field,
body.wcc-custom-econt-ui #billing_address_2_field,
body.wcc-custom-econt-ui #shipping_address_2_field,
body.wcc-custom-econt-ui .wc-block-components-address-form__country,
body.wcc-custom-econt-ui .wc-block-components-address-form__postcode,
body.wcc-custom-econt-ui .wc-block-components-address-form__state,
body.wcc-custom-econt-ui .wc-block-components-address-form__address_1,
body.wcc-custom-econt-ui .wc-block-components-address-form__address_2 {
    display: none !important;
}

/* Custom Econt UI mode (no iframe) */
body.wcc-custom-econt-ui #place_iframe_here,
body.wcc-custom-econt-ui #delivery_with_econt_calculate_shipping,
body.wcc-custom-econt-ui #delivery_with_econt_iframe,
body.wcc-custom-econt-ui .wp-block-econt-delivery,
body.wcc-custom-econt-ui .econt-content-wrapper {
    display: none !important;
}

.wc-customs-econt-ui {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid #c9dbed;
    border-radius: 16px;
    background: linear-gradient(180deg, #f9fcff 0%, #f0f7ff 100%);
    box-shadow: 0 10px 24px rgba(12, 41, 74, 0.09);
}

.wc-customs-econt-ui,
.wc-customs-econt-ui * {
    font-family: 'IBM Plex Sans', sans-serif !important;
    box-sizing: border-box;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.wc-customs-econt-ui button,
.wc-customs-econt-ui input,
.wc-customs-econt-ui select,
.wc-customs-econt-ui textarea {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.wc-customs-econt-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wc-customs-econt-logo {
    width: 92px;
    height: auto;
    flex: 0 0 auto;
}

.wc-customs-econt-head h3 {
    margin: 0;
    font-size: 21px;
    color: #15395f;
}

.wc-customs-econt-head p {
    margin: 3px 0 0;
    color: #4f6b83;
    font-size: 14px;
}

.wc-customs-econt-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.wc-customs-type-btn {
    appearance: none;
    -webkit-appearance: none;
    all: unset;
    box-sizing: border-box;
    border: 1px solid #bbd2ea !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

.wc-customs-type-btn img {
    width: 64px !important;
    height: auto !important;
}

.wc-customs-type-btn span {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a3d60 !important;
}

.wc-customs-type-btn.is-active {
    border-color: #23408e;
    box-shadow: 0 4px 14px rgba(35, 64, 142, .16);
    transform: translateY(-1px);
}

.wc-customs-econt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.wc-customs-econt-grid-compact {
    grid-template-columns: 1fr;
}

.wc-customs-econt-grid label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wc-customs-econt-grid label span {
    font-size: 12px;
    color: #38566f;
    font-weight: 600;
}

.wc-customs-econt-grid input,
.wc-customs-econt-grid select {
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #bfd1e2;
    padding: 8px 10px;
    background: #ffffff;
    font-size: 15px !important;
    line-height: 1.3 !important;
    box-shadow: none !important;
    width: 100% !important;
    border: 1px solid #bfd1e2 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #1a2e42 !important;
}

.wc-customs-econt-msg {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    min-height: 20px;
}

.wc-customs-econt-msg.ok {
    color: #0f7a52;
}

.wc-customs-econt-msg.err {
    color: #b91c1c;
}

.wc-customs-econt-msg.pending {
    color: #35557a;
}

.wc-customs-hidden {
    display: none !important;
}

.wcc-econt-method-label input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.wcc-econt-rate-row {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 680px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wcc-econt-method-label .wcc-econt-method-title,
.wc-block-components-radio-control__option .wcc-econt-method-title,
.wc-block-components-shipping-rates-control__package .wcc-econt-method-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0 !important;
    border-radius: 12px;
    padding: 0 !important;
    background: transparent !important;
    color: #173f67;
    font-weight: 700;
}

.wcc-econt-method-logo {
    width: 62px;
    height: auto;
    display: inline-block;
}

.wcc-econt-rate-row input[type="radio"] {
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.wc-block-components-radio-control__option.wcc-econt-rate-row .wc-block-components-radio-control__option-layout,
.wc-block-components-shipping-rates-control__package.wcc-econt-rate-row .wc-block-components-radio-control__option-layout {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px;
    width: 100%;
    padding: 12px 14px !important;
    border: 1px solid #b9cfe6 !important;
    background: #f7fbff !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    width: 100% !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.wcc-econt-rate-row .wc-block-components-radio-control__option-layout {
    outline: none !important;
}

.wc-block-components-radio-control__option.wcc-econt-rate-row .wc-block-components-radio-control__secondary-label,
.wc-block-components-shipping-rates-control__package.wcc-econt-rate-row .wc-block-components-radio-control__secondary-label,
.wc-block-components-shipping-rates-control__package.wcc-econt-rate-row .wc-block-components-shipping-rates-control__price,
.wcc-econt-rate-row .woocommerce-Price-amount {
    display: none !important;
}

.wcc-econt-rate-row .wc-block-components-radio-control__label {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.wcc-econt-rate-row .wc-block-components-radio-control__option-checked,
.wcc-econt-rate-row .wc-block-components-radio-control__input-container,
.wcc-econt-rate-row .wc-block-components-radio-control__input {
    display: inline-flex !important;
}

.wcc-econt-rate-row .wc-block-components-radio-control__option-layout:hover {
    border-color: #8bb2d9 !important;
    box-shadow: 0 8px 18px rgba(18, 49, 78, 0.08) !important;
    transform: translateY(-1px);
}

.wcc-econt-rate-row.wcc-econt-active .wc-block-components-radio-control__option-layout {
    border-color: #2f7dd1 !important;
    background: #edf5ff !important;
    box-shadow: 0 10px 22px rgba(47, 125, 209, 0.18) !important;
}

.wcc-econt-rate-row .wc-block-components-radio-control__option-layout::before,
.wcc-econt-rate-row .wc-block-components-radio-control__option-layout::after {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-radio-control__option-layout {
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    box-shadow: none !important;
}

/* Hide extra product description/meta in checkout summary */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item .wc-block-components-product-metadata,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item .wc-block-components-product-details__description,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item .wc-block-components-product-details__custom-fields {
    display: none !important;
}

.wcc-dual-currency,
.wcc-shipping-dual {
    display: inline-block;
    margin-left: 4px;
    color: #5f7386;
    font-size: .88em;
    font-weight: 600;
    white-space: nowrap;
}

.wcc-checkout-item-controls {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.wcc-native-remove-btn {
    border: 1px solid #bcd0e4 !important;
    background: #ffffff !important;
    color: #15395f !important;
    border-radius: 999px !important;
    min-height: 30px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-transform: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.wcc-native-remove-inline {
    margin-top: 6px;
}

.wcc-native-remove-x {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    border-radius: 999px !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wcc-native-remove-floating {
    position: absolute !important;
    right: 2px !important;
    top: 6px !important;
    z-index: 4;
}

.wc-block-components-order-summary-item:has(.wc-block-components-skeleton) .wcc-native-remove-floating {
    display: none !important;
}

/* Hide duplicate right-side product price in checkout summary */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__total-price .wc-block-components-formatted-money-amount,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__total-price .woocommerce-Price-amount {
    display: none !important;
}

.wcc-checkout-items-panel {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none !important;
}

body.wcc-custom-items-mounted .wc-block-components-order-summary .wc-block-components-order-summary-item,
body.wcc-custom-items-mounted .woocommerce-checkout-review-order-table .cart_item {
    display: none !important;
}

.wcc-checkout-items-title {
    display: none;
}

.wcc-checkout-item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #e3ecf5;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.wcc-checkout-item-row:first-child {
    border-top: 1px solid #e3ecf5;
}

.wcc-checkout-item-media {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d9e6f3;
    background: #ffffff;
}

.wcc-checkout-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcc-checkout-item-content {
    min-width: 0;
    flex: 1 1 auto;
}

.wcc-checkout-item-name {
    color: #1b334d;
    font-size: 14px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.35;
}

.wcc-checkout-item-qty {
    margin-top: 4px;
    color: #5a7188;
    font-size: 12px;
    font-weight: 600;
}

.wcc-checkout-item-controls-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wcc-checkout-empty {
    margin: 0;
    color: #5c748a;
    font-size: 13px;
}

.wcc-checkout-item-unit-price .woocommerce-Price-amount {
    color: #102f4b;
    font-size: 14px;
    font-weight: 700;
}

.wcc-checkout-remove-x {
    border: 1px solid #bcd0e4 !important;
    background: #ffffff !important;
    color: #15395f !important;
    border-radius: 999px !important;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    cursor: pointer;
}

/* Unified light checkout design */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-checkout-step,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary,
body.wcc-checkout-module.woocommerce-checkout #customer_details > div,
body.wcc-checkout-module.woocommerce-checkout #order_review,
body.wcc-checkout-module.woocommerce-checkout .woocommerce-checkout-review-order {
    border: 1px solid #d8e4f0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(17, 49, 76, 0.05) !important;
    padding: 18px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-checkout-step__content,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-checkout-step__container,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__content,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-wrapper,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Payment methods as branded cards */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-layout {
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    box-shadow: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-layout {
    min-height: 74px !important;
    padding: 14px 16px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-layout:hover {
    border-color: #9dbbda !important;
    box-shadow: 0 8px 18px rgba(17, 49, 76, 0.08) !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__input-container,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-checked,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__input {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__label {
    color: #173f67 !important;
    font-weight: 700 !important;
}

/* Right column visual cleanup */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__content .wc-block-components-order-summary-list {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 0 !important;
    margin: 0 !important;
    position: relative;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item + .wc-block-components-order-summary-item {
    border-top: 1px solid #e5edf6 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__description {
    padding-right: 42px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
    border: 1px solid #cad8e8 !important;
    background: #ffffff !important;
    color: #1f3f60 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-footer-item {
    border-top: 1px solid #e5edf6 !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-text-input input,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-text-input select,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-text-input textarea,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-combobox-control input,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-combobox-control select {
    border: 1px solid #bfd1e2 !important;
    border-radius: 10px !important;
    min-height: 42px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-text-input input:focus,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-text-input select:focus,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-combobox-control input:focus {
    border-color: #12b886 !important;
    box-shadow: 0 0 0 3px rgba(18, 184, 134, 0.16) !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.wcc-checkout-module.woocommerce-checkout #place_order {
    border-radius: 12px !important;
    min-height: 46px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
}

body.wcc-custom-econt-ui .wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__first_name {
    order: 1;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__last_name {
    order: 2;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__phone {
    order: 3;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__email {
    order: 4;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__city {
    order: 5;
    grid-column: 1 / -1;
}

body.wcc-custom-econt-ui .wc-block-components-address-form__address_2-toggle,
body.wcc-custom-econt-ui .wc-block-components-address-form__address_2 {
    display: none !important;
}

body.wcc-custom-econt-ui .wcc-contact-step-collapsed {
    display: block !important;
}

body.wcc-single-customer-ui .wc-block-components-checkout-step--contact-information,
body.wcc-single-customer-ui .wc-block-checkout__contact-fields {
    display: none !important;
}

body.wcc-single-customer-ui .wc-block-components-checkout-step--shipping-address .wc-block-components-address-form {
    display: none !important;
}

body.wcc-single-customer-ui .wc-block-components-checkout-step--shipping-address > h2,
body.wcc-single-customer-ui .wc-block-components-checkout-step--shipping-address > .wc-block-components-title,
body.wcc-single-customer-ui .wc-block-components-checkout-step--shipping-address .wc-block-components-address-form,
body.wcc-single-customer-ui .wc-block-checkout__shipping-address .wc-block-components-address-form,
body.wcc-single-customer-ui .wc-block-components-checkout-step--shipping-address .wc-block-components-address-card,
body.wcc-single-customer-ui .wc-block-checkout__shipping-address .wc-block-components-address-card {
    display: none !important;
}

body.wcc-single-customer-ui .wcc-hide-native-shipping {
    display: none !important;
}

.wcc-single-customer-section {
    margin: 0 0 14px;
    padding: 16px;
    border: 1px solid #d8e4f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 49, 76, 0.05);
}

.wcc-single-customer-section h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #15395f;
}

.wcc-customer-grid,
.wcc-invoice-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.wcc-customer-grid label,
.wcc-invoice-fields label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wcc-customer-grid label span,
.wcc-invoice-fields label span {
    font-size: 13px;
    font-weight: 600;
    color: #395874;
}

.wcc-customer-grid input,
.wcc-invoice-fields input {
    min-height: 44px;
    border: 1px solid #bfd1e2 !important;
    border-radius: 10px !important;
    padding: 8px 10px;
    background: #ffffff !important;
}

.wcc-row-wide {
    grid-column: 1 / -1;
}

.wcc-invoice-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 10px;
    font-weight: 600;
    color: #183e62;
}

.wcc-invoice-toggle input,
.wcc-invoice-vat input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.wcc-invoice-vat {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    flex-direction: row !important;
    grid-column: 1 / -1;
    margin-top: 2px;
}

.wcc-invoice-vat span {
    display: inline !important;
}

/* Strong checkout style isolation from theme/Elementor in custom Econt mode */
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row select,
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row textarea,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-text-input input,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-text-input select,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-combobox-control input {
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    min-height: 46px !important;
    background: #ffffff !important;
    color: #1a2e42 !important;
    box-shadow: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row select:focus,
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .form-row textarea:focus,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-text-input input:focus,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-text-input select:focus,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-combobox-control input:focus {
    border-color: #12b886 !important;
    box-shadow: 0 0 0 3px rgba(18, 184, 134, 0.16) !important;
    outline: none !important;
}

body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce form .button,
body.wcc-custom-econt-ui.woocommerce-checkout #place_order,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #1dbf8a 0%, #12a97a 100%) !important;
    color: #ffffff !important;
    border: 1px solid #12a97a !important;
    border-radius: 12px !important;
    min-height: 48px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    box-shadow: 0 10px 18px rgba(18, 169, 122, 0.24) !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

/* Override edit/coupon/checkbox controls from Elementor/global styles */
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-button,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-address-card__edit,
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-panel__button {
    border: 1px solid #bfd1e2 !important;
    background: #ffffff !important;
    color: #14385a !important;
    border-radius: 10px !important;
    min-height: 40px !important;
    box-shadow: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

body.wcc-custom-econt-ui.woocommerce-checkout input[type="checkbox"],
body.wcc-custom-econt-ui.woocommerce-checkout .wc-block-components-checkbox__input {
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #9db7d0 !important;
    border-radius: 4px !important;
    background: #fff !important;
    box-shadow: none !important;
}

/* Classic checkout order and sizing */
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.wcc-custom-econt-ui.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
}

body.wcc-custom-econt-ui.woocommerce-checkout #billing_first_name_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_last_name_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_phone_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_email_field {
    width: calc(50% - 8px) !important;
}

body.wcc-custom-econt-ui.woocommerce-checkout #billing_city_field {
    width: 100% !important;
}

/* Minimal checkout fields for BG shipping */
body.wcc-custom-econt-ui.woocommerce-checkout #billing_country_field,
body.wcc-custom-econt-ui.woocommerce-checkout #shipping_country_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_state_field,
body.wcc-custom-econt-ui.woocommerce-checkout #shipping_state_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_postcode_field,
body.wcc-custom-econt-ui.woocommerce-checkout #shipping_postcode_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_address_1_field,
body.wcc-custom-econt-ui.woocommerce-checkout #shipping_address_1_field,
body.wcc-custom-econt-ui.woocommerce-checkout #billing_address_2_field,
body.wcc-custom-econt-ui.woocommerce-checkout #shipping_address_2_field {
    display: none !important;
}

/* FINAL CHECKOUT LAYOUT TUNING */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__content,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__inner {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item {
    border-top: 1px solid #e4edf6 !important;
    padding: 14px 0 !important;
    margin: 0 !important;
    position: relative !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__description {
    padding-right: 44px !important;
}

.wcc-native-remove-floating {
    position: absolute !important;
    right: 2px !important;
    top: 14px !important;
    z-index: 10 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-wrapper,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-footer-item {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item {
    border-top: 1px solid #e4edf6 !important;
    padding: 12px 0 !important;
}

/* Payment methods as 2-column buttons */
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control-group {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option {
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-layout {
    min-height: 72px !important;
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    box-shadow: none !important;
    padding: 14px 16px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option.wcc-payment-active .wc-block-components-radio-control__option-layout {
    border-color: #2f7dd1 !important;
    background: #edf5ff !important;
    box-shadow: 0 10px 22px rgba(47, 125, 209, 0.18) !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__input-container,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__option-checked,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control__input {
    display: none !important;
}

@media (max-width: 767px) {
    body.wcc-checkout-module.woocommerce-checkout .wc-block-components-payment-methods__content .wc-block-components-radio-control-group {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    body.wcc-checkout-module.woocommerce-checkout #customer_details > div,
    body.wcc-checkout-module.woocommerce-checkout #order_review,
    body.woocommerce-cart .cart_totals {
        padding: 12px;
        border-radius: 12px;
    }

    body.wcc-checkout-module.woocommerce-checkout #delivery_with_econt_iframe {
        min-height: 420px;
    }

    .wc-customs-econt-head {
        align-items: flex-start;
    }

    .wc-customs-econt-logo {
        width: 78px;
    }

    .wc-customs-econt-type-buttons {
        grid-template-columns: 1fr;
    }

    .wc-customs-econt-grid {
        grid-template-columns: 1fr;
    }

    .wcc-customer-grid,
    .wcc-invoice-fields {
        grid-template-columns: 1fr;
    }
}

/* ---- Hard overrides for checkout blocks final UI ---- */
body.wcc-single-customer-ui .wcc-hide-native-shipping {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__option {
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__option-layout {
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    box-shadow: none !important;
    min-height: 72px !important;
    padding: 14px 16px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__input-container,
body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__option-checked,
body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__input {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid .wc-block-components-radio-control__option.wcc-payment-active .wc-block-components-radio-control__option-layout {
    border-color: #2f7dd1 !important;
    background: #edf5ff !important;
    box-shadow: 0 10px 22px rgba(47, 125, 209, 0.18) !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__content,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary__inner {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item {
    position: relative !important;
    border-top: 1px solid #e4edf6 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 0 !important;
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-order-summary-item__description {
    padding-right: 42px !important;
}

body.wcc-checkout-module.woocommerce-checkout .wcc-native-remove-floating {
    position: absolute !important;
    top: 14px !important;
    right: 2px !important;
    z-index: 30 !important;
    display: inline-flex !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-wrapper,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item,
body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-footer-item {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .wc-block-components-totals-item {
    border-top: 1px solid #e4edf6 !important;
    padding: 12px 0 !important;
}

@media (max-width: 767px) {
    body.wcc-checkout-module.woocommerce-checkout .wcc-payment-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Classic Checkout Full Layout ===== */
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 18px;
    align-items: start;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout {
    display: block !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-left,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-right {
    display: grid;
    gap: 14px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details .col-1,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details .col-2 {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #order_review,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #payment {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #order_review .payment_methods,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #order_review #shipping_method {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-box,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-order-box,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-terms,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-coupon,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-submit {
    border: 1px solid #d8e4f0 !important;
    border-radius: var(--wcc-checkout-radius) !important;
    background: var(--wcc-checkout-card-bg) !important;
    box-shadow: 0 8px 22px rgba(17, 49, 76, 0.05) !important;
    padding: 14px !important;
    color: var(--wcc-checkout-text) !important;
    font-size: var(--wcc-checkout-font-size) !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-box h3,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box h3,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-order-box h3,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes h4 {
    margin: 0 0 10px;
    color: var(--wcc-checkout-heading);
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li {
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
    background: #f8fbff !important;
    margin: 0 !important;
    list-style: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li::before {
    display: none !important;
    content: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li .payment_box {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table {
    border: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    table-layout: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table colgroup {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table th,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table td {
    border: 0 !important;
    padding: 10px 0 !important;
    background: transparent !important;
    float: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table .product-name {
    width: 100% !important;
    padding-right: 46px !important;
    position: relative !important;
    vertical-align: middle !important;
    overflow: visible !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.cart_item {
    display: block !important;
    border-bottom: 1px solid #e5edf6 !important;
    padding: 10px 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table .wcc-classic-items-list-row td {
    padding: 0 0 10px 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-items-list {
    width: 100%;
    display: grid;
    gap: 10px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-item {
    width: 100%;
    border: 1px solid #d7e4f1;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-main {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #d8e4f0;
    background: #fff;
    flex: 0 0 auto;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-meta {
    min-width: 0;
    display: grid;
    gap: 6px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-name {
    font-weight: 700;
    line-height: 1.3;
    color: #1d344d;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-price {
    font-weight: 700;
    color: #1d344d;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-classic-list-remove {
    position: static !important;
    flex: 0 0 auto;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.cart_item td.product-name {
    display: block !important;
    width: 100% !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.cart_item td.product-total {
    display: none !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table .product-total {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tfoot th,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tfoot td,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.shipping th,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.shipping td,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.order-total th,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.order-total td {
    width: auto !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    border: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tfoot td,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.shipping td,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tr.order-total td {
    text-align: right !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table tfoot tr {
    border-top: 1px solid #e5edf6 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #d8e4f0;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-line {
    display: block;
    min-height: 56px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-line-main {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-line-meta {
    display: grid;
    gap: 6px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-line-name {
    font-weight: 700;
    line-height: 1.3;
    color: #1d344d;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-line-price {
    font-weight: 700;
    color: #1d344d;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .shop_table thead {
    display: none;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .product-name .variation,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .product-name .wc-item-meta,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .product-name .amount,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .product-name .woocommerce-Price-amount {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-remove-x {
    position: absolute !important;
    top: 8px !important;
    right: 0 !important;
    z-index: 5;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-native-remove-btn.wcc-classic-remove-x {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1px solid #a9c3de !important;
    background: #fff !important;
    color: #163c65 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-native-remove-btn.wcc-classic-remove-x:hover {
    background: #f1f7ff !important;
    border-color: #2f7dd1 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-checkout-item-controls {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-coupon label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #173f67;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-coupon-row input {
    min-height: 42px;
    border: 1px solid #bfd1e2 !important;
    border-radius: 10px !important;
    padding: 0 10px;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-coupon-row button {
    min-height: 42px;
    border: 1px solid #12a97a !important;
    background: #12b886 !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 0 14px;
    font-weight: 700;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .woocommerce-form-coupon-toggle {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-info,
body.wcc-checkout-module.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes > summary {
    cursor: pointer;
    font-weight: 700;
    color: #15395f;
    list-style: none;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes > summary::-webkit-details-marker {
    display: none;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes > summary::after {
    content: '+';
    float: right;
    font-size: 20px;
    line-height: 1;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes[open] > summary::after {
    content: '-';
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-notes-content {
    margin-top: 10px;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods .wcc-econt-method-label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

body.wcc-checkout-module.woocommerce-checkout .woocommerce-shipping-methods .wcc-econt-method-label .wcc-econt-rate-price {
    margin-left: auto;
    font-weight: 700;
    color: #15395f;
    white-space: nowrap;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method > li,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods > li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods input[type="radio"],
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods label,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 62px !important;
    border: 1px solid #bfd1e2 !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    color: #15395f !important;
    font-weight: 700 !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    transition: all .18s ease;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods label:hover,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method label:hover {
    border-color: #2f7dd1 !important;
    background: #edf5ff !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box .woocommerce-shipping-methods input[type="radio"]:checked + label,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-delivery-box #shipping_method input[type="radio"]:checked + label {
    border-color: #2f7dd1 !important;
    background: #eaf3ff !important;
    box-shadow: 0 8px 22px rgba(47, 125, 209, 0.14) !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-shipping-methods .wcc-econt-method-title {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-shipping-methods .wcc-econt-rate-price {
    margin-left: auto !important;
    font-weight: 700 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-products .wcc-shipping-price-only {
    display: inline-block;
    font-weight: 700;
    color: #1d344d;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li {
    cursor: pointer;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li input[type="radio"]:checked + label {
    color: #163c65 !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li.wcc-payment-active,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods > li:has(input[type="radio"]:checked) {
    border-color: #2f7dd1 !important;
    background: #eaf3ff !important;
    box-shadow: 0 8px 18px rgba(47, 125, 209, 0.14) !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-right {
    position: sticky;
    top: 18px;
}

body.wcc-checkout-module.woocommerce-checkout:not(.wcc-sticky-summary-on) form.checkout.woocommerce-checkout .wcc-classic-right {
    position: static;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-submit .button,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-submit #place_order {
    width: 100% !important;
}

/* Final hard override: hide native classic product rows when custom full-width list is active. */
body.wcc-checkout-module.woocommerce-checkout.wcc-custom-items-mounted form.checkout.woocommerce-checkout .wcc-classic-products .woocommerce-checkout-review-order-table tr.cart_item {
    display: none !important;
}

body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading,
body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .checkout_coupon {
    display: none !important;
}

@media (max-width: 980px) {
    body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-grid {
        grid-template-columns: 1fr;
    }
    body.wcc-checkout-module.woocommerce-checkout form.checkout.woocommerce-checkout .wcc-classic-payment-methods ul.payment_methods {
        grid-template-columns: 1fr;
    }
}
