:root {
  --detail-colour: #a99f99;
  --dark: #343a40;
  --light: #f8f9fa;

  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-s: 1rem;
  /* 16px */
  --font-size-m: 1.5rem;
  /* 24px */
  --font-size-l: 3rem;
  /* 48px */
  --font-size-xl: 4rem;
  /* 64px */

  --whitespace-s: 0.8rem;
  --whitespace-base: 1rem;
  --whitespace-l: 2rem;
  --whitespace-xl: 2.5rem;
  --whitespace-xxl: 5rem;
}

legend,
fieldset,
select,
textarea,
input,
button,
form {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

form {
  margin: 0;
}

/* 
select {
    padding: 12px;
    margin: 1rem;
    ;
    box-sizing: border-box;
}

option[default] {
    display: none;
}

textarea {
    width: 100%;
    padding: 12px;
    margin: 1rem;
    ;
    box-sizing: border-box;
}

input[type=text] {
    width: 100%;
    padding: 12px;
    margin: 1rem;
    ;
    box-sizing: border-box;
}

input[type=email] {
    width: 100%;
    padding: 12px;
    margin: 1rem;
    ;
    box-sizing: border-box;
} */

input[type="radio"] {
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
}

input[type="radio"]:checked {
  background: var(--dark);

  /* The border will be the spacing between the dot and the outer circle */
  border: 3px solid #fff;

  /* And by creating a box-shadow with no offset and no blur, we have an outer circle */
  box-shadow: 0 0 0 1px var(--detail-colour);
}

select {
  border: 2px solid var(--detail-colour);
  background: white;
  padding: 10px;
}

select:hover,
select:focus {
  background: black;
  color: white;
  border-color: var(--dark);
}

strong {
  font-weight: bold;
  font-size: var(--font-size-m);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* heyyy uhhhh chatgpt did this  */

body {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-s);
}

h1 {
  font-size: var(--font-size-xl);
  padding-bottom: 0.2em;
  padding-top: 0.5em;
}

h2 {
  font-size: var(--font-size-l);
  font-weight: 400;
  line-height: normal;
  padding-bottom: 0.2em;
  padding-top: 0.5em;
}

h3 {
  font-size: var(--font-size-m);
  font-weight: 700;
  line-height: normal;
  padding-bottom: 0.2em;
  padding-top: 0.5em;
}

h4 {
  font-size: var(--font-size-s);
  font-weight: 700;
  line-height: normal;
}

p {
  line-height: 1.5;
}

b {
  font-weight: bold;
  font-size: var(--font-size-m);
}

img {
  width: 100%;
  height: auto;
}

hr {
  border: 0.5px solid;
  border-radius: 2px;
}

.container {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.body {
  font-size: var(--font-size-s);
  line-height: var(--font-size-m);
}

.divider {
  width: 70%;
}

.btn {
  font-size: var(--font-size-s);
  text-decoration: none;
  color: white;
  justify-self: center;
  align-self: center;
  height: 24px;
  width: 24px;
  border: 0;

  background: var(--detail-colour);

}

.btn:hover {
  filter: brightness(90%);
}

.btn-second {
  font-size: var(--font-size-s);
  text-decoration: none;
  color: #333;
  justify-self: center;
  border-radius: 500px;
  padding: 0.5em 2rem 0.5rem 2rem;

  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background-clip: padding-box;
}

.btn-second:hover {
  backdrop-filter: blur(10px);
}

.header {
  position: fixed;
  background: white;
  z-index: 10000;
  top: 0;
  /* Position the navbar at the top of the page */
  width: 100%;
  /* Full width */
}

.header__main {
  display: flex;
  justify-content: space-around;
  padding: var(--whitespace-s);
}

.longahhline {
  display: flex;
  background-color: var(--detail-colour);
  height: 1em;
  width: 98%;
  border-radius: 0 500px 500px 0;
  transition: 0.5s;
}

.longahhline img {
  width: 100%;
  opacity: 0;
  transition: 0.5s;
}

.longahhline img:hover {
  opacity: 1;
}

.longahhline:hover {
  width: 100%;
}

.tinyahhline {
  display: flex;
  background-color: var(--detail-colour);
  height: 0.5rem;
  width: 98%;
  border-radius: 0 500px 500px 0;
  margin-bottom: var(--whitespace-base);
}

.header__logo {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.header__title {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-s);
}

@media only screen and (max-width: 1420px) {
  .header__title {
    font-size: 0.6rem;
    width: 100px;
  }

  .header__main {
    justify-content: space-between;
  }
}

.nav {
  display: flex;
}

.nav__item {
  padding: var(--whitespace-s);
}

.nav__link {
  font-size: var(--font-size-s);
  font-weight: lighter;
  text-decoration: none;
  color: black;
}

.nav__link:hover,
.nav__link--active {
  text-decoration: none;
  text-shadow: 0px 0px 1px black;
  color: black;
}

.nav__toggle {
  position: relative;
  height: 100%;
  display: flex;
  padding: var(--whitespace-s);
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1420px) {
  .nav {
    display: none;
  }
}

@media only screen and (min-width: 1420px) {
  .nav__toggle {
    display: none;
  }
}

/* mobile sidenav */
.sidenav {
  height: 100%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  position: fixed;
  /* Stay in place */
  z-index: 99999999;
  /* Stay on top */
  top: 0;
  /* Stay at the top */
  right: 0;
  background-color: white;
  overflow-x: hidden;
  /* Disable horizontal scroll */
  padding-top: 60px;
  /* Place content 60px from the top */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 16px 32px 16px 8px;
  text-decoration: none;
  font-size: 40px;
  color: #000000;
  display: block;
  transition: 0.3s;
  text-align: right;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 25px;
  font-size: 36px;
  margin-right: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.main__banner {
  /*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa*/
  margin-bottom: var(--whitespace-xxl);
  margin-top: calc((var(--whitespace-s) * 2) + 3em);
  display: flex;
  justify-content: center;
  align-items: center;
}

.main__banner video {
  width: 100%;
}

.main__call {
  /*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa*/
  font-size: 4em;
  position: absolute;
  width: 100%;
  text-align: left;
  padding-left: 20%;
  color: white;
  margin: auto;
}

.main__callbtn {
  font-size: medium;
  backdrop-filter: blur(50px);
  width: fit-content;
  border-radius: 500px;
  padding: 1rem;
  margin-top: 1.3rem;
  transition: 0.4s;
  text-decoration: none;
  color: white;
}

.main__callbtn:hover {
  backdrop-filter: blur(10px);
  filter: brightness(150%);
}

@media only screen and (max-width: 1420px) {
  .main__banner video {
    height: 80vh;
    object-fit: cover;
  }

  .main__call {
    /*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa*/
    padding-left: 1vw;
    font-size: 2.5em;
    width: 90%;
  }
}

.main__products {
  margin: var(--whitespace-xxl);
  max-width: 65%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  flex-direction: column;
}

.outer-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.inner-grid {
  max-width: 25%;
  padding: 0 10px;
  margin: auto;

  display: flex;
  flex-direction: column;
}

.inner-grid hr {
  width: 100%;
}

.inner-grid img {
  margin-top: 8px;
  max-width: 100%;
  height: auto;
  padding: 1px;
}

@media screen and (max-width: 800px) {
  .inner-grid {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .inner-grid {
    flex: 100%;
    max-width: 100%;
  }
}

.product__name {
  padding-top: var(--whitespace-s);
  font-weight: 500;
}

.product__sub {
  font-weight: 300;
  padding-bottom: 2rem;
}

.product__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--whitespace-l);
  padding: 0.7rem 2rem 0.7rem 2rem;
  width: 100%;
}

.products__title {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-l);
  margin-bottom: var(--whitespace-s);
  padding-left: var(--whitespace-xl);
}

.footer {
  margin-bottom: 4rem;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20% 0 20%;
}

.footer__logo {
  display: flex;
  align-items: start;
  flex-direction: column;
  font-size: xx-large;
  margin-bottom: 1rem;
}

.footer__contact {
  font-size: x-large;
  text-decoration: none;
  color: #333;
  border-radius: 500px;
  padding: 0.5em;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background-clip: padding-box;
}

.footer__left {
  max-width: 50%;
  float: left;
}

.footer__right {
  max-width: 50%;
  float: right;
  margin-left: auto;
}

.foot__icon {
  font-size: xx-large;
  margin: 20px 2.5px 15px 2.5px;
  cursor:pointer;
}

.copy__container {
  margin-top: 3em;
}

@media only screen and (max-width: 800px) {
  .footer__container {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: stretch;
  }

  .footer__left,
  .footer__right {
    width: 100%;
    max-width: 100%;
    float: none;
    margin: auto;
  }

  .footer__left {
    margin-top: var(--whitespace-l);
  }
}

.footer_banner {
  background-color: black;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 50px;
  position: absolute;
  width: 100%;
}

.footer_banner img {
  width: 1.5em;
  height: 1em;
  vertical-align: middle;
  font-size: 1.5em;
  top: -0.1em;
  position: relative;
}

.main__intro {
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}

.intro__section {
  display: flex;
  flex-direction: row;
}

.reverse {
  flex-direction: row-reverse;
}


.intro__decoration {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  z-index: -1;
  animation: 60s linear 0s infinite reverse both running slide-in;
  max-height: 300px;
  max-width: 300px;
}

#a1 {
  filter: hue-rotate(var(--value, 360deg));
  --value: 299deg;
  left: 20%;
}

