:root {
    --hankenGrotesk-Bold: "HankenGrotesk-Bold", Arial, sans-serif;
    --hankenGrotesk-Medium: "HankenGrotesk-Medium", Arial, sans-serif;
    --hankenGrotesk-Regular: "HankenGrotesk-Regular", Arial, sans-serif;
    --hankenGrotesk-SemiBold: "HankenGrotesk-SemiBold", Arial, sans-serif;
}

:root {
    --Primary: #008ECC;
    --Text: #666666;
    --HEading: #222222;
    --Light: #888888;
    --Border: #EDEDED;
    --Backgorund1: #F5F5F5;
    --Backgorund2: #F6F6FC;
    --Backgorund3: #F3F9FB;
    --Yellow1: #E3BC01;
    --White: #FFFFFF;
    --Line: #D9D9D9;
}


* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;

}


body {
    line-height: 1.6;
    font-size: 1.6rem;
    transition: all 0.5s ease-in-out;
    background-color: var(--White);
    color: var(--Text);
    margin: 0 auto;
    font-family: var(--hankenGrotesk-Regular), sans-serif;
    overflow-x: hidden;
}


/*

-- Reset Style --

*/

a {
    text-decoration: none;
}

/*

-- Helper Class --

*/


/*
==============
----header----
==============
*/

.header {
    background-color: var(--White);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 12rem;
    background-color: var(--Backgorund1);

}

.top-bar__welcome {
    color: var(--Text);
    font-family: var(--hankenGrotesk-Regular), sans-serif;

}

.top-bar__links {
    display: flex;
    align-items: center;
}

.top-bar__box-links {
    display: flex;
    align-items: center;
}

.top-bar__box-links-icon {
    margin: 0 .5rem 0 0;
}

.top-bar__box-links-text {
    color: var(--Text);
    font-family: var(--hankenGrotesk-Regular), sans-serif;
}

.top-bar__box-links-text span {
    opacity: 1;
    color: var(--Text);

}

.top-bar-line {
    width: .15rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: var(--Line);
    margin: 0 1rem;
}

/*
main-header
*/

.main-header {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.main-header__manu {
    display: flex;
}

/*

======================
    Navigation Menu
======================

*/
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -32rem;
    bottom: 0;
    width: 25rem;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    background-color: rgba(237, 244, 255, 0.68);    padding: 2.5rem;
    transition: all 250ms ease-in-out;
    z-index: 500;
}

.nav-menu--open {
    left: 0;
}
.close-menu{
    width: 23rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: transparent;

}
.nav-menu__title {
    color: var(--Primary);
    font-size: 2.5rem;
    font-family: var(--hankenGrotesk-Bold);
    text-align: center;
}


/*

==============
  Mobile Menu
==============

*/


.mobile-menu {
    margin-bottom: 3rem;
}

.mobile-menu__item {
    margin-bottom: 1rem;
}

.mobile-menu__link {
    color: white;
    position: relative;
    transition: all 250ms ease-in-out;
}
.line-link::before,
.mobile-menu__link::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0.3rem;
    border-radius: 5rem;
    background-color:var(--Backgorund2);
    transition: all 250ms ease-in-out;
}
.mobile-menu__link:hover {
    padding-left: 2.2rem;
}
.mobile-menu__link:hover::before {
    width: 1.6rem;
}

.line-link::before{
    width: 1.6rem;

}

.line-link{
    padding-left: 2.2rem;
    position: relative;
}

/*

=============
   Nav Btn
=============

*/
.nav__btn {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--Backgorund3);

}

.nav__btn-line {
    display: flex;
    width: 2rem;
    height: 0.2rem;
    border-radius: 5rem;
    background-color:var(--Primary);
    position: relative;
    transition: all 150ms ease-in-out;
    margin-right: 1rem;
}

.nav__btn-line::before,
.nav__btn-line::after {
    content: ' ';
    position: absolute;
    width: 3rem;
    height: 0.2rem;
    border-radius: 5rem;
    background-color:var(--Primary);
    transition: all 200ms ease-in-out;
}
.nav__btn-line::after{
    width: 1.5rem;
}
.nav__btn-line::before {
    top: -0.8rem;
}

.nav__btn-line::after {
    top: 0.8rem;
}

.nav__btn--open .nav__btn-line {
    background-color: transparent;
}

.nav__btn--open .nav__btn-line::before {
    transform: translateY(8px) rotate(45deg);
}

.nav__btn--open .nav__btn-line::after {
    transform: translateY(-8px) rotate(-45deg);
    width: 3rem;
}


.main-header__title {
    color: var(--Primary);
    font-family: var(--hankenGrotesk-Bold), sans-serif;
    font-size: 3rem;
    margin-left: 1.5rem;

}


.main-header__search {
    display: flex;
    align-items: center;
    position: relative;
}

.main-header__search-box {
    display: flex;
}

.input-search {
    align-items: center;
    border: 2px solid transparent;
    border-radius: 1rem;
    background-color: var(--Backgorund3);
    width: 50rem;
    height: 5rem;
    padding: 0 4rem;
    outline: none;
    transition: all 0.4s ease;
}

