:root {
    --bg: #0a0908;
    --bg2: #141210;
    --surface: #1f1c18;
    --surface2: #2a2620;
    --card: #141210;
    --blue: #f59e0b;
    --cyan: #fbbf24;
    --violet: #ea580c;
    --pink: #f43f5e;
    --orange: #f59e0b;
    --green: #10b981;
    --txt: #fffbeb;
    --txt2: #a8a29e;
    --txt3: #57534e;
    --brd: rgba(245, 158, 11, .15);
    --r: 12px;
    --t: 200ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

::selection {
    background: rgba(245, 158, 11, .25);
    color: #fff
}

::-moz-selection {
    background: rgba(245, 158, 11, .25);
    color: #fff
}

a {
    color: inherit;
    text-decoration: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: #1a2a44;
    border-radius: 3px
}

.ctn {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 140px
}

[data-lucide] {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle
}

.ubar {
    background: #050a14;
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: var(--txt3);
    border-bottom: 1px solid var(--brd)
}

.ubar .ctn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.ubar-l,
.ubar-r {
    display: flex;
    align-items: center;
    gap: 12px
}

.ubar a,
.ubar button {
    color: var(--txt3);
    font-size: 11px;
    transition: color var(--t);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px
}

.ubar a:hover,
.ubar button:hover {
    color: var(--cyan)
}

.ubar .sep {
    width: 1px;
    height: 10px;
    background: var(--brd)
}

.lang span {
    padding: 1px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 10px;
    transition: all var(--t)
}

.lang span.on {
    background: none !important;
    color: var(--cyan)
}

.nav {
    background: rgba(18, 16, 13, 0.70);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    height: 48px;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(245, 158, 11, 0.10);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.nav .ctn {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px
}

.nav-logo {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px
}

.nav-logo [data-lucide] {
    width: 20px;
    height: 20px;
    stroke: var(--cyan)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    overflow: visible
}

.nav-links::-webkit-scrollbar {
    display: none
}

.nav-links a {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--txt2);
    border-radius: 6px;
    transition: all var(--t);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05)
}

.nav-links a.on {
    color: var(--cyan);
    background: rgba(251, 191, 36, .1)
}

.beta {
    font-size: 8px;
    background: var(--pink);
    color: #fff;
    padding: 1px 4px;
    border-radius: 3px;
    margin-right: 3px;
    vertical-align: top;
    font-weight: 700
}

.nav-drop {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-drop>a {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--txt2);
    border-radius: 6px;
    transition: all var(--t);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-drop>a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05)
}

.nav-drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 6px;
    background: var(--surface);
    border: 1px solid var(--brd);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5)
}

.nav-drop:hover .nav-drop-menu {
    display: block
}

.nav-drop-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--txt2);
    transition: all var(--t);
    white-space: nowrap
}

.nav-drop-menu a:hover {
    color: var(--cyan);
    background: rgba(251, 191, 36, .08)
}

.mob-tog {
    display: none;
    font-size: 20px;
    padding: 6px
}

.hero {
    padding: 0;
    width: 100%;
    margin-top: 0;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    border-bottom: none;
}

.h-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.h-slide:first-child {
    position: relative;
}

.h-slide.on {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.h-slide img.h-bg {
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
}

.hero-wrap.h-anim-zoom .h-slide {
    transform: scale(1.06);
}

.hero-wrap.h-anim-zoom .h-slide.on {
    transform: scale(1);
}

.hero-wrap.h-anim-slide-h .h-slide {
    transform: translateX(40px);
    opacity: 0;
}

.hero-wrap.h-anim-slide-h .h-slide.on {
    transform: translateX(0);
    opacity: 1;
}

.hero-wrap.h-anim-slide-v .h-slide {
    transform: translateY(40px);
    opacity: 0;
}

.hero-wrap.h-anim-slide-v .h-slide.on {
    transform: translateY(0);
    opacity: 1;
}

.hero-wrap.h-anim-flip .h-slide {
    transform: rotateX(-12deg) scale(0.95);
    opacity: 0;
}

.hero-wrap.h-anim-flip .h-slide.on {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
}

.h-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5
}

.h-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all var(--t)
}

.h-dots span.on {
    background: var(--cyan);
    width: 22px;
    border-radius: 4px
}

.h-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--t)
}

.h-nav:hover {
    background: var(--blue)
}

.h-nav.prev {
    right: 10px
}

