@font-face {
    font-family: "readexpro";
    src: url("../font/readexpro-regular.woff2") format("woff2");
}

:root {
    --white: #fff;
    --black: #000;
    --transformBG: #fffaf6;
    --border: rgba(0, 0, 0, 0.2);
    --primary: #e6810f;
    --primaryHover: rgba(58, 116, 201, 0.75);
    --secondery: #323232;
    --seconderyHover: rgba(50, 50, 50, 0.75);
    --thirdly: #011c84;
    --lightGrey: #f8f8f8;
    --radius: 8px;
}

/* base */
*,
*:before,
*:after {
    font-family: "readexpro";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    direction: ltr;
    background: #f0f0f0;
    color: var(--secondery);
}

a {
    color: inherit;
}

/* =========================================================
   PAGE LAYOUT (SIDE NAV + CONTENT)
   ========================================================= */
.page_shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "header header"
        "sidenav content";
    min-height: 100vh;
}

.site_header {
    grid-area: header;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.side_nav {
    grid-area: sidenav;
}
.page_content {
    grid-area: content;
    min-width: 0;
}

.page_content {
    min-width: 0;
}

/* =========================================================
   SOCIAL FLOATING
   ========================================================= */
body main .socialfixed {
    position: fixed;
    bottom: -100px;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    margin-right: 5px;
}
body main .socialfixed a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
}
body main .socialfixed a i {
    font-size: 20px;
    line-height: 1;
}
body main .socialfixed a.facebook {
    background: #1877f2;
}
body main .socialfixed a.instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
body main .socialfixed a.whatsapp {
    background: #25d366;
}
body main .socialfixed a.tiktok {
    background: var(--black);
}
body main .socialfixed a:hover {
    filter: brightness(1.1);
    transform: scale(1.08);
}

/* =========================================================
   HEADER
   ========================================================= */
header {
    position: relative;
    z-index: 50;
    padding: 0;
    box-shadow: none;
    display: block;
}

/* =========================================================
   SIDE NAV (DESKTOP)
   ========================================================= */
.side_nav {
    position: fixed;
    grid-area: sidenav;
    top: 80px;
    width: 260px;
    height: 100%;
    background: var(--white);
    overflow-y: auto;
    border-right: 1px solid var(--border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    z-index: 100; /* ما تحتاجش 999 */
    overflow: visible; /* نخلي submenu يخرج */
}

/* ✅ السكروول يكون هنا */
.side_nav .side_nav_scroll {
    height: 100%;
    overflow: visible !important;
}

/* ✅ خلي submenu فوق الجميع */
.side_nav .side_nav_sub {
    z-index: 2000;
}

.side_nav .side_nav_scroll::-webkit-scrollbar {
    width: 10px;
}
.side_nav .side_nav_scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 999px;
}
.side_nav .side_nav_scroll::-webkit-scrollbar-track {
    background: transparent;
}

.side_nav .side_nav_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
}

/* =========================
   SIDE NAV SEARCH (MOBILE)
   ========================= */

.side_nav_search {
    display: none; /* مخفي افتراضياً (Desktop) */
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 6px 4px 10px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
}

.side_nav_search i {
    font-size: 18px;
    color: #777;
}

.side_nav_search input {
    width: 100%;
    border: 0;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: var(--secondery);
}

.side_nav_search input::placeholder {
    color: #999;
}

.side_nav .side_nav_item,
.side_nav .side_nav_btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 12px;
    color: var(--secondery);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.side_nav .side_nav_item i,
.side_nav .side_nav_btn i {
    font-size: 20px;
    line-height: 1;
    min-width: 22px;
    text-align: center;
    color: var(--secondery);
}

.side_nav .side_nav_item span,
.side_nav .side_nav_btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
    transition: 0.18s ease;
    pointer-events: auto;
    font-size: 14px;
}

.side_nav .side_nav_caret {
    margin-left: auto;
    opacity: 1;
    transition: 0.18s ease;
    color: #777;
}

