:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: #F0F5FF;
}
/* Top Bar  */
.topbar {
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 32px;
    position: relative;
}

.topbar i {
    color: var(--blue-200);
    font-size: 11px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-side {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar-side a {
    color: var(--blue-200);
    text-decoration: none;
    opacity: .85;
    display: flex;
    align-items: center;
    transition: color .2s, opacity .2s;
}

.topbar-side a i {
    font-size: 14px;
}

.topbar-info-text-short {
    display: none;
}

/* ── VISUALLY HIDDEN H1 ── */
.hero-hidden-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── TOPBAR SOCIAL ICONS ── */
.topbar-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--blue-200) !important;
    transition: all .25s ease;
    opacity: 1 !important;
}

.topbar-social i {
    font-size: 14px !important;
}

.topbar-social:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

.topbar-social:hover i.fa-instagram {
    color: #E4405F !important;
}

.topbar-social:hover i.fa-x-twitter {
    color: #fff !important;
}

.topbar-social:hover i.fa-youtube {
    color: #FF0000 !important;
}

.topbar-social:hover i.fa-tiktok {
    color: #fff !important;
}

.topbar-social:hover i.fa-whatsapp {
    color: #25D366 !important;
}

.topbar-side a:hover {
    opacity: 1;
    color: var(--white);
}

.topbar-side a:hover {
    opacity: 1;
    color: var(--white);
}

/* ── STICKY HEADER WRAPPER ── */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

/* ── BOTTOM NAV BAR ── */
.bottom-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 32px;
    position: relative;
    z-index: 99;
}

.bottom-nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bottom-nav-inner::-webkit-scrollbar {
    display: none;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
}

.bottom-nav-item:hover {
    color: var(--blue-600);
    border-bottom-color: var(--blue-600);
    background: var(--blue-50);
}

.bottom-nav-item.active {
    color: var(--blue-600);
    border-bottom-color: var(--blue-600);
}

.bottom-nav-item i {
    font-size: 14px;
    opacity: .85;
}

/* ── HEADER ── */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-200);
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 1;
    justify-content: flex-start;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: var(--blue-600);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
}

.logo-mark i {
    color: white;
    font-size: 21px;
    position: relative;
    z-index: 1;
}

.logo-text .name {
    font-size: 21px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -.5px;
    line-height: 1;
}

.logo-text .sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--blue-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-img {
    height: 48px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.search {
    flex: 1;
    max-width: 560px;
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    overflow: visible;
    transition: border-color .2s, box-shadow .2s;
}

.search>*:first-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.search>*:last-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.search:focus-within {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
    background: white;
}

.search-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px 0 16px;
    height: 46px;
    border-left: 1.5px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    background: transparent;
    border-top: none;
    border-bottom: none;
    border-right: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Tajawal', sans-serif;
}

.search-cat i {
    font-size: 11px;
    color: var(--gray-400);
}

.search input {
    flex: 1;
    height: 46px;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    color: var(--gray-900);
    outline: none;
    direction: rtl;
}

.search input::placeholder {
    color: var(--gray-400);
}

.search-go {
    width: 44px;
    height: 38px;
    margin: 4px;
    background: var(--blue-600);
    border: none;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.search-go:hover {
    background: var(--blue-700);
}

.search-go i {
    color: white;
    font-size: 14px;
}

.search-cat-wrap {
    position: relative;
}

.search-cat-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 6px;
    display: none;
    z-index: 2000;
    margin-top: 4px;
}

.search-cat-dropdown.show {
    display: block;
}

.scd-item {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
    font-family: 'Tajawal', sans-serif;
}

.scd-item:hover {
    background: var(--blue-50);
    color: var(--blue-700);
}

.scd-item.active {
    background: var(--blue-50);
    color: var(--blue-700);
    font-weight: 600;
}

.actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
}

.act {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: var(--gray-700);
    transition: background .18s;
}

.act:hover {
    background: var(--blue-50);
}

.act i {
    font-size: 20px;
}

.user-dropdown {
    position: relative;
    direction: rtl;
}