.h-nav.nxt {
    left: 10px
}

.cat-bar {
    padding: 20px 0 12px;
    border: none;
    background: transparent;
    position: relative;
    z-index: 10;
    margin-top: -70px;
}

.cat-bar-inner {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px
}

.cat-bar-inner::-webkit-scrollbar {
    height: 2px
}

.cat-tab {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(20, 18, 14, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--txt2);
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
}

.cat-tab:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

.cat-tab.on {
    background: rgba(245, 158, 11, .15);
    border-color: var(--blue);
    color: var(--cyan);
    box-shadow: 0 0 10px rgba(245, 158, 11, .15)
}

.cat-tab .ci {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    top: -0.5px;
}

.cat-tab {
    line-height: 1;
}

.fbar {
    background: linear-gradient(135deg, rgba(20, 18, 16, .98), rgba(10, 9, 8, .99));
    border-radius: 16px;
    padding: 0;
    margin: 16px 0;
    border: 1px solid rgba(251, 191, 36, .08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .04);
    position: relative;
    overflow: hidden
}

.fbar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, .04) 0%, transparent 70%);
    pointer-events: none
}

.fbar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background 250ms ease
}

.fbar-header:hover {
    background: rgba(255, 255, 255, .02)
}

.fbar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--txt);
    white-space: nowrap
}

.fbar-title [data-lucide] {
    color: var(--cyan)
}

.fbar-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(251, 191, 36, .08);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, .12)
}

.fbar-quick {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: center
}

.fbar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(251, 191, 36, .06);
    border: 1px solid rgba(251, 191, 36, .12);
    cursor: pointer;
    transition: all 250ms ease;
    white-space: nowrap
}

.fbar-btn:hover {
    background: rgba(251, 191, 36, .14);
    color: #fff
}

.fbar-btn [data-lucide] {
    transition: transform 300ms ease
}

.fbar.open .fbar-btn [data-lucide] {
    transform: rotate(180deg)
}

.fbar-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 400ms cubic-bezier(.4, 0, .2, 1),
        opacity 300ms ease,
        padding 300ms ease;
    padding: 0 24px;
    border-top: 1px solid transparent
}

.fbar.open .fbar-body {
    max-height: 800px;
    opacity: 1;
    padding: 12px 24px 20px;
    border-top-color: rgba(255, 255, 255, .06)
}

.frow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    flex-wrap: wrap;
    position: relative
}

.frow+.frow {
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.flbl {
    font-size: 11px;
    font-weight: 700;
    min-width: 60px;
    padding: 4px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, .12), rgba(234, 88, 12, .08));
    color: var(--cyan);
    text-align: center;
    letter-spacing: .3px;
    border: 1px solid rgba(251, 191, 36, .1)
}

.fchips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1
}

.fchip {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, .03);
    color: var(--txt3);
    border: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: all 250ms ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden
}

.fchip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, .15), rgba(234, 88, 12, .1));
    opacity: 0;
    transition: opacity 250ms ease;
    border-radius: inherit
}

.fchip:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--txt);
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-1px)
}

.fchip:hover::before {
    opacity: 1
}

.fchip.on {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(245, 158, 11, .3), 0 0 20px rgba(234, 88, 12, .1);
    font-weight: 600;
    transform: translateY(-1px)
}

.fchip.on::before {
    opacity: 0
}

.fmore {
    font-size: 12px;
    color: var(--cyan);
    cursor: pointer;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: rgba(251, 191, 36, .06);
    border: 1px solid rgba(251, 191, 36, .1);
    transition: all 250ms ease;
    margin-top: 4px
}

.fmore:hover {
    background: rgba(251, 191, 36, .12);
    color: #fff;
    transform: translateY(-1px)
}

.fmore-panel {
    display: none;
    animation: filterSlide 300ms ease
}

.fmore-panel.open {
    display: block
}

@keyframes filterSlide {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fstats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--txt3);
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 6px
}

.fstats strong {
    color: var(--cyan);
    margin-right: 4px;
    font-weight: 800
}

.ftools {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    flex-wrap: wrap
}

.ftool {
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 10px;
    background: rgba(234, 88, 12, .06);
    color: var(--violet);
    border: 1px solid rgba(234, 88, 12, .12);
    transition: all 250ms ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500
}

.ftool:hover {
    background: rgba(234, 88, 12, .15);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(234, 88, 12, .15)
}

