:root {
  --gutter: var(--gutter-mobile);
  --container-pad-x: 16px;
  --carousel-edge: 40px;
  --theme-sticky-header-height: 0px;
  --space-unit: 4px;
}

@media (min-width: 768px) {
  :root {
    --gutter: var(--gutter-desktop);
    --container-pad-x: 30px;
  }
}

@media (min-width: 1000px) {
  :root {
    --container-pad-x: 50px;
  }
}

@media (min-width: 1300px) {
  :root {
    --gutter: var(--gutter-large);
  }
}

@media (min-width: 1450px) {
  :root {
    --container-pad-x: 60px;
  }
}

html {
  overflow: hidden;
  height: 100%;
}

body {
  overflow: hidden;
  height: 100%;
  margin: 0;
}

/* ---------------------------------
                FONTS
------------------------------------ */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* ---------------------------------
                NAVIGATION
------------------------------------ */
pageheader {
    display: block;
}

.pageheader {
    position: relative;
    z-index: 6000;
    background: black;
    color: white;
    margin: 0;
}

.logo-area {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    border-bottom: 1px solid black;
    color: white;
}

.logo-left {
    display: flex;
    flex: 2 0 0;
}

.logo-right {
    display: flex;
    flex: 2 0 0;
    align-items: center;
    justify-content: flex-end;
}

.logo-right-inner {
    display: flex;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-inline-end: 20px;
}

nav {
    display: block;
}

ul {
    margin: 0;
    list-style: none;
}

.navigation {
    text-align: center;
    li {
        list-style: none;
        a {
            display: inline-block;
            position: relative;
            padding: 18px;
        }
    }
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    position: relative;
    z-index: 2;
    line-height: 1.5;
    border-bottom: 1px solid black;
}

/* ----------------------------------
                GENERAL 
------------------------------------ */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--container-pad-x);
    padding-left: var(--container-pad-x);
}

.container-no-max {
    max-width: none;
}

.product-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-card {
  display: flex;
  flex-direction: column;
  /* border: 1px solid black; */
  width: 500px;
  height: 500px;
  margin: 5%;
  text-align: center;
}

.product-card-info {
  margin-top: 5%;
  margin-left: 5%;
  text-align: center;
}

.product-image {
  width: 500px;
  height: 500px;
}

/* ----------------------------------
                INDEX 
----------------------------------- */
.container-lp {
  margin: 0;
  padding: 0;
  width: 100%;
  /* min-height: 100dvh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.comingsoon {
  color: white;
}

.small_logo {
  width: 150px;
  height: 150px;
}

.logo-image {
  width: 200px;
  height: 150px;
}

.logo-mid {
  margin-left: auto;
  margin-right: auto;
}

.logobg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cs-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* position: absolute; */
}

.cs-box {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 52px;
}

/* CAROUSEL -- INDEX */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cards {
    display: flex;
    width: max-content;
    gap: 1.5rem;
}

.card {
    flex: 0 0 auto;
    width: 400px;
}

/* Optional polish */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.title {
  background-color: white;
  text-align: center;
  border-radius: 12px;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}




/* ----------------------------------
                SHOPPING 
----------------------------------- */




/* ----------------------------------
              MOBILE NAV
----------------------------------- */
/* height instance */
@media screen and (max-height: 830px) {
  .logo-image {
    height: 125px;
    width: 150px;
  }

  .card {
    flex: 0 0 auto;
    width: 350px;
  }

  .comingsoon {
    font-size: 50px;
  }
}

/* large tablets */
@media screen and (max-width: 1030px) {
  .logo-image {
    height: 125px;
    width: 150px;
  }

  .card {
    flex: 0 0 auto;
    width: 350px;
  }

  .comingsoon {
    font-size: 50px;
  }
}

/* medium tablets */
@media screen and (max-width: 769px) {
  .logo-image {
    height: 125px;
    width: 150px;
  }

  .card {
    flex: 0 0 auto;
    width: 300px;
  }

  .comingsoon {
    font-size: 40px;
  }
}

/* phone styles */
@media screen and (max-width: 481px) {
  .logo-image {
    height: 125px;
    width: 100px;
  }

  .card {
    flex: 0 0 auto;
    width: 250px;
  }

  .comingsoon {
    font-size: 30px;
  }
}

