/**
 * LushaStoreTheme — WooCommerce Styles
 * Extracted from mockup-01-classic.html
 *
 * @package LushaStoreTheme
 */

/* === CATALOG CONTAINER (wider than default .container for sidebar room) === */
.catalog-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === CATALOG LAYOUT === */
.catalog-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

/* === FILTER SIDEBAR === */
.filter-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 6px;
    cursor: pointer;
}

.filter-group input[type=checkbox] {
    accent-color: var(--orange);
}

.price-range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-align: center;
}

/* Filter tree */
.filter-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-tree li {
    padding: 0;
}

.filter-tree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tree-item:hover {
    color: var(--orange);
}

.filter-tree-item i {
    font-size: 10px;
    color: #999;
    transition: transform .2s;
}

.filter-tree-sub {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0;
    display: none;
}

.filter-tree li.open > .filter-tree-sub {
    display: block;
}

.filter-tree li.open > .filter-tree-item i {
    transform: rotate(90deg);
    color: var(--orange);
}

/* Filter range slider */
.filter-range-slider {
    position: relative;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin: 12px 0 8px;
}

.filter-range-fill {
    position: absolute;
    height: 100%;
    background: var(--orange);
    border-radius: 3px;
    left: 10%;
    right: 25%;
}

.filter-range-thumb {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Filter search */
.filter-search {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 8px;
}

.filter-search:focus {
    border-color: var(--orange);
    outline: none;
}

/* === TOOLBAR === */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.toolbar select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.toolbar-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Active filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fff8f0;
    border: 1px solid var(--orange);
    border-radius: 20px;
    font-size: 11px;
    color: var(--orange);
    cursor: pointer;
}

.active-filter-tag:hover {
    background: var(--orange);
    color: #fff;
}

.active-filter-tag i {
    font-size: 9px;
}

/* Sort buttons */
.sort-btns {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.sort-btns button {
    background: #fff;
    border: 1px solid var(--border);
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.sort-btns button:first-child {
    border-radius: 6px 0 0 6px;
}

.sort-btns button:last-child {
    border-radius: 0 6px 6px 0;
}

.sort-btns button.active,
.sort-btns button:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* View buttons */
.view-btns {
    display: flex;
    gap: 4px;
}

.view-btns button {
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.view-btns button:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.view-btns button.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* Per-page buttons */
.perpage-btns {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.perpage-btns button {
    background: #fff;
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.perpage-btns button:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.perpage-btns button.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* === LOAD MORE === */
.load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 20px 0;
}

.load-more-info {
    font-size: 13px;
    color: #888;
}

.load-more-wrap .btn {
    min-width: 220px;
    justify-content: center;
}

.load-more-wrap .btn.loading {
    opacity: .7;
    pointer-events: none;
}

/* === AJAX CATALOG SPINNER === */
#catalogAjaxWrap {
    position: relative;
    min-height: 200px;
}

.catalog-spinner {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 32px;
    color: var(--orange);
}

/* === LIST VIEW === */
.products-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 12px;
}

.products-grid.list-view .card {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto;
}

.products-grid.list-view .card-img {
    height: 100%;
    min-height: 160px;
    border-radius: var(--radius) 0 0 var(--radius);
}

.products-grid.list-view .card-badges {
    top: 8px;
    left: 8px;
}

.products-grid.list-view .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
}

.products-grid.list-view .card-name {
    font-size: 15px;
    -webkit-line-clamp: 2;
}

.products-grid.list-view .card-actions {
    margin-top: auto;
}

/* === WC PAGINATION (legacy, keep for fallback) === */
.woocommerce-pagination {
    margin-top: 24px;
    text-align: center;
}

.woocommerce-pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination ul li {
    display: inline-block;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    transition: var(--transition);
    color: var(--dark);
    text-decoration: none;
}

.woocommerce-pagination ul li a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.woocommerce-pagination ul li span.current {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* === CART TABLE === */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--border);
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.cart-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
    flex-shrink: 0;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 500;
}

.cart-item-art {
    font-size: 11px;
    color: #999;
}

.cart-summary {
    max-width: 380px;
    margin-left: auto;
    margin-top: 24px;
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 12px;
}

.promo-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.promo-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* === ENHANCED CART === */
.cart-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.cart-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.cart-card-img {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 28px;
    flex-shrink: 0;
}

.cart-card-body {
    flex: 1;
    min-width: 0;
}

.cart-card-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    cursor: pointer;
}

