@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
    --gold-primary: #d4a746;
    --gold-light: #f3d490;
    --gold-dark: #b38728;
    --bg-dark: #0a0a0a;
}
html {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    scrollbar-gutter: stable;
}
body {
    background-color: var(--bg-dark);
    color: #e5e5e5;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    margin: 0;
}
.site-main {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.page-header {
    padding: 1.75rem 0 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(212, 167, 70, 0.06) 0%, transparent 100%);
    margin-bottom: 0.5rem;
}
.page-header__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.page-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}
.page-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #737373;
}
.page-breadcrumb__item.is-current {
    color: var(--gold-primary);
}
.page-breadcrumb__link {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.15s ease;
}
.page-breadcrumb__link:hover {
    color: var(--gold-primary);
}
.page-breadcrumb__sep {
    font-size: 0.5rem;
    opacity: 0.45;
    color: #525252;
}
.page-header__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0;
}
.page-header__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

#page-root {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.gold-text {
    background: linear-gradient(to bottom, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cinzel', serif;
}
.golden-steel-text {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    font-family: 'Arial Black', Impact, 'Cinzel', sans-serif;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 2px,
            transparent 2px,
            transparent 4px
        ),
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fff099 12%,
            #ffd700 35%,
            #d4af37 55%,
            #aa7c11 75%,
            #ffcc00 100%
        );
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.85));
}
.site-brand {
    display: block;
    max-width: calc(100vw - 5.5rem);
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    letter-spacing: 0.04em;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .site-brand {
        max-width: none;
        font-size: 1.35rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
}
@media (min-width: 1024px) {
    .site-brand {
        font-size: 1.45rem;
        letter-spacing: 0.06em;
    }
}
.gold-border { border: 1px solid var(--gold-primary); }
.gold-bg {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: #000;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.nav-link:hover { color: var(--gold-primary); transition: color 0.3s ease; }
.nav-link-icon {
    color: var(--gold-primary);
    font-size: 0.7rem;
    opacity: 0.92;
    flex-shrink: 0;
}
.nav-dropdown {
    position: relative;
    z-index: 90;
}
.nav-dropdown__trigger .nav-dropdown__caret {
    font-size: 0.55rem;
    margin-left: 0.15rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret {
    transform: rotate(180deg);
}
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.25rem);
    min-width: 11.5rem;
    padding: 0.4rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 167, 70, 0.3);
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    color: #e5e5e5;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    white-space: nowrap;
}
.nav-dropdown__link i {
    color: var(--gold-primary);
    font-size: 0.7rem;
    width: 0.9rem;
    text-align: center;
}
.nav-dropdown__link:hover {
    background: rgba(212, 167, 70, 0.12);
    color: var(--gold-light);
}
.section-title { font-family: 'Cinzel', serif; letter-spacing: 0.1em; }
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 167, 70, 0.1);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
}
#imageOpener {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

/* Mobile navigation — panel above overlay; overlay above page (not trapping clicks on menu) */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.mobile-nav-overlay.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100%;
    max-height: 100dvh;
    background: #0a0a0a;
    border-left: 1px solid rgba(212, 167, 70, 0.2);
    z-index: 100;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    pointer-events: none;
}
.mobile-nav-panel.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    color: #e5e5e5;
    border: 1px solid transparent;
    margin-bottom: 0.25rem;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--gold-primary);
    background: rgba(212, 167, 70, 0.08);
    border-color: rgba(212, 167, 70, 0.15);
}
.mobile-nav-link-icon {
    color: var(--gold-primary);
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.95;
}
.mobile-nav-link--sub {
    margin-left: 1rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-size: 0.8em;
    color: #a3a3a3;
    border-left: 2px solid rgba(212, 167, 70, 0.35);
    border-radius: 0 0.5rem 0.5rem 0;
}
body.mobile-nav-open {
    overflow: hidden;
}

/* Scroll motion — slide from sides (no blur). Needs body.motion-js from app.js */
body:not(.motion-js) .reveal,
body:not(.motion-js) .reveal-item {
    opacity: 1;
    transform: none;
}