.user-drop-btn {
    gap: 6px;
    padding: 0 10px;
    width: auto;
    min-width: 44px;
    font-family: 'Tajawal', sans-serif;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-chevron {
    font-size: 10px !important;
    color: var(--gray-400);
    transition: transform 0.25s ease;
}

.user-drop-btn.open .user-chevron {
    transform: rotate(180deg);
}

.user-drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 2000;
}

.user-drop-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-drop-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 8px;
}

.user-drop-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-drop-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.user-drop-email {
    font-size: 12px;
    color: #94a3b8;
    margin: 2px 0 0;
    font-weight: 500;
}

.user-drop-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 0;
}

.user-drop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.18s;
}

.user-drop-item:hover {
    background: var(--blue-50);
    color: #2563eb;
    text-decoration: none;
}

.user-drop-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--gray-400);
}

.user-drop-item:hover i {
    color: #2563eb;
}

.user-drop-item.form {
    padding: 0;
}

.user-drop-link {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    width: 100%;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 10px;
    transition: background 0.18s;
}

.user-drop-link:hover {
    background: #fef2f2;
    color: #ef4444;
}

.user-drop-link:hover i {
    color: #ef4444;
}

.act-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--blue-500);
    color: white;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-family: 'Tajawal', sans-serif;
}

/* Hero Section */
.hero-wrapper {
    background: #f0f4ff;
    border-bottom: 1px solid #dde4f0;
}

.hero-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 12px;
    padding: 14px 24px;
    align-items: start;
}

.cat-sidebar {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.cat-sidebar-title {
    background: var(--blue-700);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .3px;
}

.cat-sidebar-title i {
    font-size: 14px;
    opacity: .8;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s, color .15s, padding-right .15s;
    cursor: pointer;
    position: relative;
}

.cat-item:last-child {
    border-bottom: none;
}

.cat-item:hover {
    background: #eff6ff;
    color: var(--blue-600);
    padding-right: 18px;
}

.cat-item i.cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.cat-item .cat-arrow {
    margin-right: auto;
    font-size: 10px;
    color: #94a3b8;
    opacity: 0;
    transition: opacity .15s;
}

.cat-item:hover .cat-arrow {
    opacity: 1;
}

.cat-hot {
    font-size: 9px;
    font-weight: 800;
    background: #ef4444;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    margin-right: auto;
}

.hero-slider-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.hero-slider {
    position: relative;
    height: 370px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 7s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 30, .82) 0%, rgba(5, 10, 30, .45) 50%, transparent 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 36px 40px;
    max-width: 520px;
    animation: slideUp .6s ease both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.slide-tag.flash {
    background: rgba(239, 68, 68, .25);
    border-color: rgba(239, 68, 68, .4);
}

.slide-tag i {
    font-size: 10px;
}

.slide-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.slide-title .accent {
    color: #fbbf24;
}

.slide-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 22px;
    line-height: 1.7;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .2s, box-shadow .2s;
}

.sbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.sbtn-primary {
    background: #fff;
    color: var(--blue-700);
}

.sbtn-ghost {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
}

.slide-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.cdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cdown-label i {
    color: #fbbf24;
    font-size: 11px;
}

