@font-face{
    font-family: "Tajawal";
    src: url("../font/Tajawal-Regular.ttf") format("truetype");
}

:root{
    --white: #fff;
    --black: #000;
    --transformBG: #fffaf6;
    --border: rgba(0, 0, 0, 0.2);
    --primary: #3a74c9;
    --primaryHover: rgb(58, 116, 201, 0.75);
    --secondery: #323232;
    --seconderyHover: rgb(50, 50, 50, 0.75);
    --lightGrey: #f8f8f8;
    --radius: 8px;
}

body[data-theme="grey"]{
}

body[data-theme="dark"]{
}

*,
*:before,
*:after{
    font-family: "Tajawal", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    gap: 7px;
    direction: ltr;
    background-color: #f0f0f0;
}


body main .socialfixed{
    position: fixed;
    bottom: -100px;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    margin-left: 5px;
}

body main .socialfixed a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    color: #fff;
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
}

body main .socialfixed a i{
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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: #000000;
}

body main .socialfixed a:hover{
    filter: brightness(1.1);
    transform: scale(1.08);
}


/************************ HEADER ************************/
body header{
    grid-area: header;
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 0;
    padding: 10px 8%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: auto;
    gap: 15px;
}
body header figure{
    height: 80px;
}
body header figure img{
    height: 80px;
    width: auto;
    max-width: 180px;
}

body header .categories{
    direction: rtl;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", Arial, sans-serif;
}

body header .categories .categorie{
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-size: 15px;
    color: #333;
}

body header .categories .categorie:hover{
    color: var(--primary);
}
body header .categories .categorie p{
    cursor: pointer;
}
body header .categories .categorie i{
    font-size: 12px;
    margin-top: 2px;
}