body.motion-js .reveal,
body.motion-js .reveal-item {
    opacity: 0;
    transition:
        opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.motion-js .reveal.is-visible,
body.motion-js .reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

body.motion-js .reveal-from-bottom,
body.motion-js .reveal-item.reveal-from-bottom {
    transform: translate3d(0, 70px, 0);
}
body.motion-js .reveal-from-top,
body.motion-js .reveal-item.reveal-from-top {
    transform: translate3d(0, -70px, 0);
}
body.motion-js .reveal-from-scale,
body.motion-js .reveal-item.reveal-from-scale {
    transform: translate3d(0, 50px, 0) scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
    body.motion-js .reveal,
    body.motion-js .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Site footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
}
@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.35fr repeat(3, 1fr);
        gap: 2rem 2.5rem;
    }
}
.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.85rem;
}
.site-footer__logo {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid rgba(212, 167, 70, 0.45);
}
.site-footer__site-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}
.site-footer__tagline {
    font-size: 0.8125rem;
    color: #a3a3a3;
    line-height: 1.55;
    margin: 0 0 0.35rem;
    max-width: 20rem;
}
.site-footer__muted {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #525252;
    margin: 0 0 1.25rem;
}
.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d4d4d4;
    font-size: 1rem;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.site-footer__social-btn:hover {
    color: var(--gold-primary);
    border-color: rgba(212, 167, 70, 0.5);
    background: rgba(212, 167, 70, 0.08);
}
.site-footer__social-btn--wa:hover {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.08);
}
.site-footer__heading {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    margin: 0 0 1rem;
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.site-footer__links a {
    color: #a3a3a3;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: flex-start;
    gap: 0.45rem;
}
.site-footer__links a:hover {
    color: var(--gold-primary);
}
.site-footer__link-icon {
    color: var(--gold-primary);
    opacity: 0.85;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 0.875rem;
    text-align: center;
}
.site-footer__address {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    color: #737373;
    font-size: 0.875rem;
    line-height: 1.5;
}
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.35);
}
.site-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    color: #525252;
}
.site-footer__bottom-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.75rem;
}
.site-footer__bottom-nav a {
    color: #737373;
    text-decoration: none;
}
.site-footer__bottom-nav a:hover {
    color: var(--gold-primary);
}
.site-footer__dot {
    color: #404040;
    user-select: none;
}

.contact-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-social-list__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-social-list__link:hover {
    color: var(--gold-primary);
}
.contact-social-list__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(212, 167, 70, 0.35);
    color: var(--gold-primary);
    font-size: 1.1rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.contact-social-list__icon--wa {
    background: var(--gold-primary);
    color: #0a0a0a;
    border-color: var(--gold-primary);
}
.contact-social-list__link:hover .contact-social-list__icon:not(.contact-social-list__icon--wa) {
    background: var(--gold-primary);
    color: #0a0a0a;
}
.contact-social-list__label {
    font-weight: 600;
    font-size: 0.95rem;
}