.cdown-blocks {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cdown-block {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    min-width: 44px;
}

.cdown-n {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cdown-u {
    font-size: 9px;
    color: rgba(255, 255, 255, .6);
    margin-top: 2px;
}

.cdown-sep {
    font-size: 16px;
    font-weight: 900;
    color: #fbbf24;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .3);
}

.arrow-prev {
    right: 14px;
}

.arrow-next {
    left: 14px;
}

/* ── Righ Side Banners ── */
.side-banners {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-banner {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.side-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.side-banner-inner {
    padding: 20px 18px;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.sb-tag {
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .8;
}

.sb-title {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
}

.sb-disc {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.sb-disc span {
    font-size: 13px;
    opacity: .75;
}

.sb-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    padding: 5px 12px;
    width: fit-content;
    transition: background .2s;
}

.side-banner:hover .sb-cta {
    background: rgba(255, 255, 255, .35);
}

.sb-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

/* ── Trust Bar ── */
.trust {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.trust-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.ti {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ti-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ti-icon i {
    color: var(--blue-600);
    font-size: 17px;
}

.ti-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
}

.ti-sub {
    font-size: 11.5px;
    color: var(--gray-400);
    margin-top: 1px;
}

.tdiv {
    width: 1px;
    height: 38px;
    background: var(--gray-200);
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.topbar {
    animation: up .4s ease both
}



.header {
    animation: up .4s .06s ease both
}

.hero-wrapper {
    animation: up .4s .14s ease both
}

.trust {
    animation: up .4s .2s ease both
}

.section-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 36px 24px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.badge-flash {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
}

.badge-cat {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.section-title {
    font-size: 22px;
    font-weight: 900;
    color: #1d4ed8;
    line-height: 1;
}

.section-sub {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 3px;
}

.see-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 8px 18px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.see-all:hover {
    background: #dbeafe;
    transform: translateX(-3px);
}

.see-all i {
    font-size: 11px;
}

.countdown-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    border-radius: 14px;
    padding: 12px 20px;
    margin-bottom: 24px;
}

.cs-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cs-label i {
    color: #fbbf24;
}

.cs-blocks {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
}

.cs-block {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 5px 12px;
    text-align: center;
    min-width: 52px;
}

.cs-n {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cs-u {
    font-size: 9px;
    color: rgba(255, 255, 255, .65);
    margin-top: 2px;
}

.cs-sep {
    font-size: 20px;
    font-weight: 900;
    color: #fbbf24;
}

.cs-right {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
}
/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    border-color: #e2e8f0;
}

.p-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    z-index: 4;
    letter-spacing: .3px;
    backdrop-filter: blur(6px);
}

.p-badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, .35);
}

.p-badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, .35);
}

.p-badge-top {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
}

.p-heart {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #94a3b8;
    z-index: 4;
    transition: color .2s, transform .2s, background .2s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .5);
}

.p-heart:hover {
    color: #ef4444;
    transform: scale(1.1);
    background: #fff;
    border-color: #fecaca;
}

.p-heart.wished {
    color: #ef4444 !important;
}

.p-heart.wished i {
    font-weight: 900;
}

a.p-heart {
    text-decoration: none;
}

.product-info {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-brand {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: .3px;
    margin-bottom: 4px;
}

.p-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    text-decoration: none;
    transition: color .2s;
}

.p-name:hover {
    color: #2563eb;
}

.p-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.p-stars-wrap {
    display: flex;
    gap: 1px;
}

.p-star {
    font-size: 12px;
}

.p-star.filled {
    color: #f59e0b;
}

.p-star.empty {
    color: #e2e8f0;
}

.p-rev {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

.p-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.p-price {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -.5px;
}

.p-price-currency {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    align-self: flex-end;
    margin-bottom: 1px;
}

.p-old {
    font-size: 12px;
    color: #cbd5e1;
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 4px;
}

.p-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.p-stock-label {
    font-size: 10.5px;
    color: #ef4444;
    font-weight: 600;
}

.p-stock-bar {
    flex: 1;
    height: 4px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 8px;
}

.p-stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 4px;
    transition: width 1s ease;
}

.p-add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
    margin-top: auto;
}

.p-add-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, .15);
}

/* Category Browse */
.cat-browse-bg {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cat-card {
    position: relative;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
    cursor: pointer;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    transition: background .3s ease;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cat-card:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.cat-card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: transform .3s ease;
}

.cat-card:hover .cat-card-icon {
    transform: rotate(8deg) scale(1.1);
}

.cat-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cat-card-count {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 0 !important;
}

@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-card {
        height: 120px;
        padding: 16px;
    }

    .cat-card-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .cat-card-name {
        font-size: 15px;
    }

    .cat-card-count {
        font-size: 10.5px;
    }
}
/* Mobile Menu */

.mobile-menu-btn {
    display: none;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 200;
    opacity: 0;
    transition: opacity .3s;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
}