.cart-card-name:hover {
    color: var(--orange);
}

.cart-card-art {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
}

.cart-card-price {
    font-size: 16px;
    font-weight: 700;
}

.cart-card-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-card-total {
    font-size: 16px;
    font-weight: 700;
    min-width: 90px;
    text-align: right;
}

.cart-delete-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-delete-btn:hover {
    background: #fde8ec;
    color: var(--red);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

.cart-summary-enhanced {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 80px;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

.cart-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.free-delivery-bar {
    background: var(--light);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e8f5e9;
}

.free-delivery-bar .bar-text {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-delivery-bar .bar-text i {
    color: var(--success);
}

.free-delivery-bar .bar-track {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.free-delivery-bar .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--success));
    border-radius: 4px;
    transition: width .5s ease;
}

.cart-also-buy {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.cart-also-buy h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-also-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* === CHECKOUT === */
.checkout-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.checkout-step {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.checkout-step i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.checkout-step.active {
    background: #fff8f0;
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.checkout-step.done {
    background: #f0fdf4;
    color: var(--success);
    border-bottom-color: var(--success);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkout sections */
.checkout-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.checkout-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section h3 i {
    color: var(--orange);
    font-size: 18px;
}

/* Order review inside delivery section */
.checkout-section #order_review {
    margin-top: 16px;
}

.checkout-section #order_review .shop_table {
    border: none;
    margin: 0;
}

/* Hide the product table from inline order_review (we show it in sidebar) */
.checkout-section #order_review .shop_table thead,
.checkout-section #order_review .shop_table .cart_item,
.checkout-section #order_review .shop_table .order-total,
.checkout-section #order_review .shop_table .cart-subtotal,
.checkout-section #order_review .shop_table .tax-rate,
.checkout-section #order_review .shop_table tfoot tr:not(.woocommerce-shipping-totals) {
    display: none;
}

/* Hide WC standard payment/terms/submit — we use custom sections */
#order_review #payment,
#order_review .woocommerce-checkout-payment,
#order_review .woocommerce-terms-and-conditions-wrapper,
#order_review .place-order,
#order_review > #place_order,
#order_review .woocommerce-privacy-policy-text,
.checkout-fields > .woocommerce-checkout-payment {
    display: none !important;
}


.checkout-section #order_review .shop_table .woocommerce-shipping-totals th,
.checkout-section #order_review .shop_table .woocommerce-shipping-totals td {
    padding: 8px 0;
    border: none;
    vertical-align: top;
}

/* Billing two-column layout */
.billing-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 16px;
}