.side_nav .side_nav_item:hover,
.side_nav .side_nav_btn:hover,
.side_nav .side_nav_btn.selected {
    background: rgba(230, 129, 15, 0.1);
    color: var(--primary);
}
.side_nav .side_nav_item:hover i,
.side_nav .side_nav_btn:hover i,
.side_nav .side_nav_btn.selected i {
    color: var(--primary);
}

/* ===== Submenus (DESKTOP hover) ===== */
.side_nav .side_nav_sub_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
}
.side_nav .side_nav_sub_btn span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.side_nav .side_nav_sub_btn i.side_nav_caret {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.side_nav .side_nav_has_sub {
    position: relative;
}

.side_nav .side_nav_sub {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.18s ease;
    z-index: 2000;
}

.side_nav .side_nav_has_sub:hover > .side_nav_sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.side_nav .side_nav_sub_level2 {
    top: -8px;
    left: 100%;
}

.side_nav .side_nav_sub_item,
.side_nav .side_nav_sub_btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    color: var(--secondery);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
}

.side_nav .side_nav_sub_item:hover,
.side_nav .side_nav_sub_btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.side_nav .side_nav_group {
    width: 100%;
}
.side_nav .side_nav_group.side_nav_has_sub {
    position: relative;
}
.side_nav .side_nav_group.side_nav_has_sub:hover > .side_nav_sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.side_nav .side_nav_group:hover {
    background: transparent;
}

/* =========================================================
   TOP HERO BAR
   ========================================================= */
.site_header .top_hero {
    height: 80px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.site_header .top_hero .top_hero_brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site_header .top_hero .top_hero_logo {
    width: auto;
    height: 50px;
}

.site_header .top_hero .top_hero_nav {
    display: flex;
    justify-content: center;
}

.site_header .top_hero .top_hero_link {
    color: var(--secondery);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 5px;
}
.site_header .top_hero .top_hero_link:hover {
    background: rgba(230, 129, 15, 0.2);
}
.site_header .top_hero .top_hero_link_active {
    color: var(--primary);
    background: rgba(230, 129, 15, 0.12);
}

.site_header .top_hero .top_hero_actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site_header .top_hero .top_hero_search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    margin: 0px auto;
    width: 70%;
    background: var(--white);
}
.site_header .top_hero .top_hero_search i {
    color: #777;
    font-size: 18px;
}
.site_header .top_hero .top_hero_search input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
}

.site_header .top_hero .top_hero_cart_btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    position: relative;
}
.site_header .top_hero .top_hero_cart_btn i {
    font-size: 20px;
    color: var(--secondery);
    display: flex;
    align-items: center;
    justify-content: center;
}
.site_header .top_hero .top_hero_cart_btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.site_header .top_hero .top_hero_cart_btn .cart_badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    background: var(--primary, #e6810f);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
/* mobile menu button (hidden on desktop) */
.site_header .top_hero .top_hero_menu_btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.site_header .top_hero .top_hero_menu_btn i {
    font-size: 20px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.site_header .top_hero .top_hero_menu_btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* =========================================================
   CART DRAWER
   ========================================================= */
.site_header .cart_drawer {
    position: fixed;
    top: 0;
    right: -40px;
    height: 100vh;
    width: min(420px, 92vw);
    background: var(--white);
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: 0.22s ease;
    z-index: 90;
    display: flex;
    flex-direction: column;
}
.site_header .cart_drawer.cart_open {
    transform: translateX(-40px);
}
.site_header .cart_drawer .cart_drawer_head {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
}
.site_header .cart_drawer .cart_drawer_title {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondery);
}
.site_header .cart_drawer .cart_drawer_close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site_header .cart_drawer .cart_drawer_close:hover {
    background: rgba(0, 0, 0, 0.06);
}
.site_header .cart_drawer .cart_drawer_close i {
    font-size: 20px;
    color: var(--secondery);
}
.site_header .cart_drawer .cart_drawer_body {
    padding: 16px;
    overflow: auto;
}
.site_header .cart_drawer .cart_empty {
    padding: 22px;
    text-align: center;
    opacity: 0.8;
}
.site_header .cart_drawer .cart_empty i {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}
.site_header .cart_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.22s ease;
    z-index: 85;
}
.site_header .cart_overlay.cart_open {
    opacity: 1;
    visibility: visible;
}