.mobile-sidebar-overlay.active .mobile-sidebar {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-sidebar-logo {
    height: 36px;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.mobile-sidebar-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    transition: background .2s;
}

.mobile-sidebar-close:hover {
    background: var(--gray-200);
}

.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.mobile-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    border-right: 3px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
}

.mobile-sidebar-item:hover {
    background: var(--blue-50);
    color: var(--blue-600);
    border-right-color: var(--blue-600);
}

.mobile-sidebar-item.active {
    background: var(--blue-50);
    color: var(--blue-600);
    border-right-color: var(--blue-600);
}

.mobile-sidebar-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: .85;
}

.mobile-sidebar-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 20px;
}

.mobile-sidebar-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--gray-200);
}

.mobile-sidebar-social a {
    color: var(--gray-500);
    font-size: 18px;
    transition: color .2s;
}

.mobile-sidebar-social a:hover {
    color: var(--blue-600);
}


@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-content {
        max-width: 100%;
    }

    .pb-visual {
        display: none;
    }
}

/* ─── Disclaimer ──────────────────────────────────── */
.disclaimer-section {
    background: #f8faff;
    border-top: 1px solid #e2e8f0;
    padding: 28px 0;
}

.disclaimer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.disclaimer-title i {
    color: #1d4ed8;
    font-size: 16px;
}

.disclaimer-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 10px;
}

.disclaimer-content strong {
    color: #1e3a5f;
}

.disclaimer-content ul {
    margin: 6px 0 0 20px;
    list-style: disc;
}

.disclaimer-content ul li {
    font-size: 12px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 20px 16px;
    }
    .disclaimer-content p,
    .disclaimer-content ul li {
        font-size: 11px;
    }
}

.footer {
    background: linear-gradient(170deg, #060d1f 0%, #0a1628 50%, #0d1f3c 100%);
    color: #94a3b8;
    padding: 0;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.footer-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.footer-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

.footer-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 40%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col-about {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo i {
    color: #2563eb;
}

.footer-logo-img {
    height: 46px;
    max-width: 170px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease, opacity .25s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.04);
    opacity: 0.85;
}

.footer-about-text {
    font-size: 13.5px;
    line-height: 1.8;
    color: #64748b;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: #94a3b8;
    transition: background .2s, border-color .2s;
}

.footer-badge:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
    color: #bfdbfe;
}

.footer-badge i {
    color: #2563eb;
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.08);
    color: #fff;
    border-color: transparent;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
}

