* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
	--body: #fafaff;
    --secondBG: #e6e9f5;

	--text: #fff;
    --textBlack: #000;

    --accentOpacity: #ffffff17;
    --accentGrey-dark: #1662b9;

    --accent: #6eafff;
    --accentHover: #558fd7;
    --accent-border: #5198ef;

    --border: #e6e9f5;

    --box-shadow: 0 20px 25px -5px rgba(0,0,0,5%), 0 10px 10px -5px rgba(0,0,0,2%);
    --box-shadow-v2: 0 20px 25px -5px rgba(0,0,0,45%), 0 10px 10px -5px rgba(0,0,0,2%);
    --box-shadow-v3: 0 20px 25px -5px rgba(0,0,0,25%), 0 10px 10px -5px rgba(0,0,0,2%);

    /* DND */
    --font-concert: "Concert One", sans-serif;

    --accentDanger: #992929;
    --accentDanger-border: #b66262;
    --accentDanger-hover: #b33838;

    --widthMain: 1150px;
    
    --textShadow: 0px 2px 0px #00000038;
    --transition: 250ms ease;
    --transition-v2: 250ms cubic-bezier(0.22, 0.61, 0.46, 1.58);
}

body {
	color: var(--textBlack);
	background: var(--secondBG);
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
    padding: 0px !important;
}

p {
    margin-bottom: 0px;
}

:focus-visible {
    outline: inherit;
}

a {
	text-decoration: inherit;
	color: var(--textBlack);
    font-size: 16px;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
}

:hover, :focus {
    transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

a:focus {
    text-decoration: inherit;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-family: "Poppins", sans-serif;
}

button {
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    cursor: pointer;
}

input {
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    transition: var(--transition);
}

dl, ul, ol {
    font-family: "Poppins", sans-serif;
    margin: 0px;
}

/* MAIN DESIGN */

.JC-Header {
    position: relative;
    min-height: 380px;
    color: var(--text);
    width: 100%;
}

.JC-Header::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 100%;
    background: linear-gradient(360deg, var(--accent), #2c7dce);
}

.curve-block {
    position: relative;
}

.curve {
    position: absolute;
    left: 0;
    right: 0;
    height: 130px;
    overflow: hidden;
    /* */
}

.curve>.nav-shadow {
    z-index: 10;
    content: "";
    width: 4000px;
    height: 300px;
    border-radius: 100%;
    position: absolute;
    bottom: -264px;
    left: 50%;
    margin-left: -2000px;
    background: var(--secondBG);
    top: 0;
}

.curve>.shadow {
    z-index: 10;
    content: "";
    width: 4000px;
    height: 300px;
    border-radius: 100%;
    position: absolute;
    bottom: -264px;
    left: 50%;
    margin-left: -2000px;
    background: var(--secondBG);
}

.JC-navBar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
    z-index: 2;
}

.JC-navBar-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.JC-MobileMenu-content {
    position: fixed;
    z-index: 25;
    background: #0f2a58;
    width: 100%;
    max-width: 0px;
    transition: var(--transition);
    overflow: hidden;
    height: 100vh;
}

.JC-MobileMenu-content-opened {
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
}

.JC-MobileMenu-body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    overflow: hidden;
    transform: translateX(-100vh);
    transition: var(--transition);
    padding: 25px 0px 60px;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.JC-MobileMenu-body .JC-navLink {
    width: 100%;
}

.JC-MobileMenu-content-opened .JC-MobileMenu-body {
    transform: translateX(0);
    transition: var(--transition);
}

.JC-MobileMenu {
    height: 50px;
    width: 50px;
    border: inherit;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
}

