/* =====================================================
   Amman Web — Main Stylesheet
   Fonts: DIN-Regular, DIN-Bold, Portada-Bold (Arabic)
   ===================================================== */

/* ---------- Fonts ---------- */
@font-face {
    font-display: swap;
    font-family: DIN-Regular;
    src: url(/web/assets/fonts/DINNextLTArabic-Regular.woff2) format('woff2');
}
@font-face {
    font-display: swap;
    font-family: DIN-Bold;
    src: url(/web/assets/fonts/DINNextLTArabic-Bold.woff2) format('woff2');
}
@font-face {
    font-display: swap;
    font-family: Portada-Bold;
    src: url(/web/assets/fonts/PortadaARA-Bold.woff2) format('woff2');
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none !important;
    appearance: none !important;
    font-family: DIN-Regular, Arial, Helvetica, sans-serif;
}
html {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    background: #f5f5f5;
    color: #212529;
    display: flex;
    direction: rtl;
    font-family: DIN-Regular, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
    flex-direction: column;
}
a { text-decoration: none; }
img { display: block; height: auto; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

/* =====================================================
   HEADER
   ===================================================== */

header {
    background: #fff;
    font-size: 0;
    height: auto;
    transition: .2s;
    width: 100%;
}

header .main_container {
    background-color: #fff;
    box-shadow: none;
    font-size: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header_main_container {
    margin: auto;
    max-width: 1280px;
    width: 100%;
}

header .header_upper_section.header_main_container {
    align-items: center;
    box-shadow: 0 8px 12px -14px rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    position: relative;
    z-index: 2;
}

header .header_upper_section ul.desktop_menu_items {
    align-items: center;
    display: flex;
    margin: 5px 0 0;
}

header .header_upper_section ul.desktop_menu_items li {
    cursor: pointer;
    font-size: 16px;
    padding: 0 0 5px 20px;
    position: relative;
}

header .header_upper_section ul.desktop_menu_items li a {
    display: flex;
    align-items: center;
    color: #212529;
    font-size: 14px;
    text-decoration: none;
}

header .header_upper_section ul.desktop_menu_items li a.active,
header .header_upper_section ul.desktop_menu_items li a:hover {
    color: #07426a;
    border-bottom: 2px solid #07426a;
}

header .header_upper_section ul.desktop_menu_items li.desktop_menu_first_item a.active,
header .header_upper_section ul.desktop_menu_items li.desktop_menu_first_item a:hover {
    border-bottom: none;
    padding-bottom: 0;
}

header .header_upper_section ul.desktop_menu_items li.desktop_menu_first_item a {
    border-left: 2px solid #ced4da;
    height: 30px;
    padding: 0 0 0 28px;
    position: relative;
}

header .header_upper_section ul.desktop_menu_items li.desktop_menu_first_item a img {
    height: 45px;
    object-fit: contain;
    width: 112px;
}

header .header_upper_section ul.desktop_menu_items li.almazeed_menu {
    display: flex;
    align-items: baseline;
    position: relative;
}

header .header_upper_section ul.desktop_menu_items li.almazeed_menu > span {
    color: #212529;
    font-size: 16px;
}

header .header_upper_section ul.desktop_menu_items li.almazeed_menu i.bi-caret-down-fill {
    color: #117098;
    cursor: pointer;
    font-size: 10px;
    margin: 0 10px 0 0;
    transition: transform .3s ease;
}

header ul.submenu {
    background-color: #f1f8fe;
    border: 1px solid rgba(0,0,0,.13);
    border-radius: 10px;
    display: none;
    padding: 13px;
    position: absolute;
    right: 0;
    top: 28px;
    width: 190px;
    z-index: 20;
}

header ul.submenu li {
    color: #212529;
    font-size: 15px;
    line-height: 23px;
    margin: 0 0 10px !important;
    padding: 0 !important;
}

header ul.submenu li:last-child {
    margin-bottom: 0 !important;
}

header ul.submenu li a {
    color: #212529;
    font-size: 15px;
}

header .header_upper_section div.desktop_menu {
    display: flex;
    align-items: center;
}

/* ── weather widget wrapper ──────────────────────────── */
.weather-widget {
    margin: 0 0 0 20px;
    position: relative;
}

header .header_upper_section button.weather_button {
    align-items: center;
    background: transparent;
    border: none;
    color: #343a40;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    gap: 4px;
    padding: 0;
}

header .header_upper_section button.weather_button #weatherIconDesk {
    font-size: 18px;
    margin-left: 6px;
    transition: color .3s;
}

header .header_upper_section button.weather_button .ww-arrow {
    font-size: 10px;
    margin-right: 6px;
    opacity: .6;
    transition: transform .25s;
}

header .header_upper_section button.weather_button span {
    color: #343a40;
    font-size: 16px;
}

/* ── weather popup ───────────────────────────────────── */
.weather-popup {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    display: none;
    min-width: 260px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    z-index: 1050;
    animation: wpFadeIn .22s cubic-bezier(.4,0,.2,1);
}

.weather-popup.wp-open {
    display: block;
}

@keyframes wpFadeIn {
    from { opacity: 0; transform: translateY(-8px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* ── popup header (dynamic gradient) ────────────────── */
.wp-header {
    background: linear-gradient(135deg, #f7931e, #f9d423);
    color: #fff;
    padding: 16px 16px 14px;
    position: relative;
    overflow: hidden;
    transition: background .6s ease;
}

.wp-header-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.wp-location {
    align-items: center;
    display: flex;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 13px;
    gap: 4px;
    opacity: .9;
}

.wp-location i {
    font-size: 12px;
}

.wp-time {
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 12px;
    opacity: .8;
}

.wp-header-main {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.wp-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
    font-size: 52px;
    line-height: 1;
    color: #fff !important;
}

.wp-temps {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wp-temp {
    color: #fff;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 38px;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.wp-desc {
    color: rgba(255,255,255,.85);
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 13px;
    text-transform: capitalize;
}

.wp-minmax {
    align-items: center;
    display: flex;
    gap: 8px;
    opacity: .88;
}

.wp-mm-item {
    align-items: center;
    display: inline-flex;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 13px;
    color: #fff;
    gap: 1px;
}

.wp-mm-item i {
    font-size: 16px;
}

.wp-mm-sep {
    color: rgba(255,255,255,.5);
    font-size: 12px;
}

/* ── details grid ────────────────────────────────────── */
.wp-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    background: #eef0f3;
}

.wp-grid-item {
    align-items: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 8px;
    text-align: center;
    transition: background .15s;
}

.wp-grid-item:hover {
    background: #f7f9fc;
}

.wp-grid-item i {
    color: #117098;
    font-size: 18px;
}

.wpg-val {
    color: #1a1a1a;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
}

.wpg-lbl {
    color: #888;
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 11px;
}

header .header_upper_section a.live_button {
    align-items: center;
    background-color: #117098;
    border-radius: 10px;
    color: #fff;
    display: flex;
    font-family: DIN-Bold, sans-serif;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
}

header .header_upper_section a.live_button i {
    font-size: 1.2rem;
    margin: 0 -8px 0 5px;
}

header .header_upper_section .mobile_menu_header,
header .header_upper_section .weather-button-container-mobile,
header .mobile_search,
header .menu-move-container,
header .mobile-search-section,
header .submenu_mobile {
    display: none;
}

header .header_upper_section .mobile_menu_header {
    align-items: center;
}

header .header_upper_section .mobile_menu_header a img {
    height: 45px;
    width: 112px;
    object-fit: contain;
}

header button.mobile_search {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    margin: 0 0 0 10px;
}

header button.mobile_search i {
    color: #868e96;
    font-size: 18px;
}

header .header_lower_section {
    background-color: #117098;
    position: relative;
    top: 0;
    width: 100%;
}

.header_lower_section_container {
    align-items: center;
    display: flex;
    margin: auto;
    max-width: 1280px;
    padding: 15px 25px;
}

header .header_lower_section p {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    width: 75px;
}

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

header .header_lower_section .lower_social_icons {
    align-items: center;
    display: flex;
}

header .header_lower_section .lower_social_icons a {
    align-items: center;
    display: inline-flex;
}

header .header_lower_section .lower_social_icons i {
    color: #fff;
    font-size: 20px;
    margin: 0 15px 0 0;
}

header .header_lower_section .lower_social_icons a:first-child i {
    margin-right: 0;
}

header .header_lower_section .subscribe_email {
    align-items: center;
    display: flex;
}

header .header_lower_section .subscribe_email a.subscribe_link {
    align-items: center;
    display: flex;
    margin: 0 0 0 15px;
}

header .header_lower_section .subscribe_email a img.email_box {
    margin: 0 0 0 10px;
}

header .header_lower_section .subscribe_email .search_input form {
    align-items: center;
    background-color: #fff;
    border: 1.3px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    height: 36px;
    padding: 0 10px;
    width: 300px;
}

header .header_lower_section .subscribe_email .search_input a {
    margin: 0 0 0 10px;
}

header .header_lower_section .subscribe_email .search_input input {
    border: none;
    color: #868e96;
    font-size: 14px;
    width: 90%;
}

header .header_lower_section .subscribe_email .search_input input::placeholder {
    color: #868e96;
    font-size: 14px;
}

header .menu-move-container {
    background: transparent;
    direction: ltr;
    height: 100%;
    inset: 0;
    pointer-events: none;
    position: fixed;
    width: 100%;
    z-index: 1001;
}

header .menu-move-container.menu_visible {
    pointer-events: all;
}

header .menu-move {
    background: #fff;
    bottom: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .18);
    direction: rtl;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    width: min(340px, 92vw);
}

header .menu-move-container.menu_visible .menu-move {
    transform: translateX(0);
}

/* ── topbar ──────────────────────────────────────────────── */
.mmenu-topbar {
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 14px 18px;
}

.mmenu-title {
    color: #111;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 17px;
}

.mmenu-close {
    align-items: center;
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    padding: 4px;
    transition: color .2s;
}

.mmenu-close:hover {
    color: #07426a;
}

/* ── search ──────────────────────────────────────────────── */
.mmenu-search {
    padding: 12px 16px;
    border-bottom: 1px solid #ebebeb;
}

.mmenu-search form {
    align-items: center;
    background: #f4f5f7;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
    padding: 0 8px 0 4px;
}

.mmenu-search form button {
    align-items: center;
    background: #07426a;
    border: none;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    transition: background .2s;
}

.mmenu-search form button:hover {
    background: #0d5a90;
}

.mmenu-search form input {
    background: transparent;
    border: none;
    color: #333;
    direction: rtl;
    flex: 1;
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 14px;
    min-height: 44px;
    outline: none;
    text-align: right;
    width: 100%;
}

.mmenu-search form input::placeholder {
    color: #adb5bd;
}

/* ── list ────────────────────────────────────────────────── */
.mmenu-list {
    flex: 1;
    list-style: none;
    overflow-y: auto;
    padding: 6px 0 6px;
}

.mmenu-list > li {
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}

.mmenu-list > li > a {
    color: #333;
    display: block;
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 16px;
    padding: 14px 18px;
    text-align: right;
    transition: color .15s, background .15s;
}

.mmenu-list > li > a:hover {
    background: #f7f9fc;
    color: #07426a;
}

/* active item */
.mmenu-list > li.mmenu-active > a {
    color: #07426a;
    font-family: DIN-Bold, Arial, sans-serif;
}

/* ── المزيد row ──────────────────────────────────────────── */
.mmenu-more {
    align-items: center;
    cursor: pointer;
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 14px 18px !important;
    user-select: none;
}

.mmenu-more span {
    color: #333;
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 16px;
}

.mmenu-more-icon {
    color: #888;
    font-size: 11px;
    transition: transform .25s;
}

/* ── submenu ─────────────────────────────────────────────── */
.mmenu-submenu {
    background: #f7f9fb;
    display: none;
    list-style: none;
    padding: 0;
}

.mmenu-submenu.mmenu-sub-open {
    display: block;
}

.mmenu-submenu li {
    border-bottom: 1px solid #ebebeb;
}

.mmenu-submenu li:last-child {
    border-bottom: none;
}

.mmenu-submenu li a {
    color: #555;
    display: block;
    font-family: DIN-Regular, Arial, sans-serif;
    font-size: 14px;
    padding: 11px 30px 11px 18px;
    text-align: right;
    transition: color .15s;
}

.mmenu-submenu li a:hover,
.mmenu-submenu li.mmenu-active a {
    color: #07426a;
}

/* ── footer (live button) ────────────────────────────────── */
.mmenu-footer {
    border-top: 1px solid #ebebeb;
    padding: 14px 16px 20px;
}

.mmenu-live-btn {
    align-items: center;
    background: #117098;
    border-radius: 10px;
    color: #fff !important;
    display: flex;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 15px;
    gap: 8px;
    justify-content: center;
    padding: 13px;
    transition: background .2s;
    width: 100%;
}

.mmenu-live-btn i {
    font-size: 18px;
}

.mmenu-live-btn:hover {
    background: #0d5a90;
    color: #fff !important;
}

header .mobile-search-section {
    display: none;
}

.visible {
    align-items: center;
    background-color: #fff;
    display: flex !important;
    gap: 10px;
    inset: 0;
    padding: 20px 15px;
    position: absolute;
    z-index: 1002;
}

header .mobile-search-section .search_input {
    background-color: #fff;
    border: 1.3px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    height: 36px;
    padding: 0 12px;
    width: calc(100% - 44px);
}

header .mobile-search-section .search_input form {
    width: 100%;
    display: flex;
    align-items: center;
}

header .mobile-search-section .search_input input {
    background-color: transparent;
    border: none;
    font-size: 14px;
    width: 90%;
}

header .mobile-search-section button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

header .mobile-search-section i {
    color: #6c757d;
    font-size: 18px;
}

.menu_visible {
    display: block !important;
}

.rotate {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

.no-overflow {
    overflow: hidden;
}

/* Overlay */
.overlay {
    background: rgba(0,0,0,.45);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.overlay.active {
    display: block;
}

/* =====================================================
   RESPONSIVE — HEADER
   ===================================================== */

@media (max-width: 1280px) {
    header .header_upper_section ul.desktop_menu_items li {
        padding: 0 0 5px 18px;
    }
    header .header_upper_section ul.desktop_menu_items li a {
        font-size: 14px;
    }
}

@media (max-width: 1150px) {
    header .header_upper_section {
        box-shadow: 0 10px 10px -13px #ccc;
        padding: 20px 15px !important;
    }

    header .header_upper_section ul.desktop_menu_items,
    .weather-widget,
    header .header_lower_section .header_lower_section_content,
    .header_lower_section_container {
        display: none;
    }

    header .header_upper_section .mobile_menu_header,
    header .header_upper_section .weather-button-container-mobile,
    header .mobile_search {
        display: flex;
    }

    header .header_upper_section .weather-button-container-mobile {
        margin-right: auto;
    }

    header .header_upper_section a.weather_button_mobile {
        align-items: center;
        color: #343a40;
        display: flex;
        font-size: 16px;
        gap: 6px;
    }

    header .header_upper_section a.live_button {
        display: none;
    }

    header button.mobile_burger_menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        margin: 0 0 0 12px;
    }

    header .menu-move-container {
        display: none;
    }
}

@media (max-width: 550px) {
    header .header_upper_section a.weather_button_mobile {
        display: none;
    }

    header .header_upper_section a.live_button {
        display: none;
    }

    header .header_lower_section i {
        font-size: 16px;
    }
}

header .header_lower_section .subscribe_email .search_input a {
    align-items: center;
    color: #6c757d;
    display: flex;
    font-size: 16px;
    margin: 0 0 0 10px;
    text-decoration: none;
    transition: color .2s;
}
header .header_lower_section .subscribe_email .search_input a:hover {
    color: #084f7f;
}

/* =====================================================
   PAGE-BODY OFFSET (account for fixed header)
   ===================================================== */

.page-content {
    flex: 1 0 auto;
    padding-top: 120px; /* upper ~72px + lower ~46px */
}

@media (max-width: 1150px) {
    .page-content {
        padding-top: 110px;
    }
}

/* =====================================================
   UTILITIES
   ===================================================== */

.container-xl {
    margin: auto;
    max-width: 1280px;

}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: #117098;
    color: #fff;
    margin-top: auto;
}

.site-footer a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    transition: .2s ease;
}

.site-footer a:hover {
    color: #d8f0fa;
}

.site-footer__top {
    background: linear-gradient(to bottom, #0a3d52, #117098);
    border-bottom: 1px solid rgba(0, 0, 0, .16);
    padding: 16px 0 14px;
}

.site-footer__brand {
    display: flex;
    justify-content: center;
}

.site-footer__brand img {
    filter: brightness(0) invert(1);
    height: 56px;
    object-fit: contain;
    width: auto;
}

.site-footer__main {
    padding: 34px 0 24px;
}

.site-footer__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
}

.site-footer__col h3 {
    color: #fff;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.site-footer__col p,
.site-footer__col li,
.site-footer__col a {
    color: rgba(255, 255, 255, .95);
    font-size: 14px;
    font-family: DIN-Regular, Arial, sans-serif;
    line-height: 1.8;
}

.site-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer__stores {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.site-footer__stores a {
    align-items: center;
    background: #1f2328;
    border-radius: 12px;
    display: inline-flex;
    font-family: DIN-Bold, Arial, sans-serif;
    font-size: 14px;
    justify-content: center;
    min-height: 42px;
    min-width: 158px;
    padding: 8px 14px;
    width: fit-content;
    gap: 10px;
}

.site-footer__stores a i {
    font-size: 16px;
}

.site-footer__bottom {
    background: #0f668a;
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding: 14px 0;
}

.site-footer__bottom-inner {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.site-footer__bottom-inner p {
    color: #fff;
    flex: 1;
    font-size: 14px;
    margin: 0;
    text-align: right;
}

.site-footer__to-top {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    min-width: 46px;
}

.site-footer__to-top i {
    font-size: 16px;
}

.site-footer__social {
    display: inline-flex;
    gap: 10px;
}

.site-footer__social a {
    align-items: center;
    background: rgba(0, 0, 0, .18);
    border-radius: 50%;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.site-footer__social a i {
    font-size: 16px;
}

/* ── Mobile-only footer block (hidden on desktop) ─────────────────── */
.site-footer__mobile {
    display: none;
}

@media (max-width: 1280px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__col h3 {
        font-size: 15px;
    }

    .site-footer__col p,
    .site-footer__col li,
    .site-footer__col a {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .site-footer__main {
        padding: 28px 0 20px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .site-footer__col h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .site-footer__col p,
    .site-footer__col li,
    .site-footer__col a {
        font-size: 13px;
        line-height: 1.8;
    }

    .site-footer__stores a {
        font-size: 13px;
        min-height: 40px;
        min-width: 150px;
    }

    .site-footer__stores a i {
        font-size: 15px;
    }

    .site-footer__bottom-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer__bottom-inner p {
        font-size: 14px;
        order: 3;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .site-footer__main,
    .site-footer__bottom,
    .site-footer__top {
        display: none;
    }

    .site-footer__mobile {
        display: block;
        padding: 0 0 8px;
    }

    /* ── Brand block ─────────────────────────────────────── */
    .sfm-brand {
        text-align: center;
        padding: 24px 20px 18px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .sfm-brand img { filter: brightness(0) invert(1); height: 44px; object-fit: contain; }
    .sfm-brand-name {
        font-family: DIN-Bold, sans-serif;
        font-size: 20px;
        color: #fff;
        display: block;
        margin-bottom: 8px;
    }
    .sfm-brand-desc {
        color: rgba(255,255,255,.75);
        font-family: DIN-Regular, sans-serif;
        font-size: 13px;
        line-height: 1.7;
        margin: 10px 0 0;
    }

    /* ── Social row ──────────────────────────────────────── */
    .sfm-social-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .sfm-social-label {
        font-family: DIN-Regular, sans-serif;
        font-size: 12px;
        color: rgba(255,255,255,.55);
        letter-spacing: .3px;
    }
    .sfm-social-icons {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    .sfm-social-row a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        border: 1.5px solid rgba(255,255,255,.3);
        color: #fff !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: background .2s;
    }
    .sfm-social-row a:hover { background: rgba(255,255,255,.22); }

    /* ── Links 2-column grid ─────────────────────────────── */
    .sfm-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding: 16px 20px 12px;
    }
    .sfm-links-col { display: flex; flex-direction: column; gap: 6px; }
    .sfm-links-col:first-child { border-left: 1px solid rgba(255,255,255,.12); padding-left: 16px; }
    .sfm-links-col:last-child { padding-right: 16px; }
    .sfm-links-title {
        font-family: DIN-Bold, sans-serif;
        font-size: 13px;
        color: rgba(255,255,255,.6);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 6px;
    }
    .sfm-links-col a {
        font-family: DIN-Regular, sans-serif;
        font-size: 14px;
        color: rgba(255,255,255,.88) !important;
        text-decoration: none;
        padding: 3px 0;
        transition: color .2s;
    }
    .sfm-links-col a:hover { color: #fff !important; }

    /* ── Account section ─────────────────────────────────── */
    .sfm-account {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .sfm-account-user {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,.85);
        font-family: DIN-Regular, sans-serif;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .sfm-account-user i { font-size: 18px; color: rgba(255,255,255,.7); }
    .sfm-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .sfm-pills a,
    .sfm-pill-logout {
        border: 1.5px solid rgba(255,255,255,.45);
        border-radius: 20px;
        color: #fff !important;
        font-family: DIN-Regular, sans-serif;
        font-size: 13px;
        padding: 6px 16px;
        background: transparent;
        cursor: pointer;
        text-decoration: none;
        transition: background .2s;
    }
    .sfm-pills a:hover,
    .sfm-pill-logout:hover { background: rgba(255,255,255,.15); }
    .sfm-pill-logout { color: #ffaaaa !important; border-color: rgba(255,150,150,.5); }

    /* ── Contact row ─────────────────────────────────────── */
    .sfm-contact-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .sfm-contact-row a {
        display: flex;
        align-items: center;
        gap: 9px;
        color: rgba(255,255,255,.85) !important;
        font-family: DIN-Regular, sans-serif;
        font-size: 14px;
        text-decoration: none;
    }
    .sfm-contact-row a i { font-size: 15px; color: rgba(255,255,255,.6); }
    .sfm-contact-row a:hover { color: #fff !important; }

    /* ── Copyright ───────────────────────────────────────── */
    .sfm-copyright {
        padding: 14px 20px 20px;
        text-align: center;
    }
    .sfm-copyright p {
        color: rgba(255,255,255,.55);
        font-family: DIN-Regular, sans-serif;
        font-size: 12px;
        margin: 0;
        line-height: 1.7;
    }

    .site-footer__social a { height: 36px; width: 36px; }
    .site-footer__social a i { font-size: 16px; }
}

/* =====================================================
   STATIC PAGES (page/show)
   ===================================================== */

.page-static-title {
    color: #07426a;
    font-family: 'DIN-Bold', Arial, sans-serif;
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.page-static-content {
    color: #343a40;
    font-size: 16px;
    line-height: 2;
    max-width: 900px;
}

.page-static-content h2,
.page-static-content h3 {
    color: #07426a;
    font-family: 'DIN-Bold', Arial, sans-serif;
    margin-top: 28px;
    margin-bottom: 10px;
}

.page-static-content p { margin-bottom: 16px; }

.page-static-content a { color: #07426a; text-decoration: underline; }