body header .categories .categorie .dropdown{
    display: none !important;
    position: absolute;
    top: 100%;
    right: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    flex-direction: column;
    padding: 12px 0;
    z-index: 4;
    animation: fadeIn 0.25s ease;
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body header .categories .categorie .dropdown::-webkit-scrollbar{
    width: 0;
    height: 0;
}
body header .categories .categorie .dropdown .title{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
    margin-left: 10px;
}

body header .categories .categorie .dropdown .item{
    padding: 10px 18px;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

body header .categories .categorie .dropdown .item:hover{
    background: var(--primaryHover);
    color: var(--white);
}

body header .categories .categorie:hover > .dropdown{
    display: flex !important;
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

body header .functions{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
}

body header .functions .wilaya{
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-size: 18px;
    color: #333;
}
body header .functions .wilaya i{
    font-size: 16px;
    display: grid;
    align-items: center;
    align-self: center;
}

body header .functions .wilaya .dropdown{
    display: none !important;
    position: absolute;
    top: 100%;
    right: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    flex-direction: column;
    padding: 12px 0;
    z-index: 4;
    animation: fadeIn 0.25s ease;
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    direction: rtl;
}
body header .functions .wilaya .dropdown::-webkit-scrollbar{
    width: 0;
    height: 0;
}
body header .functions .wilaya .dropdown .title{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
    margin-left: 10px;
}

body header .functions .wilaya .dropdown .item{
    padding: 10px 18px;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body header .functions .wilaya .dropdown .item i{
    font-size: 14px;
    margin-bottom: 0px;
}
body header .functions .wilaya .dropdown .item:hover{
    background: var(--primaryHover);
    color: var(--white);
}

body header .functions .wilaya:hover > .dropdown{
    display: flex !important;
}

body header .functions .wilaya .helper{
    position: absolute;
    top: 30px;
    right: 0;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 12px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffe8a1;
    z-index: 2;
    font-size: 15px;
    font-weight: 500;
    width: max-content;
    animation: helperPulse 3.5s ease-in-out infinite;
    box-shadow: 0 6px 14px rgba(133,100,4,0.18);
}

body header .functions .wilaya .helper p{
    display: block;
}

body header .functions .wilaya .helper::before{
    content:"";
    position:absolute;
    top:-10px;
    right:14px;
    width:0; height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #ffe8a1;
}

body header .functions .wilaya .helper::after{
    content:"";
    position:absolute;
    top:-9px;
    right:15px;
    width:0; height:0;
    border-left:9px solid transparent;
    border-right:9px solid transparent;
    border-bottom:9px solid #fff3cd;
}

body header .functions .wilaya .helper:hover{
    animation: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(133,100,4,0.22);
}

@keyframes helperPulse{
    0%   { transform: translateY(0) scale(1);   box-shadow: 0 0 0 0 rgba(133,100,4,.30); }
    35%  { transform: translateY(-1px) scale(1.01); box-shadow: 0 0 0 10px rgba(133,100,4,0); }
    70%  { transform: translateY(0) scale(1);   box-shadow: 0 0 0 0 rgba(133,100,4,0); }
    100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
    body header .functions .wilaya .helper{ animation: none; }
}

body header .functions .wilaya .helper.is-hidden{
    display: none !important;
}

body header .functions .menu{
    display: none;
}

/************************ MAIN ************************/
body main{
    grid-area: main;
    height: auto;
    margin: 0px 0px 30px 0px;
    overflow-x: hidden;
}

body main .showcase{
    width: 100%;
    height: auto;
    margin: 0px;
    position: relative;
    min-height: 450px;
}
body main .showcase img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    aspect-ratio: 1/1;
}
body main .showcase .splide__arrow{
    width: 60px;
    height: 60px;
    z-index: 2;
}

body main .showcase .splide__arrow svg{
    width: 30px;
    height: 30px;
}
body main .showcase .search{
    position: absolute;
    bottom: -45px;
    left: 8%;
    width: 84%;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
    padding: 20px 30px;

    border-radius: 10px;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    align-items: center;
}

body main .showcase .search select,
body main .showcase .search input,
body main .showcase .search button{
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 10px;
}

body main .showcase .search input[type="text"]{
    order: 1;
    flex: 1 1 40%;
}

body main .showcase .search select{
    order: 2;
    flex: 1 1 auto;
    background-color: #f0f0f0;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

body main .showcase .search button{
    order: 3;
    flex: 0 0 auto;
    white-space: nowrap;
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid var(--primary);
}

body main .showcase .search button:hover{
    background-color: #0056b3;
}

body main .boxes{
    margin: 30px 8% 30px 8%;
    min-height: 500px;
}

body main .boxes .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

body main .boxes .header .title{
    font-size: 1.5rem;
    color: #333;
}

body main .boxes .header .more-btn{
    padding: 6px 12px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

body main .boxes .header .more-btn:hover{
    background-color: var(--primaryHover);
}

body main .boxes.first{
    margin-top: 80px;
}
body main .boxes .splide__arrow{
    width: 50px;
    height: 50px;
    z-index: 2;
}

body main .boxes .splide__arrow svg{
    width: 25px;
    height: 25px;
}

body main .boxes .splide__list{
  align-items: stretch !important; /* مهم */
}

/* 2) خلي كل slide يتمدد لنفس الارتفاع */
body main .boxes .splide__slide{
  height: auto !important;
  display: flex !important;       /* مهم */
}

/* 3) خلي box ياخذ كل ارتفاع السلايد */
body main .boxes .splide__slide > .box{
  height: 100%;
  display: flex;
  flex-direction: column;
}

body main .boxes .box{
    background: var(--white, #fff);
    border-radius: 14px;
    border: 1px solid #eef1f5;
    text-align: right;
    transition: transform .25s ease, border-color .25s ease;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
body main .boxes .box:hover{
    transform: translateY(-6px);
    border-color: #e6ebf2;
}

body main .boxes .box .media{
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f7fb;
}

body main .boxes .box .profile{
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transform: scale(1.001);
    transition: transform .35s ease, filter .35s ease;
}
body main .boxes .box:hover .profile{
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.03);
}

body main .boxes .box .media::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.12) 100%);
    z-index:1;
    pointer-events:none;
}

body main .boxes .box .badges{
    position:absolute;
    top:10px; left:10px;
    display:flex; flex-direction:column; gap:10px;
    z-index:2;
}

body main .boxes .box .badge{
    --badge-color:#3b82f6;
    --badge-ink:#ffffff;
    width:40px; height:40px;
    display:inline-flex; align-items:center; justify-content:center;
    color:var(--badge-ink);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--badge-color) 92%, white 8%), var(--badge-color)),
        radial-gradient(120% 120% at 30% 10%, rgba(255,255,255,.35), rgba(255,255,255,0) 55%);
    border:1px solid color-mix(in srgb, var(--badge-color) 65%, black 35%);
    border-radius:14px;
    box-shadow:
        0 10px 24px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.35);
    backdrop-filter:saturate(1.1) blur(3px);
    -webkit-backdrop-filter:saturate(1.1) blur(3px);
    cursor:pointer;
    transition:
        transform .22s cubic-bezier(.22,.61,.36,1),
        box-shadow .25s ease,
        filter .25s ease,
        background .25s ease,
        border-color .25s ease;
    will-change:transform, filter;
    position:relative;
}

