* {
    font-family: "iran", serif !important;
    font-weight: bold !important;
}

.load-more-button {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

a:hover {
    text-decoration: none !important;
}

.load-more-button:hover {
    background-color: #0056b3;
}

.load-more-button:active {
    background-color: #003d80;
}

@media (min-width: 600px) {
    .load-more-button {
    / / / display: none;
    }
}

.public-shop {
    direction: rtl;
    font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    min-height: 100vh;
 
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 1.5rem;
    margin: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.shop-headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.shop-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.shop-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
}

.detail-icon {
    font-size: 1rem;
}

.back-nav {
    padding: 0 1rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, rgb(243, 156, 18) 0%, rgb(230, 126, 34) 100%) !important;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: normal !important; 
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.selection-card {
    background: white;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.selection-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.selection-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.operator-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.operator-option {
    text-align: center;
}

.operator-link {
    display: block;
    text-decoration: none;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.operator-link:hover {
    transform: translateY(-5px);
}

.operator-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.operator-link:hover .operator-icon {
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    transform: scale(1.05);
}

.operator-icon img,
.operator-icon svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.operator-name {
    color: #333;
    font-weight: 600;
    display: block;
}

.operator-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.operator-link:hover .operator-hover {
    opacity: 1;
}

.type-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.type-option {
    flex: 1;
    max-width: 200px;
}

.type-link {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.type-link:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon img,
.type-icon svg {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.type-name {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.prefix-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.prefix-option {
    display: block;
}

.prefix-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.prefix-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.prefix-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prefix-icon img,
.prefix-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.prefix-number {
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-bar {
    background: white;
    margin: 1rem;
    padding: 0.75rem;
    border-radius: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.operator-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border-radius: 2rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
}

.tab-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

.tab-link img,
.tab-link svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.search-panel {
    margin: 1rem;
}

.search-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
}

.search-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.search-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.status-group {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.status-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    cursor: pointer;
}

.radio-label {
    font-size: 0.85rem;
}

.search-select {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 2rem;
    font-size: 0.85rem;
    min-width: 120px;
    cursor: pointer;
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-btn {
    display: inline-block;
}

.action-btn a,
.action-btn button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.action-btn.reset a {
    background: #dc3545;
    color: white;
}

.action-btn.submit button {
    background: #28a745;
    color: white;
}

.action-btn.reset a:hover,
.action-btn.submit button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.price-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.price-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.price-btn a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.results-section {
    margin: 1rem;
}

.results-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.table-container {
    overflow-x: auto;
}

.table-header {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.table-row {
    display: flex;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.table-row:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.col-sn {
    width: 15%;
    text-align: center;
}

.col-number {
    width: 35%;
    text-align: center;
    font-family: monospace;
    font-size: 1rem;
}

.col-status {
    width: 20%;
    text-align: center;
}

.col-price {
    width: 30%;
    text-align: center;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.status-badge.new {
    background: #28a74520;
    color: #28a745;
}

.status-badge.used {
    background: #ffc10720;
    color: #ff9800;
}

.load-more {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.load-more:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    margin: 1rem;
    border-radius: 1rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #999;
}

@media (max-width: 768px) {
    .operator-grid {
        gap: 1rem;
    }

    .operator-icon {
        width: 70px;
        height: 70px;
    }

    .operator-icon img,
    .operator-icon svg {
        width: 40px;
        height: 40px;
    }

    .search-filters {
        flex-direction: column;
    }

    .status-group {
        justify-content: center;
    }

    .search-select {
        width: 100%;
    }

    .table-header,
    .table-row {
        font-size: 0.75rem;
    }

    .col-sn {
        width: 20%;
    }

    .col-number {
        width: 30%;
    }

    .col-status {
        width: 20%;
    }

    .col-price {
        width: 30%;
    }
}

body {
    font-family: 'Inter', 'Yekan Bakh', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(145deg, #f6f9fc 0%, #eef2f7 100%);
    min-height: 100vh;
    direction: rtl;
}

.container-fluid {
    padding: 2rem 1rem;
}

.div-column, .div-row {
    display: flex;
}

.div-column {
    flex-direction: column;
}

.div-row {
    flex-direction: row;
}

.bg-pale-blue {
    background: linear-gradient(135deg, #0B2B40 0%, #1A4A6F 100%);
    border-radius: 2rem 2rem 2rem 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.h-200 {
    min-height: 200px;
}

.bg-dark-blue {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
}

.border-simcard {
    border: none;
}

.h-180 {
    min-height: 180px;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.gap-3 {
    gap: 0.85rem;
}

.text-white {
    color: #ffffff;
}

.font-bold {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.owner-store-text {
    font-size: 1.8rem;
    background: linear-gradient(120deg, #fff, #D6E6F5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.store-text {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.text-decoration-none {
    text-decoration: none;
}

.text-black {
    color: #1e2f3e;
}

.justify-content-end {
    justify-content: flex-end;
}

.p-3 {
    padding: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

.f-14 {
    font-size: 0.9rem;
    font-weight: 600;
}

.type-oparator-select, .type-simcard-select {
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1.2rem;
    text-align: center;
    min-width: 110px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.type-oparator-select:hover, .type-simcard-select:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    background: #fefefe;
}

.simcard {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
}

.shape-righel-mobile, .shape-irancell-mobile, .shape-MCI-mobile {
    transition: all 0.2s;
}

.pic-rightel-simcard-select, .pic-type-simcard-select {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 0.6rem;
    transition: transform 0.2s ease;
}

.type-simcard-select:hover .pic-rightel-simcard-select,
.type-simcard-select:hover .pic-type-simcard-select {
    transform: scale(1.05);
}

.txt-type-simcard-select {
    font-weight: 600;
    color: #1a2c3e;
    font-size: 0.85rem;
}

.button-box-search-simcard {
    padding: 0.5rem 1.5rem;
    border-radius: 2.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.button-box-search-simcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bg-red {
    background: linear-gradient(105deg, #e24a4a, #c0392b);
}

.bg-green {
    background: linear-gradient(105deg, #2c9b6b, #1e7b54);
}

.bg-Beige {
    background: linear-gradient(105deg, #f5a623, #e67e22);
}

.box-search-simcard {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    width: 95%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-table-store {
    background: #f8fafd;
    padding: 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.6rem;
    transition: all 0.2s;
    border: 1px solid #eef2f8;
}

.header-table-store:hover {
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.full-width {
    width: 100%;
}

.w-20, .w-35, .w-25 {
    flex: 1;
    text-align: center;
}

.input-select {
    display: none;
}

.custom-radio {
    accent-color: #2c7da0;
    width: 1.1rem;
    height: 1.1rem;
}

.form-select {
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.form-select:hover {
    border-color: #2c7da0;
}

.load-more-button {
    background: linear-gradient(105deg, #2c7da0, #1f5e7a);
    color: white;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 2.5rem;
    font-weight: 600;
    margin-top: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.load-more-button:hover {
    background: linear-gradient(105deg, #1f5e7a, #154c63);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .owner-store-text {
        font-size: 1.3rem;
    }

    .type-oparator-select, .type-simcard-select {
        min-width: 80px;
        padding: 0.5rem;
    }

    .pic-rightel-simcard-select, .pic-type-simcard-select {
        width: 40px;
        height: 40px;
    }

    .txt-type-simcard-select {
        font-size: 0.7rem;
    }

    .div-row.justify-content-space-evenly {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .box-search-simcard {
        width: 100%;
        padding: 0.8rem;
    }
}


* {
    transition: all 0.2s ease;
}

button, a {
    cursor: pointer;
}

.results-card.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.results-card.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
}

.load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.table-container {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
    position: relative;
    border-radius: 0.75rem;
}

.table-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-body {
    background: white;
}

.table-row {
    display: flex;
    background: #f8f9fa;
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.table-row:hover {
    background: #f0f0f0;
    transform: translateX(3px);
}

.col-sn {
    width: 12%;
    text-align: center;
    flex-shrink: 0;
}

.col-number {
    width: 38%;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    flex-shrink: 0;
}

.col-status {
    width: 20%;
    text-align: center;
    flex-shrink: 0;
}

.col-price {
    width: 30%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.status-badge.new {
    background: linear-gradient(135deg, #28a74520 0%, #28a74510 100%);
    color: #28a745;
    border: 1px solid #28a74530;
}

.status-badge.used {
    background: linear-gradient(135deg, #ff980020 0%, #ffc10710 100%);
    color: #ff9800;
    border: 1px solid #ff980030;
}

.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46a0 100%);
}