.input-search:focus {
    border: 2px solid var(--Primary);
}

.input-search::placeholder {
    font-family: var(--hankenGrotesk-Regular), sans-serif;

}

.input-search-icon {
    position: absolute;
    left: 1rem;
    top: 1.4rem;
}

.input-search-icon-list {
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    align-items: center;
}

.main-header__sing-cart {
    display: flex;
    align-items: center;
}

.main-header-box-link {
    align-items: center;
    display: flex;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid transparent;

    transition: all 0.4s ease;
}

.main-header-box-link:hover {
    background-color: var(--Backgorund3);
    border: 1px solid var(--Line);
}

.sing {
    color: var(--Text);
    font-family: var(--hankenGrotesk-Bold);
}

.shop {
    color: var(--Text);
    font-family: var(--hankenGrotesk-Bold);
}


.icon-shop {
    margin: 0 1rem 0 0;
}

.icon-sing {
    margin: 0 1rem 0 0;

}

.line {
    display: block;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    height: 1px;
    background-color: var(--Line);
    opacity: .7;
}

/*
category-content
*/

.category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-nav {
    display: flex;
}


.category-btn {
    border: none;
    border-radius: 2rem;
    background-color: var(--Backgorund3);
    padding: 1.1rem 2rem;
    margin: 1rem 1rem;
    transition: all 0.4s ease;
}

.category-btn:hover {
    background-color: var(--Primary);
    color: var(--White);
}

path {
    transition: all 0.4s ease;
}

.category-btn:hover path {
    stroke: var(--White);
}

.active {
    background-color: var(--Primary);
    color: var(--White);
}

.active path {
    stroke: var(--White);
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--Backgorund3);
    min-width: 180px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.37);
    border-radius: 1rem;
    z-index: 100;
    margin-top: .1rem;
    animation: dropdown .4s ease;
}

@keyframes dropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    border-radius: 1rem;
    transition: all 0.2s ease;
    font-family: var(--hankenGrotesk-Regular), sans-serif;
    animation: dropdown .4s ease;

}

.dropdown-content a:hover {
    background-color: var(--Primary);
    color: var(--White);
}

.dropdown:hover .dropdown-content {
    display: block;
}


/*
==============
----main----
==============
*/


.swiper {
    width: 100%;
    max-width: 1300px;
    height: 300px;
    margin: 4rem auto 10rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.13);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--White) !important;
    width: 5px !important;
    height: 5px !important;
    opacity: 1 !important;
    border: 2px solid var(--White) !important;
    transition: all 0.3s ease;

}

.swiper-pagination-bullet-active {
    background: var(--White) !important;
    width: 20px !important;
    height: 5px !important;
    border-color: var(--White) !important;
    border-radius: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
!important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
!important;

}

.swiper-container {
    cursor: grab;
!important;
}

.swiper-container:active {
    cursor: grabbing;
!important;
}


/*
smartphone__phone
*/


.smartphone {
    margin-bottom: 4rem;
}

.smartphone__top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.smartphone__top-bar a {
    color: var(--HEading);
    display: flex;
    align-items: center;

}

.smartphone__top-bar a svg {
    transform: rotate(180deg);
    margin-left: 1rem
}

.smartphone__top-title {
    font-size: 2rem;
    font-family: var(--hankenGrotesk-Bold), sans-serif;
}

.smartphone__top-title span {
    color: var(--Primary);
}

.smartphone__line {
    width: 100%;
    height: .1rem;
    background-color: var(--Border);
    display: block;
    border-radius: 1rem;
    margin: 2rem auto;
    align-items: center;
}

.smartphone__line-two {
    width: 24.5%;
    height: .35rem;
    display: block;
    background-color: var(--Primary);
    border-radius: 2rem;
}

.smartphone__phone {
    display: flex;
    text-align: left;
    margin: 5rem auto 10rem auto;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;

}

.smartphone__phone-box {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--Border);
    border-radius: 2rem;
    height: 30rem;
    width: 24rem;
    text-align: left;
    position: relative;
    cursor: pointer;
    flex: 0 0 230px;
    transition: all 0.4s ease;
}

.smartphone__phone-box:hover {
    border: 2px solid var(--Primary);
    transform: translateY(-.3rem);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.09);

}

.smartphone__phone-box div {
    display: flex;
    justify-content: center;
    background-color: var(--Backgorund1);
    border-radius: 2rem 2rem 0 0;
    height: 200px;
}

.smartphone__phone-box-img {
    padding: 1rem 0;
}

.smartphone__phone-box-name {
    color: var(--HEading);
    font-family: var(--hankenGrotesk-SemiBold);
    padding-left: 1rem;
}

.smartphone__phone-box-price {
    color: var(--HEading);
    font-family: var(--hankenGrotesk-SemiBold);
    padding-left: 1rem;

}

.smartphone__phone-box-price del {
    color: var(--Text);
    font-family: var(--hankenGrotesk-Regular);
    padding-left: 1rem;

}

