:root {
    --ksm-depth-1: 0 1px 2px rgba(16, 42, 97, 0.05), 0 6px 16px rgba(16, 42, 97, 0.07);
    --ksm-depth-2: 0 2px 6px rgba(16, 42, 97, 0.07), 0 16px 32px rgba(16, 42, 97, 0.12);
    --ksm-depth-hover: 0 6px 14px rgba(16, 42, 97, 0.10), 0 26px 48px rgba(16, 42, 97, 0.16);
    --ksm-glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.88));
}

.ksm-search-wrap {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.ksm-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 7px;
    background: #ffffff;
    border: 1px solid #e3edfb;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 12px rgba(23, 88, 189, 0.08);
    margin-bottom: 20px;
    font-size: 11.5px;
}

.ksm-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}

.ksm-field select,
.ksm-field input[type="text"] {
    width: 100%;
    padding: 5px 7px;
    border: 1px solid #d7e3f7;
    border-radius: 8px;
    font-size: 12px;
    box-sizing: border-box;
}

/* دراپ‌داون‌ها تا وقتی چیزی انتخاب نشده کم‌رنگن (طبق تصمیم قبلی)، اما فیلدهای
   متنی معمولی (رقم‌ها، سرچ حروفی، قیمت) باید از همون اول پررنگ و خوانا باشن */
.ksm-field select {
    color: #9aa5b1;
}

.ksm-field input[type="text"] {
    color: #1f2937;
    font-weight: 600;
}

.ksm-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239aa5b1' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 30px;
}

.ksm-field select.ksm-has-value {
    color: #1f2937 !important;
    font-weight: 600 !important;
    border-color: #1e5fd9;
}

.ksm-digits-field {
    grid-column: 1 / -1;
}

.ksm-digit-boxes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 6px;
    direction: ltr;
}

.ksm-digit-box {
    width: 34px !important;
    height: 34px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    border: 1px solid #d7e3f7;
    border-radius: 8px;
}

.ksm-help {
    font-size: 12px;
    color: #6b7280;
    margin: 6px 0 0;
}

.ksm-range-field {
    display: flex;
    gap: 8px;
}

.ksm-toggle-group {
    display: flex;
    border: 1px solid #d7e3f7;
    border-radius: 8px;
    overflow: hidden;
}

.ksm-toggle {
    flex: 1;
    padding: 8px 10px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-left: 1px solid #d7e3f7;
}

.ksm-toggle:last-child {
    border-left: none;
}

.ksm-toggle.active {
    background: linear-gradient(90deg, #1e5fd9, #2e7cf6);
    color: #fff;
}

.ksm-checkbox-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    margin-top: 22px;
}

.ksm-submit-field {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    margin-top: 6px;
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 10px 0 4px;
    z-index: 5;
}

.ksm-search-btn {
    background: linear-gradient(90deg, #1e5fd9, #2e7cf6);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ksm-reset-btn {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.ksm-search-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 900px) {
    .ksm-search-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ksm-search-results {
        grid-template-columns: 1fr;
    }
}

.ksm-number-card {
    background: var(--ksm-glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 237, 251, 0.9);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--ksm-depth-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .ksm-number-card:hover {
        box-shadow: var(--ksm-depth-hover);
        transform: translateY(-4px);
    }
}

.ksm-number-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

@media (prefers-reduced-motion: reduce) {
    .ksm-number-card {
        transition: none;
    }
    .ksm-number-card:hover,
    .ksm-number-card:active {
        transform: none;
    }
}

.ksm-number-main {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 8px;
}

.ksm-number-value {
    font-size: 17px;
    font-weight: 700;
    color: #1e5fd9;
}

.ksm-number-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a8a44;
}

.ksm-number-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.ksm-number-meta-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ksm-meta-tag {
    background: #eaf1fd;
    color: #1e5fd9;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.ksm-ownership-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff8e6;
    padding: 4px;
    line-height: 0;
}

/* ---------- صفحه‌ی واقعی سبد خرید/تسویه‌حساب ووکامرس ---------- */
.ksm-cart-page-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 2px 8px rgba(20, 40, 90, .15);
    padding: 4px;
}

.ksm-cart-item-meta {
    color: #6b7a99;
    font-size: 12px;
    font-weight: normal;
}

.ksm-number-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.ksm-rand-badge {
    background: #fff4e5;
    color: #b5680a;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.ksm-number-desc {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 10px;
}

.ksm-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ksm-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    background: linear-gradient(90deg, #1e5fd9, #2e7cf6);
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.15s;
}

.ksm-contact-btn:hover {
    opacity: 0.9;
}

.ksm-contact-icon {
    font-size: 14px;
}

.ksm-no-results,
.ksm-loading-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
    padding: 30px 0;
}

#ksm-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.ksm-load-more-btn {
    background: #fff;
    border: 1px solid #1e5fd9;
    color: #1e5fd9;
    padding: 10px 30px;
    border-radius: 8px;
    cursor: pointer;
}