body main .boxes .box .badge i{
    font-size:18px;
    line-height:1;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    align-content: center;
    justify-items: center;
}

body main .boxes .box .badge::before{
    content:"";
    position:absolute; inset:-3px;
    border-radius:16px;
    background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--badge-color) 25%, transparent 75%), transparent 60%);
    opacity:.65;
    z-index:-1;
    transition:opacity .25s ease, transform .25s ease;
}

body main .boxes .box .badge:hover{
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.06) brightness(1.03);
    box-shadow:
        0 14px 34px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.4);
}

body main .boxes .box .badge:hover::before{
    opacity:.9;
    transform: scale(1.02);
}

body main .boxes .box .badge:active{
    transform: translateY(0) scale(.98);
    box-shadow:
        0 8px 18px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.25);
}

body main .boxes .box .badge:focus-visible{
    outline:3px solid color-mix(in srgb, var(--badge-color) 45%, white 55%);
    outline-offset:2px;
}

body main .boxes .box .badge.badge--sm{ width:34px; height:34px; border-radius:12px; }
body main .boxes .box .badge.badge--lg{ width:46px; height:46px; border-radius:14px; }
body main .boxes .box .badge.badge--sm i{ font-size:16px; }
body main .boxes .box .badge.badge--lg i{ font-size:20px; }