/* =========================
   CART ITEMS + SUMMARY
   ========================= */

.cart_items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.cart_item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.cart_item_img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: contain;
    padding: 6px;
    background: #fff;
}

.cart_item_info {
    min-width: 0;
}

.cart_item_title {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondery);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.cart_item_meta {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #666;
    font-size: 13px;
}

.cart_item_price {
    font-weight: 900;
    color: var(--thirdly);
}

.cart_item_actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.cart_qty {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 8px;
    background: #fff;
}

.cart_qty button {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 0;
    background: rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart_qty span {
    min-width: 22px;
    text-align: center;
    font-weight: 900;
}

.cart_remove {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #777;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.cart_remove:hover {
    color: #000;
}

.cart_summary {
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding-top: 12px;
}

.cart_sum_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2px;
    color: #444;
    font-size: 14px;
}

.cart_sum_total {
    border-top: 1px dashed var(--border);
    margin-top: 6px;
    padding-top: 12px;
}

.cart_sum_total strong {
    font-size: 18px;
    color: var(--primary);
}

.cart_checkout_btn {
    width: 100%;
    margin-top: 12px;
    height: 48px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s ease;
}

.cart_checkout_btn:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
}

.cart_clear_btn {
    width: 100%;
    margin-top: 10px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* =========================================================
   MOBILE NAV OVERLAY (same nav, not duplicated)
   ========================================================= */
#mobile_nav_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.22s ease;
    z-index: 9998;
}
body.nav_open #mobile_nav_overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MAIN WRAPPER
========================= */
main {
    margin: 0px 20px;
}

.fastNav {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    height: 50px;
    background: var(--black);
    margin-bottom: 20px;
}

.fastNav a {
    text-decoration: none;
    font-size: 17px;
    color: var(--white);
    transition: 0.46s;
}

.fastNav a:hover {
    color: var(--primary);
    transition: 0.46s;
}

/*================================================== HERE THE CODE ==================================================*/
/* =========================
   CONTENT: FAQ PAGE
========================= */

.faq_head {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 14px;
    padding: 16px;
    margin: 8px 0 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq_title {
    margin: 0;
    font-size: 26px;
    font-weight: 1000;
    color: var(--secondery);
}
.faq_sub {
    margin: 6px 0 0;
    color: #666;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.6;
}

.faq_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.faq_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.02);
    font-weight: 1000;
    color: var(--secondery);
    font-size: 13px;
}
.faq_badge i {
    color: var(--primary);
    font-size: 16px;
}

.faq_head_right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.faq_search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 16px;
    padding: 12px 12px;
}
.faq_search i {
    color: #777;
    font-size: 18px;
}
.faq_search input {
    border: 0;
    outline: 0;
    width: 100%;
    background: transparent;
    font-weight: 900;
    color: var(--secondery);
}

.faq_tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.faq_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.02);
    cursor: pointer;
    font-weight: 1000;
    transition: 0.18s ease;
}
.faq_tag i {
    font-size: 16px;
    color: #666;
}
.faq_tag:hover {
    background: rgba(230, 129, 15, 0.1);
    border-color: rgba(230, 129, 15, 0.35);
    color: var(--primary);
}
.faq_tag:hover i {
    color: var(--primary);
}
.faq_tag.is_active {
    background: rgba(230, 129, 15, 0.14);
    border-color: rgba(230, 129, 15, 0.35);
    color: var(--primary);
}
.faq_tag.is_active i {
    color: var(--primary);
}

.faq_shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 14px;
    align-items: start;
}

.faq_toc {
    position: sticky;
    top: 98px;
}
.faq_card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    margin-bottom: 14px;
}

.faq_card_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.faq_card_head h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 1000;
}
.faq_hint {
    color: #777;
    font-weight: 900;
    font-size: 12.5px;
}

.faq_toc_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.faq_toc_list a {
    padding: 10px 10px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 1000;
    color: var(--secondery);
    transition: 0.18s ease;
    background: rgba(0, 0, 0, 0.02);
}
.faq_toc_list a:hover {
    background: rgba(230, 129, 15, 0.1);
    border-color: rgba(230, 129, 15, 0.35);
    color: var(--primary);
}