.scroll-jump {
    position: fixed;
    right: 1rem;
    bottom: 1.25rem;
    z-index: 45;
    pointer-events: none;
}
.scroll-jump__btn {
    pointer-events: auto;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--gold-primary);
    background: rgba(10, 10, 10, 0.92);
    color: var(--gold-primary);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
}
.scroll-jump__btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-jump__btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
}
.scroll-jump__btn:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}
@media (min-width: 1024px) {
    .scroll-jump {
        right: 1.5rem;
        bottom: 1.5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-jump__btn {
        transition: opacity 0.15s ease;
    }
}

/* Course enrollment countdown */
.course-enroll-timer {
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(212, 167, 70, 0.35);
    background: linear-gradient(180deg, rgba(212, 167, 70, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.course-enroll-timer--last {
    border-color: rgba(239, 68, 68, 0.45);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.course-enroll-timer--closed {
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.03);
}
.course-enroll-timer__eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    font-weight: 700;
    margin: 0 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.course-enroll-timer--last .course-enroll-timer__eyebrow {
    color: #f87171;
}
.course-enroll-timer--closed .course-enroll-timer__eyebrow {
    color: #94a3b8;
}
.course-enroll-timer__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f5f5;
    margin: 0 0 1rem;
    line-height: 1.45;
}
.course-enroll-timer__digits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}
.course-enroll-timer__digits > div {
    text-align: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 167, 70, 0.25);
    background: rgba(0, 0, 0, 0.35);
    padding: 0.65rem 0.25rem;
}
.course-enroll-timer--last .course-enroll-timer__digits > div {
    border-color: rgba(239, 68, 68, 0.3);
}
.course-enroll-timer__digits span {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.course-enroll-timer--last .course-enroll-timer__digits span {
    color: #fca5a5;
}
.course-enroll-timer__digits small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}
.course-enroll-timer__progress {
    margin-top: 0.9rem;
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.course-enroll-timer__progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
    transition: width 0.4s ease;
}
.course-enroll-timer__hint {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.4;
}

/* Blog post content */
.blog-content {
    font-size: 1.05rem;
    line-height: 1.9;
}
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
    margin: 1.75rem 0 1rem;
    font-weight: 700;
    line-height: 1.45;
}
.blog-content p {
    margin: 0 0 1.25rem;
    line-height: 1.9;
}
.blog-content ul,
.blog-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    line-height: 1.9;
}
.blog-content li {
    margin-bottom: 0.55rem;
    line-height: 1.85;
}
.blog-content a {
    color: var(--gold-primary);
    text-decoration: underline;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.25rem 0;
}
.blog-content blockquote {
    border-left: 2px solid var(--gold-primary);
    padding-left: 1rem;
    margin: 1.25rem 0;
    color: #d1d5db;
    font-style: italic;
    line-height: 1.85;
}

/* Share row */
.blog-share {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-share__label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.85rem;
}
.blog-share__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.blog-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 167, 70, 0.35);
    color: #e5e5e5;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-share__btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    border-color: var(--gold-primary);
}
.blog-share__btn.is-copied {
    background: rgba(212, 167, 70, 0.2);
    color: var(--gold-primary);
}

/* Single blog cover — full image, no crop */
.blog-post-cover {
    overflow: hidden;
    line-height: 0;
}
.blog-post-cover__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(70vh, 720px);
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    background: #171717;
}

/* Urdu / RTL blog — Noto Nastaliq must beat Cinzel / gold-text / section-title.
   Never force Nastaliq onto <i> icons (Font Awesome needs its own font). */