#a2 {
  filter: hue-rotate(var(--value, 360deg));
  --value: 500deg;
  width: 60%;
  top: -80%;
}

#a3 {
  filter: hue-rotate(var(--value, 360deg));
  --value: 299deg;
  left: 50%;
}

@keyframes slide-in {
  from {
    transform: translateX(200px);
  }

  to {
    transform: translateX(0);
  }
}


/* bbbbfbjdfojbdfjfdjdfklvdjvdfkvjdkbjdfkjfnblkfjknfvkjdnvfkvjndkjdvkjndjkfjnfn */
.intro__title {
  width: 50%;
  max-width: 100%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;

  backdrop-filter: blur(1px);
  border-radius: 500px;
  z-index: 1;
  margin: var(--whitespace-l);
}

.bwaa {
  border: #000000 1px solid;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;

  backdrop-filter: blur(999999999999999999px);
  border-radius: 500px;
  z-index: 2;
  white-space: nowrap;
}

.intro__desc {
  position: relative;
  width: 50%;
  max-width: 100%;
  padding: var(--whitespace-base);
  margin: var(--whitespace-l);
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

@media only screen and (max-width: 1420px) {
  .reverse {
    flex-direction: row;
  }

  .intro__section {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .intro__title {
    width: 95%;
    padding: 0;
    margin: 10px;
  }

  .intro__desc {
    width: 95%;
    padding: 0;
    margin: 10px;

  }
}

.intro__title--reverse {
  position: relative;
  width: 50%;
  max-width: 100%;
  background-color: rgb(244, 244, 244);
  padding: var(--whitespace-base);
  margin: var(--whitespace-l);
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro__desc--reverse {
  position: relative;
  width: 50%;
  max-width: 100%;
  padding: var(--whitespace-base);
  margin: var(--whitespace-l);
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products__products {
  margin: var(--whitespace-xxl);
  display: grid;
  grid-template-columns: 10% auto;
}

.products__navigation {
  grid-column: 1;
  display: none;
}

.products__grid {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  grid-column: 2;
}
.carrousel {
  width: 100%;
}

.product__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--whitespace-s);
}
@media only screen and (max-width: 1420px) {
.product__intro {
    flex-direction: column;
  }
}

.product__ingredients {
  min-width: 30%;
}

/*bababaababababbsjbcsbnckshjcnskjhcnsdkbnasdkvbasdjhvbsjvbs*/
.product__about {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: var(--whitespace-xl);
  padding-left: 25vw;
  padding-right: 25vw;
  font-size: 0.9em;
  gap: 1rem;
}
.fancysquare {
  background: linear-gradient(180deg,rgba(247, 247, 247, 1) 60%, rgba(229, 227, 234, 1) 100%);
  padding: var(--whitespace-l);
  border-radius: 2em;
  border: #343a40 1px solid;
}
@media only screen and (max-width: 1420px) {
.product__about {
    padding-left: 30vw;
    padding-right: 10vw;
  }
}
@media only screen and (max-width: 800px) {
.product__about {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.product__about p {
  margin: 1.25rem 0;
  line-height: 1.4;
}

.product__about p.p1 {
  font-weight: 700;
}

.product__about ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

.product__about li {
  margin: 0.5rem 0;
  line-height: 1.4;
}
.product__about i {
  font-style: italic;
}
.product__about b {
  font-weight: bold;
}
.product__about span.s3 {
  font-weight: 600;
}
.product__about summary {
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.2em;
}
.product__about summary:focus {
  opacity: 0;
}
.product__about details > summary {
  list-style: none;
}
.product__about details > summary::-webkit-details-marker {
  display: none;
}

/*bababaababababbsjbcsbnckshjcnskjhcnsdkbnasdkvbasdjhvbsjvbs*/

.product__amount {
  font-weight: 100;
}

.footer__divider {
  width: 90%;
  margin-bottom: 2rem;
}

.about__decoration {
  position: absolute;
  top: 102%;
  left: -22%;
  width: 70%;
  z-index: -1;
}

.about__decoration2 {
  position: absolute;
  top: 76%;
  left: 65%;
  width: 35%;
  z-index: -1;
}

.faq__section {
  width: 100%;
  margin: auto;
}

.faq__question {
  color: white;
  background-color: var(--detail-colour);
  padding: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  border-bottom: solid white;
}

.faq__question:hover {
  filter: brightness(90%);
}

li,
dd {
  margin: 1em 0em 1em 1em;
  line-height: 1.5;
}

.main__faq {
  margin-bottom: var(--whitespace-xl);
}

.main__about {
  margin-bottom: var(--whitespace-xl);
}

.about__banner {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  height: 360px;
  object-fit: cover;
  filter: grayscale(1);
}

.about__twopane-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.about__twopane {
  width: 49%;
  height: 400px;
  object-fit: cover;
  margin-top: 50px;
  position: relative;
  top: 0;
  display: inline-block;
  aspect-ratio: 1;
}

.about__callbtn {
  font-size: medium;
  backdrop-filter: blur(50px);
  width: fit-content;
  border-radius: 500px;
  padding: 1rem;
  margin-top: 1.3rem;
  transition: 0.4s;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border: #000000 1px solid;
  white-space: nowrap;
}

@media only screen and (max-width: 1420px) {
  .container {
    width: 100%;
    padding: 10%;
  }

  .container h1 {
    font-size: 2.5rem;
  }

  .container h2 {
    font-size: 2rem;
  }

  .about__banner {
    height: 200px;
  }

  .about__twopane {
    height: auto;
  }
}

@media only screen and (max-width: 800px) {
  .about__decoration {
    position: absolute;
    top: 120%;
    left: -25%;
    width: 100%;
    z-index: -1;
  }

  .about__decoration2 {
    position: absolute;
    top: 75%;
    left: 49%;
    width: 48%;
    z-index: -1;
  }
}

.product__intro {
  margin-top: 120px;
  display: flex;
  align-items: flex-start;
  gap: var(--whitespace-l);
  position: relative;
  padding: var(--whitespace-xl);
}

.product__picture {
  flex: 0 0 50%;
}

/**/
.wrapper img {
  display: block;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  height: 363px;
  width: 600px;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 10px;
}

/* Carousel (CSS-only) */
.carousel-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.gallery {
  overflow: hidden; /* hide page scroll; slides will shift inside */
  height: 100%;
}

.gallery .slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery__img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-bottom: solid #302c2a 1px;
}

/* Move slides based on which radio input is checked. Inputs are siblings of .wrapper inside .product__intro */
.product__intro #slide-1:checked ~ .wrapper .gallery .slides { transform: translateX(0%); }
.product__intro #slide-2:checked ~ .wrapper .gallery .slides { transform: translateX(-100%); }
.product__intro #slide-3:checked ~ .wrapper .gallery .slides { transform: translateX(-200%); }

/* Thumbnail labels styling */
.lil-nav label {
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
}

.lil-nav label img {
  width: 100%;
  height: auto;
  object-fit: scale-down;
  filter: saturate(0);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.product__intro #slide-1:checked ~ .wrapper .lil-nav label[for="slide-1"] img,
.product__intro #slide-2:checked ~ .wrapper .lil-nav label[for="slide-2"] img,
.product__intro #slide-3:checked ~ .wrapper .lil-nav label[for="slide-3"] img {
  transform: scale(1);
  filter: saturate(1);
  border-bottom: solid #302c2a 10px;
}

.lil-nav {
  overflow-y: scroll;
  overflow-x: hidden;

  a {
    display: flex;
    margin-bottom: 10px;
  }
}

.lil-nav__img {
  object-fit: cover;
  filter: saturate(0);
  transition: 0.3s ease all;

  &:hover {
    transform: scale(1.05);
    filter: saturate(1);
  }
}
/* */

.product__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.product__table {
  width: 20rem;
}

.product__title {
  margin-bottom: var(--whitespace-s);
  font-weight: bold;
  font-size: 2rem;
}

.product__description {
  margin-bottom: var(--whitespace-s);
  font-weight: 500;
}

.product__cost {
  margin-bottom: var(--whitespace-xl);
}

.product__description--end {
  justify-self: flex-end;
}

.cart__icon {
  margin: auto;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  width: 1.5rem;
}

.order__main {
  display: grid;
  grid-template-columns: auto 40% 20% auto;
}

.order__form {
  grid-column: 2;
  height: 20rem;
  background-color: var(--light);
  margin: var(--whitespace-base);
  padding: var(--whitespace-base);
  box-shadow: 0px 0px 10px 6px lightgray;
  border-radius: 1rem;
  align-self: center;
}

.checkout__cart {
  grid-column: 3;
  height: 30rem;
  background-color: var(--dark);
  margin: var(--whitespace-base);
  padding: var(--whitespace-base);
  border-radius: 1rem;
  color: white;
}

.cart__item {
  display: flex;
  margin-bottom: 1rem;
}

.cart__item--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.cart__item--img {
  width: 5rem;
  margin-right: 1rem;
}

.cart__item--quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cart__quantity--title {
  margin-right: 1rem;
  color: white;
}

.cart__quantity--amount {
  color: black;
  background-color: white;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  justify-self: center;
  align-self: center;
  border-color: black;
  border: 1px;
  width: fit-content;
  height: 24px;
}

.order__form {
  padding: var(--whitespace-l);
  justify-content: center;
  align-items: center;
}

.submit {
  width: 10rem;
  align-self: center;
}

.cart__items {
  min-height: 22rem;
}

.cart__total {
  color: white;
}

#cart__count {
  /*   text-decoration: none;
  color: white;
  background-color: black;
  padding: 0.1rem 0.3rem;
  border-radius: 50%;
    aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  max-width: 45px;
  max-height: 45px; */
  margin-top: 0.8rem;
  display: block;
  font-family: helvetica;
}

#cart__count:empty {
  display: none;
}

#main2 {
  box-sizing: border-box;
  margin: 0em auto 0em auto;
  justify-content: center;
  display: flex;
}

