@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');

:root {
    --primary: #17d99f;
    --primary-dark: #00b379;

    --body-bg: #11191e;
    --header-bg: #10181d;
    --section-bg: #222d33;

    --card-bg: #151e23;

    --text: #ffffff;
    --muted: #b7c0c5;
    --border: #324047;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'El Messiri', sans-serif;
    background: var(--body-bg);
    color: var(--text);
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* ==========================================
   ANNOUNCEMENT
========================================== */

.announcement-bar {
    min-height: 62px;
    background: #00d957;
    color: #07120d;
    position: relative;
    z-index: 1002;

    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar a {
    color: inherit;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    gap: 2px;

    text-align: right;
}

.announcement-bar strong {
    font-size: 16px;
}

.announcement-bar span {
    font-size: 13px;
}

.announcement-close {
    position: absolute;
    left: 28px;
    top: 14px;

    border: 0;
    background: transparent;

    font-size: 27px;
    color: #000;
}


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

.main-header {
    height: 78px;

    background: rgba(15, 23, 28, .98);

    border-bottom: 1px solid rgba(255,255,255,.03);

    position: relative;

    z-index: 1000;
}

.header-container {
    width: min(1400px, calc(100% - 60px));
    height: 100%;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}

.header-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right {
    justify-content: flex-start;
}

.header-left {
    justify-content: flex-end;
    direction: rtl;
}

.header-menu-btn {
    border: 0;
    background: none;
    color: white;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
}

.menu-lines {
    width: 24px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-lines i {
    display: block;

    width: 100%;
    height: 2px;

    border-radius: 5px;

    background: var(--primary);
}

.header-icon-btn {
    width: 34px;
    height: 34px;

    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: transparent;
    border: 0;

    text-decoration: none;
}

.header-icon-btn svg {
    width: 21px;
    height: 21px;

    stroke: currentColor;
    fill: none;

    stroke-width: 1.8;
}

.header-logo {
    display: flex;
    justify-content: center;
}

.header-logo img {
    max-width: 145px;
    max-height: 50px;

    object-fit: contain;
}

.fallback-logo {
    text-align: center;
    line-height: 1;
}

.fallback-logo strong {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 21px;
    letter-spacing: 2px;
}

.fallback-logo small {
    font-size: 9px;
    color: #bec5c9;
}

.currency-header-btn {
    border: 0;
    background: transparent;

    color: white;

    display: flex;
    align-items: center;
    gap: 5px;

    font-size: 13px;
}

.currency-header-btn strong {
    font-weight: 600;
}

.cart-counter {
    position: absolute;

    top: -4px;
    right: -4px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    background: var(--primary);

    color: #07130f;

    font-family: Arial;
    font-size: 10px;
    font-weight: bold;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   SIDE MENU
========================================== */

/* ==========================================
   PROFESSIONAL SIDE MENU
========================================== */

.side-menu {
    position: fixed;
    top: 0;
    right: -520px;

    width: 500px;
    max-width: 100%;

    height: 100vh;

    background: #11191e;

    z-index: 5000;

    overflow: hidden;

    box-shadow: -20px 0 70px rgba(0, 0, 0, .38);

    transition: right .32s ease;
}

.side-menu.active {
    right: 0;
}

.menu-panel {
    position: absolute;
    inset: 0;

    overflow-y: auto;
    overflow-x: hidden;

    background: #11191e;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-35px);

    transition:
        opacity .22s ease,
        transform .28s ease,
        visibility .22s;
}

.menu-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}

.side-menu-head {
    min-height: 70px;

    display: grid;
    grid-template-columns: 45px 1fr 45px;

    align-items: center;

    padding: 0 20px;

    border-bottom: 1px solid #303a3f;

    position: sticky;
    top: 0;

    background: #11191e;

    z-index: 5;
}

.side-menu-head strong {
    grid-column: 2;

    text-align: right;

    font-size: 18px;
    font-weight: 600;
}

.side-menu-head button {
    border: 0;
    background: transparent;

    color: #fff;

    font-size: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#menuClose,
.menu-close-inner {
    grid-column: 1;
    grid-row: 1;
}

.menu-back {
    grid-column: 3;
    grid-row: 1;

    font-size: 30px !important;
}

.side-menu-list {
    padding: 15px 18px 40px;
}

.side-menu-item {
    width: 100%;
    min-height: 82px;

    display: grid;
    grid-template-columns: 68px 1fr 30px;

    align-items: center;

    gap: 14px;

    padding: 8px 5px;

    border: 0;
    border-bottom: 1px solid #303a3f;

    background: transparent;

    color: #fff;

    text-decoration: none;

    text-align: right;
}

.side-menu-item:hover {
    color: var(--primary);
}

.menu-category-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;
}

.menu-category-icon img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.menu-icon-placeholder {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #223038;

    color: var(--primary);

    font-size: 20px;
    font-weight: bold;
}

.menu-item-title {
    font-size: 19px;
    font-weight: 600;
}

.menu-item-arrow {
    color: #7e8b91;

    font-size: 28px;

    text-align: left;
}

@media (max-width: 600px) {

    .side-menu {
        width: 100%;
        right: -100%;
    }

    .side-menu-head {
        min-height: 58px;
    }

    .side-menu-list {
        padding: 8px 14px 35px;
    }

    .side-menu-item {
        min-height: 98px;

        grid-template-columns: 72px 1fr 25px;
    }

    .menu-item-title {
        font-size: 18px;
    }

}

/* ==========================================
   GLOBAL OVERLAY
========================================== */

.global-overlay {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 1999;

    background: rgba(0,0,0,.62);

    backdrop-filter: blur(4px);
}

.global-overlay.active {
    display: block;
}


/* ==========================================
   CURRENCY MODAL
========================================== */

.currency-modal {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 3000;

    align-items: center;
    justify-content: center;

    background: rgba(7,14,18,.66);

    backdrop-filter: blur(9px);
}

.currency-modal.active {
    display: flex;
}

.currency-modal-card {
    width: 370px;
    max-width: calc(100% - 35px);

    padding: 26px 23px 23px;

    border-radius: 11px;

    background: #111a1f;

    box-shadow: 0 20px 70px rgba(0,0,0,.45);

    position: relative;
}

.currency-modal-title {
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 14px;
}

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

.site-footer {
    background: #11191e;
    color: #fff;

    border-top: 1px solid #273238;

    margin-top: 65px;
}

.footer-container {
    width: min(1400px, calc(100% - 50px));
    margin: auto;
}

.footer-back-top {
    display: flex;
    justify-content: center;

    padding: 22px 0 28px;
}

.footer-back-top button {
    border: 0;
    background: transparent;

    color: white;

    display: flex;
    gap: 10px;
    align-items: center;

    font-size: 16px;
}

.footer-newsletter {
    min-height: 135px;

    padding: 30px 0;

    border-bottom: 1px solid #29343a;

    display: grid;

    grid-template-columns:
        minmax(250px, 1fr)
        minmax(380px, 1.3fr)
        minmax(150px, .7fr);

    gap: 45px;

    align-items: center;
}

.newsletter-text {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.newsletter-text strong {
    font-size: 23px;
}

.newsletter-text span {
    font-size: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    height: 54px;

    flex: 1;

    background: #253138;

    border: 1px solid #34434a;

    color: white;

    padding: 0 18px;

    border-radius: 0 5px 5px 0;

    outline: none;
}

.newsletter-form button {
    width: 120px;

    border: 0;

    background: var(--primary);
    color: white;

    font-weight: 600;

    border-radius: 5px 0 0 5px;
}

.footer-social {
    display: flex;

    gap: 12px;
}

.footer-social a {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #253138;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 25px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        .8fr
        1fr;

    gap: 65px;

    padding: 45px 0;

    border-bottom: 1px solid #29343a;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-column h3 {
    color: var(--primary);

    margin: 0 0 10px;

    font-size: 19px;
}

.footer-column a {
    color: white;

    text-decoration: none;

    line-height: 1.8;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-about p {
    max-width: 390px;

    line-height: 2;

    color: #e2e7e9;

    margin: 15px 0 0;
}

.footer-logo {
    text-decoration: none;

    color: white;

    display: inline-flex;
}

.footer-logo img {
    max-width: 155px;
    max-height: 55px;

    object-fit: contain;
}

.footer-logo strong {
    font-family: Arial, sans-serif;

    letter-spacing: 3px;

    font-size: 24px;
}

.footer-whatsapp {
    width: 65px;
    height: 65px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: #253138;

    border-radius: 10px;

    font-size: 30px;

    text-decoration: none;
}

.commercial-row {
    display: flex;

    align-items: center;

    gap: 20px;
}

.commercial-row > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.commercial-icon {
    font-size: 55px;
}

.footer-bottom {
    min-height: 85px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding: 20px 0;
}

.payment-methods {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.payment-methods span {
    height: 34px;

    min-width: 60px;

    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    color: #111;

    border-radius: 5px;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: bold;
}

.footer-copy {
    color: #aeb8bd;

    font-size: 14px;
}

.header-logo a {
    color: white;
    text-decoration: none;
}


@media (max-width: 900px) {

    .footer-newsletter {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

}


@media (max-width: 600px) {

    .footer-container {
        width: calc(100% - 30px);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .newsletter-form input {
        min-width: 0;
    }

}

.currency-modal-close {
    position: absolute;

    left: 10px;
    top: 10px;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #ff6b72;
    color: white;

    font-size: 20px;
}

.currency-select {
    width: 100%;
    height: 44px;

    padding: 0 13px;

    background: #202c32;
    color: white;

    border: 1px solid #59676e;
    border-radius: 5px;

    outline: none;
}

.currency-select:focus {
    border-color: var(--primary);
}

.currency-submit {
    width: 100%;
    height: 43px;

    margin-top: 28px;

    border: 0;
    border-radius: 3px;

    background: var(--primary);
    color: white;

    font-weight: 600;
}


/* ==========================================
   SEARCH MODAL
========================================== */

.search-modal {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 3000;

    background: rgba(7,14,18,.82);

    backdrop-filter: blur(7px);

    padding: 100px 20px;
}

.search-modal.active {
    display: block;
}

.search-box {
    width: min(720px, 100%);

    margin: 70px auto;
}

.search-box h2 {
    text-align: center;
    margin-bottom: 25px;
}

.search-input-wrap {
    display: flex;
}

.search-input-wrap input {
    flex: 1;

    height: 55px;

    padding: 0 20px;

    background: #182329;

    border: 1px solid #35454c;
    border-left: 0;

    color: white;

    outline: none;
}

.search-input-wrap button {
    width: 100px;

    border: 0;

    background: var(--primary);
    color: white;
}

.search-close {
    position: absolute;

    top: 30px;
    left: 35px;

    border: 0;
    background: transparent;

    color: white;
    font-size: 35px;
}


/* ==========================================
   PAGE
========================================== */

.site-main {
    min-height: 600px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

    .announcement-bar {
        min-height: 55px;
        padding: 7px 50px;
    }

    .announcement-bar strong {
        font-size: 13px;
    }

    .announcement-bar span {
        font-size: 11px;
    }

    .announcement-close {
        left: 13px;
    }

    .main-header {
        height: 66px;
    }

    .header-container {
        width: calc(100% - 24px);
    }

    .header-menu-btn strong {
        display: none;
    }

    .currency-header-btn span,
    .currency-header-btn strong {
        display: none;
    }

    .header-side {
        gap: 5px;
    }

    .header-logo img {
        max-width: 105px;
    }

    .fallback-logo strong {
        font-size: 16px;
    }

}
/* ==========================================
   CART ADDED TOAST
========================================== */

.cart-added-toast {
    position: fixed;
    top: 95px;
    left: 35px;

    width: 420px;
    max-width: calc(100% - 30px);

    background: #202b31;

    color: #fff;

    border-radius: 14px;

    box-shadow: 0 25px 70px rgba(0,0,0,.45);

    z-index: 7000;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    transition:
        opacity .25s ease,
        transform .3s ease,
        visibility .25s ease;
}

.cart-added-toast.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.cart-toast-close {
    position: absolute;

    top: 18px;
    left: 18px;

    border: 0;
    background: transparent;

    color: #fff;

    font-size: 26px;

    z-index: 2;
}


.cart-toast-status {
    min-height: 75px;

    padding: 18px 55px 18px 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-bottom: 1px solid #354148;
}


.cart-toast-check {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #12282a;

    color: var(--primary);

    font-size: 20px;
    font-weight: bold;
}


.cart-toast-status strong {
    font-size: 16px;
}


.cart-toast-product {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;
}


.cart-toast-product img {
    width: 75px;
    height: 75px;

    border-radius: 12px;

    object-fit: cover;

    background: #152026;
}


.cart-toast-product-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 9px;
}


.cart-toast-product-info strong {
    font-size: 15px;
}


.cart-toast-product-info span {
    color: #cbd3d6;

    font-size: 14px;
}


.cart-toast-summary {
    margin: 0 18px 18px;

    padding: 16px;

    border-radius: 12px;

    background: #11191e;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    font-size: 13px;
}


.cart-toast-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding: 0 18px 18px;
}


.cart-toast-actions a,
.cart-toast-actions button {
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


.cart-toast-checkout {
    border: 0;

    background: var(--primary);

    color: #fff;
}


.cart-toast-continue {
    border: 1px solid var(--primary);

    background: transparent;

    color: var(--primary);
}


/* NORMAL NOTIFICATIONS */

.site-notifications {
    position: fixed;

    left: 25px;
    bottom: 25px;

    width: 350px;
    max-width: calc(100% - 30px);

    z-index: 8000;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.site-notification {
    background: #202b31;

    border-right: 4px solid var(--primary);

    color: #fff;

    padding: 15px 18px;

    border-radius: 8px;

    box-shadow: 0 15px 45px rgba(0,0,0,.35);

    opacity: 0;

    transform: translateX(-20px);

    transition: .25s;
}


.site-notification.active {
    opacity: 1;
    transform: translateX(0);
}


.site-notification.error {
    border-right-color: #ff5c65;
}


.site-notification.warning {
    border-right-color: #ffc107;
}


@media (max-width: 600px) {

    .cart-added-toast {
        top: 70px;
        left: 15px;

        width: calc(100% - 30px);
    }

    .cart-toast-actions {
        grid-template-columns: 1fr;
    }

}
/* ==========================================
   HOME HERO SLIDER
========================================== */

.home-page {
    overflow: hidden;
}

.home-hero-slider {
    width: min(1400px, calc(100% - 40px));

    margin: 35px auto 30px;

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    background: transparent;
}
.hero-slider-track {
    position: relative;

    width: 100%;
}

.hero-slide {
    display: none;

    width: 100%;
}

.hero-slide.active {
    display: block;

    animation: heroFade .4s ease;
}

.hero-slide a,
.hero-slide picture {
    display: block;
}

.hero-slide img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    border-radius: 10px;
}


.hero-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: rgba(15, 23, 28, .75);

    color: white;

    font-size: 27px;

    z-index: 4;

    backdrop-filter: blur(5px);
}

.hero-arrow-next {
    right: 18px;
}

.hero-arrow-prev {
    left: 18px;
}


.hero-dots {
    position: absolute;

    bottom: 14px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;

    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.45);

    transition: .2s;
}

.hero-dot.active {
    width: 25px;

    border-radius: 20px;

    background: var(--primary);
}


@keyframes heroFade {

    from {
        opacity: .35;
    }

    to {
        opacity: 1;
    }

}


@media (max-width: 600px) {

    .home-hero-slider {
        width: calc(100% - 20px);

        margin-top: 12px;

        border-radius: 8px;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;

        font-size: 23px;
    }

}
/* ==========================================
   FIXED BANNERS
========================================== */

.home-fixed-banner {
    width: min(1400px, calc(100% - 40px));
    margin: 28px auto;
}

.home-fixed-banner a,
.home-fixed-banner picture {
    display: block;
}

.home-fixed-banner img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 11px;

    object-fit: cover;
}

@media (max-width: 600px) {
    .home-fixed-banner {
        width: calc(100% - 20px);
        margin: 18px auto;
    }

    .home-fixed-banner img {
        border-radius: 7px;
    }
}
/* ==========================================
   SERVICE CARD
========================================== */

.service-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: #11191e;

    border: 1.5px solid var(--primary);
    border-radius: 15px;

    color: white;

    display: flex;
    flex-direction: column;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 25px rgba(23,217,159,.08);
}

.service-card-image {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        radial-gradient(circle at center, #123832, #0e161b 70%);

    text-decoration: none;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.025);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    font-size: 75px;
    font-weight: 700;
}

.service-badge {
    position: absolute;

    top: 0;
    right: 0;

    z-index: 4;

    padding: 6px 11px;

    background: #f44336;

    color: white;

    font-size: 11px;
    font-weight: 700;

    border-radius: 0 0 0 7px;
}

.service-rating {
    position: absolute;

    left: 8px;
    bottom: 7px;

    z-index: 3;

    padding: 3px 7px;

    background: rgba(24,34,39,.92);

    color: #ffd43b;

    border-radius: 20px;

    font-size: 11px;
}

.service-card-body {
    flex: 1;

    padding: 13px 12px 10px;

    display: flex;
    flex-direction: column;
}

.service-category {
    color: #d8dfe2;

    font-size: 11px;

    margin-bottom: 7px;
}

.service-title {
    min-height: 44px;

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.7;
}

.service-title:hover {
    color: var(--primary);
}

.service-card-note {
    color: #d0d8db;

    font-size: 11px;

    line-height: 1.7;

    margin: 3px 0 5px;
}

.service-price {
    min-height: 35px;

    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;
}

.service-price del {
    color: #9ea9ae;

    font-size: 11px;
}

.service-price strong {
    color: #fff;

    font-size: 14px;
}

.service-add-cart {
    width: 100%;

    min-height: 36px;

    margin-top: 7px;

    border: 1px solid var(--primary);
    border-radius: 25px;

    background: transparent;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    text-decoration: none;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    transition: .2s;
}

.service-add-cart:hover {
    background: var(--primary);

    color: #07130f;
}

/* ==========================================
   SERVICES SLIDER
========================================== */

.home-services-section {
    padding: 25px 0 38px;

    background: #222d33;
}

.home-section-container {
    width: min(1400px, calc(100% - 40px));

    margin: auto;
}

.home-section-head {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;

    margin-bottom: 17px;
}

.home-section-head h2 {
    margin: 0;

    color: white;

    font-size: 20px;
}

.home-section-head p {
    margin: 5px 0 0;

    color: #aeb9be;

    font-size: 13px;
}

.home-section-head > a {
    color: white;

    text-decoration: none;

    font-size: 13px;

    border-bottom: 2px solid var(--primary);
}

.services-slider-wrap {
    position: relative;
}

.services-track {
    display: flex;

    gap: 10px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scrollbar-width: none;

    padding: 2px;
}

.services-track::-webkit-scrollbar {
    display: none;
}

.services-slide {
    flex: 0 0 calc((100% - 50px) / 6);

    min-width: 0;
}

.services-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 37px;
    height: 37px;

    border: 0;
    border-radius: 50%;

    background: rgba(10,16,20,.88);

    color: white;

    font-size: 27px;

    box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.services-next {
    right: -15px;
}

.services-prev {
    left: -15px;
}

@media (max-width: 1100px) {
    .services-slide {
        flex-basis: calc((100% - 30px) / 4);
    }
}

@media (max-width: 750px) {
    .services-slide {
        flex-basis: calc((100% - 10px) / 2);
    }

    .services-arrow {
        display: none;
    }

    .home-section-container {
        width: calc(100% - 20px);
    }
}
.category-page,
.service-page {
    min-height: 600px;

    padding: 45px 0;

    background: #11191e;
}

.category-services-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 12px;

    margin-top: 25px;
}

@media (max-width: 1100px) {
    .category-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .category-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.cart-counter.is-empty {
    display: none;
}

.service-add-cart.is-loading {
    opacity: .65;
    pointer-events: none;
    cursor: wait;
}

.service-add-cart.is-success {
    background: var(--primary);
    color: #07130f;
}

/* ==========================================
   CART PAGE
========================================== */

.cart-page {
    min-height: 650px;

    padding: 45px 0 80px;

    background: #11191e;
}

.cart-page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.cart-page-heading h1 {
    margin: 0;

    font-size: 25px;
}

.cart-page-heading span {
    color: #aeb8bd;
}

.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 25px;
}

.cart-items {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.cart-page-item {
    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    padding: 15px;

    border: 1px solid #2c3a41;
    border-radius: 12px;

    background: #182228;
}

.cart-page-image {
    width: 90px;
    height: 90px;

    border-radius: 10px;

    overflow: hidden;

    background: #233038;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    font-size: 35px;
}

.cart-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-page-info {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.cart-page-info a {
    color: white;

    text-decoration: none;

    font-weight: 700;
}

.cart-page-info span {
    color: #aeb8bd;

    font-size: 13px;
}

.cart-page-price {
    white-space: nowrap;

    color: var(--primary);
}

.cart-summary-box {
    align-self: start;

    position: sticky;
    top: 100px;

    padding: 22px;

    border: 1px solid #2d3b42;
    border-radius: 13px;

    background: #182228;
}

.cart-summary-box h2 {
    margin-top: 0;

    font-size: 20px;
}

.cart-summary-box > div {
    display: flex;
    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #2c383e;
}

.cart-summary-total {
    font-size: 17px;
}

.checkout-main-button {
    width: 100%;
    height: 48px;

    margin-top: 20px;

    border: 0;
    border-radius: 6px;

    background: var(--primary);

    color: #07130f;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
}

.empty-cart {
    max-width: 500px;

    margin: 80px auto;

    text-align: center;
}

.empty-cart > div {
    font-size: 65px;
}

.empty-cart h2 {
    margin-bottom: 8px;
}

.empty-cart p {
    color: #aeb8bd;
}

.empty-cart a {
    min-width: 180px;
    height: 45px;

    margin-top: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: var(--primary);

    color: #07130f;

    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 800px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-box {
        position: static;
    }

}

@media (max-width: 520px) {

    .cart-page-item {
        grid-template-columns: 70px 1fr;
    }

    .cart-page-image {
        width: 70px;
        height: 70px;
    }

    .cart-page-price {
        grid-column: 2;
    }

}
/* =========================================================
   PRODUCT / SERVICE PAGE
========================================================= */

.product-page {
    min-height: 700px;
    background: #11191e;
    color: #fff;
    padding-bottom: 70px;
}

.product-container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}


/* BREADCRUMB */

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    padding: 20px 0;

    font-size: 13px;
}

.product-breadcrumb a {
    color: #d6dcdf;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--primary);
}

.product-breadcrumb span {
    color: #77858c;
}

.product-breadcrumb strong {
    color: #fff;
}


/* TOP */

.product-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);

    gap: 45px;

    align-items: start;
}