.billing-two-col > .checkout-section {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.billing-two-col > .checkout-section .woocommerce-billing-fields {
    flex: 1;
}

.billing-address-fields {
    grid-template-columns: 1fr 1fr !important;
}

@media (max-width: 900px) {
    .billing-two-col {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce billing/shipping fields override */
.woocommerce-checkout .form-row {
    margin-bottom: 0;
    padding: 0;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #555;
}

.woocommerce-checkout .form-row label .required {
    color: var(--red);
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    transition: var(--transition);
    background: #fff;
    color: var(--dark);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(241,126,0,.1);
}

.woocommerce-checkout .form-row input.input-text::placeholder {
    color: #bbb;
}

/* Select2 override for checkout */
.woocommerce-checkout .select2-container .select2-selection--single {
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 14px;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
    padding: 0;
    color: var(--dark);
}

.woocommerce-checkout .select2-container--focus .select2-selection--single {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241,126,0,.1);
}

/* Form group */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(241,126,0,.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Delivery & payment options */
.delivery-options,
.payment-options {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.delivery-option,
.payment-option {
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    background: #fff;
}

.delivery-option:hover,
.payment-option:hover {
    border-color: var(--orange);
    box-shadow: 0 2px 8px rgba(241,126,0,.08);
}

.delivery-option.selected,
.payment-option.selected {
    border-color: var(--orange);
    background: #fff8f0;
}

.delivery-option i,
.payment-option i {
    font-size: 22px;
    color: var(--orange);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

/* Order summary (right sidebar) */
.order-summary {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    position: sticky;
    top: 80px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.order-summary h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* WC Payment method box override */
.woocommerce-checkout-payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.woocommerce-checkout-payment .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-checkout-payment .payment_methods li {
    margin-bottom: 10px;
}

.woocommerce-checkout-payment .payment_methods li label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    font-weight: 500;
}

.woocommerce-checkout-payment .payment_methods li label:hover {
    border-color: var(--orange);
}

.woocommerce-checkout-payment .payment_methods li input:checked + label,
.woocommerce-checkout-payment .payment_methods li.active label {
    border-color: var(--orange);
    background: #fff8f0;
}

.woocommerce-checkout-payment .payment_box {
    padding: 12px 16px;
    background: #fafafa;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 13px;
    color: #666;
    margin-top: -2px;
    border: 1px solid var(--border);
    border-top: none;
}

/* Place order button */
#place_order,
.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Terms and conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
}

.woocommerce-terms-and-conditions-wrapper label {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    cursor: pointer;
}

.woocommerce-terms-and-conditions-wrapper label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--orange);
    cursor: pointer;
}

.woocommerce-terms-and-conditions-wrapper a {
    color: var(--orange);
    text-decoration: underline;
}

/* WC default checkout form field wrappers */
.woocommerce-checkout p.form-row {
    margin: 0 0 12px;
    display: block;
}

/* In grid wrapper, let grid handle sizing */
.woocommerce-billing-fields__field-wrapper p.form-row-first,
.woocommerce-billing-fields__field-wrapper p.form-row-last,
.woocommerce-shipping-fields__field-wrapper p.form-row-first,
.woocommerce-shipping-fields__field-wrapper p.form-row-last {
    width: 100%;
    margin-right: 0;
}

/* Privacy text */
.woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.5;
}

.woocommerce-privacy-policy-text a {
    color: var(--orange);
}

/* === ACCOUNT === */
.account-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.account-layout > aside {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    box-sizing: border-box;
}

.woocommerce-account .account-layout > .woocommerce-MyAccount-content,
.account-layout > .woocommerce-MyAccount-content {
    width: auto !important;
    float: none !important;
    min-width: 0;
}

.woocommerce-account .account-layout .woocommerce-MyAccount-navigation,
.account-menu {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100% !important;
    box-sizing: border-box;
    float: none !important;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-menu a > i {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .account-layout {
        grid-template-columns: 1fr;
    }
    .account-layout > aside {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

.account-menu a:last-child {
    border-bottom: none;
}

.account-menu a:hover,
.account-menu a.active {
    background: var(--light);
    color: var(--orange);
}

.account-menu i {
    width: 18px;
    text-align: center;
    color: #999;
}

/* === Applied coupon rows (cart & checkout sidebars) === */
.lusha-coupon-row,
.sidebar-coupon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.lusha-coupon-row > span,
.sidebar-coupon-row > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* The discount amount already lives in the "Скидка" row below, so hide
   WooCommerce's duplicate "-10,00 ₽" that sits before the remove button. */
.lusha-coupon-row .woocommerce-Price-amount,
.sidebar-coupon-row .woocommerce-Price-amount {
    display: none;
}

/* Pretty "Убрать" button replacing the default bracketed link */
.woocommerce-remove-coupon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--orange);
    background: #fff8f0;
    border: 1px solid #f5d4a8;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    cursor: pointer;
    white-space: nowrap;
}
.woocommerce-remove-coupon::before {
    content: "\f00d"; /* fa-xmark */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
}
.woocommerce-remove-coupon:hover,
.woocommerce-remove-coupon:focus {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    text-decoration: none;
}

/* === LUSHA ACCOUNT INLINE NAV (SPA-like) === */
.account-layout {
    position: relative;
}

.account-layout > .woocommerce-MyAccount-content {
    transition: opacity .15s ease;
    will-change: opacity;
}

.account-layout.lusha-spa-loading > .woocommerce-MyAccount-content {
    opacity: 0.45;
    pointer-events: none;
}

.account-layout.lusha-spa-loading::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(241, 126, 0, 0.25);
    border-top-color: var(--orange);
    animation: lushaSpaSpin 0.7s linear infinite;
    z-index: 5;
}

@keyframes lushaSpaSpin {
    to { transform: rotate(360deg); }
}

/* === LUSHA ACCOUNT CARDS (edit-account, my-address) === */
.lusha-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.lusha-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: default;
    font: inherit;
    color: inherit;
}

.lusha-card-header > i {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.lusha-card-header h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: var(--dark);
}

button.lusha-card-toggle {
    cursor: pointer;
    transition: background .15s ease;
}
button.lusha-card-toggle:hover {
    background: #f3f4f6;
}

.lusha-card-chevron {
    color: #999 !important;
    font-size: 12px !important;
    transition: transform .25s ease;
}