.ftool [data-lucide] {
    width: 13px;
    height: 13px
}

.fact {
    display: flex;
    gap: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 4px
}

.fbtn {
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: all 250ms ease;
    letter-spacing: .3px
}

.fbtn.p {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff;
    box-shadow: 0 2px 12px rgba(245, 158, 11, .25)
}

.fbtn.p:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, .4)
}

.fbtn.s {
    background: rgba(255, 255, 255, .04);
    color: var(--txt3);
    border: 1px solid rgba(255, 255, 255, .08)
}

.fbtn.s:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px)
}

.sh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px
}

.sh h2 {
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px
}

.sh h2 .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan)
}

.sh h2 [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--cyan)
}

.sh .sa {
    font-size: 11px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 3px
}

.sh .sa:hover {
    color: var(--cyan)
}

.sh .sa [data-lucide] {
    width: 14px;
    height: 14px
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    padding-bottom: 20px
}

.pcard {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--brd);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t);
    position: relative
}

.pcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, .15);
    border-color: rgba(245, 158, 11, .3)
}

.pthumb {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--t);
    background: linear-gradient(145deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .02) 50%, rgba(245, 158, 11, .04) 100%);
    border-bottom: 1px solid rgba(245, 158, 11, .12)
}

.pthumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 40%, transparent 60%, rgba(245, 158, 11, .03) 100%);
    pointer-events: none;
    z-index: 0
}

.pcard:hover .pthumb {
    background: linear-gradient(145deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .04) 50%, rgba(245, 158, 11, .08) 100%)
}

.pthumb-img {
    max-width: 65% !important;
    max-height: 65% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.thumb-art {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 400ms ease
}

.pthumb-img {
    transition: opacity .3s ease
}

.thumb-art svg {
    width: 55%;
    height: 55%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .2));
    transition: all 400ms ease
}

.pcard:hover .thumb-art svg {
    animation: svgPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, .5))
}

@keyframes svgPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1
    }

    25% {
        transform: scale(1.1) rotate(2deg);
        opacity: .85
    }

    50% {
        transform: scale(1.05) rotate(-1deg);
        opacity: 1
    }

    75% {
        transform: scale(1.12) rotate(1deg);
        opacity: .9
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1
    }
}

.pthumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(251, 191, 36, .08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
    z-index: 1
}

.pcard:hover .pthumb::after {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite
}

@keyframes glowPulse {

    0%,
    100% {
        background: radial-gradient(circle at center, rgba(251, 191, 36, .06) 0%, transparent 70%)
    }

    50% {
        background: radial-gradient(circle at center, rgba(234, 88, 12, .12) 0%, transparent 70%)
    }
}

.pthumb .cart-btn {
    position: absolute;
    bottom: 6px;
    left: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.7);
    transition: all var(--t);
    z-index: 3
}

.pcard:hover .cart-btn {
    opacity: 1;
    transform: scale(1)
}

.cart-btn:hover {
    background: var(--violet) !important
}

.pinfo {
    padding: 10px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pinfo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.pmeta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.pmeta-id {
    font-size: 10px;
    color: var(--txt3);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}
.pmeta-dur {
    font-size: 10px;
    color: var(--txt3);
    font-weight: 500;
}
.ptags {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.pname {
    font-size: 13px;
    font-weight: 800;
    color: var(--txt);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.pprice {
    font-size: 15px;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
}

.pprice small {
    font-size: 10px;
    font-weight: 500;
    color: var(--txt3);
    margin-right: 2px;
}

.pmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 9px;
    color: var(--txt3);
    margin-bottom: 8px;
    line-height: 1.5
}

.pmeta span {
    white-space: nowrap
}

.pmeta span+span::before {
    content: '·';
    margin: 0 3px;
    color: var(--txt3);
    opacity: .5
}

.ptags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.ptag {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: .2px
}

.ptag-green {
    background: rgba(16, 185, 129, .15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, .2)
}

.ptag-red {
    background: rgba(244, 63, 94, .15);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, .2)
}

.ptag-blue {
    background: rgba(245, 158, 11, .15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, .2)
}

.ptag-violet {
    background: rgba(234, 88, 12, .15);
    color: #ea580c;
    border: 1px solid rgba(234, 88, 12, .2)
}

.ptag-orange {
    background: rgba(234, 88, 12, .15);
    color: #ea580c;
    border: 1px solid rgba(234, 88, 12, .2)
}

.ptag-cyan {
    background: rgba(251, 191, 36, .15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, .2)
}

.ptag-dark {
    background: rgba(255, 255, 255, .06);
    color: var(--txt2);
    border: 1px solid rgba(255, 255, 255, .1)
}

.ptag-purple {
    background: rgba(168, 85, 247, .15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, .2)
}

.ptag-teal {
    background: rgba(20, 184, 166, .15);
    color: #14b8a6;
    border: 1px solid rgba(20, 184, 166, .2)
}

.psnd-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: rgba(16, 185, 129, .85);
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 3
}