.social-link.twitter {
    background: #000;
    border-color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.social-link.youtube {
    background: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.social-link.whatsapp {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #010101, #69C9D0);
    box-shadow: 0 8px 20px rgba(105, 201, 208, 0.3);
}

.footer-col-title {
    color: #f1f5f9;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2.5px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 10px;
}

.footer-col-title i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 13px;
    flex-shrink: 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link-item a {
    color: #64748b;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1e40af;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.footer-link-item a:hover {
    color: #e2e8f0;
    transform: translateX(-5px);
}

.footer-link-item a:hover::before {
    background: #3b82f6;
    transform: scale(1.5);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 14px;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.footer-contact-item:hover .contact-icon {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

.contact-text {
    font-size: 13px;
    line-height: 1.5;
}

.contact-label {
    font-size: 10.5px;
    color: #475569;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.contact-value {
    font-weight: 600;
    color: #cbd5e1;
}

.contact-value a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s;
}

.contact-value a:hover {
    color: #3b82f6;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 8px;
}

.copyright-text {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.copyright-dev {
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.copyright-dev:hover {
    color: #e2e8f0;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.1);
}

.copyright-dev-img {
    height: 20px;
    width: auto;
    display: inline-block;
    border-radius: 3px;
}

.copyright-hidden-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.payment-gateways {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-card {
    height: 32px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    transition: all 0.2s ease;
    user-select: none;
    cursor: default;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fnl-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 0;
    }

    .footer-newsletter {
        padding: 28px 0;
    }

    .footer-newsletter-inner {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 0 36px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }

    .payment-gateways {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cat-swiper-section {
    background: #f8fafc;
    padding: 44px 0;
    border-bottom: 1px solid #e2e8f0;
}

.swiper-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.swiper-nav-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.swiper-nav-btn:active {
    transform: translateY(0) scale(0.95);
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.swiper-nav-btn.swiper-button-disabled:hover {
    background: #fff;
    color: #334155;
    border-color: #e2e8f0;
    box-shadow: none;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.see-all-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Tajawal', sans-serif;
}

.see-all-text:hover {
    background: #dbeafe;
    color: #2563eb;
    transform: translateX(-3px);
}

.see-all-text i {
    font-size: 12px;
}

.swiper-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    color: #334155;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.custom-slider-arrow:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.custom-slider-arrow:active {
    transform: translateY(0) scale(0.95);
}

.custom-slider-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.custom-slider-arrow.swiper-button-disabled:hover {
    background: #fff;
    color: #334155;
    border-color: #e2e8f0;
    box-shadow: none;
}


.swiper-nav-buttons {
    display: flex;
    gap: 8px;
}

.swiper-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    z-index: 10;
}

.swiper-nav-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.swiper-nav-btn:active {
    transform: translateY(0);
}
/* Product Page */
.products-page {
    background: #ffffff;
    min-height: 500px;
}

.pp-header {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../imgs/bg.webp') center / cover no-repeat;
}

.pp-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.45);
}

.pp-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: 1;
}

.pp-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.pp-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 13px;
    color: #93c5fd;
    margin-bottom: 24px;
}

.pp-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.pp-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pp-breadcrumb a i {
    font-size: 11px;
}

.pp-breadcrumb a:hover {
    color: #fff;
}

.pp-breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.pp-breadcrumb span {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 16px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.pp-header-text {
    max-width: 700px;
    margin: 0 auto;
}

.pp-header-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.pp-header-title span {
    color: #93c5fd;
}

.pp-header-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pp-header-sub i {
    color: #60a5fa;
    font-size: 14px;
}

/* ── Body Layout ── */
.pp-body {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 24px 50px;
}

.pp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

.pp-sidebar {
    position: sticky;
    top: 24px;
}

.pp-sidebar-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pp-sidebar-divider {
    height: 1px;
    background: #e8edf5;
    margin: 0;
    border: none;
}

.pp-sidebar-section {
    padding: 16px 18px;
}

.pp-sidebar-section-title {
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pp-sidebar-section-title i {
    font-size: 12px;
    color: #2563eb;
}

.pp-ssearch-wrap {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.pp-ssearch-wrap:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
    background: #fff;
}

.pp-ssearch-input {
    flex: 1;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    color: #0f172a;
    outline: none;
}

.pp-ssearch-input::placeholder {
    color: #94a3b8;
}

.pp-ssearch-btn {
    width: 36px;
    height: 36px;
    margin: 2px;
    border: none;
    background: #2563eb;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}

.pp-ssearch-btn:hover {
    background: #1d4ed8;
}

.pp-ssearch-btn i {
    font-size: 13px;
}

.pp-cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all .15s;
}

.pp-cat-item:hover {
    background: #eef2ff;
    color: #2563eb;
}

.pp-cat-item.active {
    background: #eef2ff;
    color: #2563eb;
    font-weight: 700;
}

.pp-cat-item i {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    color: #64748b;
}

.pp-cat-item.active i {
    background: #dbeafe;
    color: #2563eb;
}

.pp-cat-count {
    margin-right: auto;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 1px 8px;
    border-radius: 6px;
    min-width: 22px;
    text-align: center;
}

/* Price Range */
.pp-price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pp-price-field {
    flex: 1;
}

.pp-price-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
}

.pp-price-field input {
    width: 100%;
    height: 36px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    color: #0f172a;
    outline: none;
    transition: border-color .15s;
    text-align: center;
}

.pp-price-field input:focus {
    border-color: #93c5fd;
}

.pp-price-sep {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px;
}

.pp-price-apply {
    width: 100%;
    padding: 8px;
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: background .15s;
}

.pp-price-apply:hover {
    background: #1d4ed8;
}

.pp-sale-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color .15s;
    border-radius: 10px;
}

.pp-sale-link:hover {
    color: #2563eb;
}

.pp-sale-link.active {
    color: #2563eb;
}

.pp-sale-switch {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: #cbd5e1;
    position: relative;
    transition: background .2s;
    flex-shrink: 0;
}

.pp-sale-switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    right: 2px;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pp-sale-link.active .pp-sale-switch {
    background: #2563eb;
}

.pp-sale-link.active .pp-sale-switch::after {
    transform: translateX(-18px);
}

.pp-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
    background: #fef2f2;
    text-decoration: none;
    transition: all .15s;
    font-family: 'Tajawal', sans-serif;
}

.pp-reset-btn:hover {
    background: #fee2e2;
    border-color: #fecaca;
}

.pp-main {
    min-width: 0;
}

.pp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid #e8edf5;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.pp-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pp-result-count {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.pp-active-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pp-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    padding: 3px 10px;
    border-radius: 14px;
}