.page-header__copy--rtl,
.page-header__title--urdu,
.page-header__copy--rtl .page-header__title,
.page-header__copy--rtl .page-header__subtitle,
.blog-post--urdu,
.blog-post--urdu *:not(i):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
.blog-post-item--urdu,
.blog-post-item--urdu *:not(i):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
.blog-content--urdu,
.blog-content--urdu *:not(i):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
.blog-post-item--urdu .gold-text,
.blog-post-item--urdu .gold-text a,
.page-header__title--urdu.gold-text,
.page-header__title--urdu.section-title {
    font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.blog-post--urdu .fas,
.blog-post--urdu .far,
.blog-post--urdu .fa-solid,
.blog-post--urdu .fa-regular,
.blog-post-item--urdu .fas,
.blog-post-item--urdu .far,
.blog-post-item--urdu .fa-solid,
.blog-post-item--urdu .fa-regular,
.blog-content--urdu .fas,
.blog-content--urdu .far,
.blog-share .fas,
.blog-share .far,
.blog-post-meta .fas,
.blog-post-meta .far {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
}
.blog-post--urdu .fab,
.blog-post--urdu .fa-brands,
.blog-post-item--urdu .fab,
.blog-post-item--urdu .fa-brands,
.blog-share .fab,
.blog-share .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
}
.blog-post--urdu .fas,
.blog-post--urdu .fa-solid,
.blog-post-item--urdu .fas,
.blog-post-item--urdu .fa-solid,
.blog-share .fas,
.blog-post-meta .fas {
    font-weight: 900 !important;
}
.blog-post--urdu .far,
.blog-post--urdu .fa-regular,
.blog-post-item--urdu .far,
.blog-post-item--urdu .fa-regular,
.blog-post-meta .far {
    font-weight: 400 !important;
}
/* Gradient text-fill clips Nastaliq glyphs — use solid gold for Urdu titles */
.page-header__title--urdu.gold-text,
.blog-post-item--urdu .gold-text,
.blog-post-item--urdu .gold-text a {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    filter: none !important;
}
.page-header__copy--rtl {
    direction: rtl;
    text-align: right;
    width: 100%;
}
.page-header__copy--rtl .page-header__title,
.page-header__title--urdu {
    text-align: right;
    direction: rtl;
    line-height: 2;
    unicode-bidi: isolate;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.page-header__subtitle--urdu {
    text-align: right;
    direction: rtl;
    line-height: 2;
    font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, sans-serif !important;
}
.page-header__copy--rtl .page-header__subtitle {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    line-height: 2;
}
.blog-content--urdu {
    text-align: right;
    direction: rtl;
    line-height: 2.45;
    font-size: 1.15rem;
}
.blog-content--urdu h2,
.blog-content--urdu h3,
.blog-content--urdu h4 {
    font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 2;
    text-align: right;
}
.blog-content--urdu p,
.blog-content--urdu li,
.blog-content--urdu span,
.blog-content--urdu strong,
.blog-content--urdu em {
    font-family: inherit !important;
    line-height: 2.45;
}
.blog-content--urdu ul,
.blog-content--urdu ol {
    padding-left: 0;
    padding-right: 1.25rem;
}
.blog-content--urdu blockquote {
    border-left: none;
    border-right: 2px solid var(--gold-primary);
    padding-left: 0;
    padding-right: 1rem;
    line-height: 2.3;
    font-style: normal;
}
.blog-post--urdu .blog-post-excerpt,
.blog-post--urdu > p {
    font-family: 'Noto Nastaliq Urdu', 'Noto Naskh Arabic', 'Segoe UI', Tahoma, sans-serif !important;
    text-align: right;
    line-height: 2.2;
    font-style: normal;
}
.blog-post-item--urdu .blog-post-item__meta,
.blog-post-item--urdu .blog-post-item__excerpt,
.blog-post-item--urdu h2 {
    text-align: right;
    line-height: 2;
}

/* Blog list / card layout toggle */
.blog-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.blog-view-btn:hover { color: var(--gold-primary); border-color: rgba(212, 167, 70, 0.45); }
.blog-view-btn.is-active {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    border-color: transparent;
}
.blog-posts--cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .blog-posts--cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .blog-posts--cards { grid-template-columns: repeat(3, 1fr); }
}
.blog-posts--cards .blog-post-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-posts--cards .blog-post-item__media {
    display: block;
    aspect-ratio: 16 / 10;
}
.blog-posts--list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .blog-posts--list { gap: 1.25rem; }
}
.blog-posts--list .blog-post-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 640px) {
    .blog-posts--list .blog-post-item {
        grid-template-columns: minmax(160px, 220px) 1fr;
        align-items: stretch;
    }
}
.blog-posts--list .blog-post-item__media {
    display: block;
    aspect-ratio: 16 / 10;
    max-height: 200px;
}
@media (min-width: 640px) {
    .blog-posts--list .blog-post-item__media {
        aspect-ratio: auto;
        max-height: none;
        min-height: 100%;
        height: 100%;
    }
}
.blog-posts--list .blog-post-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 639px) {
    .blog-posts--list .blog-post-item__excerpt {
        -webkit-line-clamp: 2;
    }
}