.pbadges {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    gap: 3px;
    z-index: 2
}

.pbadge {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px
}

.b-self {
    background: var(--blue);
    color: #fff
}

.b-3rd {
    background: var(--violet);
    color: #fff
}

.b-new {
    background: var(--green);
    color: #fff
}

.b-hot {
    background: #f43f5e;
    color: #fff
}

.b-snd {
    background: var(--orange);
    color: #fff
}

.b-3d {
    background: var(--pink);
    color: #fff
}

.b-ai {
    background: linear-gradient(135deg, var(--violet), var(--pink));
    color: #fff
}

.b-2d {
    background: #a855f7;
    color: #fff
}

.b-dark {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.pname {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    color: var(--txt)
}

.pprice {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px
}

.pprice small {
    font-size: 9px;
    margin-left: 1px
}

.pmeta {
    font-size: 9px;
    color: var(--txt3);
    display: flex;
    gap: 6px;
    margin-top: 2px
}

.pmeta span {
    display: flex;
    align-items: center;
    gap: 3px
}

.estrip {
    padding: 12px 0;
    position: relative
}

.estrip .ctn {
    overflow: hidden;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 140px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%)
}

.estrip-inner {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollEvents 80s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.estrip:hover .estrip-inner {
    animation-play-state: paused
}

@keyframes scrollEvents {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(50%)
    }
}

[dir="ltr"] .estrip-inner {
    animation-name: scrollEventsLTR;
}

@keyframes scrollEventsLTR {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.ecard {
    width: 190px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    gap: 4px;
    background: linear-gradient(145deg, rgba(30, 27, 22, .98), rgba(18, 16, 14, .99));
    box-shadow: 0 2px 12px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .03)
}

.ecard::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, .04) 50%, transparent 60%);
    transform: rotate(0deg);
    transition: none;
    animation: none
}

.ecard:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, .3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4), 0 0 0 1px rgba(245, 158, 11, .1)
}

.ecard:hover::after {
    animation: cardShimmer 1.5s ease-in-out
}

@keyframes cardShimmer {
    0% {
        transform: translateX(-100%) rotate(25deg)
    }

    100% {
        transform: translateX(100%) rotate(25deg)
    }
}

.ecard .en {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    letter-spacing: .2px
}

.ecard .ed {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600
}

.ecard .ec {
    display: none
}

.ecard-glow,
.ecard-overlay,
.ecard-icon {
    display: none
}

.ecard .en,
.ecard .ed,
.ecard .er {
    position: relative;
    z-index: 1
}

.ecard .er {
    font-size: 10px;
    font-weight: 700;
    color: rgba(251, 191, 36, .95);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    align-self: flex-start;
    background: rgba(245, 158, 11, .1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, .15);
    letter-spacing: .2px;
    backdrop-filter: blur(4px)
}

.ecard .er [data-lucide] {
    width: 11px;
    height: 11px;
    opacity: .8
}

.ecard:hover .er {
    background: rgba(245, 158, 11, .18);
    border-color: rgba(245, 158, 11, .3)
}

.ecard .er .er-num {
    font-size: 13px;
    font-weight: 900;
    color: #fbbf24;
    margin: 0 1px
}

.prow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 10px 0
}

.pbox {
    padding: 14px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t);
    border: 1px solid var(--brd)
}

.pbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, .15)
}

.pbox h3 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 3px;
    position: relative;
    z-index: 2
}

.pbox p {
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 6px;
    position: relative;
    z-index: 2
}

.pbox .pc {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2
}

.pbox .pi {
    position: absolute;
    left: auto;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .15;
    z-index: 1
}

.pbox .pi [data-lucide] {
    width: 36px;
    height: 36px
}

.drow {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 0 16px
}

.drow::-webkit-scrollbar {
    height: 2px
}