.pp-filter-tag a {
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
}

.pp-filter-tag a:hover {
    color: #1e40af;
}

.pp-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-sort-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pp-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-sort-select {
    padding: 7px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    background: #fff;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color .15s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
    padding-left: 28px;
    padding-right: 10px;
}

.pp-sort-select:focus {
    border-color: #93c5fd;
}

.pp-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.pp-empty-icon {
    font-size: 56px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.pp-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.pp-empty-sub {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.pp-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}

.pp-empty-btn:hover {
    background: #1d4ed8;
}

.pp-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.pp-pagination nav[role="navigation"] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 14px;
    border: 1px solid #e8edf5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pp-prev,
.pp-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    text-decoration: none;
    transition: all .18s;
    font-size: 12px;
}

.pp-prev:hover,
.pp-next:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #2563eb;
}

.pp-prev.disabled,
.pp-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f8fafc;
}

.pp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #475569;
    background: transparent;
    transition: all .15s;
    font-family: 'Tajawal', sans-serif;
    border: 1px solid transparent;
}

.pp-page:hover {
    background: #eef2ff;
    color: #2563eb;
}

.pp-page.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

.pp-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .cat-sidebar {
        display: none;
    }

    .side-banners {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .side-banner-inner {
        min-height: 100px;
    }
}