/* Shop cart */
.sc-cart-badge,
.sc-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--gold-primary);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
}
.sc-cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
}
.sc-cart-badge.is-empty,
.sc-cart-count.is-empty {
    display: none;
}
.shop-cart-fab {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 85;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    transition: transform 0.2s, opacity 0.2s;
}
.shop-cart-fab span {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: #0a0a0a;
    color: var(--gold-primary);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-cart-fab.is-empty {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}
.shop-cart-toast,
.sc-form-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(1rem);
    background: #111;
    border: 1px solid rgba(212,167,70,0.45);
    color: #e8e8e8;
    padding: 0.75rem 1.25rem;
    border-radius: 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    max-width: min(22rem, calc(100vw - 2rem));
    text-align: center;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.shop-cart-toast.is-show,
.sc-form-toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.sc-form-toast.is-ok {
    border-color: rgba(74, 222, 128, 0.55);
}
.sc-form-toast.is-err {
    border-color: rgba(248, 113, 113, 0.55);
}
.form-message {
    min-height: 1.25rem;
    font-weight: 600;
}
.form-message--ok {
    color: #4ade80 !important;
}
.form-message--err {
    color: #f87171 !important;
}

/* Right-side cart drawer */
.shop-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 110;
    pointer-events: none;
}
.shop-cart-drawer.is-open {
    pointer-events: auto;
}
.shop-cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.28s ease;
}
.shop-cart-drawer.is-open .shop-cart-drawer__backdrop {
    opacity: 1;
}
.shop-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 24rem);
    height: 100%;
    background: #0f0f0f;
    border-left: 1px solid rgba(212, 167, 70, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
}
.shop-cart-drawer.is-open .shop-cart-drawer__panel {
    transform: translateX(0);
}
.shop-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.shop-cart-drawer__title {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.shop-cart-drawer__close {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e5e5;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}
.shop-cart-drawer__empty {
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}
.shop-cart-drawer__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.shop-cart-drawer__lines {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.shop-cart-drawer__line {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.shop-cart-drawer__line-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #171717;
    flex-shrink: 0;
}
.shop-cart-drawer__line-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-cart-drawer__line-body {
    flex: 1;
    min-width: 0;
}
.shop-cart-drawer__line-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    line-height: 1.35;
    display: block;
    margin-bottom: 0.25rem;
}
.shop-cart-drawer__line-meta {
    font-size: 0.7rem;
    color: #9ca3af;
}
.shop-cart-drawer__foot {
    padding: 1rem 1.15rem 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0a;
}
body.shop-cart-open {
    overflow: hidden;
}

/* City autocomplete on checkout */
.shop-city-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 0.15rem);
    z-index: 30;
    background: #121212;
    border: 1px solid rgba(212, 167, 70, 0.35);
    border-radius: 0.65rem;
    max-height: 14rem;
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.shop-city-suggestion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #e5e5e5;
    font-size: 0.85rem;
    cursor: pointer;
}
.shop-city-suggestion:last-child {
    border-bottom: 0;
}
.shop-city-suggestion:hover,
.shop-city-suggestion:focus {
    background: rgba(212, 167, 70, 0.12);
    outline: none;
}
.shop-city-suggestion__fee {
    color: var(--gold-primary);
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}
.shop-qty-btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(255,255,255,0.15);
    color: #e5e5e5;
    background: rgba(255,255,255,0.04);
    font-size: 1rem;
    line-height: 1;
}
.shop-qty-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Reusable product carousel: 1 mobile, 2 tablet, 4 desktop */
.product-carousel-section {
    background: linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
}
.product-carousel {
    position: relative;
    overflow: hidden;
}
.product-carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.15rem 0.1rem 0.75rem;
}
.product-carousel__track::-webkit-scrollbar {
    display: none;
}
.product-carousel__item {
    flex: 0 0 calc(86% - 0.5rem);
    scroll-snap-align: start;
    min-width: 0;
}
.product-carousel__controls {
    display: inline-flex;
    gap: 0.5rem;
}
.product-carousel__arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 167, 70, 0.45);
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.product-carousel__arrow:hover {
    color: #0a0a0a;
    background: var(--gold-primary);
}
.product-carousel__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
@media (min-width: 520px) {
    .product-carousel__item {
        flex-basis: calc((100% - 1rem) / 2);
    }
}
@media (min-width: 768px) {
    .product-carousel__track {
        gap: 1.25rem;
    }
    .product-carousel__item {
        flex-basis: calc((100% - 2.5rem) / 3);
    }
}
@media (min-width: 1024px) {
    .product-carousel__item {
        flex-basis: calc((100% - 3.75rem) / 4);
    }
}
