html {
  font-size: 13px;
}

@media (min-width: 375px) {
  html {
    font-size: 14.5px;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

html {
  background: #212121;
  overflow-y: scroll;
}

html ::-webkit-scrollbar-track {
  background-color: #212121;
}

html ::-webkit-scrollbar {
  background-color: transparent;
  width: 0.5rem;
}

html ::-webkit-scrollbar-thumb {
  background-color: #545454;
}

body {
  background: #212121;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 1rem;
}

@media (min-width: 640px) {
  body {
    padding: 4rem;
  }
}

.header__logo {
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.header__link {
  display: block;
}

.header__img {
  margin: auto;
  display: block;
  width: 349px;
  max-width: 50vw;
}

@media (min-width: 640px) {
  .header__img {
    max-width: 100%;
  }
}

@media (min-width: 640px) {
  .header__logo {
    margin-top: 0;
    margin-bottom: 4rem;
  }
}

.tagline__text {
  font-weight: 800;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.225;
  text-transform: uppercase;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  position: relative;
  margin: 0 0.5rem;
}

@media (min-width: 640px) {
  .tagline__text {
    font-size: 2rem;
    margin: 0 5rem;
  }
}

.tagline__bullet {
  display: none;
  margin: 0 0.5rem;
}

@media (min-width: 1024px) {
  .tagline__bullet {
    display: inline;
  }
}

.tiles {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1820px;
}

@media (min-width: 640px) {
  .tiles {
    margin-top: 4rem;
  }
}

.tiles__line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tiles__line {
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .tiles__line {
    grid-template-columns: repeat(auto-fill, minmax(425px, 1fr));
  }
}

@media (min-width: 1280px) {
  .tiles__line {
    grid-template-columns: repeat(auto-fill, minmax(445px, 1fr));
  }
}

.tile {
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 4px solid transparent;
  transition: border-color 0.375s ease;
}

@media (hover: hover) {
  .tile:focus {
    border-color: rgba(255, 255, 255, 0.35);
    outline: 0 none;
  }
}

.tile:hover {
  border-color: #28ffbb;
}

@media (hover: none) {
  .tile:active,
  .tile:focus {
    border-color: #28ffbb;
    outline: 0 none;
  }
}

.tile__img {
  display: block;
  height: 0;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.725s ease;
  will-change: transform;
}

@media (hover: hover) {
  .tile:hover .tile__img {
    transform: scale(1.1);
  }
}

.tile__description {
  display: flex;
  justify-content: space-between;
  background: #0e0e0e;
  padding: 1rem;
  position: relative;
}

@media (min-width: 640px) {
  .tile__description {
    padding: 1.5rem;
  }
}

.tile__title__wrapper {
  display: block;
  min-width: 0;
  padding-right: 0.75rem;
}

.tile__title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .tile__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.tile__subtitle {
  display: block;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .tile__subtitle {
    font-size: 1.35rem;
  }
}

.tile__price {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.675rem;
  padding: 0 0.75rem;
  color: #080808;
  position: relative;
  letter-spacing: -0.25px;
}

.tile__price:before, .tile__price:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.tile__price:after {
  transition: opacity 0.375s ease;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  opacity: 0;
}

.tile__price .tile__price__total {
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .tile__price {
    font-size: 2rem;
    padding: 0 1rem;
  }
}

.tile:hover .tile__price:after,
.tile:focus .tile__price:after {
  opacity: 1;
}

@media (hover: none) {
  .tile .tile__price:after {
    opacity: 1;
  }
}

.request {
  text-align: center;
  padding-top: 4rem;
}

.request__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.request__link:hover .request__text:after {
  opacity: 1;
}

.request__text {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  position: relative;
  padding-bottom: 4px;
}

.request__text:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  opacity: 0;
  transition: opacity 0.375s ease;
}

@media (hover: hover) {
  .request__text:after {
    display: block;
  }
}

.request__svg {
  height: 1rem;
  width: 1rem;
  margin-left: 0.25rem;
  margin-top: -4px;
}

.request__svg path {
  stroke-width: 3;
  stroke: #33fcff;
  stroke: url(#gradient1);
}

.product {
  padding-bottom: 2rem;
  margin-top: -1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.product__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.product__link:hover .product__text:after {
  opacity: 1;
}

.product__text {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  position: relative;
  padding-bottom: 4px;
}

.product__text:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  opacity: 0;
  transition: opacity 0.375s ease;
}

@media (hover: hover) {
  .product__text:after {
    display: block;
  }
}

.product__svg {
  height: 1.6rem;
  width: 1.6rem;
  margin-left: -0.25rem;
  margin-right: 0.35rem;
  margin-top: -4px;
}

.product__svg path {
  stroke-width: 3;
  stroke: #33fcff;
  stroke: url(#gradient2);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .product__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2.5rem 3rem;
  }
}

.product__image__wrapper {
  height: 0;
  padding-bottom: 100%;
  background: #0e0e0e;
  position: relative;
  grid-row: 2;
}

@media (min-width: 1024px) {
  .product__image__wrapper {
    grid-column: 1;
    grid-row: 1/3;
  }
}

.product__image__fit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product__image {
  display: block;
  width: 737px;
  max-width: 100%;
  margin: auto;
  position: relative;
}

@media (min-width: 1024px) {
  .product__detail {
    padding-top: 2rem;
  }
}

.product__title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .product__title__wrapper {
    margin-top: 1.5rem;
  }
}

.product__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

@media (min-width: 1024px) {
  .product__title {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
}

.product__subtitle {
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .product__subtitle {
    font-size: 1.85rem;
  }
}

.product__price {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.75rem;
  padding: 1rem;
  color: #080808;
  position: relative;
  background: #33fcff;
  background-image: linear-gradient(90deg, #33fcff, #46ff96);
  letter-spacing: -0.25px;
}

@media (min-width: 1024px) {
  .product__price {
    font-size: 2.25rem;
    padding: 1rem 1.5rem;
  }
}

.product__description {
  font-size: 1.175rem;
  line-height: 1.6;
}

.shipping__info__details--bold {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product__description + .product__description {
  margin-top: 1.5rem;
}

.shipping__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem 0;
  padding-top: 2.5rem;
  font-size: 1.175rem;
  line-height: 1.6;
  border-top: 2px solid #545454;
}

.shipping__info__icon {
  display: flex;
  align-items: center;
}

.shipping__info__icon img {
  height: 2.75rem;
  width: 2.75rem;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay {
    background: #fff;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .apple-pay-button-with-text {
    display: block;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: buy;
    border-radius: 0 !important;
  }
  .apple-pay-button-with-text > * {
    display: none;
  }
  .apple-pay-button-black-with-text {
    -apple-pay-button-style: black;
  }
  .apple-pay-button-white-with-text {
    -apple-pay-button-style: white;
  }
  .apple-pay-button-white-with-line-with-text {
    -apple-pay-button-style: white-outline;
  }
}

@supports not (-webkit-appearance: -apple-pay-button) {
  .apple-pay {
    display: none !important;
  }
}

.googlepay {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22103%22%20height%3D%2217%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M.148%202.976h3.766c.532%200%201.024.117%201.477.35.453.233.814.555%201.085.966.27.41.406.863.406%201.358%200%20.495-.124.924-.371%201.288s-.572.64-.973.826v.084c.504.177.912.471%201.225.882.313.41.469.891.469%201.442a2.6%202.6%200%200%201-.427%201.47c-.285.43-.667.763-1.148%201.001A3.5%203.5%200%200%201%204.082%2013H.148V2.976zm3.696%204.2c.448%200%20.81-.14%201.085-.42.275-.28.413-.602.413-.966s-.133-.684-.399-.959c-.266-.275-.614-.413-1.043-.413H1.716v2.758h2.128zm.238%204.368c.476%200%20.856-.15%201.141-.448.285-.299.427-.644.427-1.036%200-.401-.147-.749-.441-1.043-.294-.294-.688-.441-1.183-.441h-2.31v2.968h2.366zm5.379.903c-.453-.518-.679-1.239-.679-2.163V5.86h1.54v4.214c0%20.579.138%201.013.413%201.302.275.29.637.434%201.085.434.364%200%20.686-.096.966-.287.28-.191.495-.446.644-.763a2.37%202.37%200%200%200%20.224-1.022V5.86h1.54V13h-1.456v-.924h-.084c-.196.336-.5.611-.91.826-.41.215-.845.322-1.302.322-.868%200-1.528-.259-1.981-.777zm9.859.161L16.352%205.86h1.722l2.016%204.858h.056l1.96-4.858H23.8l-4.41%2010.164h-1.624l1.554-3.416zm8.266-6.748h1.666l1.442%205.11h.056l1.61-5.11h1.582l1.596%205.11h.056l1.442-5.11h1.638L36.392%2013h-1.624L33.13%207.876h-.042L31.464%2013h-1.596l-2.282-7.14zm12.379-1.337a1%201%200%200%201-.301-.735%201%201%200%200%201%20.301-.735%201%201%200%200%201%20.735-.301%201%201%200%200%201%20.735.301%201%201%200%200%201%20.301.735%201%201%200%200%201-.301.735%201%201%200%200%201-.735.301%201%201%200%200%201-.735-.301zM39.93%205.86h1.54V13h-1.54V5.86zm5.568%207.098a1.967%201.967%200%200%201-.686-.406c-.401-.401-.602-.947-.602-1.638V7.218h-1.246V5.86h1.246V3.844h1.54V5.86h1.736v1.358H45.75v3.36c0%20.383.075.653.224.812.14.187.383.28.728.28.159%200%20.299-.021.42-.063.121-.042.252-.11.392-.203v1.498c-.308.14-.681.21-1.12.21-.317%200-.616-.051-.896-.154zm3.678-9.982h1.54v2.73l-.07%201.092h.07c.205-.336.511-.614.917-.833.406-.22.842-.329%201.309-.329.868%200%201.53.254%201.988.763.457.509.686%201.202.686%202.079V13h-1.54V8.688c0-.541-.142-.947-.427-1.218-.285-.27-.656-.406-1.113-.406-.345%200-.656.098-.931.294a2.042%202.042%200%200%200-.651.777%202.297%202.297%200%200%200-.238%201.029V13h-1.54V2.976zm32.35-.341v4.083h2.518c.6%200%201.096-.202%201.488-.605.403-.402.605-.882.605-1.437%200-.544-.202-1.018-.605-1.422-.392-.413-.888-.62-1.488-.62h-2.518zm0%205.52v4.736h-1.504V1.198h3.99c1.013%200%201.873.337%202.582%201.012.72.675%201.08%201.497%201.08%202.466%200%20.991-.36%201.819-1.08%202.482-.697.665-1.559.996-2.583.996h-2.485v.001zm7.668%202.287c0%20.392.166.718.499.98.332.26.722.391%201.168.391.633%200%201.196-.234%201.692-.701.497-.469.744-1.019.744-1.65-.469-.37-1.123-.555-1.962-.555-.61%200-1.12.148-1.528.442-.409.294-.613.657-.613%201.093m1.946-5.815c1.112%200%201.989.297%202.633.89.642.594.964%201.408.964%202.442v4.932h-1.439v-1.11h-.065c-.622.914-1.45%201.372-2.486%201.372-.882%200-1.621-.262-2.215-.784-.594-.523-.891-1.176-.891-1.96%200-.828.313-1.486.94-1.976s1.463-.735%202.51-.735c.892%200%201.629.163%202.206.49v-.344c0-.522-.207-.966-.621-1.33a2.132%202.132%200%200%200-1.455-.547c-.84%200-1.504.353-1.995%201.062l-1.324-.834c.73-1.045%201.81-1.568%203.238-1.568m11.853.262l-5.02%2011.53H96.42l1.864-4.034-3.302-7.496h1.635l2.387%205.749h.032l2.322-5.75z%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20d%3D%22M75.448%207.134c0-.473-.04-.93-.116-1.366h-6.344v2.588h3.634a3.11%203.11%200%200%201-1.344%202.042v1.68h2.169c1.27-1.17%202.001-2.9%202.001-4.944%22%20fill%3D%22%234285F4%22%2F%3E%3Cpath%20d%3D%22M68.988%2013.7c1.816%200%203.344-.595%204.459-1.621l-2.169-1.681c-.603.406-1.38.643-2.29.643-1.754%200-3.244-1.182-3.776-2.774h-2.234v1.731a6.728%206.728%200%200%200%206.01%203.703%22%20fill%3D%22%2334A853%22%2F%3E%3Cpath%20d%3D%22M65.212%208.267a4.034%204.034%200%200%201%200-2.572V3.964h-2.234a6.678%206.678%200%200%200-.717%203.017c0%201.085.26%202.11.717%203.017l2.234-1.731z%22%20fill%3D%22%23FABB05%22%2F%3E%3Cpath%20d%3D%22M68.988%202.921c.992%200%201.88.34%202.58%201.008v.001l1.92-1.918c-1.165-1.084-2.685-1.75-4.5-1.75a6.728%206.728%200%200%200-6.01%203.702l2.234%201.731c.532-1.592%202.022-2.774%203.776-2.774%22%20fill%3D%22%23E94235%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-origin: content-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  outline: 0;
  padding: 1rem;
  width: 100%;
  min-width: 90px;
  height: 46px;
  min-height: 46px;
}

@media (min-width: 1024px) {
  .googlepay {
    height: 54px;
    min-height: 54px;
  }
}

.footer {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer {
    margin-top: 8rem;
  }
}

.footer__link {
  display: inline-flex;
  align-items: center;
  margin: 0.25rem 1rem 0.25rem 0;
}

.footer__link:hover .footer__svg path {
  fill: #33fcff;
  fill: url(#gradient);
}

@media (min-width: 640px) {
  .footer__link {
    margin: 0.25rem 1rem;
  }
}

.footer__svg {
  width: 44px;
  height: 44px;
}

.footer__copy {
  margin-top: 1rem;
}