@media (max-width: 1024px) {
    .pp-layout {
        grid-template-columns: 1fr;
    }

    .pp-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pp-header-inner {
        padding: 36px 20px;
    }

    .pp-header-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .pp-sidebar {
        grid-template-columns: 1fr;
    }

    .pp-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pp-toolbar-right {
        width: 100%;
    }

    .pp-sort-form {
        width: 100%;
    }

    .pp-sort-select {
        flex: 1;
    }

    .pp-header-inner {
        padding: 28px 16px;
    }

    .pp-header-title {
        font-size: 20px;
    }

    .pp-pagination nav[role="navigation"] {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .logo {
        flex: 0;
    }

    .logo-img {
        height: 36px;
    }

    .search {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .search input {
        font-size: 13px;
    }

    .actions {
        gap: 2px;
    }

    .act {
        width: 36px;
        height: 36px;
    }

    .act i {
        font-size: 17px;
    }

    .user-drop-btn {
        padding: 0 6px;
        min-width: 36px;
    }

    .user-avatar {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .user-name {
        display: none;
    }

    .user-chevron {
        display: none;
    }

    .user-drop-menu {
        left: 0;
        right: auto;
        min-width: 200px;
    }

    .topbar {
        padding: 6px 12px;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
    }

    .topbar-info-text {
        display: none;
    }

    .topbar-info-text-short {
        display: inline;
        font-size: 11px;
    }

    .topbar-info {
        font-size: 11px;
        gap: 4px;
    }

    .topbar-side {
        gap: 6px;
    }

    .topbar-social {
        width: 28px;
        height: 28px;
    }

    .topbar-social i {
        font-size: 12px !important;
    }

    .hero-layout {
        padding: 10px 12px;
        gap: 10px;
    }

    .side-banners {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding: 20px 20px;
        max-width: 100%;
    }

    .hero-slider {
        height: 260px;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(5,10,30,.85) 0%, rgba(5,10,30,.55) 100%);
    }

    .slide-title {
        font-size: 19px;
    }

    .slide-sub {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .slide-tag {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }

    .slide-actions {
        flex-wrap: wrap;
    }

    .sbtn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .slide-countdown {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }

    .cdown-label {
        font-size: 11px;
    }

    .cdown-n {
        font-size: 15px;
    }

    .slider-dots {
        bottom: 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-wrap {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-head {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-cat-dropdown {
        min-width: 170px;
    }

    .bottom-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .trust-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        padding: 14px 16px;
    }

    .ti {
        justify-content: center;
    }

    .tdiv {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 200px;
    }

    .slide-content {
        padding: 14px 12px;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(5,10,30,.88) 0%, rgba(5,10,30,.6) 100%);
    }

    .slide-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .slide-sub {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .slide-tag {
        font-size: 8px;
        padding: 2px 8px;
        margin-bottom: 6px;
    }

    .sbtn {
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 8px;
    }

    .sbtn i {
        font-size: 10px;
    }

    .slide-actions {
        gap: 6px;
    }

    .slide-countdown {
        margin-bottom: 8px;
        gap: 4px;
    }

    .cdown-label {
        font-size: 9px;
    }

    .cdown-n {
        font-size: 13px;
        min-width: 20px;
    }

    .cdown-u {
        font-size: 7px;
    }

    .slider-dots {
        bottom: 6px;
        gap: 4px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }

    .dot.active {
        width: 14px;
    }

    .slider-arrow {
        top: 10px;
        transform: none;
        width: 32px;
        height: 32px;
        font-size: 11px;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(4px);
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,.2);
    }

    .arrow-prev {
        right: auto;
        left: 10px;
    }

    .arrow-next {
        left: 48px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-card {
        height: 110px;
        padding: 14px;
        border-radius: 14px;
    }

    .cat-card-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }

    .cat-card-name {
        font-size: 14px;
    }

    .cat-card-count {
        font-size: 10px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .trust-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        padding: 12px 12px;
    }

    .ti {
        justify-content: center;
        gap: 8px;
    }

    .ti-icon {
        width: 32px;
        height: 32px;
    }

    .ti-icon i {
        font-size: 14px;
    }

    .ti-label {
        font-size: 12px;
    }

    .ti-sub {
        font-size: 10px;
    }

    .product-card:hover {
        transform: none;
    }

    .search-cat {
        padding: 0 10px;
        font-size: 12px;
    }

    .search input {
        padding: 0 10px;
        font-size: 12px;
    }

    .search-go {
        width: 36px;
        height: 34px;
    }

    .topbar-info {
        font-size: 10px;
        text-align: center;
    }

    .topbar-side {
        gap: 8px;
    }
}

/* Product Page */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.breadcrumb i {
    font-size: 10px;
    color: var(--gray-400);
}

.product-show-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.product-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
}

.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-main-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    cursor: crosshair;
}

.pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pd-main-img-wrap:hover .pd-main-img {
    transform: scale(1.3);
}

.pd-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.pd-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pd-badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.pd-badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pd-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.pd-thumbs::-webkit-scrollbar {
    height: 6px;
}

.pd-thumbs::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 10px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.2s;
    background: var(--gray-50);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-thumb.active {
    border-color: var(--blue-600);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pd-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-cat-link {
    display: inline-block;
    color: var(--blue-600);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: var(--blue-50);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    transition: background 0.2s;
}

.pd-cat-link:hover {
    background: var(--blue-100);
}

.pd-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.3;
    margin: 0;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.pd-stars {
    color: #fbbf24;
    font-size: 16px;
}

.pd-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.pd-price-current {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue-700);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pd-price-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-500);
    margin-top: 8px;
}

.pd-price-old {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 600;
}

.pd-save-badge {
    background: #ecfdf5;
    color: #10b981;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #a7f3d0;
}

.pd-desc-short {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.pd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tag {
    font-size: 12px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pd-tag:hover {
    background: var(--blue-100);
    color: var(--blue-700);
}

.pd-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.pd-btn-buy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.pd-btn-buy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: pd-shine 4s infinite;
}

@keyframes pd-shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    15% {
        transform: translateX(100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.pd-btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.pd-btn-disabled {
    background: var(--gray-300);
    box-shadow: none;
    cursor: not-allowed;
    animation: none;
}

.pd-btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.pd-btn-disabled::after {
    display: none;
}

.pd-share-wrap {
    position: relative;
}

.pd-btn-share {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.pd-btn-share:hover {
    background: var(--gray-200);
    color: var(--blue-600);
}

.pd-share-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 10;
}

.pd-share-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pd-share-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s;
}

.pd-share-item:hover {
    transform: scale(1.1);
}

.pd-share-wa {
    background: #25D366;
}

.pd-share-tw {
    background: #000000;
}

.pd-share-fb {
    background: #1877F2;
}

.pd-share-cp {
    background: var(--gray-600);
}

.pd-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pd-trust-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
}

.pd-trust-sub {
    font-size: 11px;
    color: var(--gray-500);
}

.pd-tabs-container {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.pd-tabs-nav {
    display: flex;
    gap: 24px;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 24px;
    overflow-x: auto;
}

.pd-tab-btn {
    background: transparent;
    border: none;
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-500);
    padding: 0 12px 16px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.pd-tab-btn:hover {
    color: var(--blue-600);
}

.pd-tab-btn.active {
    color: var(--blue-700);
}

.pd-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue-600);
    border-radius: 3px 3px 0 0;
}

.pd-tab-pane {
    display: none;
    animation: pd-fade-in 0.4s ease;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 15px;
}

.pd-tab-pane.active {
    display: block;
}

@keyframes pd-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pd-tab-pane h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    margin-top: 24px;
}

