:root {
    --white-color: #fff;
    --bg-color: #f8fafc;
    --black-color: #1b1b1b;
    --black-color-dark: #000000;
    --purple-color: #7f00ff;
    --green-color: #16db65;
    --red-color: #E63946;
    --yellow-color: #FBE134;
    --primary-font: "Aspekta", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --tertiary-font: "Poppins", sans-serif;
    --other-font: "Work Sans", sans-serif;
    --shadow: 0 0 50px #00000010;
    --shadow-hover: 0 0 50px #16db6550;
    --stroke: 1px solid #00000020;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg-color);
    color: var(--black-color);
}

::selection {
    background: #16db6520;
    color: var(--green-color);
}

header ul {
    list-style: none;
    padding: 0;
    color: var(--black-color);
    font-family: var(--secondary-font);
}

header a {
    text-decoration: none;
    white-space: nowrap;
    color: var(--black-color);
}

header {
    position: sticky;
    top: 0;
    background: var(--white-color);
    box-shadow: 0 2px 10px #00000005;
    z-index: 99999;
    transition: all 0.3s ease-in-out;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 10px 20px;
    background-color: transparent;
    gap: 20px;
}

.head-divisions {
    width: 33%;
}

.address {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 200px;
    min-width: 100px;
    height: 48px;
    font-size: 18px;
    font-family: var(--tertiary-font);
    font-weight: 400;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 4px 8px;
    overflow: auto;
}

p::-webkit-scrollbar {
    display: none;
}

p::-moz-scrollbar {
    display: none;
}

header p {
    overflow-y: hidden;
    overflow-x: auto;
    width: fit-content;
    white-space: nowrap;
}

.address svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-drag: none;
}

.logo-container img {
    max-width: 180px;
    min-width: 120px;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
}

.navs {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    gap: 30px;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 400;
}

nav li {
    justify-items: center;
    align-content: center;
    padding: 5px;
    border-radius: 50%;
}

nav li p {
    display: none;
    color: var(--black-color);
    font-size: 18px;
    font-family: var(--secondary-font);
    font-weight: 400;
    transition: color 0.2s ease-in-out;
}

nav li svg {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    fill: var(--black-color);
}

nav li:hover svg {
    fill: var(--purple-color);
}

nav li:hover p {
    color: var(--purple-color);
}


#right-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.about-us {
    background: linear-gradient(90deg, #7f00ff, #7f00ff) no-repeat;
    background-position: 150px 0;
    color: var(--purple-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 350;
    border: 1px solid var(--purple-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-content: center;
    min-width: 100px;
    width: auto;
    height: 48px;
    padding: 10px 20px;
    margin-left: 5px;
}

.about-us:hover {
    background-position: 0 0;
    color: var(--white-color);
}

.drop-down-toggle {
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

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

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #000;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

@media (max-width: 1200px) {
    #head-logo {
        max-width: 180px;
    }

    .address {
        max-width: 200px;
        height: 50px;
    }

    .address p {
        font-size: 20px;
    }

    .navs .visible {
        font-size: 20px;
        gap: 20px;
    }

    .contact-nav {
        min-width: 120px;
        height: 50px !important;
        font-size: 20px;
        padding: 0;
        margin: 0;
    }
}


@media (max-width: 850px) {
    /* .drop-down-toggle {
        display: initial;
    } */

    /* .navs-visible {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        width: 250px;
        height: auto;
        position: fixed;
        top: calc(var(--header-height) + 10px);
        right: 10px !important;
        background: var(--bg-color);
        padding: 20px 10px;
        box-shadow: var(--shadow);
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

    #nav-wrap {
        display: none;
        position: absolute;
        right: -200%;
    }
        */

    #right-nav {
        gap: 10px;
    }

    .about-us {
        margin-left: 0;
        width: 100%;
        background-position: 0 0;
        color: var(--white-color);
    }

    .about-us:active {
        filter: brightness(0.8);
    }
}

@media (max-width : 640px) {
    :root {
        --header-height: 60px;
    }

    .address-container {
        display: none;
    }

    .header-container {
        height: var(--header-height);
        padding: 10px 20px;
    }

    .logo-container {
        width: auto;
        justify-content: start;
    }

    .address {
        display: none;
    }

    #head-logo {
        width: 100px !important;
    }

    .navs li svg {
        width: 25px;
        height: 25px;
    }

    #cart-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

}