.dcard {
    min-width: 130px;
    padding: 12px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--brd);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--t)
}

.dcard:hover {
    border-color: var(--violet);
    transform: translateY(-2px)
}

.davatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff
}

.dcard .dn {
    font-size: 12px;
    font-weight: 700
}

.dcard .dc {
    font-size: 10px;
    color: var(--cyan)
}

.rcar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px
}

.rcar::-webkit-scrollbar {
    height: 2px
}

.rcard {
    min-width: 140px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--brd);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t)
}

.rcard:hover {
    transform: translateY(-2px);
    border-color: var(--blue)
}

.rcard .rt {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center
}

.rcard .ri {
    padding: 8px 10px
}

.rcard .rn {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.rcard .rp {
    font-size: 12px;
    font-weight: 800;
    color: var(--orange)
}

.rcard .rp small {
    font-size: 9px;
    color: var(--txt3);
    margin-right: 4px;
    font-weight: 400;
    text-decoration: line-through
}

.pgn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 28px;
    flex-wrap: wrap;
    gap: 12px
}

.bm {
    display: flex;
    gap: 6px;
    align-items: center
}

.bm-l {
    font-size: 11px;
    color: var(--txt3);
    margin-left: 6px
}

.bm-b {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    background: rgba(255, 255, 255, .04);
    color: var(--txt3);
    border: 1px solid var(--brd);
    transition: all var(--t)
}

.bm-b.on {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.pgn {
    display: flex;
    gap: 4px;
    align-items: center
}

.pg {
    min-width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, .04);
    color: var(--txt3);
    border: 1px solid var(--brd);
    transition: all var(--t);
    padding: 0 8px
}

.pg:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.pg.on {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.pg.dis {
    opacity: .3;
    pointer-events: none
}

.pge {
    color: var(--txt3);
    font-size: 12px;
    padding: 0 2px
}

.ftbar {
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 90
}

.fb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--brd);
    color: var(--txt3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    transition: all var(--t);
    position: relative
}

.fb [data-lucide] {
    width: 18px;
    height: 18px
}

.fb span {
    font-size: 7px;
    font-weight: 500
}

.fb:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: scale(1.08)
}

.fb .cc {
    position: absolute;
    top: -3px;
    left: -3px;
    background: #f43f5e;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.foot {
    background: var(--bg);
    border-top: 1px solid var(--brd);
    padding: 48px 0 0
}

.foot-top {
    padding-bottom: 32px
}

.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px
}

.fbrand p {
    font-size: 12px;
    color: var(--txt3);
    max-width: 300px;
    margin-top: 12px;
    line-height: 1.8
}

.foot-logo {
    display: inline-block;
    text-decoration: none
}

.fsocial {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.fsocial a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    color: var(--txt3);
    transition: all 200ms ease
}

.fsocial a:hover {
    background: rgba(251, 191, 36, .12);
    border-color: rgba(251, 191, 36, .2);
    color: var(--cyan);
    transform: translateY(-2px)
}

.fcol h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--txt)
}

.fcol a {
    display: block;
    font-size: 12px;
    color: var(--txt3);
    padding: 4px 0;
    transition: all 200ms ease
}

.fcol a:hover {
    color: var(--cyan);
    padding-right: 4px
}

.fbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--txt3);
    border-top: 1px solid var(--brd);
    padding: 16px 0
}

.fbot-links {
    display: flex;
    gap: 16px
}

.fbot-links a {
    color: var(--txt3);
    font-size: 11px;
    transition: color 200ms ease
}

.fbot-links a:hover {
    color: var(--cyan)
}

.ipanels {
    padding: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.ipanel {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--brd);
    padding: 16px
}

.ipanel h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.ipanel h3 [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--cyan)
}

.pstep {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--brd)
}

.pstep:last-child {
    border-bottom: none
}

.snum {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.stxt {
    font-size: 11px;
    color: var(--txt2);
    padding-top: 2px
}

.nitem {
    display: flex;
    gap: 6px;
    padding: 5px 0;
    font-size: 11px;
    color: var(--txt2);
    border-bottom: 1px solid var(--brd)
}

.nitem:last-child {
    border-bottom: none
}

.nitem [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--orange)
}

.crow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--brd);
    font-size: 11px
}

.crow:last-child {
    border-bottom: none
}

.cicon {
    width: 20px;
    text-align: center;
    color: var(--cyan)
}