.pd-tab-pane h3:first-child {
    margin-top: 0;
}

.pd-tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.pd-tab-pane ul li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 10px;
}

.pd-tab-pane ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--blue-500);
    font-size: 14px;
}

@media (max-width: 991px) {
    .product-grid-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
        border-radius: 16px;
    }

    .pd-title {
        font-size: 24px;
    }

    .pd-price-current {
        font-size: 26px;
    }

    .pd-trust {
        grid-template-columns: 1fr;
    }

    .pd-tabs-container {
        padding: 20px;
        border-radius: 16px;
    }

    .pd-tab-btn {
        font-size: 15px;
    }
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
}

.product-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    background: #f8fafc;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-badge-new {
    background: #10b981;
    color: #fff;
}

.p-badge-top {
    background: #f59e0b;
    color: #fff;
}

.p-heart {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #94a3b8;
    z-index: 10;
    transition: all 0.2s ease;
}

.p-heart:hover {
    color: #ef4444;
    background: #fee2e2;
}

.p-heart.wished {
    color: #ef4444 !important;
}

.p-heart.wished i {
    font-weight: 900;
}

a.p-heart {
    text-decoration: none;
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.p-brand {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
}

.p-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    text-decoration: none;
    transition: color 0.2s;
}

.p-name:hover {
    color: #2563eb;
}

.p-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.p-price {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.p-price-currency {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.p-old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    margin-right: auto;
}

.p-add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-card:hover .p-add-btn {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.see-all-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Tajawal', sans-serif;
}

.see-all-text:hover {
    background: #dbeafe;
    color: #2563eb;
    transform: translateX(-3px);
}

.see-all-text i {
    font-size: 12px;
}

.swiper-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    color: #334155;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.custom-slider-arrow:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.custom-slider-arrow:active {
    transform: translateY(0) scale(0.95);
}

.custom-slider-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.custom-slider-arrow.swiper-button-disabled:hover {
    background: #fff;
    color: #334155;
    border-color: #e2e8f0;
    box-shadow: none;
}

.p-actions-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}