.JC-MobileClose {
    height: 50px;
    width: 100%;
    border: inherit;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    margin-bottom: 15px;
    background: var(--accentDanger);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.JC-MobileClose .JC-mobilebar-line {
    background: var(--body);
}

.JC-MobileMenu-bar {
    height: 3px;
    width: 25px;
    background: var(--body);
    border-radius: 8px;
    position: relative;
    top: 0;
    transition: var(--transition);
}

.JC-MobileMenu-opened {
    gap: 0px;
}

.JC-MobileMenu-opened .JC-MobileMenu-bar:nth-child(1) {
    transform: rotate(45deg);
    transition: var(--transition);
}

.JC-MobileMenu-opened .JC-MobileMenu-bar:nth-child(2) {
    transform: rotate(-45deg);
    top: -3px;
    transition: var(--transition);
}

.JC-HeaderContent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    min-height: 220px;
}

.JC-HeaderContent-between {
    position: relative;
    displaY: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--widthMain);
    z-index: 3;
}

.JC-HeaderBox {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-v2);
    transform: scale(1);
    color: var(--text);
}

.JC-HeaderBox:nth-child(1) {
    text-align: right;
}

.JC-HeaderBox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 68px;
    width: 68px;
    border: 2px solid var(--border);
    border-radius: 100%;
    background: var(--accentOpacity);
    font-size: 28px;
}

.JC-HeaderBox-count {
    position: absolute;
    top: -15px;
    font-size: 12px;
    background: var(--secondBG);
    color: var(--accent);
    padding: 0px 5px;
    border-radius: 8px;
    font-weight: 600;
    border: inherit;
}

.JC-HeaderBox:hover {
    transition: var(--transition-v2);
    transform: scale(1.008);
}

.JC-navLink {
    padding: 0px 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 52px;
    border: 2px solid var(--accent);
    min-width: 120px;
    background: var(--accentOpacity);
    text-transform: uppercase;
    color: var(--text);
    font-family: var(--font-concert);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 0px;
    font-size: 18px;
}

.JC-navLink-active {
    background: var(--text);
    color: var(--accent);
}

.JC-navLink:hover {
    background: var(--text);
    color: var(--accent);
}

.JC-HeaderBox-col {
    display: flex;
    flex-direction: column;
}

.JC-HeaderBox-big {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-concert);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 25px;
    color: var(--text);
}

.JC-HeaderBox-small {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #c5dffd;
}

.JC-HeaderContent-center {
    position: absolute;
    z-index: 3;
}

.JC-Logo {
    width: 400px;
    transition: var(--transition);
}

.JC-Logo:hover {
    filter: drop-shadow(0px 5px 10px #010407);
}

.JC-navBar-mobile {
    display: none;
}

/* STORE DESIGN */

.JC-Container {
    width: var(--widthMain);
    margin: 0 auto;
    position: relative;
    z-index: 11;
    padding: 50px 0px;
}

.JC-BodyFade {
    position: fixed;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,85%);
    transition: var(--transition);
    display: none;
    opacity: 0;
    animation: fadeActive 0s ease-in 0s 1 reverse;
}

.JC-BodyFade-faded {
    display: flex;
    animation: fadeActive 0.2s ease-in 0s 1 forwards;
}

@keyframes fadeActive {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.JC-Button {
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-concert);
    border-radius: 12px;
    border: inherit;
    background: var(--accent);
    border: 2px solid var(--accent-border);
    width: 100%;
    height: 60px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: var(--transition);
}
.JC-ButtonPrimary {
    background: var(--accent);
    border-color: var(--accent-border);
    color: var(--text);
}

.JC-ButtonPrimary:hover, 
.JC-ButtonPrimary:focus {
    background: var(--accentHover);
    color: var(--text);
}

.JC-ButtonDanger {
    background: var(--accentDanger);
    color: #fabcbc;
    border-color: var(--accentDanger-border);
}

.JC-ButtonDanger:hover, 
.JC-ButtonDanger:focus {
    color: var(--text);
    background: var(--accentDanger-hover);
}

.JC-PageName {
    font-size: 36px;
    font-family: var(--font-concert);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accentMain);
}