.cicon [data-lucide] {
    width: 14px;
    height: 14px
}

.clbl {
    color: var(--txt3);
    min-width: 60px
}

.cval {
    font-weight: 600
}

.sitem {
    padding: 8px 0;
    border-bottom: 1px solid var(--brd)
}

.sitem:last-child {
    border-bottom: none
}

.shead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px
}

.sn {
    font-size: 11px;
    font-weight: 600
}

.sp {
    font-size: 10px;
    font-weight: 700;
    color: var(--green)
}

.sp.paid {
    color: var(--orange)
}

.sd {
    font-size: 10px;
    color: var(--txt3)
}

.tfiles {
    padding: 0 0 28px
}

.tfiles h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px
}

.tfiles h3 [data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--cyan)
}

.ftbl {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--brd)
}

.ftbl th {
    text-align: right;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 700;
    color: var(--txt3);
    background: var(--card);
    border-bottom: 1px solid var(--brd)
}

.ftbl td {
    padding: 7px 12px;
    font-size: 11px;
    border-bottom: 1px solid var(--brd)
}

.ftbl tr:last-child td {
    border-bottom: none
}

.ftbl tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.dlb {
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.dlb:hover {
    background: #1a7ae8
}

.mo {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 200ms
}

.mo.open {
    display: flex;
    opacity: 1
}

.mc {
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--brd);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: msu 200ms ease;
    width: 90%
}

@keyframes msu {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mx {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: var(--txt2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
    z-index: 5
}

.mx:hover {
    background: #f43f5e;
    color: #fff
}

.mx [data-lucide] {
    width: 16px;
    height: 16px
}

.mc-prod {
    max-width: 900px
}

.mc-prod .mx {
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.mp-body {
    display: flex;
    gap: 20px;
    padding: 24px
}

.mp-right {
    flex: 1;
    min-width: 0
}

.mp-prev {
    width: 100%;
    aspect-ratio: 1/2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a
}

.mp-mrel {
    padding: 12px 0 0;
    border-top: 1px solid var(--brd);
    margin-top: 14px
}

.mp-mrel .mrel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mp-prev-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.mp-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1
}

.mp-timeline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .6));
    display: flex;
    align-items: center;
    gap: 8px
}

.mp-tl-pp {
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background .2s
}

.mp-tl-pp:hover {
    background: rgba(255, 255, 255, .3)
}

.mp-tl-pp svg,
.mp-tl-pp i {
    width: 14px;
    height: 14px
}

.mp-tl-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer
}

.mp-tl-progress {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    width: 0;
    transition: width .1s linear
}

.mp-tl-time {
    font-size: 10px;
    color: rgba(255, 255, 255, .7);
    white-space: nowrap;
    font-variant-numeric: tabular-nums
}

.mp-prev svg {
    width: 40%;
    height: 40%;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, .2))
}

.mp-det {
    flex: 1
}

.mp-det-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.mp-det-head h2 {
    margin: 0;
    width: 100%
}

.mp-cat-badge {
    background: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px
}

.mp-type-badge {
    display: none !important;
}

.mp-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.mp-tag-pill {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--txt2)
}

.mp-tags-row .pbadge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 6px
}

.ptag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
}

.ptag [data-lucide],
.ptag svg {
    width: 14px;
    height: 14px;
    margin-top: -1px; /* Optical adjustment based on typical Arabic fonts */
}

.mp-info-grid {
    margin-bottom: 14px
}

.mp-note-source {
    font-size: 11px;
    color: #f87171;
    margin-bottom: 12px;
    line-height: 1.6
}

.mp-acts {
    display: flex;
    gap: 8px;
    margin-bottom: 8px
}

.mp-acts .ma {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s
}

.mp-acts .cart-act {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff
}

.mp-acts .cart-act:hover {
    filter: brightness(1.15)
}

.mp-acts .buy-act {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15)
}

.mp-acts .buy-act:hover {
    background: rgba(255, 255, 255, .15)
}

.mp-secondary-acts {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.ma-sm {
    flex: 1;
    background: none;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--txt2);
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .2s
}

.ma-sm:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.ma-sm i,
.ma-sm svg {
    width: 13px;
    height: 13px
}

.mp-formats-bar {
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.5
}

.mp-rights-bar {
    background: rgba(245, 158, 11, .06);
    border: 1px solid rgba(245, 158, 11, .15);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5
}