/* ---------- بنر بالای صفحه (برندینگ) ---------- */

.ksm-hero {
    max-width: 1000px;
    margin: 0 auto 24px;
    background-color: #1e5fd9;
    background-image: linear-gradient(120deg, #0f3f9e, #1e5fd9 45%, #2e7cf6);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.ksm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12), transparent 45%);
}

.ksm-hero-overlay {
    position: relative;
    z-index: 1;
    background: rgba(10, 30, 70, 0.25);
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
}

.ksm-hero-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.ksm-hero-tagline {
    color: #eaf1ff;
    font-size: 15px;
    margin: 0;
}

/* ---------- چیدمان دو ستونه: فیلترها + نتایج ---------- */

.ksm-search-columns {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    align-items: start;
}

.ksm-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-columns: none;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.ksm-field-row {
    display: flex;
    gap: 10px;
}

.ksm-field-half {
    flex: 1 1 50%;
    min-width: 0;
}

.ksm-results-column {
    min-width: 0;
}

.ksm-search-results-scroll {
    /* توی دسکتاپ، فقط این بخش اسکرول میشه؛ پنل فیلتر ثابت می‌مونه */
}

@media (min-width: 641px) {
    .ksm-search-results-scroll {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding-left: 6px;
    }
}

@media (max-width: 640px) {
    .ksm-search-columns {
        grid-template-columns: 1fr;
    }
    .ksm-search-form {
        order: 0;
        position: sticky;
        top: 0;
        z-index: 60;
        max-height: 48vh;
        overflow-y: auto;
        box-shadow: 0 6px 14px rgba(16, 42, 97, 0.14);
    }
    .ksm-submit-field {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 10px 16px;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        border-top: 1px solid #e3edfb;
        z-index: 999;
    }
    .ksm-search-wrap {
        padding-bottom: 70px; /* جا برای نوار پایین باز بمونه */
    }
    /* روی موبایل، نوار سبد باید بالای نوار دکمه‌ی جستجو بشینه، نه روش */
    .ksm-cart-bar {
        bottom: 58px;
    }
}

/* ---------- دکمه‌ی شناور «خرید سیم‌کارت» (سایت‌وایده) ---------- */

.ksm-floating-cta {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff9800, #ffb74d);
    color: #1f2937;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    transition: transform 0.15s;
}

.ksm-floating-cta:hover {
    transform: translateY(-2px);
    color: #1f2937;
}

.ksm-floating-cta-icon {
    font-size: 18px;
}

/* ---------- ویجت چندانتخابی (اپراتور / پیش‌شماره) ---------- */

.ksm-multiselect {
    position: relative;
}

.ksm-multiselect-btn {
    width: 100%;
    text-align: right;
    padding: 7px 9px;
    border: 1px solid #d7e3f7;
    border-radius: 8px;
    background: #fff;
    color: #9aa5b1;
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239aa5b1' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
    padding-left: 26px;
}

.ksm-multiselect-btn.ksm-has-value {
    color: #1f2937 !important;
    font-weight: 600 !important;
    border-color: #1e5fd9;
}

.ksm-multiselect-panel {
    display: none;
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d7e3f7;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(23, 88, 189, 0.15);
    padding: 6px;
}

.ksm-multiselect-panel.open {
    display: block;
}

.ksm-multiselect-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
}

.ksm-multiselect-option:hover {
    background: #f0f7ff;
}

/* ---------- بنر بالای نتایج ---------- */

.ksm-results-banner {
    background: linear-gradient(120deg, #eaf1ff, #f7faff);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 16px;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.ksm-results-banner-illustration {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ksm-rb-badge {
    font-size: 28px;
}

.ksm-rb-text {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
}

/* ---------- کارت شماره: نوار بالا (اپراتور + دکمه‌ی سبد) ---------- */

.ksm-number-card {
    border-top: 4px solid #1e5fd9;
}

.ksm-number-card-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -2px -2px 10px -2px;
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ksm-op-accent, #1e5fd9) 14%, #ffffff), #ffffff 75%);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ksm-op-accent, #1e5fd9) 20%, #ffffff);
}

.ksm-operator-badge {
    background: #1e5fd9;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.ksm-cart-btn-loading {
    opacity: .6;
    animation: ksm-cart-btn-pulse .8s ease-in-out infinite;
}

@keyframes ksm-cart-btn-pulse {
    0%, 100% { opacity: .55; }
    50% { opacity: .95; }
}

/* ---------- دکمه‌ی «تماس با فروشنده» و جزئیات پنهان ---------- */

.ksm-contact-seller-btn {
    width: 100%;
    background: linear-gradient(180deg, #f2f7ff, #eaf1fd);
    color: #1e5fd9;
    border: 1px solid #c9d8f5;
    border-radius: 10px;
    padding: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 2px 6px rgba(30, 95, 217, 0.1);
    transition: transform 0.15s, box-shadow 0.15s;
}

.ksm-contact-seller-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(30, 95, 217, 0.1);
}