@media only screen and (max-width: 1420px) {
  #main2 {
    flex-direction: column-reverse;
    padding: 0 auto 0 auto;
  }
}



.order_form {
  float: left;
  margin-right: 5%;
  width: 35%;
}

@media only screen and (max-width: 1420px) {
  .order_form {
    width: 85%;
  }
}

@media only screen and (min-width: 1420px) {
  .order_form {
    width: 35%;
  }
}

.form_checkout {
  box-shadow: 0px 0px 10px 6px lightgray;
  padding: 20px;
  margin: 2.5em 0em;
}

.cart_items {
  float: left;
  width: 20%;
  background-color: #333;
  height: fit-content;
}

@media only screen and (max-width: 1420px) {
  .cart_items {
    width: 85%;
  }
}


select {
  padding: 12px 10px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  width: 100%;
}

.form option[default] {
  display: none;
}

.form textarea {
  width: 100%;
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--detail-colour);
}

.form input[type="text"] {
  width: 100%;
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--detail-colour);
}

.form input[type="email"] {
  width: 100%;
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--detail-colour);
}

.form button {
  background-color: var(--detail-colour);
  color: var(--light);
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  width: 100%;
  border-color: var(--light);
}

.change_section {
  background-color: var(--detail-colour);
  color: var(--light);
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  width: 100%;
  border-color: var(--light);
}

.button {
  background-color: var(--detail-colour);
  color: var(--light);
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  width: 100%;
  border-color: var(--light);

  background-color: black;
  color: var(--light);
  padding: 12px 0px;
  margin: 1rem 0rem;
  box-sizing: border-box;
  width: 100%;
}

.bwa {
  width: 100%;
}

.cart__title {
  color: white;
}

.form__section--title {
  margin-bottom: 1rem;
}

.hidden {
  display: none !important;
}

@media only screen and (max-width: 1420px) {
  .intro__question {
    font-size: var(--font-size-m);
  }

  .product__intro {
    overflow: hidden;
    padding: 0;
  }

  .lil-nav {
    display: none;
  }

  .gallery {
    width: 400%;
  }

  .product__button {
    width: 80%;
  }

  .product__about {
      flex-direction: column;
  }
}

/* For footer copy to clipboard links */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  font-size: 14px;
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 112%;
  left: 50%;
  margin-left: -70px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}