.mp-det h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px
}

.mdr {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--brd);
    font-size: 12px
}

.mdr .ml {
    color: var(--txt3)
}

.mdr .mv {
    font-weight: 600
}

.mp-pr {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
    padding: 12px 0
}

.mp-acts {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    flex-wrap: wrap
}

.ma {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.ma [data-lucide] {
    width: 14px;
    height: 14px
}

.ma.p {
    background: var(--blue);
    color: #fff
}

.ma.p:hover {
    background: #1a7ae8
}

.ma.s {
    background: rgba(255, 255, 255, .06);
    color: var(--txt2)
}

.ma.s:hover {
    color: #fff
}

.ma.fv {
    color: var(--pink)
}

.ma.fv.on {
    background: rgba(244, 63, 94, .12)
}

.mnote {
    margin-top: 8px;
    padding: 8px;
    background: rgba(244, 63, 94, .06);
    border-radius: 6px;
    font-size: 10px;
    color: var(--pink);
    border: 1px solid rgba(244, 63, 94, .12);
    display: flex;
    align-items: center;
    gap: 6px
}

.mnote [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.mqr {
    margin-top: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    text-align: center
}

.mqr .qp {
    width: 100px;
    height: 100px;
    margin: 8px auto;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 10px;
    font-weight: 700
}

.mqr p {
    font-size: 10px;
    color: var(--txt3);
    margin-top: 6px
}

.mrel {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--brd);
    flex-shrink: 0
}

.mrel h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px
}

.mrel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mrel-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1510;
    cursor: pointer;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: 0 !important;
}

.mrel-item:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--blue);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.2);
    z-index: 2
}

.mrel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.mc-dl {
    max-width: 620px
}

.mc-dl-body {
    padding: 24px;
    text-align: center
}

.mc-dl-body .ftbl {
    text-align: right
}

.mc-dl-body h2 {
    font-size: 18px;
    margin-bottom: 6px
}

.mc-dl-body .att {
    font-size: 12px;
    color: var(--txt3);
    margin-bottom: 18px
}

.dlf-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px
}

.dlf {
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: var(--card);
    border: 2px solid var(--brd);
    transition: all var(--t);
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.dlf:hover {
    border-color: var(--blue);
    background: rgba(245, 158, 11, .08)
}

.dlf [data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--cyan)
}

.dln {
    padding: 12px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    text-align: right
}

.dln p {
    font-size: 11px;
    color: var(--txt3);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px
}

.dln p [data-lucide] {
    width: 12px;
    height: 12px;
    color: var(--green)
}

.mc-cart {
    max-width: 800px
}

.mc-cart-body {
    padding: 24px
}

.mc-cart-body h2 {
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.mc-cart-body h2 [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--cyan)
}

.ctbl {
    width: 100%;
    border-collapse: collapse
}

.ctbl th {
    text-align: right;
    padding: 7px 10px;
    font-size: 10px;
    color: var(--txt3);
    border-bottom: 1px solid var(--brd);
    font-weight: 600
}

.ctbl td {
    padding: 8px 10px;
    font-size: 12px;
    border-bottom: 1px solid var(--brd);
    vertical-align: middle
}

.cchk {
    width: 15px;
    height: 15px;
    accent-color: var(--blue);
    cursor: pointer
}

.cfoot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    flex-wrap: wrap;
    gap: 10px
}

.cfoot-l {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px
}

.cfoot-r {
    display: flex;
    align-items: center;
    gap: 12px
}

.ctot {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange)
}

.cout {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    font-size: 14px;
    transition: all var(--t)
}

.cout:hover {
    box-shadow: 0 4px 16px rgba(245, 158, 11, .4)
}

.cdel {
    color: #f43f5e;
    font-size: 12px;
    transition: color var(--t);
    display: flex;
    align-items: center;
    gap: 4px
}

.cdel:hover {
    color: #ff6b81
}

.cdel [data-lucide] {
    width: 14px;
    height: 14px
}

.mc-login {
    max-width: 380px
}

.mc-login-body {
    padding: 24px
}

.ltabs {
    display: flex;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--brd)
}

.ltab {
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--txt3);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--t)
}

.ltab.on {
    color: var(--cyan);
    border-bottom-color: var(--cyan)
}

.lpanel {
    display: none
}

.lpanel.on {
    display: block
}

.lf {
    margin-bottom: 12px
}