body main .boxes .box .badge.badge--primary{ --badge-color:#1877F2; }
body main .boxes .box .badge.badge--success{ --badge-color:#10B981; }
body main .boxes .box .badge.badge--warning{ --badge-color:#F59E0B; }
body main .boxes .box .badge.badge--danger{  --badge-color:#EF4444; }
body main .boxes .box .badge.badge--neutral{ --badge-color:#6B7280; }

body main .boxes .box .badge.badge--status{  --badge-color:#10B981; }
body main .boxes .box .badge.badge--verified{ --badge-color:#F59E0B; }


body main .boxes .box .items{
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body main .boxes .box .items h3{
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; text-overflow: ellipsis;
    letter-spacing: .1px;
}

body main .boxes .box .items p{
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 10px 0;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
body main .boxes .box .items p:empty::before{ content: ""; }

body main .boxes .box .items .hours{
    margin: 10px 0 12px;
    font-size: 13px;
    color: #1f2937;
    color: var(--wt-ink);
    background: #3f70d80a;
    border: 1px dashed var(--wt-border);
    padding: 8px;
    border-radius: 10px;
}
body main .boxes .box .items .hours .hours-line{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
body main .boxes .box .items .hours .hours-line:nth-child(4){
    margin-bottom: 0px;
}
body main .boxes .box .items .hours .hours-line:nth-child(n+5){ display:none; }

body main .boxes .box .items .location{
    display:flex;
    align-items:center;
    gap:8px;
    margin: 6px 0 12px;
    cursor:pointer;
    color: var(--primary, #2563eb);
    transition: opacity .2s ease, transform .12s ease;
    text-decoration: none;
}
body main .boxes .box .items .location:hover{ opacity:.9; transform: translateY(-1px); }
body main .boxes .box .items .location i{ font-size:15px; line-height:1; margin-top:2px; }
body main .boxes .box .items .location p{
    font-size: 13px;
    margin:0;
    display: -webkit-box;
    -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    overflow: hidden; text-overflow: ellipsis;
}

body main .boxes .box .items button{
    margin-top: auto;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: var(--primary, #2563eb);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    transition: background-color .2s, transform .08s ease, box-shadow .2s, border-color .2s;
    box-shadow: 0 6px 16px rgba(37,99,235,.25);
    white-space: nowrap;       /* سطر واحد فقط */
    overflow: hidden;          /* اخفِ الزيادة */
    text-overflow: ellipsis;   /* نقاط عند النهاية */
    display: inline-flex;      /* يحافظ على المحاذاة الأفقية */
    align-items: center;       /* توسيط عمودي للنص/الأيقونة إن وجدت */
    justify-content: center;   /* توسيط أفقي */
    line-height: 1;            /* يمنع تمدد عمودي غير لازم */
}
body main .boxes .box .items button:hover{
    background-color: var(--primaryHover, #1d4ed8);
    box-shadow: 0 10px 24px rgba(29,78,216,.28);
}
body main .boxes .box .items button:active{
    transform: translateY(1px);
}


/************************ FOOTER ************************/
body footer{
    grid-area: footer;
    padding: 36px 8%;
    background-color: #f8f8f8;
}
body footer a{ color: inherit; text-decoration: none; }

/* ========== TITLES ========== */
body footer .ft-section-title{
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 22px;
    text-align: center;
}

/* ========== GUARANTEES ========== */
body footer .ft-g-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
body footer .ft-g-item{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
body footer .ft-g-icn{
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(0,0,0,.08);
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--primary);
}
body footer .ft-g-item h4{
  margin: 6px 0 4px;
  font-size: 15px;
}
body footer .ft-g-item p{
  margin: 0;
  color: var(--black);
  font-size: 13px;
}

/* ========== BRAND BAR ========== */
body footer .ft-brandbar{
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body footer .ft-brand{
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 720px;
}
body footer .ft-brand .ft-logo{
  width: 120px; height: auto;
}
body footer .ft-brand p{
  margin: 0;
  color: var(--black);
}
body footer .ft-follow{
  display: flex;
  align-items: center;
  gap: 10px;
}
body footer .ft-follow-title{ font-weight: 700; }
body footer .ft-social .s-icn{
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--primary);
  color: var(--white);
  margin-inline-start: 6px;
  transition: .25s;
}
body footer .ft-social .s-icn:hover{ transform: translateY(-2px); }

/* Brand colors */
body footer .ft-social .fb{ background:#1877f2; }
body footer .ft-social .wa{ background:#25d366; color:#0d0202; }
body footer .ft-social .ig{ background:#e1306c; }
body footer .ft-social .tt{ background:var(--black); }
body footer .ft-social .yt{ background:#ff0000; }
body footer .ft-social .li{ background:#0a66c2; }

/* ========== LINKS COLUMNS ========== */
body footer .ft-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 18px 0;
}
body footer .ft-col h4{
  position: relative;
  margin: 0px 0px 17px 0px;
  font-size: 16px;
}
body footer .ft-col h4::after{
  content: "";
  position: absolute;
  right: 0; bottom: -6px;
  width: 56px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
body footer .ft-col ul{ list-style: none; margin: 0; padding: 0; }
body footer .ft-col li{ margin: 8px 0; color: var(--black); }
body footer .ft-col a{ transition: .2s; }
body footer .ft-col a:hover{ margin-right: 4px; }

/* ========== INFO (ABOUT / CONTACT) ========== */
body footer .ft-info{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 8px 0 10px;
}
body footer .ft-info-col h4{
  margin: 0 0 10px;
  font-size: 16px;
}
body footer .ft-info-col ul{ list-style: none; margin: 0; padding: 0; }
body footer .ft-info-col li{ margin: 6px 0; color: var(--black); }
body footer .ft-info address{
  font-style: normal;
  color: var(--black);
  line-height: 1.7;
}

/* ========== LEGAL BAR ========== */
body 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;
}


@media (max-width: 1200px){
  body footer .ft-g-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px){
    body header{
        grid-area: header;
        position: fixed;
        margin: 0px;
        padding: 0px;
        grid-template-rows: auto auto;
        align-items: center;
        height: 80px;
        width: 100%;
        background-color: var(--white);
        z-index: 3;
        gap: 0px;
    }
    body header{
        margin: 0px;
        padding: 0px;
        display: grid;
        grid-template-columns: auto auto;
    }
    body header figure{
        z-index: 4;
        margin-left: 10px;
        display: grid;
        align-items: center;
        background-color: var(--white);
    }
    body header figure img{
        height: 70px;
        width: auto;
    }
    body header .categories{
        display: grid;
        position: absolute;
        background-color: var(--white);
        z-index: 3;
        width: 100%;
        left: 0;
        top: -1000px;
        transition: top 0.46s ease;
        justify-content: start;
        gap: 0px;
    }
    body header .categories .categorie{
        cursor: default;
        width: 100%;
        height: 55px;
        margin-right: 15px;
    }
    body header .categories .categorie:hover > .dropdown{
        display: none !important;
    }
    body header .categories .categorie.active > .dropdown{
        display: flex !important;
    }

    body header .functions{
        gap: 10px;
        height: 100%;
        z-index: 4;
        margin-right: 10px;
        background-color: var(--white);
    }
    body header .functions .wilaya{
        display: grid;
        font-size: 20px;
        height: 50px;
        width: 50px;
        justify-content: center;
        align-items: center;
    }
    body header .functions .wilaya p{
        display: none;
    }
    body header .functions .wilaya i{
        color: var(--black);
        transition: 0.46s;
    }
    body header .functions .wilaya i:active{
        color: var(--primary);
        transition: 0.46s;
    }
    body header .functions .wilaya:hover > .dropdown{
        display: none !important;
    }
    body header .functions .wilaya.active > .dropdown{
        display: flex !important;
    }

    body header .functions .wilaya .helper{
        top: 50px;
    }

    body header .functions .menu{
        display: grid;
        font-size: 20px;
        height: 50px;
        width: 50px;
        justify-content: center;
        align-items: center;
    }
    body header .functions .menu i{
        display: grid;
        justify-content: center;
        align-items: center;
        color: var(--black);
        transition: 0.46s;
    }
    body header .functions .menu i:active{
        color: var(--primary);
        transition: 0.46s;
    }
    /************************ MAIN ************************/
    body main{
        grid-area: main;
        height: auto;
        margin: 80px 0px 20px 0px;
        overflow: hidden;
    }

    body main .showcase{
        min-height: 220px;
    }
    body main .showcase img{
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    
    body main .showcase .splide__arrow{
        width: 45px;
        height: 45px;
        z-index: 2;
    }

    body main .showcase .splide__arrow svg{
        width: 18px;
        height: 18px;
    }
    body main .showcase .search{
        bottom: -65px;
        padding: 15px 20px;
        gap: 8px;
    }

    body main .showcase .search input[type="text"]{
        flex: 1 1 100%;
    }

    body main .showcase .search select,
    body main .showcase .search button{
        flex: 1 1 calc(50% - 4px);
    }

    body main .boxes{
        margin: 0px 10px 20px 10px;
    }
    body main .boxes.first{
        margin-top: 90px;
    }
    body main .boxes .splide__arrow{
        width: 45px;
        height: 45px;
        z-index: 2;
    }

    body main .boxes .splide__arrow svg{
        width: 18px;
        height: 18px;
    }
    body main .boxes .box:hover{
        transform: translateY(0px);
    }
    /************************ FOOTER ************************/
    body footer .ft-links{ grid-template-columns: repeat(2, 1fr); }
    body footer .ft-info{ grid-template-columns: 1fr; }
    body footer .ft-g-grid{ grid-template-columns: repeat(2, 1fr); }
    body footer .ft-brandbar{ flex-direction: column; align-items: flex-start; gap: 12px; }
    body footer .ft-brand .ft-logo{ width: 92px; }
    body footer .ft-social .s-icn{ width: 34px; height: 34px; }
}