/* IMAGE */

.product-main-image {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #0c1519;

    border: 1px solid #223139;

    aspect-ratio: 1 / 1;
}

.product-main-image > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.product-image-empty {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 100px;
    font-weight: 700;

    color: var(--primary);
}

.product-featured-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 4;

    padding: 9px 15px;

    background: #eb1000;

    color: white;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
}

.product-image-actions {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 4;

    display: flex;
    gap: 8px;
}

.product-round-action {
    width: 45px;
    height: 45px;

    border: 1px solid #506068;
    border-radius: 50%;

    background: rgba(17,25,30,.88);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}


/* INFO */

.product-information {
    padding-top: 12px;
}

.product-name {
    margin: 0 0 12px;

    font-size: 28px;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 18px;
}

.product-stars {
    color: #ffbd00;

    letter-spacing: 2px;
}

.product-rating small {
    color: #aeb8bd;
}

.product-short-description {
    color: #e1e7e9;

    line-height: 2;

    font-size: 15px;
}

.product-read-more {
    margin-top: 7px;

    border: 0;

    background: transparent;

    color: var(--primary);

    padding: 0;

    font-family: inherit;

    text-decoration: underline;
}

.product-availability {
    margin-top: 20px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #27dc86;
}

.availability-dot {
    width: 10px;
    height: 10px;

    background: #23d87e;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(35,216,126,.1);
}