.lf label {
    display: block;
    font-size: 11px;
    color: var(--txt3);
    margin-bottom: 4px
}

.lf input {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--brd);
    color: #fff;
    font-size: 13px;
    transition: all var(--t);
    outline: none;
    text-align: right;
    font-family: 'Tajawal', sans-serif
}

.lf input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, .12)
}

.lf .cdr {
    display: flex;
    gap: 8px
}

.lf .cdr input {
    flex: 1
}

.scb {
    padding: 9px 14px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--t)
}

.scb:hover {
    background: #1a7ae8
}

.lsub {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-top: 6px;
    transition: all var(--t)
}

.lsub:hover {
    box-shadow: 0 4px 16px rgba(245, 158, 11, .4)
}

.lqr {
    text-align: center;
    padding: 16px 0
}

.lqr .qp {
    width: 140px;
    height: 140px;
    margin: 0 auto 10px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    font-weight: 600
}

.lqr p {
    font-size: 12px;
    color: var(--txt3)
}

.lqr button {
    margin-top: 8px;
    color: var(--cyan);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.lleg {
    text-align: center;
    padding-top: 12px;
    font-size: 10px;
    color: var(--txt3)
}

.lleg a {
    color: var(--blue)
}

.mc-fb {
    max-width: 460px
}

.mc-fb-body {
    padding: 24px
}

.mc-fb-body h2 {
    font-size: 18px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px
}

.mc-fb-body h2 [data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--cyan)
}

.mc-fb-body .fbi {
    font-size: 12px;
    color: var(--txt3);
    margin-bottom: 14px
}

.fbf {
    margin-bottom: 12px
}

.fbf label {
    display: block;
    font-size: 11px;
    color: var(--txt3);
    margin-bottom: 4px;
    font-weight: 600
}

.fbf textarea {
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--brd);
    color: #fff;
    font-size: 12px;
    resize: vertical;
    min-height: 60px;
    outline: none;
    font-family: 'Tajawal', sans-serif;
    text-align: right
}

.fbf textarea:focus {
    border-color: var(--blue)
}

.fbf select {
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--brd);
    color: #fff;
    font-size: 12px;
    outline: none;
    appearance: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif
}

.fbs {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--t)
}

.fbs:hover {
    box-shadow: 0 4px 16px rgba(245, 158, 11, .4)
}

.mc-ann {
    max-width: 600px
}

.mc-ann-body {
    padding: 28px;
    text-align: center
}

.mc-ann-body h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.mc-ann-body .asub {
    font-size: 13px;
    color: var(--txt3);
    margin-bottom: 22px
}

.ann-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px
}

.annf {
    padding: 18px 12px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--brd);
    transition: all var(--t)
}

.annf:hover {
    border-color: var(--cyan)
}

.annf .ai {
    margin-bottom: 8px;
    color: var(--cyan)
}

.annf .ai [data-lucide] {
    width: 32px;
    height: 32px
}

.annf h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px
}

.annf p {
    font-size: 10px;
    color: var(--txt3);
    margin-bottom: 8px
}

.annf a {
    font-size: 10px;
    color: var(--cyan);
    font-weight: 600
}

/* ===== LTR Overrides (English) ===== */
[dir="ltr"] body,
[dir="ltr"] {
    font-family: 'Inter', 'Tajawal', sans-serif;
    text-align: left;
}

[dir="ltr"] .ubar {
    text-align: left;
}

[dir="ltr"] .nav-links {
    text-align: left;
}

[dir="ltr"] .pinfo-row {
    direction: ltr;
}

[dir="ltr"] .pmeta-row {
    direction: ltr;
}

[dir="ltr"] .pprice small {
    margin-right: 0;
    margin-left: 2px;
}

[dir="ltr"] .fbar-body .fchip,
[dir="ltr"] .fbar-quick .fchip {
    text-align: left;
}

[dir="ltr"] .evcard {
    text-align: left;
}

[dir="ltr"] .ann-body {
    text-align: left;
}

[dir="ltr"] .hero-txt {
    text-align: left;
}

[dir="ltr"] .fb-sec-title {
    text-align: left;
}

[dir="ltr"] .pn-card {
    text-align: left;
}

[dir="ltr"] .m-prod .mp-meta-bar {
    direction: ltr;
}

[dir="ltr"] .auth-modal-box {
    text-align: left;
}

[dir="ltr"] .cart-modal-content {
    text-align: left;
}