/* CSS Document */
:root {
  --ftb-cyan: #00c8ff; /* cyan */
  --ftb-emerald: #00e676; /* emerald */
  --ftb-gold: #ffc107; /* gold */
  --ftb-red: #ff5252;
  --ftb-basically-black: #0e0f0f;

  --ftb-bg-shade-hsl: 192, 29%, 49%;
  --ftb-bg-ligher: #232829;
  --ftb-bg-ligher-hsl: 190 8% 15%;
  --ftb-bg-ligherer: #2e3738;

  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
body {
  --sb-track-color: #2c2c2c;
  --sb-thumb-color: #d1d1d1;
  background: #171b1c
    url("https://cdn.feed-the-beast.com/assets/store/img/background-grid.webp") !important;
  background-size: 256px 256px;
  z-index: -3;
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 6px;
  border: 1px solid #2c2c2c;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
/*
@keyframes flying {
	0% { transform: translateY(0); }
	50% { transform: translateY(5%); }
	100% { transform: translateY(0); }
}
@keyframes shadow {
	0% { transform: translateY(0) scale(1, 1); }
	50% { transform: translateY(-50%) scale(1.8, 1); }
	100% { transform: translateY(0) scale(1, 1); }
}
*/
body,
html {
  padding: 0;
  margin: 0;
}
.page__header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
  margin-bottom: 1rem;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgb(14, 15, 15, 70%);
}
.ftb-header {
  background: url("https://cdn.feed-the-beast.com/assets/website/headers/winter-25.webp")
    50% no-repeat;
  position: absolute;
  background-size: contain;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  aspect-ratio: auto 1615 / 254;
  z-index: -1;
}
.ftb-header:after {
  content: "";
  position: absolute;
  background: linear-gradient(1turn, #171b1c 5%, rgba(23, 27, 28, 0) 80%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__dropdown-inner {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgb(23, 27, 28, 85%);
  padding: 0.8rem 1.2rem;
}
.hero__heading--regular {
  text-shadow: 1px 1px 1px var(--ftb-bg-ligher),
    1px 2px 1px var(--ftb-bg-ligher), 1px 3px 1px var(--ftb-bg-ligher),
    1px 4px 1px var(--ftb-bg-ligher), 1px 5px 1px var(--ftb-bg-ligher),
    1px 6px 1px var(--ftb-bg-ligher), 1px 7px 1px var(--ftb-bg-ligher),
    1px 8px 1px var(--ftb-bg-ligher);
}

.hero__top-text {
  text-shadow: 1px 1px 1px var(--ftb-bg-ligher),
    1px 2px 1px var(--ftb-bg-ligher);
}
.footer__line {
  border-top: 1px solid var(--ftb-red);
}
.footer__menu-link {
  opacity: 0.5;
}

.footer {
  font-size: calc(var(--font-body-scale) * 0.75rem);
}
.button {
  font-size: calc(var(--font-body-scale) * 0.85rem);
}
.button--primary {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}
.button--primary:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.2rem);
  filter: brightness(110%);
}
.button--secondary {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
  background-color: rgba(var(--color-on-primary-rgb), 0.7);
}
.image__object img.post-tile__image--videoembed-image {
  height: auto;
}
.button--secondary:hover {
  box-shadow: 0 3px 10px rgba(145, 92, 182, 0.7);
  background-color: var(--color-on-primary);
  color: var(--color-primary);
  opacity: 1;
  transition: all 0.25s ease-in-out;
  transform: translateY(-0.2rem);
  filter: brightness(110%);
}
.post-tile {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
}
.post-tile:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.2rem);
  filter: brightness(110%);
}
.collections-list__item-image-wrapper {
  background-color: transparent;
}

@media (min-width: 640px) {
  .header__size--md {
    height: auto;
  }
  .header--top-center .header__nav {
    padding-top: 0;
    margin-top: 2rem;
  }
  .section-fw-section-footer-padding {
    margin-top: 5rem;
    padding: 5rem 0 3rem;
  }
  .header__list {
    gap: 2rem;
    padding: 0 0 0 2rem;
  }
  .header__icons,
  .header__mobile-menu {
    padding: 0.8rem 1.2rem;
    background: var(--color-primary);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
  }

  .header__icons:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.2rem);
    filter: brightness(110%);
  }
  .header__icon {
    color: var(--color-on-primary);
  }
  .header__icon svg path {
    stroke-width: 2px;
  }
}

