
*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*::after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0; border: 0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size: inherit; font-weight: 400;}
body {
    font-family: "Space Grotesk";
    color: #fff;
}
.wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(72.44deg, #432093 0%, #8edbff 100%);
 }
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 3%;
    pointer-events: none;
 }
a.header__logo { 
    font-size: 40px;
    font-weight: 700;
    pointer-events: all;
    color: #fff;
}
a.header__cart {
    pointer-events: all;
    color: #fff;
 }
.product {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
 }
.product__slider { 
    min-height: 100%;
    overflow: hidden;
}
.swiper { }
.product__wrapper {
    min-height: 100%;
    display: flex;
 }
.swiper-wrapper { }
.product__slide {
    min-height: 100%;
    position: relative;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    padding: 30px 20px 20px 20px;
 }
.swiper-slide { }
.product__body {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
 }
.product__content {
    width: 75vh;
    max-width: 90%;
    margin: 0 auto;  
 }
.product__image {
    flex: 1 1 auto;
    position: relative;
    padding-bottom: 90%;
 }
.product__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 83%;
    padding-bottom: 6%;
    background-color: #111;
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(10px);
}
.product__picture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
 }
.product__title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    z-index: 2;
    line-height: 1.3;
    font-size: 10vmin;
    text-transform: uppercase;
    font-weight: 700;
    mix-blend-mode: difference;
 }
.product__details { 
    margin: 0 auto;
    width: 100%;
    max-width: 990px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.product__price {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
 }
.product__buy { 
    flex: 0 0 auto;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
    background: none;
    color: white;
}
.product__buy:hover {
    text-decoration: none;
}

/* Animation on load */

.wrapper {
    opacity: 0;
}
.loaded .wrapper {
    opacity: 1;
    transition: opacity 0.8s ease 0s;
}

.header {
    transform: translate(0px, -100px);
}
.loaded .header {
    transform: translate(0px, 0px);
    transition: transform 0.8s ease 1s;
}

.product__body,
.product__content {
    opacity: 0;
    transform: translate(0px, 5%);
}
.loaded .product__body,
.loaded .product__content {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.8s ease;
}
.loaded .product__body {
    transition-delay: 0.5s;
}
.loaded .product__content {
    transition-delay: 0.8s;
}

.product__price,
.product__buy {
    opacity: 0;
    transform: translate(0px, 100%);
}

.loaded .product__price,
.loaded .product__buy {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.8s ease 1s;
}

/* Responsive */

@media (max-width: 767.98px) {
    .header {
        padding: 20px;
    }
    .header__logo,
    .product__price,
    .product__buy {
        font-size: 24px;
    }
}

.thanks__block {
    position: absolute;
    bottom: 5px;
    right: 20px;
    z-index: 2;
}
.thanks__block p {
    color: #ececf1;
    font-size: 12px;
}
.thanks__block p a {
    color: #ececf1;
}
.my__block {
    position: absolute;
    bottom: 5px;
    left: 20px;
    z-index: 100;
}
.my__block a {
    font-size: 12px;
    color: #ececf1;
}