.ksm-number-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e3edfb;
}

/* ---------- نوار و پنجره‌ی سبد انتخابی ---------- */

.ksm-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #0f3f9e;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.ksm-cart-view-btn,
.ksm-cart-clear-btn {
    background: #fff;
    color: #0f3f9e;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.ksm-cart-clear-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.ksm-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 30, 70, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ksm-cart-modal-inner {
    background: var(--ksm-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--ksm-depth-2);
}

.ksm-cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ksm-cart-modal-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.ksm-cart-modal-item {
    padding: 8px;
    border-bottom: 1px solid #eef3fc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ksm-cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #9aa5b8;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background 0.15s ease, color 0.15s ease;
}

.ksm-cart-item-remove:hover {
    background: #fef2f2;
    color: #d64545;
}

.ksm-cart-item-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 0 0 1px #e5e9f2;
    flex: 0 0 auto;
}

.ksm-cart-item-number {
    font-weight: 700;
    color: #1e5fd9;
    flex: 1 1 auto;
}

.ksm-cart-item-type {
    font-size: 11px;
    color: #4b5563;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.ksm-cart-item-price {
    font-size: 12px;
    font-weight: 700;
    color: #0f3f9e;
    flex: 0 0 auto;
}

.ksm-cart-total-bar {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #e3edfb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ksm-cart-total-info {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: #1f2937;
}

.ksm-cart-total-info strong {
    font-size: 16px;
    color: #0f3f9e;
}

.ksm-cart-total-note {
    font-size: 11px;
    color: #9aa5b1;
}

.ksm-cart-go-btn {
    background: #0f3f9e;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* ---------- دکمه‌ی «افزودن به سبد» داخل پنجره‌ی جزئیات ---------- */

.ksm-detail-cart-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.ksm-detail-cart-label {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.ksm-cart-modal-contacts {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ---------- لوگوی اپراتور و آیکون مینیمال سبد ---------- */

.ksm-operator-logo {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--ksm-op-accent, #1e5fd9) 55%, #ffffff), 0 2px 6px rgba(16, 42, 97, 0.18);
}

.ksm-cart-btn {
    background: #ffffff;
    border: 1px solid #dce6f7;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(16, 42, 97, 0.10);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.ksm-cart-btn:hover {
    background: #eaf1fd;
    border-color: #b9cef8;
    color: #1e5fd9;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(30, 95, 217, 0.18);
}

.ksm-cart-btn:active {
    transform: scale(0.92);
    box-shadow: 0 1px 2px rgba(16, 42, 97, 0.12);
}

.ksm-cart-btn.active {
    background: #1e5fd9;
    border-color: #1e5fd9;
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 95, 217, 0.35);
}

/* ---------- پنجره‌ی جزئیات شماره ---------- */

.ksm-detail-modal-inner {
    max-width: 640px;
}

.ksm-detail-modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .ksm-detail-modal-body {
        grid-template-columns: 2fr 1fr;
    }
}

.ksm-detail-logo {
    display: inline-block;
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 10px;
}

.ksm-detail-number {
    font-size: 22px;
    font-weight: 800;
    color: #1e5fd9;
    margin-bottom: 4px;
}

.ksm-detail-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a8a44;
    margin-bottom: 10px;
}

.ksm-detail-modal-similar {
    border-right: 1px solid #eef3fc;
    padding-right: 16px;
}

.ksm-detail-modal-similar h4 {
    font-size: 13px;
    color: #4b5563;
    margin: 0 0 10px;
}

.ksm-similar-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    border-radius: 8px;
    background: #f7faff;
    margin-bottom: 8px;
}

.ksm-similar-number {
    font-weight: 700;
    color: #1e5fd9;
    font-size: 13px;
}

.ksm-similar-price {
    font-size: 12px;
    color: #6b7280;
}

.ksm-similar-empty {
    font-size: 12px;
    color: #9aa5b1;
}

@media (max-width: 599px) {
    .ksm-detail-modal-similar {
        border-right: none;
        border-top: 1px solid #eef3fc;
        padding-right: 0;
        padding-top: 12px;
    }
}

/* ---------- کارت‌های ۰۹۰۰ ایرانسل (جستجوی زنده) ---------- */
/* دیگه رنگ مخصوص نداره — طبق تصمیم یکسان‌سازی رنگ همه‌ی کارت‌ها، این‌ها هم
   دقیقاً همون رنگ استاندارد بقیه‌ی کارت‌ها رو می‌گیرن (فقط لوگو تفاوتشون رو نشون میده) */

.ksm-contact-seller-btn-live {
    width: 100%;
    background: linear-gradient(180deg, #fffaf0, #fff8e6);
    color: #b5680a;
    border: 1px solid #ffe08a;
    border-radius: 10px;
    padding: 9px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(181, 104, 10, 0.1);
    transition: transform 0.15s, box-shadow 0.15s;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
}

.ksm-contact-seller-btn-live:active {
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(181, 104, 10, 0.1);
}