.lusha-card[data-collapsed="false"] .lusha-card-chevron {
    transform: rotate(180deg);
}

.lusha-card-body {
    padding: 20px;
}

.lusha-card-body--collapsible {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.lusha-card[data-collapsed="false"] .lusha-card-body--collapsible {
    max-height: 800px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Form grid */
.lusha-form-grid {
    display: grid;
    gap: 16px;
}
.lusha-form-grid--1 { grid-template-columns: 1fr; }
.lusha-form-grid--2 { grid-template-columns: 1fr 1fr; }

@media (max-width: 600px) {
    .lusha-form-grid--2 { grid-template-columns: 1fr; }
}

.lusha-card .lusha-form-grid {
    padding: 20px;
}

.lusha-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.lusha-field--full {
    grid-column: 1 / -1;
}

.lusha-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.lusha-field .req {
    color: var(--orange);
}

.lusha-field input[type="text"],
.lusha-field input[type="email"],
.lusha-field input[type="password"],
.lusha-field input[type="tel"] {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}

.lusha-field input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241,126,0,.12);
}

.lusha-field small {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* Submit row */
.lusha-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.lusha-form-actions .btn {
    min-width: 220px;
    justify-content: center;
}

@media (max-width: 600px) {
    .lusha-form-actions {
        justify-content: stretch;
    }
    .lusha-form-actions .btn {
        flex: 1;
        min-width: 0;
    }
}

/* Address card */
.lusha-account-addresses .lusha-address-card .lusha-card-header {
    justify-content: space-between;
}

.lusha-link-edit {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lusha-link-edit:hover {
    text-decoration: underline;
}

.lusha-address-text {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
}

.lusha-empty-state {
    text-align: center;
    padding: 24px 16px;
}

.lusha-empty-state > i {
    display: block;
    font-size: 48px;
    color: #e3e4e6;
    margin-bottom: 14px;
}

.lusha-empty-state p {
    font-size: 14px;
    color: #888;
    margin: 0 0 18px;
    line-height: 1.5;
}

/* Hide Woo's default messages container default ugliness inside our cards */
.woocommerce-EditAccountForm .clear { display: none; }

/* === Edit address form (WooCommerce form-row → Lusha look) === */
.lusha-edit-address .lusha-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

@media (max-width: 600px) {
    .lusha-edit-address .lusha-address-grid {
        grid-template-columns: 1fr;
    }
}

/* Reset Woo's float-based form-row layout inside the grid */
.lusha-edit-address .lusha-address-grid .form-row {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
    min-width: 0;
}

.lusha-edit-address .lusha-address-grid .form-row-wide,
.lusha-edit-address .lusha-address-grid #billing_address_1_field,
.lusha-edit-address .lusha-address-grid #billing_address_2_field,
.lusha-edit-address .lusha-address-grid #billing_company_field,
.lusha-edit-address .lusha-address-grid #shipping_address_1_field,
.lusha-edit-address .lusha-address-grid #shipping_address_2_field,
.lusha-edit-address .lusha-address-grid #shipping_company_field,
.lusha-edit-address .lusha-address-grid #billing_country_field,
.lusha-edit-address .lusha-address-grid #shipping_country_field {
    grid-column: 1 / -1;
}

.lusha-edit-address .form-row > label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    display: block;
}

.lusha-edit-address .form-row > label .optional {
    color: #999;
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}

.lusha-edit-address .form-row .required,
.lusha-edit-address .form-row label abbr.required {
    color: var(--orange);
    text-decoration: none;
    border: none;
    margin-left: 2px;
}

.lusha-edit-address .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

.lusha-edit-address .form-row input[type="text"],
.lusha-edit-address .form-row input[type="email"],
.lusha-edit-address .form-row input[type="tel"],
.lusha-edit-address .form-row input[type="number"],
.lusha-edit-address .form-row input[type="password"],
.lusha-edit-address .form-row .input-text,
.lusha-edit-address .form-row select,
.lusha-edit-address .form-row .select2-selection--single {
    width: 100% !important;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px !important;
    font-size: 14px;
    color: var(--dark);
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
    line-height: 40px;
}

.lusha-edit-address .form-row input:focus,
.lusha-edit-address .form-row select:focus,
.lusha-edit-address .form-row .select2-container--focus .select2-selection--single {
    outline: none;
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 3px rgba(241, 126, 0, .12) !important;
}