.header__link {
  font-weight: 700;
}

.collections-list__item img {
  transition: all 0.25s ease-in-out;
  filter: saturate(1);
  -webkit-filter: saturate(1);
}

.collections-list__item:hover img {
  transition: all 0.25s ease-in-out;
  transform: translateY(-0.2rem);
  filter: saturate(2);
  -webkit-filter: saturate(1.5);
}

.header__icons .header__link {
  color: var(--color-on-primary);
}

.header__icons .header__list {
  padding: 0;
}

.header__dropdown--content .header__dropdown-inner,
.footer__dropdown--content .footer__dropdown-inner {
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer__content {
  height: 100vh;
}

.gallery__image-container--background-color {
  background: transparent;
}

.tile__heading {
  font-weight: 600;
  font-size: 1.2rem;
}

.product-info__price {
  font-weight: bold;
}

.tile__prices {
  opacity: 0.5;
}

.tile__image {
  background: url("https://cdn.feed-the-beast.com/assets/store/img/prod_bg_new.webp");
  background-size: cover;
  border-radius: 8px;
}

.tile__image.sb4 {
  background: url("https://cdn.feed-the-beast.com/assets/store/img/prod_sb4.webp");
  background-size: cover;
}

.tile__image.ob {
  background: url("https://cdn.feed-the-beast.com/assets/store/img/prod_ob_new.webp");
  background-size: cover;
}

.tile__image.skies {
  background: url("https://cdn.feed-the-beast.com/assets/store/img/prod_skies_new.webp");
  background-size: cover;
}

.tile__image.ftb {
  background: url("https://cdn.feed-the-beast.com/assets/store/img/prod_bg_new.webp");
  background-size: cover;
}

.gallery__image-container--background-color {
  background: transparent;
}
.gallery-thumbs__image-container--background-color {
  background: var(--color-background);
}
.gallery-thumbs__item {
  transition: transform 0.25s ease-in-out;
}
.gallery-thumbs__item:hover {
  transition: transform 0.25s ease-in-out;
  transform: translateY(-0.2rem);
}
.gallery-thumbs__item:hover::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 150ms;
  box-shadow: inset 0 0 0 3px var(--ftb-cyan);
  border-radius: var(--image-corner-radius);
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .gallery-thumbs__main {
    flex-direction: column-reverse;
  }
}
.product__info {
  background: linear-gradient(
    0deg,
    var(--ftb-bg-ligher) 10%,
    hsl(var(--ftb-bg-ligher-hsl) / 30%) 100%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 3rem 2rem;
}
.collection__grid .grid--center {
  justify-content: space-around;
}
.product-tile {
  transition: transform 0.25s ease-in-out;
}
.product-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  background-color: var(--ftb-basically-black);
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out,
    visibility 0.25s ease-in-out;
}
.product-tile:hover {
  transform: scale(0.9);
}
.product-tile:hover::after {
  transform: scale(1.2);
  opacity: 1;
  visibility: visible;
}
.filters__tags {
  max-width: 100%;
  margin: 1em auto;
}
.tags {
  justify-content: stretch;
  grid-template-rows: repeat(2, 1fr);
}
.tags__gap {
  display: none;
}
.tags__tag {
  width: 100%;
  height: fit-content;
  min-height: 100%;
  word-break: keep-all;
}
.tags__tag-count,
.tags__dropdown-tag-count {
  display: none;
}
.tags__tag-image {
  filter: blur(10px);
  z-index: 0;
}
.tags__tag-name {
  letter-spacing: 1.25px;
  text-transform: uppercase;
  z-index: 1;
}
.section-background {
  border-radius: 16px;
}
.hero__content--small {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero__content--small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.hero__container--small {
  min-height: auto;
}

@media (min-width: 640px) {
  .hero__container--small {
    min-height: auto;
  }
}
.header {
  background: transparent;
}
@media (min-width: 640px) {
  .product-drawer__checkout-form .button--primary {
    padding: 16px 30px;
  }
}
/*
.header__dropdown-link:before {
.header__dropdown-link-ftb:before {
.header__dropdown-link-sb:before {
.header__dropdown-link-ob:before {
.header__dropdown-link-skies:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 6px;
    background-image: url("path/to/icon.svg");
    background-color: green;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
*/