.faq_help_line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
    font-weight: 1000;
    color: #555;
    margin-bottom: 10px;
}
.faq_help_line i {
    color: var(--primary);
    font-size: 18px;
}
.faq_help_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 1000;
    transition: 0.18s ease;
}
.faq_help_btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.faq_notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(230, 129, 15, 0.08);
    color: var(--secondery);
    font-weight: 1000;
    margin-bottom: 14px;
}
.faq_notice i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 1px;
}

.faq_group {
    margin-bottom: 14px;
}
.faq_group_head {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}
.faq_group_head h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 1000;
}
.faq_group_head h2 i {
    color: var(--primary);
    font-size: 18px;
}
.faq_group_head p {
    margin: 6px 0 0;
    color: #666;
    font-weight: 900;
    font-size: 13.5px;
}

.faq_item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 10px;
}
.faq_q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.faq_q span {
    font-weight: 1000;
    color: var(--secondery);
    font-size: 15.5px;
}
.faq_q i {
    font-size: 20px;
    color: #777;
    transition: 0.18s ease;
}
.faq_a {
    padding: 0 14px 14px;
    color: #444;
    font-weight: 800;
    line-height: 1.75;
    display: none;
}
.faq_a p {
    margin: 10px 0 0;
}
.faq_a ul,
.faq_a ol {
    margin: 10px 0 0;
    padding-left: 18px;
}
.faq_a li {
    margin: 8px 0;
}

.faq_item.open .faq_a {
    display: block;
}
.faq_item.open .faq_q i {
    transform: rotate(180deg);
}

.faq_small {
    margin-top: 10px;
    color: #777;
    font-size: 12.5px;
    font-weight: 900;
}

.faq_contact_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.faq_contact_card {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}
.faq_contact_card i {
    font-size: 18px;
    color: var(--primary);
    margin-top: 2px;
}
.faq_contact_card b {
    font-weight: 1000;
}
.faq_contact_card p {
    margin: 4px 0 0;
    color: #555;
    font-weight: 900;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .faq_head {
        grid-template-columns: 1fr;
    }
    .faq_shell {
        grid-template-columns: 1fr;
    }
    .faq_toc {
        position: relative;
        top: auto;
    }
}
@media (max-width: 768px) {
    .faq_contact_grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   BRANDS
========================= */
.brands_section {
    margin: 30px 0 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 14px;
}

.brands_title {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.brands_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    text-decoration: none;
    height: 86px;
}

.brands_item img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

/* =========================
   SOCIAL FLOATING
========================= */
.socialfixed {
    position: fixed;
    bottom: 18px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1200;
}

.socialfixed a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    font-size: 22px;
    text-decoration: none;
    transition: 0.2s ease;
}

.socialfixed a:hover {
    filter: brightness(1.05);
    transform: scale(1.05);
}

.socialfixed a.facebook {
    background: #1877f2;
}
.socialfixed a.whatsapp {
    background: #25d366;
}
.socialfixed a.tiktok {
    background: #000;
}
.socialfixed a.instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    padding: 36px 20px;
    background-color: #f8f8f8;
}
footer a {
    color: inherit;
    text-decoration: none;
}

/* titles */
footer .ft-section-title {
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 22px;
    text-align: center;
}

/* guarantees */
footer .ft-g-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
footer .ft-g-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: 0.25s ease;
    background: #fff;
}
footer .ft-g-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
footer .ft-g-icn {
    background: none;
    width: auto;
    height: auto;
    margin-bottom: 14px;
}
footer .ft-g-icn i {
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
}
footer .ft-g-item h4 {
    margin: 10px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--secondery);
}
footer .ft-g-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
}

/* links columns */
footer .ft-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}
footer .ft-col h4 {
    position: relative;
    margin: 0 0 17px 0;
    font-size: 16px;
}
footer .ft-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 56px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
footer .ft-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .ft-col li {
    margin: 8px 0;
    color: var(--black);
}