/* Select2 (country/state dropdown) tweaks */
.lusha-edit-address .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    padding-left: 0;
    padding-right: 22px;
    color: var(--dark);
}

.lusha-edit-address .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 8px;
}

.lusha-edit-address .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

/* Description / hint text under fields */
.lusha-edit-address .form-row .woocommerce-input-wrapper + small,
.lusha-edit-address .form-row span.description {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin-top: 4px;
    display: block;
}

/* Validation states */
.lusha-edit-address .form-row.woocommerce-invalid input.input-text,
.lusha-edit-address .form-row.woocommerce-invalid select {
    border-color: #e74c3c !important;
}

.lusha-edit-address .form-row.woocommerce-validated input.input-text,
.lusha-edit-address .form-row.woocommerce-validated select {
    border-color: #27ae60;
}

/* Outline button used by "Назад" */
.btn.btn-outline {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
}
.btn.btn-outline:hover {
    background: var(--light);
    border-color: var(--orange);
    color: var(--orange);
}

/* Enhanced account */
.account-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f17e00, #ff9a2e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.account-welcome {
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
    margin-top: 2px;
}

/* Orders table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.orders-table th {
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid var(--border);
    font-weight: 500;
    color: #888;
}

.orders-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border);
}

.orders-table tbody tr {
    transition: var(--transition);
}

.orders-table tbody tr:hover {
    background: #fff8f0;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.delivered {
    background: #e8f5e9;
    color: var(--success);
}

.status-badge.shipping {
    background: #e3f2fd;
    color: var(--info);
}

.status-badge.processing {
    background: #fff3e0;
    color: var(--orange);
}

.status-badge i {
    margin-right: 3px;
}

.btn-track {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-track:hover {
    background: #e07200;
}

/* Recently viewed (account) */
.recently-viewed {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.recently-viewed h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.recently-viewed-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.recently-viewed-item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.recently-viewed-item .rv-img {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 18px;
    flex-shrink: 0;
}

.recently-viewed-item .rv-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.recently-viewed-item .rv-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2px;
}

/* === WISHLIST === */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* === TRACKING === */
.tracking-search {
    max-width: 500px;
    margin: 0 auto 32px;
    text-align: center;
}

.tracking-search h2 {
    margin-bottom: 16px;
}

.tracking-input {
    display: flex;
    gap: 8px;
}

.tracking-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
}

.tracking-input input:focus {
    border-color: var(--orange);
    outline: none;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid #fff;
}

.timeline-item.active::before {
    background: var(--orange);
}

.timeline-item.done::before {
    background: var(--success);
}

.timeline-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.timeline-item p {
    font-size: 12px;
    color: #888;
}

.timeline-item time {
    font-size: 11px;
    color: #aaa;
}

/* === PRODUCT ATTRIBUTES TABLE (Характеристики) === */
.woocommerce-product-attributes {
    width: 100%;
    font-size: 14px;
    display: block;
    border: none;
    border-collapse: collapse;
}

.woocommerce-product-attributes thead {
    display: none;
}

