* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:rgb(0, 0, 0);
}

/* NAVBAR SECTION */
#logo img {
    height: 17vh;
    min-height: 120px;
    cursor: grab;
    transition: all 0.3s ease;
}

#logo img:hover {
    transform: scale(1.1) translate(0px, 1vh);
    filter: drop-shadow(0 4px 20px rgba(148, 96, 191));
}

#logo {
    position: absolute;
    left: 50%;
    top: -1%;
    transform: translateX(-50%);
    align-items: baseline;
}

.hover_anim {
    transition: all 0.3s ease;
}

.hover_anim:hover {
    transform: rotate(15deg) translateY(5px);
}

.navbar {
    color:white;
    display:flex;
    flex-direction: row;
    background-color:black;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    min-height: 70px;
    height: 8vh;
    box-shadow: 0 0 40px 3px  rgba(148, 96, 191);
}
.right_nav ul, .left_nav ul {
    display: flex;
    flex-wrap:nowrap;
    flex-direction:row;
    width: 40vw;
}

.right_nav ul {
    justify-content: flex-end;
}

.left_nav ul {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 20px;
    margin: 0;
}

ul li {
    list-style: none;
}

li img {
    max-height: 6vh;
    height: 5vw;
    padding: 5px 0.8vw;
}

.left_nav a {
    position: relative;
}

/* BORDER */

.left_border, .right_border {
  width: 600px;
  height: 100%;
  top: 0;
  z-index: -10;
  position: fixed;
  background-repeat: repeat-y;
  background-size: auto 100%;
  mix-blend-mode: screen;
}

.left_border {
    background-position: left top;
    background-image: url('/images/icons/side_border.png');
      left: 0;
}

.right_border {
    background-position: right top;
    background-image: url('/images/icons/side_border_right.png');
      right: 0;
}


/* SLIDER */

.slider {
    position: relative;
    justify-content:center;
    flex-direction:column;
    width: 100%;
    margin: auto;
    overflow: hidden;
    display:flex;
    justify-content:center;
    margin-top:10vh
}
.slider img {
    margin: 0 auto;
    width: 60vw;
    display: none;
}

img.display_slide{
    display: block;
    animation-name: fade;
    animation-duration: 1.5s;
}

.round_slide_button { 
    width: 5vw;
    margin: 2vh auto;
    display: flex;
    justify-content:center
}
.round_slide_button .slide_btn {
    appearance: none;
    background-color: rgb(54, 54, 54);
    min-width: 1vw;
    height: 1vw;
    border-radius: 10px;
    display: grid;
    place-content: center;
    transition: all 0.3s ease-in-out;
    transform:scale(1.2);
}
.round_slide_button .slide_btn:checked {
    border: 2px solid transparent;
    background-color:white;
    transform:scale(0.7);
}

/* SHOP BY ICONS */


.shop_by_icons {
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.shop_by_icons img {
    height: 20vw;
}

.inside_shop_by {
        display:flex;
    flex-direction: column;
}

.inside_shop_by p {
    color:white;
    text-align:center;
    font-weight:bold;
    font-size: 2vw;
    margin:0;
}
.inside_shop_by img {
    transition: all 0.3s ease;
}

.inside_shop_by img:hover {
    transform: scale(1.2) rotate(20deg)
}

/* OTHERS */

.break {
    color:white;
    background-color:white;
    width: 90vw;
    height:2px;
    margin: 7vh auto;
}

.coming_soon_container {
     text-align: center;
     margin-top: 10vh;
}

.coming_soon {
    color:white;
    font-size: 6vw;
    margin:0;
}

.coming_soon_p {
    color:white;
    font-size: 1vw;
}

.luz_img_coming_soon {
    max-width: 50vw;
    display:flex;
    margin: 0 auto;
}

.cart_badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: rgb(163, 33, 250);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
}

@keyframes fade {
    from {opacity: 0.5}
    to {opacity: 1}
}