footer .ft-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .ft-col-logo {
    width: 200px;
    height: auto;
    margin-bottom: 18px;
}
footer .ft-col-social {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}
footer .ft-col-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 28px;
    transition: color 0.25s ease;
}
footer .ft-col-social a:hover {
    color: var(--primary);
}
footer .ft-col-social a[aria-label="Facebook"]:hover {
    color: #1877f2;
}
footer .ft-col-social a[aria-label="Instagram"]:hover {
    color: #e1306c;
}
footer .ft-col-social a[aria-label="WhatsApp"]:hover {
    color: #25d366;
}
footer .ft-col-social a[aria-label="TikTok"]:hover {
    color: #000;
}

footer .ft-col-follow {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondery);
    letter-spacing: 0.6px;
}

/* info (optional blocks) */
footer .ft-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 8px 0 10px;
}
footer .ft-info-col h4 {
    margin: 0 0 10px;
    font-size: 16px;
}
footer .ft-info-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .ft-info-col li {
    margin: 6px 0;
    color: var(--black);
}
footer .ft-info address {
    font-style: normal;
    color: var(--black);
    line-height: 1.7;
}

/* legal bar */
footer .ft-legal {
    margin-top: 18px;
    text-align: center;
    color: var(--white);
    background: #090101;
    border-top: 1px solid var(--border);
    padding: 12px;
    border-radius: 10px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1600px) {
}
@media (max-width: 1200px) {
    footer .ft-g-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .ft-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    footer .ft-g-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    footer .ft-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================
   MOBILE: SAME .side_nav as bottom sheet + scroll + click open
   ============================ */
@media (max-width: 768px) {
    .page_shell {
        grid-template-columns: 1fr;
    }

    /* same nav becomes bottom sheet */
    .side_nav {
        display: block; /* ✅ نفس nav */
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: min(82vh, 720px);
        width: 100%;
        border-right: 0;
        border-top: 1px solid var(--border);
        border-radius: 16px 16px 0 0;
        transform: translateY(105%);
        transition: transform 0.22s ease;
        z-index: 9999;
        overflow: hidden; /* ✅ مهم */
        background: var(--white);
        box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.18);
    }

    body.nav_open .side_nav {
        transform: translateY(0);
    }

    /* enable scroll inside nav on mobile */
    .side_nav .side_nav_scroll {
        height: 100%;
        overflow-y: auto !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .side_nav_search {
        display: flex;
    }

    /* hide desktop hover logic for submenus (mobile uses .nav_open class) */
    .side_nav .side_nav_sub {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 6px 0 0 14px;
        display: none; /* closed by default */
    }

    .side_nav .nav_open > .side_nav_sub {
        display: block;
    }
    .side_nav .side_nav_sub_level2 {
        padding-left: 14px;
    }

    /* top hero changes */
    .site_header .top_hero .top_hero_search {
        display: none;
    }
    .site_header .top_hero .top_hero_nav {
        display: none;
    }

    .site_header .top_hero {
        grid-template-columns: auto 1fr auto;
        padding: 0px 10px;
    }

    .site_header .top_hero .top_hero_menu_btn {
        display: inline-flex;
        justify-self: start;
    }

    .site_header .top_hero .top_hero_brand {
        justify-self: center;
    }
    .site_header .top_hero .top_hero_actions {
        justify-self: end;
    }
    .site_header .top_hero .top_hero_cart_btn {
        margin-left: auto;
    }

    /* lock main spacing */
    main {
        margin: 0px 10px;
    }

    .fastNav {
        justify-content: space-around;
        margin-bottom: 10px;
        gap: 0px;
    }

    .fastNav a {
        font-size: 15px;
    }

    footer {
        padding: 10px;
    }

    footer .ft-links {
        grid-template-columns: repeat(1, 1fr);
    }
    footer .ft-info {
        grid-template-columns: 1fr;
    }
    footer .ft-g-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .ft-g-icn i {
        font-size: 32px;
    }
    footer .ft-g-item h4 {
        font-size: 17px;
    }
    footer .ft-g-item p {
        font-size: 14px;
    }

    /* body lock scroll when nav open */
    body.nav_open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 310px) {
}
