/* =========================
   Cart Page – Premium Design
   Theme: K | RTL | Tajawal
========================= */

/* ── Page Wrapper ── */
.cart-page {
    background: linear-gradient(175deg, #FAF8F6 0%, #F7F3EB 40%, #FFF 100%);
    min-height: 80vh;
    padding: 40px 15px 80px;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
}

.cart-page-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Page Title ── */
.cart-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

/* =========================
   Empty Cart State
========================= */
.empty-cart {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(177, 156, 217, 0.08);
    border: 1px solid rgba(177, 156, 217, 0.15);
}

.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: emptyBounce 2s ease-in-out infinite;
}

@keyframes emptyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-cart p {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.empty-cart span {
    color: #999;
    font-size: 15px;
    display: block;
    margin-bottom: 32px;
}

.start-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #c5a880 0%, #b19cd9 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(177, 156, 217, 0.35);
}

.start-shopping-btn:hover {
    background: linear-gradient(135deg, #b19cd9 0%, #1a1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 156, 217, 0.45);
    color: #fff;
}

/* =========================
   Cart Layout (2-column)
========================= */
.cart-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* =========================
   Cart Items Column
========================= */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.25s ease;
}

.cart-item:hover {
    box-shadow: 0 8px 28px rgba(177, 156, 217, 0.12);
    border-color: rgba(177, 156, 217, 0.3);
    transform: translateY(-2px);
}

/* ── Product Image ── */
.cart-img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8f8fa;
    display: block;
    border: 1px solid #ebdccb;
    transition: transform 0.3s ease;
}

.cart-img:hover {
    transform: scale(1.04);
}

.cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Product Info ── */
.cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cart-product-name {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-product-name:hover {
    color: #b19cd9;
}

.cart-product-price {
    font-size: 16px;
    font-weight: 800;
    color: #b19cd9;
}

.cart-product-price del {
    color: #bbb;
    font-weight: 500;
    font-size: 13px;
}

.cart-product-price ins {
    text-decoration: none;
}

/* ── Quantity Controls ── */
.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.cart-qty-row label {
    font-weight: 600;
    color: #666;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    background: #FAF8F5;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #e5dfd5;
    transition: all 0.25s ease;
}
.qty-wrapper:focus-within {
    border-color: #b19cd9;
    box-shadow: 0 0 0 3px rgba(177, 156, 217, 0.15);
}

.qty-wrapper input[type="number"] {
    width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 8px 4px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: #1a1a2e;
    outline: none;
    -moz-appearance: textfield;
}

.qty-wrapper input[type="number"]::-webkit-inner-spin-button,
.qty-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Remove Button ── */
.cart-remove-btn {
    color: #d0d0d5;
    transition: all 0.25s ease;
    flex-shrink: 0;
    text-decoration: none;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    color: #e74c3c;
    background: #fef5f5;
    transform: scale(1.1);
}

/* ── Continue Shopping ── */
.cart-update-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.continue-shopping {
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.continue-shopping:hover {
    color: #b19cd9;
    gap: 10px;
}

/* =========================
   Cart Summary Column
========================= */
.cart-summary {
    background: #fff;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-summary h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #1a1a2e;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f5f7;
}

/* ── Summary Rows ── */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #666;
    padding: 4px 0;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.discount-row {
    color: #27ae60;
}

.discount-value {
    color: #27ae60;
    font-weight: 700;
}

.shipping-row .summary-value {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.summary-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eee, transparent);
    margin: 6px 0;
}

.total-row {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a2e;
    padding: 8px 0 4px;
}

.summary-total {
    font-size: 22px;
    font-weight: 800;
    color: #b19cd9;
}

/* ── Coupon Section ── */
.coupon-section {
    padding-top: 4px;
}

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

.coupon-input {
    flex: 1;
    padding: 11px 16px;
    border: 1.5px solid #ebebed;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background: #fafafa;
    transition: all 0.25s ease;
    color: #333;
}

.coupon-input::placeholder {
    color: #bbb;
}

.coupon-input:focus {
    border-color: #b19cd9;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(177, 156, 217, 0.15);
}

.coupon-btn {
    background: #f0f0f2;
    color: #444;
    border: none;
    border-radius: 12px;
    padding: 11px 18px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.coupon-btn:hover {
    background: #b19cd9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(177, 156, 217, 0.3);
}

/* ── Checkout Button ── */
.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c5a880 0%, #b19cd9 100%);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(177, 156, 217, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
    animation: checkoutShimmer 3s ease-in-out infinite;
}

@keyframes checkoutShimmer {
    0% { left: -100%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #b19cd9 0%, #1a1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 156, 217, 0.45);
    color: #fff;
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(177, 156, 217, 0.3);
}

/* ── Secure Badge ── */
.secure-badge {
    text-align: center;
    font-size: 13px;
    color: #b0b0b5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 4px;
}

/* =========================
   WooCommerce Notices Override
========================= */
.cart-page .woocommerce-message,
.cart-page .woocommerce-info,
.cart-page .woocommerce-error {
    border-radius: 14px;
    border-top: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* =========================
   Responsive – Tablet
========================= */
@media (max-width: 900px) {
    .cart-container {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
}

/* =========================
   Responsive – Mobile
========================= */
@media (max-width: 768px) {
    main.site-main.container,
    .cart-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .cart-page {
        padding-top: 16px !important;
        padding-bottom: 100px !important;
    }

    .cart-page-inner {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    /* ── عنوان الصفحة ── */
    .cart-title {
        font-size: 18px;
        margin-bottom: 16px;
        text-align: center;
        padding: 0 14px;
    }

    .cart-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* ── عناصر السلة — edge to edge ── */
    .cart-items {
        gap: 0;
    }

    .cart-item {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid #f0f0f2;
        box-shadow: none;
    }

    .cart-img {
        width: 72px;
        height: 72px;
        border-radius: 10px;
    }

    .cart-product-name {
        font-size: 13px;
    }

    .cart-product-price {
        font-size: 13px;
    }

    .cart-qty-row {
        font-size: 11px;
    }

    .cart-qty-row label {
        font-size: 11px;
    }

    .qty-wrapper input[type="number"] {
        width: 40px;
        padding: 6px 2px;
        font-size: 13px;
    }

    /* ── ملخص الطلب — edge to edge ── */
    .cart-summary {
        position: static;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
        padding: 18px 14px;
        border-top: 1px solid #f0f0f2;
    }

    .cart-summary h2 {
        font-size: 16px;
    }

    .summary-row {
        font-size: 13px;
    }

    .summary-total {
        font-size: 18px;
    }

    /* ── الأزرار ── */
    .checkout-btn {
        font-size: 14px;
        padding: 13px;
        border-radius: 11px;
        gap: 7px;
    }

    .start-shopping-btn {
        font-size: 14px;
        padding: 12px 28px;
    }

    .coupon-form {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .coupon-input {
        font-size: 13px;
    }

    .continue-shopping {
        font-size: 13px;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .cart-update-row {
        justify-content: center;
    }

    /* ── طلبات الضيف ── */
    .empty-cart-orders__header h2 {
        font-size: 17px;
    }

    .empty-cart-orders__header p {
        font-size: 12px;
    }

    .order-num {
        font-size: 13px;
    }

    .order-total {
        font-size: 13px;
    }

    .order-track-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* =========================
   Responsive – Small Mobile
========================= */
@media (max-width: 480px) {
    .cart-item {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .cart-img {
        width: 72px;
        height: 72px;
        border-radius: 10px;
    }

    .cart-info {
        flex: 1;
        min-width: calc(100% - 100px);
    }

    .cart-remove-btn {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .empty-cart {
        padding: 60px 20px;
        border-radius: 20px;
    }

    .empty-cart-icon {
        font-size: 60px;
    }

    .empty-cart p {
        font-size: 18px;
    }

    .start-shopping-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}

/* =========================
   Smooth Entry Animation
========================= */
.cart-item {
    animation: cartItemSlideIn 0.4s ease both;
}

.cart-item:nth-child(1) { animation-delay: 0s; }
.cart-item:nth-child(2) { animation-delay: 0.06s; }
.cart-item:nth-child(3) { animation-delay: 0.12s; }
.cart-item:nth-child(4) { animation-delay: 0.18s; }
.cart-item:nth-child(5) { animation-delay: 0.24s; }
.cart-item:nth-child(6) { animation-delay: 0.30s; }

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-summary {
    animation: summaryFadeIn 0.5s ease 0.2s both;
}

@keyframes summaryFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Empty Cart — Orders View
========================= */
.empty-cart-orders {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0ece8;
    max-width: 780px;
    margin: 0 auto;
    animation: cartItemSlideIn 0.4s ease both;
}

.empty-cart-orders__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f0eb;
}

.empty-cart-orders__icon {
    font-size: 48px;
    line-height: 1;
    animation: emptyBounce 2s ease-in-out infinite;
}

.empty-cart-orders__header h2 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}

.empty-cart-orders__header p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

.empty-cart-orders__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

/* ── بطاقة الطلب ── */
.empty-cart-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: #faf7f4;
    border-radius: 14px;
    border: 1px solid #ece8e2;
    transition: all 0.25s ease;
    animation: cartItemSlideIn 0.4s ease both;
}

.empty-cart-order-card:hover {
    background: #f5f0ea;
    border-color: #ddd5c8;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(177, 156, 217,0.12);
}

.empty-cart-order-card__info {
    flex: 1;
    min-width: 0;
}

.empty-cart-order-card__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.order-num {
    font-weight: 800;
    font-size: 15px;
    color: #2c2c2c;
}

.order-date {
    font-size: 13px;
    color: #aaa;
}

.order-status {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.order-items-text {
    margin: 0;
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-cart-order-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.order-total {
    font-weight: 800;
    font-size: 15px;
    color: #b19cd9;
    white-space: nowrap;
}

.order-track-btn {
    display: inline-block;
    background: #b19cd9;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.order-track-btn:hover {
    background: #a0866a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(177, 156, 217,0.3);
}

.no-orders-yet {
    color: #aaa;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .empty-cart-orders {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .empty-cart-order-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .empty-cart-order-card__actions {
        width: 100%;
        justify-content: space-between;
    }

    .order-track-btn {
        flex: 1;
        text-align: center;
    }
}

/* =========================
   Guest Order Lookup Form
========================= */
.k-guest-lookup-box {
    margin: 20px 0;
    padding: 18px 20px;
    background: #f5f0ea;
    border-radius: 14px;
    border: 1px dashed #d4c5b2;
}

.k-guest-lookup-title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #5c4a38;
}

.k-guest-lookup-form {
    display: flex;
    gap: 10px;
}

.k-guest-lookup-form input {
    flex: 1;
    padding: 11px 16px;
    border: 1.5px solid #ddd4c8;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    background: #fff;
    color: #333;
    outline: none;
    direction: rtl;
    transition: border-color 0.2s;
}

.k-guest-lookup-form input:focus {
    border-color: #b19cd9;
    box-shadow: 0 0 0 3px rgba(177, 156, 217,0.12);
}

.k-guest-lookup-form input::placeholder {
    color: #bbb;
}

.k-guest-lookup-form button {
    padding: 11px 22px;
    background: #b19cd9;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.k-guest-lookup-form button:hover {
    background: #a0866a;
    transform: translateY(-1px);
}

.k-guest-lookup-form button:disabled {
    opacity: 0.6;
    cursor: wait;
}

.k-lookup-error {
    margin: 12px 0 0;
    font-size: 13px;
    color: #e74c3c;
    padding: 8px 14px;
    background: #fef5f5;
    border-radius: 8px;
    border-right: 3px solid #e74c3c;
}

@media (max-width: 480px) {
    .k-guest-lookup-form {
        flex-direction: column;
    }
    .k-guest-lookup-form button {
        width: 100%;
        text-align: center;
    }
}

/* ══════════════════════════════════
   الوضع الليلي — صفحة السلة
══════════════════════════════════ */
[data-theme="dark"] .cart-page {
    background: linear-gradient(175deg, var(--k-bg) 0%, var(--k-bg-soft) 45%, var(--k-bg-card) 100%);
}

[data-theme="dark"] .cart-title {
    color: var(--k-text);
}

[data-theme="dark"] .empty-cart,
[data-theme="dark"] .cart-item,
[data-theme="dark"] .cart-summary,
[data-theme="dark"] .empty-cart-orders {
    background: var(--k-bg-card);
    border-color: var(--k-border);
    box-shadow: 0 8px 32px var(--k-shadow);
}

[data-theme="dark"] .empty-cart p,
[data-theme="dark"] .cart-product-name,
[data-theme="dark"] .cart-summary h2,
[data-theme="dark"] .summary-row,
[data-theme="dark"] .empty-cart-orders__header h2 {
    color: var(--k-text);
}

[data-theme="dark"] .empty-cart span,
[data-theme="dark"] .cart-qty-row,
[data-theme="dark"] .cart-qty-row label,
[data-theme="dark"] .empty-cart-orders__header p,
[data-theme="dark"] .order-items-text,
[data-theme="dark"] .order-date {
    color: var(--k-text-muted);
}

[data-theme="dark"] .cart-img {
    background: var(--k-bg-soft);
    border-color: var(--k-border);
}

[data-theme="dark"] .qty-wrapper {
    background: var(--k-bg-soft);
    border-color: var(--k-border);
}

[data-theme="dark"] .qty-wrapper input[type="number"] {
    color: var(--k-text);
}

[data-theme="dark"] .cart-remove-btn {
    color: var(--k-text-muted);
}

[data-theme="dark"] .cart-remove-btn:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}

[data-theme="dark"] .summary-divider {
    background: var(--k-border);
}

[data-theme="dark"] .coupon-input {
    background: var(--k-input-bg);
    border-color: var(--k-border);
    color: var(--k-text);
}

[data-theme="dark"] .coupon-input::placeholder {
    color: var(--k-text-muted);
}

[data-theme="dark"] .coupon-btn {
    background: var(--k-accent);
    color: var(--k-bg);
}

[data-theme="dark"] .continue-shopping {
    color: var(--k-accent);
}

[data-theme="dark"] .empty-cart-order-card {
    background: var(--k-bg-soft);
    border-color: var(--k-border);
}

[data-theme="dark"] .empty-cart-order-card:hover {
    border-color: var(--k-accent);
}

[data-theme="dark"] .order-track-btn {
    background: var(--k-bg-hover);
    color: var(--k-accent);
    border-color: var(--k-border);
}

[data-theme="dark"] .k-guest-lookup-form input {
    background: var(--k-input-bg);
    border-color: var(--k-border);
    color: var(--k-text);
}

[data-theme="dark"] .k-guest-lookup-form input::placeholder {
    color: var(--k-text-muted);
}

[data-theme="dark"] .k-lookup-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
}

[data-theme="dark"] .woocommerce-message,
[data-theme="dark"] .woocommerce-info,
[data-theme="dark"] .woocommerce-error {
    background: var(--k-bg-card);
    color: var(--k-text);
    border-color: var(--k-border);
}

[data-theme="dark"] .k-shipping-progress__track {
    background: var(--k-border);
}


