/* ═══════════════════════════════════════════
   pages.css — content pages (contact, terms, faq, about…)
   اتونیاز | RTL
═══════════════════════════════════════════ */

/* ── Page Hero ── */
.pg-hero {
    background: linear-gradient(135deg, #003d70 0%, #0069BC 55%, #0cc0cf 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pg-hero::before {
    content: ''; position: absolute; top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.pg-hero::after {
    content: ''; position: absolute; bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(84,194,186,0.1); border-radius: 50%;
}
.pg-hero-inner { position: relative; z-index: 1; }
.pg-hero-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.15); border-radius: 50px;
    padding: 6px 16px; margin-bottom: 18px;
    font-size: 13px; color: rgba(255,255,255,0.9);
}
.pg-hero h1 {
    font-size: 2rem; font-weight: 900; color: #fff;
    margin: 0 0 12px; line-height: 1.4;
}
.pg-hero p {
    font-size: 15px; color: rgba(255,255,255,0.72);
    max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ── Page Body ── */
.pg-body {
    background: #f5f7fa;
    padding: 60px 0 80px;
}

/* ── Content Card ── */
.pg-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pg-card + .pg-card { margin-top: 24px; }

/* ── Contact Info Cards ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
    box-shadow: 0 8px 28px rgba(0,105,188,0.1);
    transform: translateY(-3px);
}
.contact-card-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.contact-card-icon.c-blue   { background: rgba(0,105,188,0.08); color: #0069BC; }
.contact-card-icon.c-green  { background: rgba(5,150,105,0.08); color: #059669; }
.contact-card-icon.c-amber  { background: rgba(217,119,6,0.08); color: #d97706; }
.contact-card-icon.c-purple { background: rgba(124,58,237,0.08); color: #7c3aed; }
.contact-card h4 { font-size: 14px; font-weight: 700; color: #374151; margin: 0 0 6px; }
.contact-card p, .contact-card a {
    font-size: 13.5px; color: #6b7280; text-decoration: none;
    margin: 0; line-height: 1.7;
}
.contact-card a:hover { color: #0069BC; }

/* ── Social Links ── */
.social-section h3 {
    font-size: 16px; font-weight: 800; color: #111;
    margin: 0 0 20px; display: flex; align-items: center; gap: 8px;
}
.social-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.social-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 12px;
    background: #f8fafc; border: 1px solid #eef2f7;
    font-size: 13px; color: #374151; text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover {
    background: rgba(0,105,188,0.06); border-color: #0069BC;
    color: #0069BC; text-decoration: none;
}
.social-link .social-platform { font-size: 11px; color: #9ca3af; }

/* ── Map ── */
.pg-map {
    border-radius: 20px; overflow: hidden;
    border: 1px solid #eef2f7;
    margin-top: 32px;
}
.pg-map iframe { display: block; width: 100%; border: 0; }

/* ── Terms / Legal Content ── */
.legal-content h2 {
    font-size: 1.15rem; font-weight: 900; color: #0069BC;
    margin: 32px 0 12px; padding-bottom: 8px;
    border-bottom: 2px solid rgba(0,105,188,0.1);
}
.legal-content h3 {
    font-size: 1rem; font-weight: 800; color: #1a1a1a;
    margin: 24px 0 10px;
}
.legal-content h4 {
    font-size: 0.9rem; font-weight: 700; color: #374151;
    margin: 18px 0 8px;
}
.legal-content p {
    font-size: 14px; color: #4b5563; line-height: 1.9; margin-bottom: 14px;
}
.legal-content ul {
    padding-right: 24px; margin-bottom: 14px;
}
.legal-content li {
    font-size: 14px; color: #4b5563; line-height: 1.85; margin-bottom: 6px;
}
.legal-content ul ul { margin-top: 6px; margin-bottom: 6px; }
.legal-content b { color: #111; }
.legal-note {
    background: rgba(0,105,188,0.05); border-right: 3px solid #0069BC;
    border-radius: 8px; padding: 12px 16px;
    font-size: 13px; color: #374151; margin: 16px 0;
}
.legal-accept-list {
    list-style: none; padding: 0; background: #f9fafb;
    border-radius: 16px; padding: 20px 24px;
}
.legal-accept-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #374151; margin-bottom: 8px;
}
.legal-accept-list li::before {
    content: '✓'; color: #10b981; font-weight: 900;
    flex-shrink: 0; margin-top: 1px;
}

/* ── FAQ Accordion ── */
.faq-accordion .accordion-item {
    background: #fff; border: 1px solid #eef2f7 !important;
    border-radius: 16px !important; margin-bottom: 10px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background: #fff !important; color: #1a1a1a !important;
    font-size: 14.5px; font-weight: 700; font-family: EstedadV2, sans-serif;
    padding: 18px 20px; gap: 12px;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(0,105,188,0.03) !important;
    color: #0069BC !important;
    border-bottom: 1px solid rgba(0,105,188,0.1) !important;
}
.faq-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230069BC' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
    font-size: 14px; color: #4b5563; line-height: 1.9;
    padding: 16px 20px;
}
.faq-q-num {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(0,105,188,0.08); color: #0069BC;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.faq-ic { display: none; }

/* ── About content ── */
.about-intro { display: flex; align-items: center; gap: 40px; }
.about-intro-text h2 { font-size: 1.5rem; font-weight: 900; color: #111; margin-bottom: 14px; }
.about-intro-text p { font-size: 15px; color: #4b5563; line-height: 1.9; }
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin: 40px 0;
}
.about-stat {
    background: #f8fafc; border-radius: 20px;
    padding: 28px 20px; text-align: center;
    border: 1px solid #eef2f7;
}
.about-stat-num { font-size: 2.2rem; font-weight: 900; color: #0069BC; display: block; }
.about-stat-label { font-size: 13px; color: #6b7280; margin-top: 4px; }

/* ── App page ── */
.app-feature {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 0; border-bottom: 1px solid #f0f4f8;
}
.app-feature:last-child { border-bottom: none; }
.app-feature-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(0,105,188,0.08); color: #0069BC;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.app-feature-text h4 { font-size: 14.5px; font-weight: 800; color: #111; margin: 0 0 4px; }
.app-feature-text p { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.7; }
.app-download-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 16px;
    background: #0069BC; color: #fff; text-decoration: none;
    font-size: 15px; font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}
.app-download-btn:hover { background: #0058a0; color: #fff; transform: translateY(-2px); text-decoration: none; }

/* ── Help page ── */
.help-section { margin-bottom: 40px; }
.help-section h3 {
    font-size: 1rem; font-weight: 800; color: #0069BC;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
}

/* ── About extra ── */
.about-section-title {
    font-size: 1.2rem; font-weight: 900; color: #0069BC;
    text-align: center; margin-bottom: 24px;
}

/* Mission block */
.about-mission {
    display: flex; align-items: flex-start; gap: 24px;
}
.about-mission-icon {
    width: 72px; height: 72px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,105,188,0.1), rgba(84,194,186,0.12));
    color: #0069BC; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-mission-body h2 { font-size: 1.3rem; font-weight: 900; color: #111; margin-bottom: 12px; }
.about-mission-body p { font-size: 14.5px; color: #4b5563; line-height: 1.9; margin-bottom: 10px; }
.about-mission-body p:last-child { margin-bottom: 0; }

/* Values grid */
.about-values {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-value-item {
    background: #f8fafc; border-radius: 16px;
    padding: 24px 18px; border: 1px solid #eef2f7;
    text-align: center;
}
.about-value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(0,105,188,0.08); color: #0069BC;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.about-value-item h4 { font-size: 14px; font-weight: 800; color: #111; margin-bottom: 8px; }
.about-value-item p { font-size: 12.5px; color: #6b7280; line-height: 1.7; margin: 0; }

/* Team swiper */
.about-team-card {
    border-radius: 18px; overflow: hidden;
    background: #f8fafc; border: 1px solid #eef2f7;
}
.about-team-img { width: 100%; height: 220px; object-fit: cover; }
.about-team-info { padding: 14px 16px; }
.about-team-info h5 { font-size: 14px; font-weight: 800; color: #111; margin: 0 0 4px; }
.about-team-info p { font-size: 12px; color: #6b7280; margin: 0; }

/* Brands */
.about-brands {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center; gap: 16px;
}
.about-brand-item {
    width: 90px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #f8fafc; border-radius: 12px; border: 1px solid #eef2f7;
    padding: 10px;
}
.about-brand-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(40%); opacity: .8; transition: filter .2s, opacity .2s; }
.about-brand-item:hover img { filter: none; opacity: 1; }

/* CTA Card */
.about-cta-card {
    background: linear-gradient(135deg, #003d70 0%, #0069BC 55%, #0cc0cf 100%);
    border-radius: 28px; padding: 52px 40px;
    text-align: center; margin-bottom: 40px;
}
.about-cta-icon { color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.about-cta-card h2 { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.about-cta-card p { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 28px; line-height: 1.8; }
.about-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.about-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #0069BC;
    border-radius: 50px; padding: 12px 28px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.about-cta-btn-primary:hover { background: #eaf4ff; color: #0058a0; text-decoration: none; transform: translateY(-2px); }
.about-cta-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px; padding: 12px 28px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: background 0.2s;
}
.about-cta-btn-outline:hover { background: rgba(255,255,255,0.25); color: #fff; text-decoration: none; }

/* ── Blog Grid ── */
.blog-card {
    background: #f8fafc; border-radius: 20px;
    overflow: hidden; border: 1px solid #eef2f7;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none; display: block;
}
.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0,105,188,0.1);
    transform: translateY(-3px); text-decoration: none;
}
.blog-card-img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-card-meta {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #6b7280; margin-bottom: 8px;
}
.blog-card-title {
    font-size: 14px; font-weight: 800; color: #111;
    margin: 0 0 8px; line-height: 1.6;
}
.blog-card-excerpt { font-size: 12.5px; color: #6b7280; margin: 0; line-height: 1.7; }
.blog-card-link {
    margin-top: 12px; font-size: 12px; color: #0069BC;
    font-weight: 700; display: flex; align-items: center; gap: 4px;
}

/* ── Blog Detail ── */
.blog-detail-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 28px; padding-top: 20px; border-top: 1px solid #eef2f7;
}
.blog-detail-meta-author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4b5563; }
.blog-detail-meta-date { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #6b7280; }
.blog-detail-sticky { position: sticky; top: 100px; }
.blog-detail-img { border-radius: 16px; width: 100%; }

/* ── Help / Videos ── */
.video-learn-card {
    background: #f8fafc; border-radius: 20px;
    padding: 20px; border: 1px solid #eef2f7; height: 100%;
}
.video-learn-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.video-learn-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(0,105,188,0.08); color: #0069BC;
    display: flex; align-items: center; justify-content: center;
}
.video-learn-icon.vi-amber { background: rgba(217,119,6,0.08); color: #d97706; }
.video-learn-icon.vi-green { background: rgba(5,150,105,0.08); color: #059669; }
.video-learn-icon.vi-rose  { background: rgba(225,29,72,0.08);  color: #e11d48; }
.video-learn-title { font-size: 15px; font-weight: 800; color: #111; }
.video-learn-frame {
    border-radius: 12px; overflow: hidden;
    background: #000; margin-bottom: 12px;
}
.video-learn-caption {
    font-size: 12px; color: #6b7280; margin: 0;
    display: flex; align-items: center; gap: 6px;
}

/* ── App page extra ── */
.app-dl-section h2 { font-size: 1.4rem; font-weight: 900; color: #111; margin-bottom: 20px; }
.app-dl-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.app-download-btn-disabled {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 16px;
    background: #374151; color: #fff; text-decoration: none;
    font-size: 15px; font-weight: 700; cursor: not-allowed; opacity: .7;
}
.app-qr-box {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; background: #f8fafc;
    border-radius: 16px; border: 1px dashed #d0d0d0;
}
.app-qr-text { font-size: 13px; color: #4b5563; line-height: 1.7; }
.app-steps-list { padding-right: 20px; font-size: 14px; color: #4b5563; line-height: 1.9; }
.app-steps-list li { margin-bottom: 10px; }
.app-support-box {
    background: #f8fafc; border-radius: 20px;
    padding: 28px; border: 1px solid #eef2f7; height: 100%;
}
.app-support-box h3 { font-size: 1rem; font-weight: 800; color: #111; margin-bottom: 12px; }
.app-support-box p { font-size: 14px; color: #4b5563; margin-bottom: 16px; line-height: 1.7; }
.app-support-list { display: flex; flex-direction: column; gap: 10px; }
.app-support-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4b5563; }
.app-steps-card-title { font-size: 1.15rem; font-weight: 900; color: #111; margin-bottom: 16px; }
.app-mockup-img { max-height: 320px; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pg-hero { padding: 80px 0 48px; }
    .pg-hero h1 { font-size: 1.5rem; }
    .pg-card { padding: 28px 20px; border-radius: 18px; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-mission { flex-direction: column; gap: 16px; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .about-cta-card { padding: 36px 24px; }
    .about-cta-card h2 { font-size: 1.2rem; }
    .pg-body { padding: 32px 0 56px; }
}
@media (max-width: 480px) {
    .contact-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .pg-card { padding: 22px 16px; }
    .about-brands { gap: 10px; }
    .about-brand-item { width: 76px; height: 48px; }
}

/* ══════════════════════════════════════════════════════════════════
   § Cart Page
══════════════════════════════════════════════════════════════════ */
.cart-wrap { display: flex; gap: 24px; align-items: flex-start; }
.cart-main  { flex: 1; min-width: 0; }
.cart-side  { width: 300px; flex-shrink: 0; position: sticky; top: 80px; }
@media (max-width: 991px) {
    .cart-wrap { flex-direction: column; }
    .cart-side { width: 100%; position: static; }
}

.cart-section-title {
    font-size: 1rem; font-weight: 700; color: #111827;
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.cart-section-title svg { color: #0069BC; }

/* ── Item card ── */
.cart-item {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 16px; margin-bottom: 12px;
    display: flex; gap: 14px; align-items: flex-start;
    transition: box-shadow .2s;
}
.cart-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.cart-item.removing { opacity: 0; transform: translateX(20px); transition: all .3s ease; }

.ci-img {
    width: 90px; height: 90px; flex-shrink: 0;
    border-radius: 12px; border: 1px solid #e5e7eb;
    background: #f9fafb; overflow: hidden;
}
.ci-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.ci-body { flex: 1; min-width: 0; }
.ci-name {
    font-size: .9rem; font-weight: 600; color: #111827;
    margin-bottom: 4px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ci-variant {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f3f4f6; border-radius: 20px; padding: 2px 10px;
    font-size: .75rem; color: #374151; margin-bottom: 6px;
}
.ci-seller { font-size: .75rem; color: #9ca3af; margin-bottom: 8px; }
.ci-seller a { color: #0069BC; text-decoration: none; }
.ci-seller a:hover { text-decoration: underline; }
.ci-express {
    display: inline-flex; align-items: center; gap: 4px;
    background: #ecfdf5; color: #16a34a; padding: 2px 10px;
    border-radius: 20px; font-size: .72rem; font-weight: 600;
    border: 1px solid #bbf7d0; margin-bottom: 8px;
}
.ci-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ci-price-col { display: flex; flex-direction: column; }
.ci-unit-price { font-size: .78rem; color: #9ca3af; }
.ci-unit-price s { font-size: .75rem; }
.ci-total-price { font-size: 1rem; font-weight: 700; color: #0069BC; }
.ci-discount-badge {
    display: inline-block; background: #fef2f2; color: #ef4444;
    font-size: .7rem; border-radius: 20px; padding: 1px 8px; margin-top: 2px;
}
.ci-qty {
    display: flex; align-items: center; gap: 6px;
    background: #f3f4f6; border-radius: 30px; padding: 4px 8px;
}
.ci-qty-btn {
    width: 28px; height: 28px; border-radius: 50%; border: none;
    background: #fff; color: #374151; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.1); transition: all .15s;
    font-weight: 700; line-height: 1;
}
.ci-qty-btn:hover { background: #0069BC; color: #fff; }
.ci-qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.ci-qty-val { min-width: 28px; text-align: center; font-size: .88rem; font-weight: 700; color: #111827; }
.ci-del {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #fee2e2;
    background: #fef2f2; color: #ef4444; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.ci-del:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* ── Summary card ── */
.cart-summary {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden;
}
.cs-head {
    background: #f8fafc; padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    font-size: .9rem; font-weight: 700; color: #111827;
    display: flex; align-items: center; gap: 8px;
}
.cs-head svg { color: #0069BC; }
.cs-body { padding: 18px; }
.cs-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; font-size: .88rem; color: #374151;
}
.cs-row.total-row {
    margin-top: 14px; padding-top: 14px;
    border-top: 2px dashed #e5e7eb;
    font-size: 1rem; font-weight: 700;
}
.cs-row.total-row .cs-val { color: #0069BC; font-size: 1.1rem; }
.cs-discount-val { color: #ef4444; font-weight: 600; }
.cs-label { color: #6b7280; }
.cs-checkout-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; border-radius: 30px;
    background: #0069BC; color: #fff; font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: all .2s; border: none; cursor: pointer;
    font-family: inherit;
}
.cs-checkout-btn:hover { background: #004f96; color: #fff; transform: translateY(-1px); }
.cs-continue-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 10px; border-radius: 30px;
    background: transparent; color: #6b7280; font-size: .85rem;
    text-decoration: none; transition: all .2s; margin-top: 10px;
    border: 1px solid #e5e7eb;
}
.cs-continue-btn:hover { border-color: #0069BC; color: #0069BC; }
.cs-trust {
    display: flex; justify-content: space-around; flex-wrap: wrap;
    gap: 8px; margin-top: 16px; padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.cs-trust-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 3px; font-size: .68rem; color: #9ca3af; text-align: center;
}
.cs-trust-item svg { color: #0069BC; }

/* ── Empty state ── */
.cart-empty {
    text-align: center; padding: 70px 24px;
    background: #fff; border-radius: 16px; border: 1px solid #e5e7eb;
}
.cart-empty-icon { color: #d1d5db; margin-bottom: 16px; display: block; }
.cart-empty h4 { font-size: 1.1rem; font-weight: 700; color: #374151; margin-bottom: 8px; }
.cart-empty p  { font-size: .88rem; color: #9ca3af; margin-bottom: 20px; }
.cart-empty-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #0069BC; color: #fff; padding: 11px 28px;
    border-radius: 30px; font-weight: 600; text-decoration: none;
    transition: all .2s;
}
.cart-empty-btn:hover { background: #004f96; color: #fff; }

.breadcrumb { background: none; padding: 0; margin-bottom: 0; font-size: .85rem; }
.breadcrumb-item a { color: #6b7280; text-decoration: none; }
.breadcrumb-item a:hover { color: #0069BC; }
.breadcrumb-item.active { color: #374151; }

/* ══════════════════════════════════════════════════════════════════
   § Select-Address Page
══════════════════════════════════════════════════════════════════ */

/* ── Layout ── */
.as-wrap { display: flex; gap: 24px; align-items: flex-start; }
.as-main  { flex: 1; min-width: 0; }
.as-side  { width: 320px; flex-shrink: 0; position: sticky; top: 80px; }
@media (max-width: 991px) {
    .as-wrap { flex-direction: column; }
    .as-side { width: 100%; position: static; }
}

/* ── Section header ── */
.as-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}
.as-section-title {
    display: flex; align-items: center; gap: 8px;
    font-size: .95rem; font-weight: 700; color: #111827;
}
.as-section-title svg { color: #0069BC; }

/* ── Address card ── */
.addr-card {
    background: #fff; border: 2px solid #e5e7eb; border-radius: 14px;
    padding: 16px; margin-bottom: 12px; cursor: pointer;
    transition: all .2s; position: relative;
    display: flex; align-items: flex-start; gap: 12px;
}
.addr-card:hover { border-color: #93c5fd; box-shadow: 0 4px 14px rgba(0,105,188,.08); }
.addr-card.selected { border-color: #0069BC; background: #eff6ff; }

.address-radio { position: absolute; opacity: 0; width: 0; height: 0; }

.addr-radio {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid #d1d5db; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.addr-card.selected .addr-radio { border-color: #0069BC; background: #0069BC; }
.addr-card.selected .addr-radio::after {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}

.addr-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: #eff6ff; display: flex; align-items: center; justify-content: center;
    color: #0069BC; transition: background .2s;
}
.addr-card.selected .addr-icon { background: #dbeafe; }

.addr-body { flex: 1; min-width: 0; }
.addr-name { font-size: .9rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.addr-line { font-size: .8rem; color: #6b7280; line-height: 1.6; margin-bottom: 3px; }
.addr-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.addr-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f3f4f6; border-radius: 20px; padding: 2px 10px;
    font-size: .73rem; color: #374151;
}
.addr-pill svg { color: #9ca3af; }

.addr-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.addr-action-btn {
    width: 30px; height: 30px; border-radius: 8px; border: 1px solid #e5e7eb;
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .2s;
}
.addr-action-btn.edit-address   { color: #0069BC; }
.addr-action-btn.delete-address { color: #ef4444; }
.addr-action-btn.edit-address:hover   { background: #0069BC; color: #fff; border-color: #0069BC; }
.addr-action-btn.delete-address:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* ── Add address button ── */
.add-addr-btn {
    width: 100%; border: 2px dashed #93c5fd; background: transparent;
    color: #0069BC; border-radius: 14px; padding: 14px;
    font-size: .88rem; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all .2s; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.add-addr-btn:hover { background: #eff6ff; border-color: #0069BC; }

/* ── Continue button ── */
.continue-btn {
    width: 100%; background: #0069BC; color: #fff; border: none;
    border-radius: 30px; padding: 13px; font-size: .95rem; font-weight: 700;
    font-family: inherit; cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.continue-btn:hover:not(:disabled) { background: #004f96; transform: translateY(-1px); }
.continue-btn:disabled { background: #9ca3af; cursor: not-allowed; }

/* ── Empty state ── */
.addr-empty {
    text-align: center; padding: 48px 24px;
    border: 2px dashed #e5e7eb; border-radius: 14px;
    background: #fafafa; margin-bottom: 14px;
    display: flex; flex-direction: column; align-items: center;
}
.addr-empty svg { color: #d1d5db; margin-bottom: 10px; }
.addr-empty p { font-size: .85rem; color: #9ca3af; margin: 0; }

/* ── Summary sidebar ── */
.as-summary { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; }
.ass-head {
    padding: 13px 18px; background: #f8fafc; border-bottom: 1px solid #e5e7eb;
    font-size: .9rem; font-weight: 700; color: #111827;
    display: flex; align-items: center; gap: 8px;
}
.ass-head svg { color: #0069BC; }
.ass-body { padding: 16px 18px; }

.ass-item {
    display: flex; gap: 10px; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f9fafb;
}
.ass-item:last-child { border-bottom: none; }
.ass-item-img {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px;
    border: 1px solid #e5e7eb; background: #f9fafb; overflow: hidden;
}
.ass-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.ass-item-info { flex: 1; min-width: 0; }
.ass-item-name {
    font-size: .8rem; font-weight: 600; color: #111827; margin-bottom: 2px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ass-item-qty { font-size: .73rem; color: #9ca3af; }
.ass-item-original { font-size: .7rem; color: #9ca3af; text-decoration: line-through; }
.ass-item-price { font-size: .82rem; font-weight: 700; color: #0069BC; flex-shrink: 0; text-align: left; }
.ass-item-price-disc { color: #16a34a; }

.ass-divider { border: none; border-top: 1px dashed #e5e7eb; margin: 12px 0; }
.ass-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; margin-bottom: 8px;
}
.ass-label { color: #6b7280; }
.ass-val   { font-weight: 600; color: #111827; }
.ass-val.strike { color: #9ca3af; text-decoration: line-through; font-weight: 400; }
.ass-val.red    { color: #ef4444; }

.ass-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 12px; padding-top: 12px; border-top: 2px dashed #e5e7eb;
    font-size: 1rem; font-weight: 700;
}
.ass-total-val { color: #0069BC; font-size: 1.1rem; }

.ass-trust {
    display: flex; justify-content: space-around; flex-wrap: wrap;
    gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f1f5f9;
}
.ass-trust-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 3px; font-size: .68rem; color: #9ca3af; text-align: center;
}
.ass-trust-item svg { color: #0069BC; }

/* ── Address modal ── */
#addressModal .modal-content { border-radius: 18px; border: none; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
#addressModal .modal-header {
    padding: 18px 22px 12px; border-bottom: 1px solid #f1f5f9; background: #f8fafc;
    border-radius: 18px 18px 0 0;
}
#addressModal .modal-title { font-size: .95rem; font-weight: 700; color: #111827; }
#addressModal .modal-body { padding: 18px 22px; }
#addressModal .modal-footer { padding: 12px 22px 18px; border-top: 1px solid #f1f5f9; border-radius: 0 0 18px 18px; }
.modal-field-label { font-size: .78rem; font-weight: 700; color: #374151; margin-bottom: 6px; display: block; }
.modal-input {
    width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
    padding: 9px 12px; font-size: .85rem; font-family: inherit;
    outline: none; transition: border-color .2s; background: #fff;
}
.modal-input:focus { border-color: #0069BC; }
textarea.modal-input { resize: vertical; min-height: 72px; }
.modal-save-btn {
    background: #0069BC; color: #fff; border: none; border-radius: 10px;
    padding: 9px 22px; font-size: .85rem; font-family: inherit;
    font-weight: 600; cursor: pointer; transition: background .2s;
}
.modal-save-btn:hover { background: #004f96; }
.modal-cancel-btn {
    background: #f3f4f6; color: #374151; border: none; border-radius: 10px;
    padding: 9px 22px; font-size: .85rem; font-family: inherit; cursor: pointer;
    transition: background .2s;
}
.modal-cancel-btn:hover { background: #e5e7eb; }

/* ── Select2 overrides ── */
.select2-container { width: 100% !important; }
.select2-container--default .select2-selection--single {
    height: 38px; border: 1.5px solid #e5e7eb; border-radius: 10px;
    background: #fff; display: flex; align-items: center; padding: 0 10px;
    font-family: inherit; font-size: .85rem; transition: border-color .2s;
}
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0069BC; outline: none; box-shadow: 0 0 0 3px rgba(0,105,188,.1);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #374151; line-height: normal; padding: 0; font-size: .85rem; font-family: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder { color: #9ca3af; }
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px; width: 28px; right: auto; left: 6px; top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #9ca3af transparent transparent transparent;
    border-width: 5px 4px 0 4px; margin-top: -2px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #0069BC transparent; border-width: 0 4px 5px 4px;
}
.select2-dropdown {
    border: 1.5px solid #0069BC; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,105,188,.12); font-family: inherit; font-size: .85rem; overflow: hidden;
}
.select2-container--open .select2-dropdown--below { border-top: none; border-radius: 0 0 10px 10px; }
.select2-container--open .select2-dropdown--above { border-bottom: none; border-radius: 10px 10px 0 0; }
.select2-search--dropdown { padding: 8px 10px; background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.select2-search--dropdown .select2-search__field {
    border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 6px 10px;
    font-size: .82rem; font-family: inherit; outline: none; width: 100%; transition: border-color .2s;
}
.select2-search--dropdown .select2-search__field:focus { border-color: #0069BC; }
.select2-results__options { max-height: 200px; overflow-y: auto; padding: 4px 0; }
.select2-results__option {
    padding: 8px 14px; font-size: .85rem; font-family: inherit; color: #374151; transition: background .15s;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: #0069BC; color: #fff; }
.select2-container--default .select2-results__option[aria-selected="true"] { background: #eff6ff; color: #0069BC; font-weight: 600; }
.select2-container--default .select2-results__option[aria-disabled="true"] { color: #9ca3af; }

/* ══════════════════════════════════════════════════════════════════
   § Checkout Page
══════════════════════════════════════════════════════════════════ */

/* ── Layout ── */
.checkout-wrap { display: flex; gap: 24px; align-items: flex-start; }
.co-main { flex: 1; min-width: 0; }
.co-side { width: 320px; flex-shrink: 0; position: sticky; top: 80px; }
@media (max-width: 991px) {
    .checkout-wrap { flex-direction: column; }
    .co-side { width: 100%; position: static; }
}

/* ── Shared card ── */
.co-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 16px; overflow: hidden; margin-bottom: 16px;
}
.co-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px; background: #f8fafc; border-bottom: 1px solid #e5e7eb;
}
.co-card-title {
    display: flex; align-items: center; gap: 8px;
    font-size: .9rem; font-weight: 700; color: #111827;
}
.co-card-title svg { color: #0069BC; }
.co-card-body { padding: 16px 18px; }

/* ── Address ── */
.address-detail { display: flex; gap: 12px; align-items: flex-start; }
.address-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: #eff6ff; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #0069BC;
}
.address-text { flex: 1; }
.address-name { font-weight: 700; font-size: .9rem; color: #111827; margin-bottom: 4px; }
.address-line { font-size: .82rem; color: #6b7280; line-height: 1.6; }
.address-phone {
    display: flex; align-items: center; gap: 4px;
    font-size: .82rem; color: #374151; margin-top: 4px;
}
.address-change {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .78rem; color: #0069BC; text-decoration: none;
    border: 1px solid #bfdbfe; border-radius: 20px; padding: 4px 12px;
    transition: all .2s; flex-shrink: 0;
}
.address-change:hover { background: #0069BC; color: #fff; border-color: #0069BC; }

/* ── Seller group ── */
.seller-head {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 18px; background: #fafafa; border-bottom: 1px solid #e5e7eb;
}
.seller-logo-img {
    width: 44px; height: 44px; border-radius: 10px;
    object-fit: cover; border: 1px solid #e5e7eb; background: #fff;
}
.seller-icon-wrap {
    width: 44px; height: 44px; border-radius: 10px;
    background: #eff6ff; display: flex; align-items: center; justify-content: center;
    color: #0069BC; flex-shrink: 0;
}
.seller-title { font-weight: 700; font-size: .9rem; color: #111827; }
.seller-badge {
    font-size: .7rem; color: #6b7280; background: #f3f4f6;
    border-radius: 20px; padding: 2px 8px; margin-top: 2px; display: inline-block;
}

/* ── Order items ── */
.co-items { padding: 12px 18px; border-bottom: 1px solid #f1f5f9; }
.co-item {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f9fafb;
}
.co-item:last-child { border-bottom: none; }
.co-item-img {
    width: 60px; height: 60px; flex-shrink: 0;
    border-radius: 10px; border: 1px solid #e5e7eb;
    background: #f9fafb; overflow: hidden;
}
.co-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-name {
    font-size: .83rem; font-weight: 600; color: #111827;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 3px;
}
.co-item-qty { font-size: .75rem; color: #9ca3af; }
.co-item-variant-tag {
    display: inline-flex; align-items: center; gap: 3px;
    background: #f3f4f6; border-radius: 20px; padding: 1px 8px;
    font-size: .72rem; color: #374151; margin-top: 2px;
}
.co-item-price-wrap {
    display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; gap: 2px;
}
.co-item-old-price { font-size: .72rem; color: #9ca3af; text-decoration: line-through; }
.co-item-disc-badge {
    display: inline-flex; align-items: center;
    background: #fef2f2; color: #ef4444;
    font-size: .68rem; font-weight: 700; border-radius: 20px; padding: 1px 7px;
}
.co-item-price { font-size: .88rem; font-weight: 700; color: #0069BC; flex-shrink: 0; }
.co-item-price.has-discount { color: #16a34a; }

/* ── Shipping ── */
.shipping-section { padding: 14px 18px; }
.shipping-label {
    font-size: .8rem; font-weight: 700; color: #374151;
    margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.shipping-label svg { color: #0069BC; }
.shipping-options { display: flex; flex-direction: column; gap: 8px; }
.shipping-card {
    display: flex; align-items: center; gap: 12px;
    border: 2px solid #e5e7eb; border-radius: 12px;
    padding: 12px 14px; cursor: pointer; transition: all .2s;
    position: relative; overflow: hidden;
}
.shipping-card:hover { border-color: #93c5fd; background: #f0f9ff; }
.shipping-card.selected { border-color: #0069BC; background: #eff6ff; }
.shipping-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.shipping-radio-dot {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid #d1d5db; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.shipping-card.selected .shipping-radio-dot { border-color: #0069BC; background: #0069BC; }
.shipping-card.selected .shipping-radio-dot::after {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.shipping-icon {
    width: 36px; height: 36px; border-radius: 8px; overflow: hidden;
    background: #f3f4f6; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #6b7280;
}
.shipping-icon img { width: 100%; height: 100%; object-fit: contain; }
.shipping-info { flex: 1; min-width: 0; }
.shipping-name { font-size: .85rem; font-weight: 600; color: #111827; }
.shipping-delivery { font-size: .74rem; color: #9ca3af; margin-top: 2px; }
.shipping-price-tag { font-size: .88rem; font-weight: 700; color: #111827; flex-shrink: 0; }
.shipping-price-tag.free { color: #16a34a; }

.express-card { border-color: #bbf7d0 !important; background: linear-gradient(135deg,#f0fdf4 0%,#fff 100%) !important; }
.express-card:hover { border-color: #4ade80 !important; }
.express-card.selected { border-color: #16a34a !important; background: #f0fdf4 !important; }
.express-card.selected .shipping-radio-dot { border-color: #16a34a !important; background: #16a34a !important; }
.express-card::after {
    content: '⚡ فوری'; position: absolute; top: 0; left: 0;
    background: #16a34a; color: #fff; font-size: .62rem; font-weight: 700;
    padding: 3px 10px; border-radius: 0 0 8px 0; letter-spacing: .02em;
}
.express-card .shipping-delivery { color: #15803d !important; font-weight: 600; }
.express-price { color: #16a34a !important; }
.no-shipping { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #9ca3af; padding: 10px 0; }

/* ── Summary sidebar ── */
.co-summary { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; }
.cos-head {
    padding: 13px 18px; background: #f8fafc; border-bottom: 1px solid #e5e7eb;
    font-size: .9rem; font-weight: 700; color: #111827;
    display: flex; align-items: center; gap: 8px;
}
.cos-head svg { color: #0069BC; }
.cos-body { padding: 16px 18px; }

.cos-seller-block {
    background: #f9fafb; border-radius: 10px; padding: 10px 12px;
    margin-bottom: 10px; border: 1px solid #f1f5f9;
}
.cos-seller-name { font-size: .8rem; font-weight: 700; color: #374151; margin-bottom: 6px; }
.cos-seller-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; color: #6b7280; margin-bottom: 3px;
}
.cos-seller-row .val { color: #111827; font-weight: 600; }
.cos-seller-row .val.discount { color: #ef4444; }

.cos-divider { border: none; border-top: 1px dashed #e5e7eb; margin: 12px 0; }
.cos-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; color: #374151; margin-bottom: 8px;
}
.cos-row.muted .cos-val { color: #9ca3af; text-decoration: line-through; }
.cos-row.danger .cos-val { color: #ef4444; font-weight: 600; }
.cos-label { color: #6b7280; }
.cos-val { font-weight: 600; color: #111827; }
.cos-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 12px; padding-top: 12px; border-top: 2px dashed #e5e7eb;
    font-size: 1rem; font-weight: 700;
}
.cos-total-val { color: #0069BC; font-size: 1.15rem; }

/* ── Coupon / referral ── */
.co-code-label {
    display: flex; align-items: center; gap: 5px;
    font-size: .8rem; font-weight: 700; color: #374151;
    margin-bottom: 6px;
}
.co-code-label svg { color: #0069BC; }
.code-input-wrap { display: flex; gap: 6px; margin-top: 12px; }
.code-input-wrap input {
    flex: 1; border: 1.5px solid #e5e7eb; border-radius: 10px;
    padding: 8px 12px; font-size: .82rem; font-family: inherit;
    outline: none; transition: border-color .2s;
}
.code-input-wrap input:focus { border-color: #0069BC; }
.code-apply-btn {
    background: #0069BC; color: #fff; border: none; border-radius: 10px;
    padding: 8px 14px; font-size: .8rem; font-family: inherit;
    cursor: pointer; white-space: nowrap; transition: background .2s; font-weight: 600;
}
.code-apply-btn:hover { background: #004f96; }
.code-result { font-size: .76rem; margin-top: 6px; padding: 0 2px; min-height: 18px; }
.code-applied-row {
    display: flex; align-items: center; justify-content: space-between;
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 6px 10px;
}
.code-applied-text { color: #16a34a; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.code-remove-btn {
    background: none; border: none; color: #9ca3af; font-size: .72rem;
    cursor: pointer; font-family: inherit; padding: 0; transition: color .15s;
    display: flex; align-items: center; gap: 3px;
}
.code-remove-btn:hover { color: #ef4444; }

/* ── Submit ── */
.cos-submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; border-radius: 30px;
    background: #16a34a; color: #fff; font-size: .95rem; font-weight: 700;
    border: none; cursor: pointer; font-family: inherit; transition: all .2s; margin-top: 14px;
}
.cos-submit:hover { background: #15803d; transform: translateY(-1px); }
.cos-submit:disabled { background: #9ca3af; cursor: not-allowed; transform: none; }

/* ── Loading overlay ── */
.loading-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,.85); backdrop-filter: blur(4px);
    z-index: 9999; flex-direction: column; align-items: center; justify-content: center;
}
.loading-overlay.active { display: flex; }
.loading-spinner-wrap { text-align: center; }
.co-spinner {
    width: 44px; height: 44px; border-radius: 50%;
    border: 4px solid #e5e7eb; border-top-color: #0069BC;
    animation: co-spin 1s linear infinite; margin: 0 auto;
}
@keyframes co-spin { to { transform: rotate(360deg); } }
.loading-spinner-wrap p { font-size: .9rem; color: #374151; margin-top: 12px; font-weight: 600; }
