/* ═══════════════════════════════════════════════════════════════════
   Tojarii — Internal Pages Stylesheet
   Brand: #CF0F47 (primary), Cairo font, uni-core framework
   ═══════════════════════════════════════════════════════════════════ */

/* ── Page Header (Hero banner for internal pages) ──────────────── */
.page-header {
    background: linear-gradient(135deg, #FFF5F7 0%, #fff 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dark .page-header,
.uc-dark .page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.page-header::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207,15,71,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-header .container {
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #1a1a2e;
}
.dark .page-header h1 { color: #fff; }
@media(min-width:768px) {
    .page-header h1 { font-size: 3rem; }
}
@media(min-width:1024px) {
    .page-header h1 { font-size: 3.5rem; }
    .page-header { padding: 140px 0 80px; }
}
.page-header .subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}
.dark .page-header .subtitle { color: #94a3b8; }

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb-nav {
    padding: 16px 0;
    font-size: 14px;
}
.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.breadcrumb-nav ol li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
}
.breadcrumb-nav ol li a {
    color: #CF0F47;
    text-decoration: none;
    transition: opacity 0.2s;
}
.breadcrumb-nav ol li a:hover { opacity: 0.7; }
.breadcrumb-nav ol li .sep { color: #d1d5db; }

/* ── Content Sections ──────────────────────────────────────────── */
.page-section {
    padding: 60px 0;
}
@media(min-width:1024px) {
    .page-section { padding: 80px 0; }
}
.page-section.alt-bg {
    background: #f8fafc;
}
.dark .page-section.alt-bg { background: #111827; }

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #1a1a2e;
}
.dark .section-title { color: #fff; }
@media(min-width:768px) {
    .section-title { font-size: 2.25rem; }
}
.section-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
}
.dark .section-desc { color: #94a3b8; }

/* ── Pricing Cards ─────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media(min-width:768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dark .pricing-card {
    background: #1e293b;
    border-color: #334155;
}
.pricing-card.featured {
    border-color: #CF0F47;
    box-shadow: 0 8px 32px rgba(207,15,71,0.12);
}
.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #CF0F47, #FF0B55);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
}
.dark .pricing-card .plan-name { color: #fff; }
.pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #CF0F47;
    margin: 16px 0 4px;
    line-height: 1;
}
.pricing-card .plan-period {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}
.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.pricing-card .plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}
.dark .pricing-card .plan-features li {
    color: #cbd5e1;
    border-color: #1e293b;
}
.pricing-card .plan-features li:last-child { border-bottom: 0; }
.pricing-card .plan-features li .check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #CF0F47;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}
.pricing-card .plan-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}
.pricing-card .plan-features li.disabled .check {
    background: #d1d5db;
}
.pricing-card .plan-cta {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.pricing-card .plan-cta.primary {
    background: linear-gradient(135deg, #CF0F47, #FF0B55);
    color: #fff;
}
.pricing-card .plan-cta.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(207,15,71,0.3);
}
.pricing-card .plan-cta.outline {
    background: transparent;
    color: #CF0F47;
    border: 2px solid #CF0F47;
}
.pricing-card .plan-cta.outline:hover {
    background: #CF0F47;
    color: #fff;
}

/* ── Comparison Table ──────────────────────────────────────────── */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-size: 15px;
}
.dark .compare-table { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.compare-table thead th {
    background: #1a1a2e;
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
}
.compare-table thead th:first-child { text-align: start; }
.compare-table thead th.highlight {
    background: #CF0F47;
}
.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    vertical-align: middle;
}
.dark .compare-table tbody td { border-color: #1e293b; }
.compare-table tbody td:first-child {
    text-align: start;
    font-weight: 600;
    color: #1a1a2e;
}
.dark .compare-table tbody td:first-child { color: #e2e8f0; }
.compare-table tbody tr:nth-child(even) td {
    background: #fafbfc;
}
.dark .compare-table tbody tr:nth-child(even) td { background: #111827; }
.compare-table tbody tr:hover td {
    background: #FFF5F7;
}
.dark .compare-table tbody tr:hover td { background: #1e1e30; }
.compare-table .yes { color: #22c55e; font-weight: 700; }
.compare-table .no { color: #ef4444; font-weight: 700; }
.compare-table .partial { color: #f59e0b; font-weight: 600; }
.compare-table td.highlight-col {
    background: rgba(207,15,71,0.03) !important;
}

/* ── Feature Grid ──────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media(min-width:640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: #CF0F47;
}
.dark .feature-card { background: #1e293b; border-color: #334155; }
.dark .feature-card:hover { border-color: #CF0F47; }
.feature-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(207,15,71,0.08), rgba(255,11,85,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #CF0F47;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
}
.dark .feature-card h3 { color: #fff; }
.feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.dark .feature-card p { color: #94a3b8; }

/* ── FAQ Accordion ─────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.dark .faq-item { border-color: #334155; }
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: start;
    font-family: inherit;
    transition: background 0.2s;
}
.dark .faq-question { background: #1e293b; color: #fff; }
.faq-question:hover { background: #fafbfc; }
.dark .faq-question:hover { background: #263146; }
.faq-question .arrow {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    font-size: 12px;
    color: #64748b;
}
.dark .faq-question .arrow { background: #334155; color: #94a3b8; }
.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
    background: #CF0F47;
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}
.dark .faq-answer-inner { color: #94a3b8; }

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #CF0F47, #FF0B55);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.cta-banner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 12px;
}
@media(min-width:768px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin: 0 0 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #CF0F47;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-banner .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Contact Form ──────────────────────────────────────────────── */
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1a1a2e;
}
.dark .contact-form label { color: #e2e8f0; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.dark .contact-form input,
.dark .contact-form textarea {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #CF0F47;
    box-shadow: 0 0 0 3px rgba(207,15,71,0.08);
}

/* ── Stats Row ─────────────────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}
@media(min-width:768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item .stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #CF0F47;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}
.dark .stat-item .stat-label { color: #94a3b8; }

/* ── How-To Steps ──────────────────────────────────────────────── */
.steps-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.steps-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #CF0F47, rgba(207,15,71,0.1));
}
[dir="rtl"] .steps-list::before { right: 24px; }
[dir="ltr"] .steps-list::before { left: 24px; }
.step-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}
.step-item .step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CF0F47, #FF0B55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    position: relative;
    z-index: 1;
}
.step-item .step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
}
.dark .step-item .step-content h3 { color: #fff; }
.step-item .step-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}
.dark .step-item .step-content p { color: #94a3b8; }

/* ── Blog Cards ────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media(min-width:640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dark .blog-card { background: #1e293b; border-color: #334155; }
.blog-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card .card-body {
    padding: 20px;
}
.blog-card .card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #CF0F47;
    background: rgba(207,15,71,0.06);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.blog-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
    line-height: 1.5;
}
.blog-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card .card-title a:hover { color: #CF0F47; }
.dark .blog-card .card-title { color: #fff; }
.blog-card .card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 12px;
}
.dark .blog-card .card-excerpt { color: #94a3b8; }
.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #94a3b8;
}

/* ── Article / Blog Post ───────────────────────────────────────── */
.article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}
.dark .article-content { color: #cbd5e1; }
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 40px 0 16px;
    color: #1a1a2e;
}
.dark .article-content h2 { color: #fff; }
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #1a1a2e;
}
.dark .article-content h3 { color: #e2e8f0; }
.article-content p { margin: 0 0 20px; }
.article-content ul, .article-content ol {
    padding-inline-start: 24px;
    margin: 0 0 20px;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
    border-inline-start: 4px solid #CF0F47;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(207,15,71,0.03);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.article-content a {
    color: #CF0F47;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}
.article-content table th,
.article-content table td {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    text-align: start;
}
.article-content table th {
    background: #f8fafc;
    font-weight: 700;
}
.dark .article-content table th { background: #1e293b; }
.dark .article-content table td { border-color: #334155; }

/* ── Table of Contents ─────────────────────────────────────────── */
.toc-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 40px;
}
.dark .toc-box { background: #1e293b; border-color: #334155; }
.toc-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a2e;
}
.dark .toc-box h4 { color: #fff; }
.toc-box ol {
    padding-inline-start: 20px;
    margin: 0;
}
.toc-box ol li {
    padding: 4px 0;
    font-size: 14px;
}
.toc-box ol li a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.toc-box ol li a:hover { color: #CF0F47; }

/* ── Share Buttons ─────────────────────────────────────────────── */
.share-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-btns a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: #fff;
}
.share-btns .share-wa { background: #25D366; }
.share-btns .share-x { background: #1DA1F2; }
.share-btns .share-linkedin { background: #0077B5; }
.share-btns a:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ── Responsive table wrapper ──────────────────────────────────── */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
}
@media(min-width:768px) {
    .table-responsive { margin: 0; padding: 0; }
}

/* ── Utility: text-gradient ────────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, #CF0F47, #FF0B55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── FAQ JS toggle ─────────────────────────────────────────────── */
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ═══════════════════════════════════════════════════════════════════
   Blog Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ── Blog Category Pills ──────────────────────────────────────── */
.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.cat-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.dark .cat-pill { background: #1e293b; color: #94a3b8; }
.cat-pill:hover { background: rgba(207, 15, 71, 0.08); color: #CF0F47; }
.cat-pill.active { background: #CF0F47; color: #fff; }

/* ── Blog Grid ─────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ── Blog Card ─────────────────────────────────────────────────── */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.dark .blog-card { background: #1e293b; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(207,15,71,0.08); transform: translateY(-2px); }

.blog-card-img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F7, #fff);
}
.dark .blog-card-placeholder { background: linear-gradient(135deg, #1a1a2e, #16213e); }

.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h3 {
    margin: 8px 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
}
.blog-card-body h3 a {
    color: #0f172a;
    text-decoration: none;
}
.dark .blog-card-body h3 a { color: #e2e8f0; }
.blog-card-body h3 a:hover { color: #CF0F47; }
.blog-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #94a3b8;
}
.blog-card-cat {
    background: rgba(207, 15, 71, 0.08);
    color: #CF0F47;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 11px;
}
.blog-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #94a3b8;
}
.dark .blog-card-footer { border-color: #334155; }

/* ── Pagination ────────────────────────────────────────────────── */
.tojarii-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.tojarii-pagination ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tojarii-pagination li a,
.tojarii-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    color: #334155;
    background: #fff;
}
.tojarii-pagination li a:hover {
    background: #FFF5F7;
    border-color: #CF0F47;
    color: #CF0F47;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(207,15,71,0.12);
}
.tojarii-pagination li.active span {
    background: #CF0F47;
    color: #fff;
    border-color: #CF0F47;
    box-shadow: 0 2px 8px rgba(207,15,71,0.25);
}
.tojarii-pagination li.disabled span {
    color: #cbd5e1;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #f1f5f9;
}
.dark .tojarii-pagination li a,
.dark .tojarii-pagination li span {
    border-color: #334155;
    color: #e2e8f0;
    background: #1e293b;
}
.dark .tojarii-pagination li.active span {
    background: #CF0F47;
    color: #fff;
    border-color: #CF0F47;
}
.dark .tojarii-pagination li.disabled span {
    color: #475569;
    background: #0f172a;
    border-color: #1e293b;
}