.woocommerce-product-attributes tbody {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

@media (max-width: 900px) {
    .woocommerce-product-attributes tbody {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .woocommerce-product-attributes tbody {
        grid-template-columns: 1fr;
    }
}

.woocommerce-product-attributes tr {
    display: flex;
    align-items: stretch;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

.woocommerce-product-attributes tr:hover {
    background: #fafafa;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 12px 16px;
    text-align: left;
    border: none;
    vertical-align: middle;
}

.woocommerce-product-attributes th {
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 140px;
    background: transparent;
    font-size: 13px;
}

.woocommerce-product-attributes td {
    color: var(--dark);
    flex: 1;
    font-weight: 500;
}

.woocommerce-product-attributes td p {
    margin: 0;
}

/* Визуальный разделитель между колонками */
.woocommerce-product-attributes tr:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
}

.woocommerce-product-attributes tr:nth-child(even) {
    border-left: none;
}

/* Чередование цвета строк внутри колонки */
.woocommerce-product-attributes tr:nth-child(4n+1),
.woocommerce-product-attributes tr:nth-child(4n+2) {
    /* no extra bg — clean look */
}

@media (max-width: 768px) {
    .woocommerce-product-attributes tbody {
        grid-template-columns: 1fr;
    }
    .woocommerce-product-attributes tr:nth-child(odd) {
        border-right: none;
    }
}

/* Tab content heading */
.tab-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

/* === "Просмотр корзины" button after add to cart === */
.card-actions .view-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* WC default inserted link — hide (we use custom .view-cart-link) */
.woocommerce a.added_to_cart:not(.view-cart-link),
a.added_to_cart:not(.view-cart-link),
.card-actions a.added_to_cart:not(.view-cart-link) {
    display: none !important;
}

/* === AUTH PAGE (Login / Register) === */
.auth-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 32px;
}

/* Auth cards container */
.auth-cards {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.auth-cards--two {
    grid-template-columns: 1fr 1fr;
}

.auth-cards--one {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .auth-cards--two {
        grid-template-columns: 1fr;
    }
}

/* Card */
.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.auth-card:hover {
    box-shadow: var(--shadow-lg);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.auth-card-header i {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 6px;
    display: block;
}

.auth-card--register .auth-card-header i {
    color: var(--dark);
}

.auth-card-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

/* Auth fields */
.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.auth-field label i {
    color: var(--orange);
    width: 16px;
    text-align: center;
    margin-right: 4px;
    font-size: 12px;
}

.auth-field label .required {
    color: var(--red);
    font-weight: 400;
}

.auth-field input.input-text {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    background: #fafafa;
    color: var(--dark);
}

.auth-field input.input-text:focus {
    border-color: var(--orange);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 126, 0, .1);
}

.auth-field input.input-text::placeholder {
    color: #bbb;
}

/* Password toggle */
.auth-password-wrap {
    position: relative;
}

.auth-password-wrap input.input-text {
    padding-right: 44px;
    width: 100%;
}

.auth-toggle-pw {
    position: absolute;
    right: 4px;
    top: 0;
    height: 46px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0 8px;
    font-size: 15px;
    transition: color .2s;
    z-index: 2;
}

.auth-toggle-pw:hover {
    color: var(--orange);
}

/* Hide WooCommerce default password toggle (we have our own) */
.auth-page .show-password-input,
.auth-page .wp-hide-pw,
.auth-page .wp-pwd .button.wp-hide-pw {
    display: none !important;
}

/* Password strength meter — thin progress bar */
.woocommerce-password-strength {
    margin-top: 8px;
    height: 4px;
    border-radius: 2px;
    background: #e9ecef;
    position: relative;
    overflow: visible;
    font-size: 0;
    line-height: 0;
    padding: 0;
    margin-bottom: 22px;
}

.woocommerce-password-strength::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 2px;
    transition: width .4s ease, background .4s ease;
}

.woocommerce-password-strength.short::before {
    width: 20%;
    background: #dc3232;
}

.woocommerce-password-strength.bad::before {
    width: 40%;
    background: #e65100;
}

.woocommerce-password-strength.good::before {
    width: 70%;
    background: #f1a100;
}

.woocommerce-password-strength.strong::before {
    width: 100%;
    background: #46b450;
}

/* Strength label text below the bar */
.woocommerce-password-strength::after {
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.woocommerce-password-strength.short::after {
    content: 'Слишком короткий';
    color: #dc3232;
}
.woocommerce-password-strength.bad::after {
    content: 'Слабый';
    color: #e65100;
}
.woocommerce-password-strength.good::after {
    content: 'Хороший';
    color: #f1a100;
}
.woocommerce-password-strength.strong::after {
    content: 'Надёжный';
    color: #46b450;
}

/* Password hint text below strength */
.woocommerce-password-hint,
small.woocommerce-password-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

/* Remember + forgot row */
.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.auth-checkbox input {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Marketing consent block */
.auth-consent {
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.auth-consent .auth-checkbox {
    align-items: flex-start;
    gap: 8px;
}

.auth-consent .auth-checkbox span {
    line-height: 1.4;
    font-size: 12px;
    color: #555;
}

.auth-forgot {
    font-size: 13px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.auth-forgot:hover {
    text-decoration: underline;
}

/* Submit button */
.auth-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

/* Info message */
.auth-info-msg {
    padding: 12px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    font-size: 13px;
    color: #1e40af;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-info-msg i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Benefits */
.auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .auth-benefits {
        grid-template-columns: 1fr;
    }
}

.auth-benefit {
    text-align: center;
    padding: 20px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.auth-benefit i {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.auth-benefit h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.auth-benefit p {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* Hide WC default login columns styling */
.woocommerce .u-columns.col2-set {
    display: contents;
}

.woocommerce .u-columns .u-column1,
.woocommerce .u-columns .u-column2 {
    float: none;
    width: 100%;
}