.JC-Footer {
    background: var(--body);
    margin-top: 60px;
}

.JC-FooterWidth {
    width: var(--widthMain);
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-FooterLeft p {   
    font-size: 16px;
}

.JC-ContainerBar {
    position: relative;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;    
    border-radius: 14px;
    background: var(--body);
    padding: 20px;
    box-shadow: var(--box-shadow);

    width: var(--widthMain);
    margin: 0 auto;
    margin-top: -120px;
    min-height: 90px;
}

.JC-ContainerBar-between {
    width: 100%;
    position: relative;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
}

.JC-ContainerBar-left, .JC-ContainerBar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.JC-ContainerBar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.JC-MobileMenu-body .nav {
    flex-direction: column;
}

.JC-MobileMenu-body .nav > li {
    width: 100%;
}

.JC-MobileMenu {
    height: 45px;
    width: 45px;
    border-radius: 12px;
    border: inherit;
    outline: inherit;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
}

.JC-MobileBars {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 5px;
    position: relative;
}

.JC-mobilebar-line {
    width: 25px;
    background: var(--body);
    height: 2px;
    display: flex;
    transition: var(--transition);
    transform: rotate(0deg);
    top: 0px;
    position: relative;
}

.JC-mobilebar-line:nth-child(2) {
    width: 20px;
    transition: var(--transition);
}

.JC-MobileMenu-opened .JC-MobileBars {
    gap: 0px;
}

.JC-MobileMenu-opened .JC-mobilebar-line:nth-child(1) {
    transform: rotate(40deg);
    transition: var(--transition);
}

.JC-MobileMenu-opened .JC-mobilebar-line:nth-child(2) {
    transform: rotate(-40deg);
    width: 25px;
    top: -2px;
    position: relative;
    transition: var(--transition);
}

.scrollHidden {
    overflow: hidden;
}

/* MEDIA QUERY */

@media only screen and (max-width: 1200px) {
    :root {
        --widthMain: 90%;
    }

    .JC-Logo {
        width: 300px;
    }
}

@media only screen and (max-width: 980px) {
    .JC-ContainerBar-between {
        position: relative;
    }

    .JC-ContainerBar {
        flex-direction: column;
    }

    .JC-PageName {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 960px) {
    .JC-HeaderBox:nth-child(2) {
        display: none;
    }

    .JC-HeaderContent {
        width: 90%;
        margin: 0 auto;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .JC-HeaderContent-center {
        position: relative;
    }

    .JC-HeaderContent-between {
        width: auto;
    }

    .curve {
        top: -10px;
    }
}

@media only screen and (max-width: 860px) {
    .JC-ContainerHead {
        height: auto;
        overflow: auto;
        flex-direction: column;
        gap: 25px;
    }

    .JC-ContainerHead-between {
        position: relative;
    }

    .JC-ContainerHead-center {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

@media only screen and (max-width: 650px) {
    .JC-HeaderContent {
        flex-direction: column-reverse;
        gap: 35px;
        padding-bottom: 60px;
    }

    .JC-HeaderBox-icon {
        height: auto;
        width: auto;
        border: inherit;
    }

    .JC-HeaderBox-icon i {
        display: none;
    }

    .JC-HeaderBox-count {
        top: 0px;
        position: relative;
        height: 25px;
        padding: 0px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .JC-HeaderBox:nth-child(1) {
        text-align: left;
        width: 100%;
        justify-content: space-between;
    }

    .JC-HeaderContent-between {
        width: 100%;
    }

    .curve {
        top: -30px;
    }

    .JC-FooterWidth {
        justify-content: center;
        text-align: center;
    }

    .JC-ContainerBar {
        margin-top: -50px;
    }

    .JC-Header {
        min-height: 0px;
    }
}

@media only screen and (max-width: 400px) {
    .JC-MobileMenu-content-opened {
        max-width: 100%;
    }
}