.availability-dot.unavailable {
    background: #ff5b65;
}

.unavailable-text {
    color: #ff7079;
}

.product-category-row {
    margin-top: 18px;

    display: flex;

    gap: 6px;

    font-size: 14px;
}

.product-category-row span {
    color: #929fa5;
}

.product-category-row a {
    color: var(--primary);

    text-decoration: underline;
}

.product-model-box {
    margin-top: 25px;

    min-height: 58px;

    border-radius: 7px;

    padding: 0 18px;

    background: #223038;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* TABS */

.product-tabs-section {
    margin-top: 35px;
}

.product-tabs-nav {
    display: flex;

    gap: 6px;

    position: relative;
    z-index: 2;
}

.product-tab-button {
    min-height: 44px;

    border: 0;

    padding: 0 18px;

    border-radius: 6px 6px 0 0;

    background: #26333a;

    color: white;

    font-family: inherit;
    font-weight: 700;
}

.product-tab-button.active {
    background: var(--primary);

    color: #06261d;
}

.product-tabs-content {
    border-radius: 8px 0 8px 8px;

    background: #202c32;

    padding: 25px;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}


/* FIELDS */

.service-purchase-form {
    max-width: 100%;
}

.service-field {
    margin-bottom: 25px;
}

.service-field-label {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 12px;
}

.service-field-label strong {
    font-size: 15px;
}

.service-field-label strong span {
    color: #ff6068;
}

.service-field-label small {
    color: #b8c2c7;

    font-size: 12px;
}

.service-radio-options {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.service-radio-option {
    position: relative;
}

.service-radio-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.service-radio-option > span {
    min-height: 43px;

    padding: 9px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 1px solid #334249;
    border-radius: 6px;

    background: #11191e;

    color: white;

    cursor: pointer;

    transition: .2s;
}

.service-radio-option span small {
    color: var(--primary);
}

.service-radio-option input:checked + span {
    border-color: var(--primary);

    background: rgba(23,217,159,.12);

    box-shadow:
        inset 0 0 0 1px var(--primary);
}

.service-text-input,
.service-select-input {
    width: 100%;
    min-height: 49px;

    border: 1px solid #34444c;
    border-radius: 6px;

    background: #11191e;

    color: white;

    padding: 0 15px;

    outline: none;

    font-family: inherit;
}

textarea.service-text-input {
    min-height: 120px;

    padding-top: 13px;

    resize: vertical;
}

.service-text-input:focus,
.service-select-input:focus {
    border-color: var(--primary);
}

.service-field-error {
    display: none;

    margin-top: 7px;

    color: #ff747c;

    font-size: 12px;
}

.service-field.has-error
.service-field-error {
    display: block;
}

.service-field.has-error
.service-text-input,
.service-field.has-error
.service-select-input {
    border-color: #ff6068;
}


/* PRICE */

.product-live-price-box {
    min-height: 58px;

    padding: 0 18px;

    border-radius: 7px;

    background: #11191e;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
}

.product-live-price-box strong {
    color: var(--primary);

    font-size: 18px;
}


/* PURCHASE */

.product-purchase-bar {
    margin-top: 22px;

    display: grid;

    grid-template-columns: 190px 1fr;

    gap: 10px;
}

.product-quantity {
    height: 50px;

    border: 1px solid #829097;
    border-radius: 6px;

    display: grid;

    grid-template-columns: 50px 1fr 50px;

    overflow: hidden;
}

.product-quantity button {
    border: 0;

    background: transparent;

    color: white;

    font-size: 25px;
}

.product-quantity input {
    width: 100%;

    border: 0;

    background: transparent;

    color: white;

    text-align: center;

    font-family: inherit;

    outline: none;

    appearance: textfield;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
    appearance: none;

    margin: 0;
}

.product-purchase-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}

.product-purchase-actions button {
    min-height: 50px;

    border-radius: 6px;

    font-family: inherit;

    font-weight: 700;
}

.product-add-button {
    border: 0;

    background: var(--primary);

    color: #06241b;
}

.product-buy-now {
    border: 1px solid var(--primary);

    background: transparent;

    color: var(--primary);
}

.product-purchase-actions button.is-loading {
    opacity: .6;

    pointer-events: none;
}


/* DESCRIPTION */

.product-full-description {
    line-height: 2;

    color: #e6eaec;
}

.product-full-description p {
    margin-top: 0;

    margin-bottom: 14px;
}


/* REVIEWS */

.product-reviews-summary {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.reviews-score {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.reviews-score strong {
    font-size: 45px;
}

.reviews-score span {
    color: #ffbd00;

    letter-spacing: 3px;
}

.reviews-score small,
.product-reviews-summary p {
    color: #9ca8ad;
}


/* PAYMENT */

.product-payment-box {
    margin-top: 35px;

    min-height: 100px;

    padding: 20px;

    border-radius: 8px;

    background: #202c32;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.payment-logo {
    min-width: 75px;
    height: 38px;

    padding: 0 10px;

    border-radius: 5px;

    background: white;

    color: #171717;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Arial, sans-serif;

    font-weight: 700;
}

.payment-logo.apple {
    font-size: 18px;
}


/* RELATED */

.related-products {
    margin-top: 75px;
}

.related-products-heading h2 {
    margin-bottom: 20px;

    color: var(--primary);

    font-size: 22px;
}


/* MOBILE */

@media (max-width: 850px) {

    .product-container {
        width: min(100% - 20px, 620px);
    }

    .product-top {
        display: block;
    }

    .product-information {
        padding: 22px 8px 0;
    }

    .product-name {
        font-size: 20px;
    }

    .product-tabs-section {
        margin-top: 25px;
    }

    .product-tabs-content {
        padding: 15px 10px 95px;
    }

    .product-tab-button {
        flex: 1;

        min-width: 0;

        padding: 0 8px;

        font-size: 12px;
    }

    .service-radio-option > span {
        font-size: 12px;

        padding: 8px 10px;
    }

    .product-payment-box {
        margin-bottom: 30px;
    }


    /*
     * Sticky Purchase Bar
     * مطابق لفكرة الشريط الموجود أسفل شاشة الموبايل.
     */

    .product-purchase-bar {
        position: fixed;

        left: 50%;
        bottom: 0;

        transform: translateX(-50%);

        z-index: 6500;

        width: min(100%, 620px);

        margin: 0;

        padding: 8px 10px;

        background: #1d292f;

        border-top: 1px solid #38484f;

        grid-template-columns: 1fr;

        gap: 7px;

        box-shadow:
            0 -8px 30px rgba(0,0,0,.3);
    }

    .product-quantity {
        height: 41px;
    }

    .product-purchase-actions button {
        min-height: 43px;
    }

    .product-main-image {
        border-radius: 0;
    }

    .product-featured-badge {
        top: 12px;
        right: 12px;
    }

    .related-products {
        margin-top: 50px;
    }

}


@media (max-width: 500px) {

    .product-breadcrumb {
        padding: 12px 4px;

        font-size: 11px;
    }

    .product-purchase-actions {
        grid-template-columns: 1fr 1fr;
    }

    .product-radio-options {
        gap: 5px;
    }

}