.smartphone__phone-box-price-save {
    color: #249B3E;
    font-family: var(--hankenGrotesk-SemiBold);
    padding-left: 1rem;
    padding-bottom: 1rem;

}

.line-two {
    width: 90%;
    height: .1rem;
    display: block;
    background-color: var(--Border);
    margin-left: 1rem;
}

.smartphone__phone-box-off {
    position: absolute;
    right: 0;
    background-color: var(--Primary);
    display: block;
    border-radius: 0 1.8rem 0 1.8rem;
    color: var(--White);
    text-align: left;
    padding: .5rem 1.3rem;
    font-size: 1.3rem;

    font-family: var(--hankenGrotesk-SemiBold);
}


/*
shop-from
*/



.shop-from__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 5rem auto 10rem auto;
}

.shop-from__container-box {
    width: 14rem;
    height: 17rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 3rem auto;

}

.shop-from__container-box div {
    width: 12.5rem;
    height: 13rem;
    border-radius: 15rem;
    border: 2px solid var(--Backgorund1);
    background-color: var(--Backgorund1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}


.shop-from__container-box div:hover {
    border: 2px solid var(--Primary);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.09);
    transform: translateY(-.2rem);

}


.shop-from__container-box-title {
    font-size: 1.7rem;
    color: var(--HEading);
    margin-top: 1.8rem;
    align-items: center;
}


/*
electronics-brands
*/

.electronics-brands {
    position: relative;
    overflow: hidden;
    margin: 5rem auto 12rem auto;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 1rem 4rem;
    scrollbar-width: none;
    flex-grow: 1;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;

}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.dot {
    width: .8rem;
    height: .8rem;
    background: var(--Line);
    border-radius: 3rem;
    transition: all 0.3s;
}

.dot.active {
    width: 2.3rem;
    height: .8rem;
    border-radius: 1.2rem;
    background: var(--Primary);
}

.nav-btn {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--Backgorund3);
    border: 7px solid var( --White);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    font-size: 24px;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}


.nav-btn.prev {
    left: -25px;
}

.nav-btn.next {
    right: -25px;
}

.nav-btn.next svg{
    transform: rotate(180deg);

}



/*
daily
*/


.daily__container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 5rem auto 10rem auto;
    text-align: center;
}
.daily__container-box{
    margin: auto;
}

.box-img{
    width: 19rem;
    height: 19rem;
    background-color: var(--Backgorund1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    transition: all 0.4s ease;
}

.box-img:hover{
    border: 2px solid var(--Primary);
    transform: translateY(-.3rem);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.09);
}
.daily__container-box-title{
    text-align: center;
    font-family: var(--hankenGrotesk-SemiBold);
    color: var(--Text);
}
.daily__container-box-off{
    font-family: var(--hankenGrotesk-Bold);
    font-size: 2rem;
    color: var(--HEading);
}

/*
================
-----footer-----
================
*/

.footer{
    background-color: var(--Primary);
    padding: 10rem 0 3rem 0;
    position: relative;
    z-index: -2;
    margin: 5rem auto 0 auto;

}
.footer__main{
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__contact p{
    font-size: 2.2rem;
    font-weight: var(--hankenGrotesk-Bold);
    font-family: var(--hankenGrotesk-Bold);
    margin: 2rem 0 1rem 0;
    color: var(--White);

}
.footer__contact-logo-text{
    font-size: 4rem;
    color: var(--White);
    font-family: var(--hankenGrotesk-Bold);
}

.footer__contact-title{
    color: var(--White);
    font-family: var(--hankenGrotesk-SemiBold);
}
.footer__contact-call,
.footer__contact-whatsapp{
    display: flex;

}
.footer__contact-whatsapp p,
.footer__contact-call p{
    font-family: var(--hankenGrotesk-Medium);
    font-weight: 300;
    color: var(--White);
    margin: 1rem 0;
}
.footer__contact-whatsapp svg,
.footer__contact-call svg{
    margin-top:1.2rem ;
    margin-right:1.2rem ;
}


.footer__contact-links span{
    margin-right: 1.2rem;
}


.footer__nav{
    align-items: center;
    margin-top: 2rem;


}
.footer__nav-title{
    font-size: 2.2rem;
    color: var(--White);
    font-family: var(--hankenGrotesk-SemiBold);
}
.footer__nav-line{
    width: 100%;
    height: .4rem;
    display: block;
    margin: 2rem auto;
    background-color: var(--White);
    border-radius: 2rem;
}
.footer__nav-list{
    margin-left: 3rem;

}
.footer__nav-list-items{
    color: var(--White);
    list-style-type: disc;
    margin: 1.4rem auto;
    font-family: var(--hankenGrotesk-Medium);
}

.footer__nav-list-items a{
    color: var(--White);
    cursor: pointer;
}

.footer__img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.footer-line{
    display: block;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    height: 1px;
    background-color: #05ABF3;
    margin: 7rem auto 3rem auto;
}
.footer__bottom{
    font-family: var(--hankenGrotesk-Regular);
    font-size: 2rem;
    color: var(--White);
    text-align: center;

}