@charset "UTF-8";
:root {
  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;
  --red: #EC1C24;
  --red-rgb: 236, 28, 36;
  --error: #d30007;
  --error-rgb: 211, 0, 7;
  --blue: #0071CE;
  --blue-rgb: 0, 113, 206;
  --black: #121212;
  --black-rgb: 18, 18, 18;
  --yellow: #ffee00;
  --yellow-rgb: 255, 238, 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  color: var(--pt-white);
  background-color: var(--white);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  font-size: 1rem;
  flex-direction: column;
  overflow-x: hidden;
  user-select: none;
}
body::-webkit-scrollbar {
  width: 0.75rem;
}
body::-webkit-scrollbar-track {
  background-color: var(--white);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--red);
}

a {
  color: var(--white);
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0;
}

input {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1rem;
  outline: none;
}

textarea {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1rem;
  outline: none;
  padding-top: 1rem;
}

p, h1, h2, h3 {
  margin: 0;
}

@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/ubuntu-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/ubuntu-v20-latin-300italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/ubuntu-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/ubuntu-v20-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/ubuntu-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 500;
  src: url("/assets/fonts/ubuntu-v20-latin-500italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/ubuntu-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 700;
  src: url("/assets/fonts/ubuntu-v20-latin-700italic.woff2") format("woff2");
}
.main {
  flex: 1;
  position: relative;
}
.main.shop {
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .main.shop {
    padding: 0 1.25rem;
  }
}
@media (max-width: 640px) {
  .main.shop {
    padding: 0 0.75rem;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: 0.25s;
}
.navbar.shadow {
  box-shadow: 0 0 10px rgba(var(--black-rgb), 0.25);
}
.navbar.border {
  border-bottom: 1px solid var(--black);
}
.navbar.border-red {
  border-color: var(--red);
}
.navbar__top {
  padding: 0 1.5rem;
  background-color: var(--black);
}
.navbar__top__wrapper {
  height: 2rem;
  display: flex;
  max-width: 108rem;
  margin: 0 auto;
  justify-content: space-between;
  color: var(--white);
}
.navbar__top__wrapper__left {
  line-height: 2rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.navbar__top__wrapper__right {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 2rem;
}
.navbar__top__wrapper__right .line {
  color: rgba(var(--white-rgb), 0.5);
}
.navbar__bottom {
  padding: 0 1.5rem;
  background-color: var(--white);
}
.navbar__bottom__wrapper {
  height: 5rem;
  display: flex;
  max-width: 108rem;
  margin: 0 auto;
  gap: 2rem;
}
.navbar__bottom__wrapper__logo {
  height: 2rem;
  width: 150px;
  margin: auto 0;
}
.navbar__bottom__wrapper__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar__bottom__wrapper__line {
  width: 1px;
  height: 2rem;
  margin: auto 0;
  background-color: rgba(var(--black-rgb), 0.5);
}
.navbar__bottom__wrapper__links {
  margin: auto 0;
  display: flex;
  gap: 1.5rem;
}
.navbar__bottom__wrapper__links__link {
  color: var(--black);
  text-decoration: none;
  transition: 0.25s;
  white-space: nowrap;
}
.navbar__bottom__wrapper__links__link:hover {
  color: var(--red);
}
.navbar__bottom__wrapper__vorur {
  display: none;
  margin: auto auto auto auto;
  color: var(--black);
  transition: 0.25s;
}
.navbar__bottom__wrapper__vorur:hover {
  color: var(--red);
}
.navbar__bottom__wrapper__shop {
  display: flex;
  background-color: var(--blue);
  text-decoration: none;
  gap: 1rem;
  padding: 0 1.5rem;
  margin-left: auto;
  transition: 0.25s;
}
.navbar__bottom__wrapper__shop__text {
  margin: auto 0;
}
.navbar__bottom__wrapper__shop__logo {
  margin: auto 0;
  height: 2rem;
}
.navbar__bottom__wrapper__shop__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar__bottom__wrapper__shop:hover {
  background-color: rgba(var(--blue-rgb), 0.75);
}
@media (max-width: 1500px) {
  .navbar__bottom__wrapper {
    gap: 1rem;
  }
  .navbar__bottom__wrapper__links {
    gap: 0.9rem;
  }
  .navbar__bottom__wrapper__links__link {
    font-size: 0.875rem;
  }
}
@media (max-width: 1320px) {
  .navbar__bottom__wrapper__links, .navbar__bottom__wrapper__line {
    display: none;
  }
}
@media (max-width: 1024px) {
  .navbar__top__wrapper__right div {
    display: none;
  }
}
@media (max-width: 500px) {
  .navbar__bottom {
    padding: 0 0 0 1.5rem;
  }
  .navbar__bottom__wrapper__shop__text {
    display: none;
  }
}

.footer {
  padding: 3rem 1.5rem 1.5rem;
  background-color: var(--black);
  border-top: 1px solid rgba(var(--red-rgb), 0.5);
  box-shadow: 0 0 10px rgba(var(--red-rgb), 0.5);
  margin-top: 6rem;
  color: var(--white);
}
.footer__wrapper {
  max-width: 108rem;
  display: flex;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.footer__wrapper__logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-right: 4rem;
}
.footer__wrapper__logos__logo {
  height: 2.25rem;
  display: flex;
  align-items: center;
}
.footer__wrapper__logos__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.footer__wrapper__col {
  margin-right: 3rem;
  display: flex;
  flex-direction: column;
}
.footer__wrapper__col__title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.footer__wrapper__col__item {
  margin-bottom: 1rem;
}
.footer__credit {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
}
.footer__credit a {
  color: var(--white);
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer__wrapper__logos {
    justify-content: center;
    margin-right: 0;
  }
  .footer__wrapper__col {
    margin: 0 auto;
  }
  .footer__wrapper__col__title, .footer__wrapper__col__item {
    text-align: center;
  }
  .footer__wrapper__col__title {
    margin-bottom: 1rem;
  }
}

.button {
  height: 2.5rem;
  min-height: 2.5rem;
  text-align: center;
  padding: 0 1.5rem;
  text-wrap: nowrap;
  transition: 0.25s;
  font-weight: 400;
  border-radius: 0.5rem;
}
.button.white {
  background-color: var(--white);
  color: var(--black);
}
.button.white:hover {
  background-color: var(--red);
  color: var(--white);
}
.button.black {
  background-color: var(--black);
  color: var(--white);
}
.button.black:hover {
  background-color: var(--red);
  color: var(--white);
}
.button.red {
  background-color: var(--red);
  color: var(--white);
}
.button.red:hover {
  background-color: var(--black);
  color: var(--white);
}
.button.pulse {
  animation: pulse-animation 2.5s infinite;
}
.button.fill {
  width: 100%;
}
.button.icon {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: auto 0;
  align-items: center;
  font-size: 1.5rem;
}
.button.icon div {
  font-size: 1rem;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(var(--purple-rgb), 0.5);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(var(--purple-rgb), 0);
  }
}
.top {
  max-width: 1920px;
  width: 100%;
  height: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 0 1.5rem;
  margin-top: 7rem;
}
.top__video {
  position: absolute;
  width: 1920px;
  height: 1080px;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top__content {
  margin: auto;
  z-index: 1;
  color: var(--white);
  max-width: 108rem;
  width: 100%;
}
.top__content__header {
  font-size: 4rem;
  font-style: italic;
  font-weight: 500;
  line-height: 4rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.top__content__text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
  max-width: 44rem;
  width: 100%;
}
.top__fade {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(var(--black-rgb), 0), rgba(var(--black-rgb), 1));
}
@media (max-width: 768px) {
  .top {
    height: 640px;
  }
}

.tabs {
  background-color: var(--black);
  min-height: 6rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(var(--red-rgb), 0.5);
  box-shadow: 0 0 10px rgba(var(--red-rgb), 0.5);
  padding: 1.5rem;
  max-width: 1920px;
  margin: 0 auto;
}

.items {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto 6rem;
}
.items__scroll {
  display: flex;
  width: 550rem;
  margin-bottom: 4rem;
  animation: slideleft 100s linear infinite;
}
.items__button {
  margin: 0 auto;
}

@keyframes slideleft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.item-card {
  width: 440px;
  padding: 0 1rem;
}
.item-card__image {
  width: 408px;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid var(--red);
  margin-bottom: 0.5rem;
}
.item-card__info {
  display: flex;
  justify-content: space-between;
}
.item-card__info__name {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--black);
}
.item-card__info__price {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--red);
}

.text-image {
  padding: 0 1.5rem;
  margin-bottom: 4rem;
}
.text-image__wrapper {
  gap: 2rem;
  display: flex;
  max-width: 96rem;
  width: 100%;
  margin: 0 auto;
}
.text-image__wrapper.left {
  flex-direction: row-reverse;
}
.text-image__wrapper__text {
  width: 100%;
  padding-left: 2rem;
}
.text-image__wrapper__text__text, .text-image__wrapper__text__title {
  max-width: 38rem;
  width: 100%;
}
.text-image__wrapper__text__title {
  text-transform: uppercase;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.text-image__wrapper__text__line {
  width: 4rem;
  height: 1px;
  background-color: var(--red);
  margin-bottom: 1rem;
}
.text-image__wrapper__text__text {
  margin-top: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
}
.text-image__wrapper__text__button {
  margin-top: 3rem;
}
.text-image__wrapper__image {
  max-width: 47rem;
  width: 100%;
  height: 31.25rem;
  position: relative;
}
.text-image__wrapper__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-image__wrapper__image__behind {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -0.5rem;
  border: 1px solid var(--red);
  z-index: -1;
}
.text-image__wrapper__image__behind.right {
  right: -0.5rem;
}
.text-image__wrapper__image__behind.left {
  left: -0.5rem;
}
@media (max-width: 1024px) {
  .text-image__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .text-image__wrapper.left {
    flex-direction: column;
  }
  .text-image__wrapper__text__text, .text-image__wrapper__text__title {
    max-width: none;
  }
  .text-image__wrapper__image {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .text-image {
    padding: 0 1rem;
  }
  .text-image__wrapper__text {
    padding-left: 0;
  }
}

.products {
  max-width: 108rem;
  padding-top: 9rem;
  display: flex;
  margin: 0 auto;
}
.products__toggle {
  display: none;
}
.products__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(var(--black-rgb), 0.45);
  z-index: 99;
}
.products__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  gap: 1.25rem;
  container-type: inline-size;
}
@media (max-width: 1024px) {
  .products {
    flex-direction: column;
    padding-top: 9rem;
  }
  .products__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    color: var(--black);
    font-size: 1.25rem;
    border: 1px solid rgba(var(--red-rgb), 0.5);
    padding: 0.4rem 0.9rem;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    transition: 0.25s;
  }
  .products__toggle span {
    font-size: 0.9rem;
  }
  .products__toggle:hover {
    border-color: var(--red);
    color: var(--red);
  }
  .products__items {
    padding-left: 0;
  }
}
.products .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  transition: grid-template-columns 0.35s ease;
}
.products .wrapper > * {
  min-width: 0;
}
@container (min-width: 1050px) {
  .products .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@container (max-width: 740px) {
  .products .wrapper {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  padding-right: 2rem;
  border-right: 1px solid var(--red);
}
.sidebar__close {
  display: none;
}
.sidebar__link {
  color: var(--black);
  line-height: 1rem;
  transition: 0.25s;
}
.sidebar__link.bold {
  font-weight: 500;
}
.sidebar__link.selected {
  color: var(--red);
}
.sidebar__link.inner {
  padding-left: 1.25rem;
}
.sidebar__link.disabled {
  color: var(--grey);
  pointer-events: none;
  cursor: not-allowed;
}
.sidebar__link:hover {
  color: var(--red);
}
@media (max-width: 1024px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 16rem;
    z-index: 100;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--red);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 0.5rem 0 2rem rgba(var(--black-rgb), 0.15);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar__close {
    display: flex;
    align-self: flex-end;
    font-size: 1.5rem;
    color: var(--black);
    transition: 0.25s;
    margin-bottom: 0.25rem;
  }
  .sidebar__close:hover {
    color: var(--red);
  }
}

.breadcrumbs {
  display: flex;
  gap: 1rem;
}
.breadcrumbs__crumb {
  color: rgba(var(--black-rgb), 0.75);
  transition: 0.5s;
  font-style: italic;
}
.breadcrumbs__crumb:hover {
  color: var(--black);
}
.breadcrumbs__crumb.active {
  color: var(--red);
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.sort-bar__label {
  font-size: 0.875rem;
  color: rgba(var(--black-rgb), 0.5);
  margin-right: 0.25rem;
}
.sort-bar__btn {
  font-size: 0.875rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  color: rgba(var(--black-rgb), 0.65);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}
.sort-bar__btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.sort-bar__btn.active {
  border-color: var(--red);
  color: var(--red);
  background: rgba(var(--red-rgb), 0.06);
}
@media (max-width: 500px) {
  .sort-bar {
    flex-wrap: wrap;
  }
}

.card {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 0.85rem;
  padding: 0.85rem;
  box-shadow: 0 1px 3px rgba(var(--black-rgb), 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card__image {
  flex: 1;
  min-width: 110px;
  height: 150px;
  object-fit: contain;
  align-self: center;
}
@media (max-width: 480px) {
  .card__image {
    min-width: 84px;
    height: 108px;
  }
}
.card__info {
  display: flex;
  flex-direction: column;
  flex: 0 0 215px;
  width: 215px;
  min-width: 0;
  padding: 0.15rem 0.15rem 0.15rem 0;
}
.card__info__header {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}
.card__info__category {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  margin: 0.15rem 0 0.55rem;
  color: rgba(var(--black-rgb), 0.55);
}
.card__info__desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(var(--black-rgb), 0.65);
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__info__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.card__info__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.card__info__price {
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.card__info__price span {
  color: rgba(var(--black-rgb), 0.55);
  font-size: 0.7rem;
  font-weight: 400;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--red-rgb), 0.3);
  box-shadow: 0 12px 30px rgba(var(--black-rgb), 0.13);
}

.chip {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(var(--black-rgb), 0.15);
  border-radius: 1rem;
  color: rgba(var(--black-rgb), 0.6);
  white-space: nowrap;
  line-height: 1.5;
}

.card__go {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(var(--black-rgb), 0.15);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: 0.2s;
}
.card__go svg {
  width: 1.05rem;
  height: 1.05rem;
}

.card:hover .card__go {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.product {
  max-width: 108rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.product__top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .product__top {
    grid-template-columns: 1fr;
  }
}
.product__gallery {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.product__gallery__stage {
  position: relative;
  flex: 1;
  min-height: 24rem;
}
@media (max-width: 900px) {
  .product__gallery__stage {
    min-height: 18rem;
  }
}
.product__gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product__gallery__img.active {
  opacity: 1;
}
.product__gallery__nav {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 2rem;
  padding: 0.3rem 0.85rem;
  box-shadow: 0 2px 8px rgba(var(--black-rgb), 0.1);
}
.product__gallery__nav button {
  display: inline-flex;
  font-size: 1.25rem;
  color: var(--black);
  transition: 0.2s;
}
.product__gallery__nav button:hover {
  color: var(--red);
}
.product__gallery__nav__count {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(var(--black-rgb), 0.7);
}
.product__gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.product__gallery__thumb {
  flex: 0 0 auto;
  width: 4.75rem;
  height: 4rem;
  border: 2px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: 0.2s;
}
.product__gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}
.product__gallery__thumb:hover {
  border-color: rgba(var(--red-rgb), 0.4);
}
.product__gallery__thumb.active {
  border-color: var(--red);
}
.product__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.product__info__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}
.product__info__price {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1rem 0 1.25rem;
}
.product__info__price span {
  color: rgba(var(--black-rgb), 0.55);
  font-size: 0.95rem;
  font-weight: 400;
}
.product__info__lead {
  color: rgba(var(--black-rgb), 0.7);
  line-height: 1.6rem;
  margin-bottom: 1.5rem;
}
.product__info__hi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .product__info__hi {
    grid-template-columns: 1fr;
  }
}
.product__info__cta {
  margin-top: auto;
  height: 3.25rem;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.product__info__cta svg {
  width: 1.25rem;
  height: 1.25rem;
}
.product__info__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
@media (max-width: 480px) {
  .product__info__btns {
    grid-template-columns: 1fr;
  }
}
.product__bottom {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .product__bottom {
    grid-template-columns: 1fr;
  }
}
.product__section__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
  position: relative;
}
.product__section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 3rem;
  height: 2px;
  background: var(--red);
}
.product__desc, .product__specs {
  padding: 1.75rem 2rem;
}
.product__desc__text {
  white-space: pre-wrap;
  line-height: 1.7rem;
  color: rgba(var(--black-rgb), 0.75);
}
.product__accessories {
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.product__accessories__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.product__accessories__header svg {
  color: var(--red);
}
.product__accessories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}
.product__accessories__card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.6rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product__accessories__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(var(--black-rgb), 0.1);
  border-color: rgba(var(--red-rgb), 0.3);
}
.product__accessories__card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(var(--black-rgb), 0.03);
}
.product__accessories__card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.product__accessories__card__name {
  padding: 0.625rem 0.75rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.product__accessories__card__price {
  padding: 0 0.75rem 0.75rem;
  font-size: 0.875rem;
  color: var(--red);
  font-weight: 600;
}

.pcard {
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(var(--black-rgb), 0.04);
}

.phi {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 0.7rem;
  background: rgba(var(--black-rgb), 0.02);
}
.phi__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  background: rgba(var(--red-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phi__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--red);
}
.phi__body {
  min-width: 0;
}
.phi__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(var(--black-rgb), 0.5);
}
.phi__value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.pbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  border: 1px solid rgba(var(--black-rgb), 0.15);
  border-radius: 0.6rem;
  text-decoration: none;
  color: var(--black);
  font-size: 0.92rem;
  transition: 0.2s;
}
.pbtn svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--red);
}
.pbtn:hover {
  border-color: var(--red);
  color: var(--red);
}

.ptable__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.08);
  font-size: 0.92rem;
}
.ptable__row:last-child {
  border-bottom: none;
}
.ptable__row div:first-child {
  color: rgba(var(--black-rgb), 0.6);
}
.ptable__row div:last-child {
  font-weight: 500;
  text-align: right;
}

.hint {
  color: var(--grey);
  font-size: 1.125rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 22rem;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border-radius: 0.85rem;
  z-index: 30;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.22);
  border: 1px solid rgba(var(--black-rgb), 0.06);
  animation: cookie-rise 0.4s ease both;
}
.cookie-banner__accent {
  height: 4px;
  background: var(--red);
}
.cookie-banner__body {
  padding: 1.25rem 1.25rem 0.5rem;
}
.cookie-banner__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.cookie-banner__desc {
  font-size: 0.88rem;
  line-height: 1.45rem;
  color: rgba(var(--black-rgb), 0.65);
}
.cookie-banner__desc a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}
.cookie-banner__desc a:hover {
  color: var(--black);
}
.cookie-banner__buttons {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem 1.25rem;
}
.cookie-banner__btn {
  flex: 1;
  height: 2.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: 0.15s;
}
.cookie-banner__btn--accept {
  background: var(--red);
  color: var(--white);
}
.cookie-banner__btn--accept:hover {
  background: var(--black);
}
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(var(--black-rgb), 0.7);
  border-color: rgba(var(--black-rgb), 0.2);
}
.cookie-banner__btn--decline:hover {
  border-color: var(--black);
  color: var(--black);
}
@media (max-width: 480px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
}

@keyframes cookie-rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login__locked {
  background: rgba(var(--error-rgb), 0.08);
  border: 1px solid rgba(var(--error-rgb), 0.3);
  color: var(--error);
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.loader {
  display: flex;
  gap: 0.5rem;
  height: 1.25rem;
  margin: auto;
}
.loader__ball {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--red);
  border-radius: 50%;
}
.loader__ball.one {
  animation: 1s ease infinite alternate jump;
}
.loader__ball.two {
  animation: 1s 0.2s ease infinite alternate jump;
}
.loader__ball.three {
  animation: 1s 0.4s ease infinite alternate jump;
}

@keyframes jump {
  0% {
    background-color: var(--red);
  }
  100% {
    background-color: rgba(var(--red-rgb), 0.5);
  }
}
.login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100vh;
}
.login__logo {
  text-align: center;
  text-transform: uppercase;
  height: 4rem;
}
.login__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.login__form {
  width: 24rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--white);
  border: 1px solid rgba(var(--red-rgb), 0.25);
  border-radius: 0.25rem;
  box-shadow: 0 0 10px rgba(var(--red-rgb), 0.25);
}
.login__form__header {
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}
.login__load {
  height: 1.25rem;
}

.login-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-error__header {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.login-error__text {
  margin-bottom: 4rem;
}

.back {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 2rem;
  color: var(--black);
}
.back span {
  transition: 0.25s;
}
.back div {
  font-size: 1.25rem;
  line-height: 2rem;
}
.back:hover span {
  transform: translateX(-4px);
}

.input {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}
.input__label {
  padding-bottom: 0.5rem;
  font-weight: 300;
}
.input input {
  width: 100%;
  border-radius: 0.25rem;
  height: 3rem;
  background-color: var(--white);
  border: 1px solid rgba(var(--red-rgb), 0.5);
  transition: 0.25s;
  font-weight: 300;
}
.input input.focused, .input input:focus {
  border: 1px solid rgba(var(--red-rgb), 1);
}
.input input::-webkit-outer-spin-button, .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.input span {
  font-size: 0.8rem;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  color: var(--error);
}

.input-select {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.input-select__label {
  padding-bottom: 0.5rem;
  font-weight: 300;
}
.input-select__select {
  position: relative;
}
.input-select__select__button {
  color: var(--black);
  height: 3rem;
  background-color: var(--white);
  border: 1px solid rgba(var(--red-rgb), 0.5);
  width: 100%;
  text-align: start;
  padding: 0 1rem;
  border-radius: 0.25rem;
  position: relative;
  font-weight: 300;
}
.input-select__select__button__caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.5rem;
  height: 1.5rem;
}
.input-select__select span {
  font-size: 0.8rem;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  color: var(--error);
}
.input-select__select__options {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 3.5rem;
  border: 1px solid rgba(var(--red-rgb), 0.5);
  border-radius: 0.25rem;
  overflow: auto;
  max-height: 20rem;
  z-index: 5;
  background-color: var(--white);
}
.input-select__select__options::-webkit-scrollbar {
  width: 0.5rem;
}
.input-select__select__options::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 0.25rem;
}
.input-select__select__options::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: var(--red);
}
.input-select__select__options__option {
  color: var(--black);
  text-align: start;
  min-height: 2rem;
  background-color: var(--white);
  transition: 0.25s;
  padding: 0 1rem;
  font-weight: 400;
}
.input-select__select__options__option:hover {
  background-color: rgba(var(--red-rgb), 1);
  color: var(--white);
}

.input-combobox {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}
.input-combobox__label {
  padding-bottom: 0.5rem;
  font-weight: 300;
}
.input-combobox__wrapper {
  position: relative;
}
.input-combobox input {
  width: 100%;
  border-radius: 0.25rem;
  height: 3rem;
  background-color: var(--white);
  border: 1px solid rgba(var(--red-rgb), 0.5);
  transition: 0.25s;
  font-weight: 300;
  padding: 0 1rem;
}
.input-combobox input:focus {
  outline: none;
  border-color: rgba(var(--red-rgb), 1);
}
.input-combobox__options {
  position: absolute;
  top: 3.25rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--red-rgb), 0.5);
  border-radius: 0.25rem;
  overflow: auto;
  max-height: 16rem;
  z-index: 5;
  background-color: var(--white);
}
.input-combobox__options::-webkit-scrollbar {
  width: 0.5rem;
}
.input-combobox__options::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 0.25rem;
}
.input-combobox__options::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: var(--red);
}
.input-combobox__options__option {
  color: var(--black);
  text-align: start;
  min-height: 2rem;
  background-color: var(--white);
  transition: 0.25s;
  padding: 0 1rem;
  font-weight: 400;
}
.input-combobox__options__option:hover {
  background-color: rgba(var(--red-rgb), 1);
  color: var(--white);
}
.input-combobox__error {
  font-size: 0.8rem;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  color: var(--error);
}

.input-textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}
.input-textarea__label {
  padding-bottom: 0.5rem;
  font-weight: 300;
}
.input-textarea textarea {
  width: 100%;
  border-radius: 0.25rem;
  min-height: 16rem;
  resize: none;
  background-color: var(--white);
  border: 1px solid rgba(var(--red-rgb), 0.5);
}
.input-textarea textarea.focused, .input-textarea textarea:focus {
  border: 1px solid rgba(var(--red-rgb), 1);
}
.input-textarea textarea::-webkit-scrollbar {
  width: 0.5rem;
}
.input-textarea textarea::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 0.25rem;
}
.input-textarea textarea::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: var(--red);
}
.input-textarea span {
  font-size: 0.8rem;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  color: var(--error);
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 9rem);
  padding: 2rem;
  text-align: center;
}
.error-page__code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.05em;
}
.error-page__divider {
  width: 4rem;
  height: 2px;
  background-color: var(--red);
  margin: 1.5rem auto;
}
.error-page__title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.error-page__desc {
  font-size: 1rem;
  color: rgba(var(--black-rgb), 0.55);
  max-width: 28rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.error-page__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.error-page__actions__home {
  display: inline-flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 1.5rem;
  background-color: var(--black);
  color: var(--white);
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}
.error-page__actions__home:hover {
  background-color: var(--red);
}
.error-page__actions__shop {
  display: inline-flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 1.5rem;
  border: 1.5px solid var(--black);
  color: var(--black);
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: 0.2s;
}
.error-page__actions__shop:hover {
  border-color: var(--red);
  color: var(--red);
}

.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(var(--black-rgb), 0.2);
  animation: toast-in 0.2s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sidebar-admin {
  padding: 1.5rem;
  border-right: 1px solid rgba(var(--red-rgb), 0.25);
  height: 100svh;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 21.75rem;
  background-color: var(--white);
  z-index: 50;
}
.sidebar-admin__header {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  height: 3.5rem;
  border-bottom: 1px solid rgba(var(--red-rgb), 0.25);
}
.sidebar-admin__header__logo {
  height: 2rem;
}
.sidebar-admin__header__text {
  text-transform: uppercase;
  line-height: 0.875rem;
  font-size: 0.875rem;
  margin-top: auto;
}
.sidebar-admin__types {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sidebar-admin__types__type {
  padding: 1rem;
  width: 300px;
  transition: 0.25s;
  color: rgba(var(--black-rgb), 0.75);
  border-radius: 0.25rem;
  font-weight: 400;
  text-align: start;
  margin-bottom: 0.5rem;
}
.sidebar-admin__types__type:hover {
  color: var(--black);
  background-color: rgba(var(--red-rgb), 0.25);
}
.sidebar-admin__types__type.selected {
  color: var(--black);
  background-color: rgba(var(--red-rgb), 0.25);
}
.sidebar-admin__actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.sidebar-admin__actions__logout {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: 2rem;
  color: var(--black);
}
.sidebar-admin__actions__logout__icon {
  transform: scale(-1);
  font-size: 2rem;
  height: 2rem;
}
.sidebar-admin__actions__logout__text {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.sidebar-admin__actions__logout:hover {
  color: var(--red);
  transition: 0.25s;
}
.sidebar-admin__actions__user {
  background-color: var(--red);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--white);
  line-height: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.admin-layout {
  display: flex;
  flex-direction: column;
  padding-left: 21.75rem;
  width: 100%;
}
.admin-layout__header {
  margin-bottom: 34px;
  display: flex;
  padding: 1.5rem 1.5rem 0 1.5rem;
  align-items: center;
}
.admin-layout__header__title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.admin-layout__header__refresh {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1.5rem;
  transition: 0.25s;
  color: var(--black);
  display: inline-flex;
}
.admin-layout__header__refresh:hover {
  transform: rotate(180deg);
}
.admin-layout__header__add-ai {
  height: 3rem;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  width: 220px;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
  align-items: center;
  border-radius: 0.25rem;
  margin-left: auto;
  transition: 0.25s;
}
.admin-layout__header__add-ai div {
  font-size: 1rem;
  line-height: 3rem;
}
.admin-layout__header__add-ai:hover {
  background-color: var(--red);
}
.admin-layout__search {
  width: 100%;
  padding: 0 1.5rem 0 1.5rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-layout__search__wrapper {
  border-radius: 0.25rem;
  background-color: rgba(var(--black-rgb), 0.1);
  padding: 0 1rem;
  gap: 1rem;
  width: 100%;
  transition: 0.25s;
  height: 3rem;
  border: 1px solid transparent;
}
.admin-layout__search__wrapper__input {
  border-radius: 0.25rem;
  background-color: transparent;
  height: 3rem;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.125rem;
  padding-left: 0;
}
.admin-layout__search__wrapper__input::placeholder {
  font-size: 1.125rem;
  color: rgba(var(--black-rgb), 0.75);
}
.admin-layout__search__button {
  height: 3rem;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  min-width: 200px;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
  align-items: center;
  border-radius: 0.25rem;
  margin-left: auto;
  transition: 0.25s;
}
.admin-layout__search__button div {
  font-size: 1.125rem;
  line-height: 3rem;
}
.admin-layout__search__button:hover {
  background-color: var(--red);
}

.table {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
.table__toolbar {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}
.table__toolbar__btn {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(var(--black-rgb), 0.3);
  background: transparent;
  cursor: pointer;
  transition: 0.15s;
}
.table__toolbar__btn:hover {
  background-color: rgba(var(--black-rgb), 0.06);
}
.table__toolbar__btn--update {
  border-color: rgba(var(--red-rgb), 0.5);
  color: var(--red);
}
.table__toolbar__btn--update:hover {
  background-color: rgba(var(--red-rgb), 0.06);
}
.table__csv-display {
  width: 100%;
  font-family: monospace;
  font-size: 0.78rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
  background: rgba(var(--black-rgb), 0.02);
  resize: vertical;
  outline: none;
}
.table__update {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
  background: rgba(var(--black-rgb), 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.table__update__input {
  width: 100%;
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.25rem;
  resize: vertical;
}
.table__update__input:focus {
  outline: none;
  border-color: var(--red);
}
.table__update__actions {
  display: flex;
  gap: 0.5rem;
}
.table__update__submit {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  background-color: var(--red);
  color: var(--white);
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}
.table__update__submit:hover {
  opacity: 0.85;
}
.table__update__close {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(var(--black-rgb), 0.3);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
}
.table__update__close:hover {
  background-color: rgba(var(--black-rgb), 0.06);
}
.table__section {
  margin-bottom: 2rem;
}
.table__section--deleted {
  border-top: 1px solid rgba(var(--black-rgb), 0.2);
  padding-top: 1rem;
}
.table__subheader {
  margin: 0 0 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(var(--black-rgb), 0.8);
}
.table__delete-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: rgba(var(--red-rgb), 0.06);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
  font-size: 0.875rem;
  height: 3rem;
  visibility: hidden;
}
.table__delete-bar--restore {
  background-color: rgba(var(--black-rgb), 0.04);
}
.table__delete-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--red);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--red);
  border-radius: 0.25rem;
  cursor: pointer;
  background: transparent;
  transition: 0.15s;
}
.table__delete-btn:hover {
  background-color: var(--red);
  color: var(--white);
}
.table__restore-btn {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(var(--black-rgb), 0.4);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  transition: 0.15s;
}
.table__restore-btn:hover {
  background-color: rgba(var(--black-rgb), 0.9);
  color: var(--white);
}
.table__hard-delete-btn {
  font-size: 0.875rem;
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--red);
  border-radius: 0.25rem;
  background: var(--red);
  cursor: pointer;
}
.table__hard-delete-btn:hover {
  opacity: 0.85;
}
.table__header {
  width: 100%;
  display: flex;
  height: 4rem;
  align-items: center;
  background-color: var(--white);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.25);
}
.table__header__col {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: var(--black);
  text-decoration: none;
}
.table__header__col.checkbox {
  max-width: 7.5rem;
  min-width: 7.5rem;
  padding-left: 1.5rem;
}
.table__header__col.name {
  min-width: 20rem;
}
.table__header__col.actions {
  min-width: 200px;
}
.table__header__col--sort {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.table__header__col--sort:hover {
  color: var(--red);
}

.row {
  width: 100%;
  display: flex;
  height: 3rem;
  align-items: center;
  background-color: var(--white);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.25);
  transition: 0.25s;
  cursor: pointer;
}
.row__col {
  flex: 1;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: var(--black);
}
.row__col.checkbox {
  max-width: 7.5rem;
  min-width: 7.5rem;
  padding-left: 1.5rem;
}
.row__col.name {
  min-width: 20rem;
}
.row__col.actions {
  min-width: 200px;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-right: 1.5rem;
}
.row__col.actions__button {
  font-size: 1.5rem;
  width: 1.5rem;
  max-width: 1.5rem;
  height: 1.5rem;
  color: rgba(var(--black-rgb), 0.25);
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
}
.row__col.actions__button:hover {
  color: var(--red);
}
.row:hover {
  background-color: rgba(var(--red-rgb), 0.1);
}

.checkmark-wrap {
  display: inline-flex;
  cursor: pointer;
  position: relative;
}

.checkmark-wrap input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(var(--black-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
  flex-shrink: 0;
}

.checkmark-wrap input:checked + .checkmark {
  background-color: var(--red);
  border-color: var(--red);
}

.checkmark-wrap input:checked + .checkmark::after {
  content: "";
  width: 0.35rem;
  height: 0.65rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -0.15rem;
}

.admin-native-select {
  width: 100%;
  height: 3rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(var(--red-rgb), 0.5);
  background: var(--white);
  padding: 0 1rem;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(var(--black-rgb), 0.25);
  z-index: 300;
}
.modal__content {
  width: 58rem;
  max-width: 100%;
  background-color: var(--white);
  height: 100vh;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(var(--red-rgb), 0.25);
  padding: 1.5rem;
}
.modal__content__header {
  font-weight: 400;
  margin-bottom: 1rem;
}
.modal__content__exit {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: 0.25s;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal__content__exit:hover {
  color: var(--red);
}
.modal__content__form {
  display: block;
}
.modal__content__images {
  margin-top: 1rem;
}
.modal__content__images__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.modal__content__images__item {
  position: relative;
  width: 7rem;
  flex-shrink: 0;
}
.modal__content__images__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  display: block;
}
.modal__content__images__item__label {
  font-size: 0.7rem;
  color: rgba(var(--black-rgb), 0.5);
  text-align: center;
  margin-top: 0.2rem;
}
.modal__content__images__item__delete {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__content__images__item__delete:hover {
  background: var(--red);
}
.modal__content__linked {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
}
.modal__content__linked__header {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.modal__content__linked__empty {
  font-size: 0.875rem;
  color: rgba(var(--black-rgb), 0.5);
  margin-bottom: 0.75rem;
}
.modal__content__linked__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.06);
}
.modal__content__linked__item__img {
  width: 2.5rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 0.2rem;
  flex-shrink: 0;
}
.modal__content__linked__item__name {
  flex: 1;
  font-size: 0.875rem;
}
.modal__content__linked__item__cat {
  font-size: 0.8rem;
  color: rgba(var(--black-rgb), 0.45);
}
.modal__content__linked__item__remove {
  font-size: 0.8rem;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 0.2rem;
  padding: 0.2rem 0.5rem;
  transition: 0.2s;
}
.modal__content__linked__item__remove:hover {
  background-color: var(--red);
  color: var(--white);
}
.modal__content__linked__add {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.modal__content__linked__add__select {
  flex: 1;
  height: 2.25rem;
  border: 1px solid rgba(var(--black-rgb), 0.25);
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  background: var(--white);
  font-family: "Ubuntu", sans-serif;
}
.modal__content__linked__add__btn {
  height: 2.25rem;
  padding: 0 0.75rem;
  background-color: var(--black);
  color: var(--white);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: 0.2s;
}
.modal__content__linked__add__btn:hover {
  background-color: var(--red);
}

.pf {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.pf__images {
  display: flex;
  flex-direction: column;
}
.pf__images__uploads {
  display: flex;
  gap: 1.5rem;
}
.pf__images__thumb {
  width: 22rem;
  flex-shrink: 0;
}
.pf__images__gallery {
  flex: 1;
}
.pf__body {
  display: flex;
  gap: 1.5rem;
}
.pf__body__left {
  width: 22rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.pf__body__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pf__body__right .input-textarea {
  margin-bottom: 1rem;
}
.pf__body__right .input-textarea textarea {
  min-height: 6rem;
}

.users {
  padding: 0 1.5rem 4rem;
  max-width: 60rem;
}
.users__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}
.users__new {
  background: rgba(var(--black-rgb), 0.03);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 26rem;
}
.users__new__title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.users__new__form .button {
  margin-top: 0.5rem;
}
.users__list {
  border: 1px solid rgba(var(--black-rgb), 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
}
.users__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.08);
  font-size: 0.9rem;
}
.users__row--head {
  background: rgba(var(--black-rgb), 0.04);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(var(--black-rgb), 0.6);
}
.users__row:last-child {
  border-bottom: none;
}
.users__col {
  flex: 1;
  min-width: 0;
}
.users__col--email {
  font-weight: 500;
}
.users__col--actions {
  flex: 0 0 5rem;
  text-align: right;
}
.users__me {
  color: var(--red);
  font-size: 0.8rem;
}
.users__pw {
  display: flex;
  gap: 0.4rem;
}
.users__pw__input {
  flex: 1;
  height: 2.25rem;
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.25rem;
  padding: 0 0.6rem;
  font-size: 0.85rem;
  font-family: "Ubuntu", sans-serif;
}
.users__pw__input:focus {
  outline: none;
  border-color: var(--red);
}
.users__pw__btn {
  height: 2.25rem;
  padding: 0 0.7rem;
  background: var(--black);
  color: var(--white);
  border-radius: 0.25rem;
  font-size: 0.8rem;
  transition: 0.2s;
}
.users__pw__btn:hover {
  background: var(--red);
}
.users__delete {
  font-size: 0.8rem;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 0.25rem;
  padding: 0.3rem 0.7rem;
  transition: 0.2s;
}
.users__delete:hover {
  background: var(--red);
  color: var(--white);
}
.users__locked {
  color: rgba(var(--black-rgb), 0.3);
}

.location {
  max-width: 108rem;
  margin: 0 auto;
  padding: 11rem 1.5rem 4rem;
}
.location__wrapper {
  display: flex;
  gap: 3rem;
}
@media (max-width: 900px) {
  .location__wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
.location__info {
  width: 22rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .location__info {
    width: 100%;
  }
}
.location__info__title {
  font-size: 2.5rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1rem;
}
.location__info__line {
  width: 4rem;
  height: 1px;
  background-color: var(--red);
  margin-bottom: 2rem;
}
.location__info__block {
  margin-bottom: 2rem;
}
.location__info__block__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.location__info__block p {
  line-height: 1.6rem;
  color: rgba(var(--black-rgb), 0.8);
}
.location__info__block a {
  display: block;
  line-height: 1.6rem;
  color: var(--red);
  transition: 0.25s;
}
.location__info__block a:hover {
  color: var(--black);
}
.location__map {
  flex: 1;
  min-height: 30rem;
  border: 1px solid rgba(var(--red-rgb), 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .location__map {
    min-height: 22rem;
  }
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .location__map iframe {
    min-height: 22rem;
  }
}

.shop-head {
  margin-bottom: 1.5rem;
}
.shop-head__title {
  font-size: 2rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
}
.shop-head__text {
  margin-top: 0.5rem;
  color: rgba(var(--black-rgb), 0.6);
  line-height: 1.5rem;
}

.shop-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@container (max-width: 640px) {
  .shop-tiles {
    grid-template-columns: 1fr;
  }
}

.shop-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
  padding: 2rem 1.5rem;
  border-radius: 0.25rem;
  transition: 0.25s;
  border: 1px solid transparent;
}
.shop-tile__name {
  font-size: 1.25rem;
  font-weight: 500;
}
.shop-tile__arrow {
  font-size: 1.5rem;
  display: inline-flex;
  transition: transform 0.25s;
}
.shop-tile:hover {
  background-color: var(--red);
}
.shop-tile:hover .shop-tile__arrow {
  transform: translateX(0.35rem);
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@container (min-width: 700px) {
  .wgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@container (min-width: 1050px) {
  .wgrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.375rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(var(--black-rgb), 0.13);
  border-color: rgba(var(--red-rgb), 0.3);
}
.wcard__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--black);
  text-decoration: none;
}
.wcard__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--white);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.08);
}
.wcard__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}
.wcard__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 0.2rem;
}
.wcard__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.wcard__name {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.wcard__desc {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: rgba(var(--black-rgb), 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wcard__price {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--red);
}
.wcard__price__old {
  color: rgba(var(--black-rgb), 0.4);
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 0.4rem;
}
.wcard__stock {
  font-size: 0.75rem;
}
.wcard__stock--in {
  color: #1a8a3b;
}
.wcard__stock--out {
  color: rgba(var(--black-rgb), 0.45);
}
.wcard__stock--back {
  color: #b8860b;
}
.wcard__add {
  padding: 0 0.75rem 0.75rem;
}
.wcard__add__btn {
  width: 100%;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  transition: 0.2s;
}
.wcard__add__btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
.wcard__add__btn.is-added {
  background: #1a8a3b;
  color: var(--white);
}
.wcard__add__btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.wproduct {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0 3rem;
}
@media (max-width: 850px) {
  .wproduct {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.wproduct__images {
  flex: 1;
  position: relative;
  height: 26rem;
}
@media (max-width: 850px) {
  .wproduct__images {
    height: 20rem;
    flex: none;
  }
}
.wproduct__images__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.wproduct__images__img.active {
  opacity: 1;
}
.wproduct__images__buttons {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(var(--black-rgb), 0.15);
}
.wproduct__images__buttons button {
  font-size: 1.5rem;
  display: inline-flex;
  transition: 0.2s;
}
.wproduct__images__buttons button:hover {
  color: var(--red);
}
.wproduct__images__count {
  font-style: italic;
}
.wproduct__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wproduct__info__name {
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.wproduct__info__sku {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.5);
  margin-bottom: 1rem;
}
.wproduct__info__sku span {
  font-weight: 500;
  color: rgba(var(--black-rgb), 0.75);
}
.wproduct__info__price {
  font-size: 1.75rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.wproduct__info__price__old {
  color: rgba(var(--black-rgb), 0.4);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 400;
  margin-right: 0.5rem;
}
.wproduct__info__price__vsk {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 400;
}
.wproduct__info__stock {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.wproduct__info__stock--in {
  color: #1a8a3b;
}
.wproduct__info__stock--out {
  color: rgba(var(--black-rgb), 0.5);
}
.wproduct__info__stock--back {
  color: #b8860b;
}
.wproduct__info__short {
  line-height: 1.6rem;
  margin-bottom: 2rem;
  color: rgba(var(--black-rgb), 0.8);
}
.wproduct__info__buy {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: auto;
}
.wproduct__info__buy.disabled {
  background: rgba(var(--black-rgb), 0.35);
  pointer-events: auto;
}
.wproduct__info__buy.disabled:hover {
  background: rgba(var(--black-rgb), 0.35);
}
.wproduct__info__note {
  font-size: 0.8rem;
  color: rgba(var(--black-rgb), 0.5);
  margin-top: 0.75rem;
}

.wproduct__desc {
  margin-bottom: 3rem;
  max-width: 60rem;
}
.wproduct__desc__header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.wproduct__desc__body {
  line-height: 1.6rem;
  color: rgba(var(--black-rgb), 0.85);
}
.wproduct__desc__body :global(img) {
  max-width: 100%;
  height: auto;
}
.wproduct__desc__body img {
  max-width: 100%;
  height: auto;
}
.wproduct__desc__body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}
.wproduct__desc__body a:hover {
  color: var(--black);
}

.parts {
  max-width: 108rem;
  margin: 0 auto;
  padding: 9rem 1.5rem 4rem;
}
.parts__hero {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #1e1e1e 100%);
  border-radius: 1rem;
  padding: 3.5rem;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.15);
  position: relative;
  overflow: hidden;
}
.parts__hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.35), transparent 70%);
}
.parts__hero__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.parts__hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}
.parts__hero__eyebrow svg {
  width: 1rem;
  height: 1rem;
}
.parts__hero__title {
  font-size: 3rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
.parts__hero__line {
  width: 4rem;
  height: 3px;
  background: var(--red);
  margin: 1.25rem 0 1.5rem;
  border-radius: 2px;
}
.parts__hero__text {
  line-height: 1.7rem;
  color: rgba(var(--white-rgb), 0.85);
  max-width: 38rem;
  margin-bottom: 2rem;
}
.parts__hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.parts__hero__btn {
  text-decoration: none;
}
.parts__hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(var(--white-rgb), 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}
.parts__hero__link svg {
  width: 1.1rem;
  height: 1.1rem;
}
.parts__hero__link:hover {
  color: var(--white);
}
.parts__hero__note {
  font-size: 0.9rem;
  color: rgba(var(--white-rgb), 0.6);
  line-height: 1.5rem;
  max-width: 38rem;
}
.parts__hero__note strong {
  color: rgba(var(--white-rgb), 0.9);
}
.parts__hero__visual {
  flex: 0 0 15rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem;
  background: rgba(var(--white-rgb), 0.04);
  border: 1px solid rgba(var(--white-rgb), 0.1);
  border-radius: 0.75rem;
}
.parts__hero__visual__badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.parts__hero__visual__badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--white);
}
.parts__hero__visual__row {
  display: flex;
  gap: 0.75rem;
}
.parts__hero__visual__row span {
  height: 0.55rem;
  border-radius: 0.3rem;
  background: rgba(var(--white-rgb), 0.15);
}
.parts__hero__visual__row span:first-child {
  width: 40%;
}
.parts__hero__visual__row span:last-child {
  flex: 1;
  background: rgba(var(--white-rgb), 0.08);
}
.parts__hero__visual__tag {
  margin-top: 0.5rem;
  align-self: flex-start;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(var(--red-rgb), 0.5);
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
}
@media (max-width: 820px) {
  .parts__hero__visual {
    display: none;
  }
}
@media (max-width: 820px) {
  .parts__hero {
    padding: 2.5rem 1.75rem;
  }
}
@media (max-width: 500px) {
  .parts__hero__title {
    font-size: 2.25rem;
  }
}
.parts__steps {
  margin-top: 3.5rem;
}
.parts__steps__title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--black);
}
.parts__steps__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 820px) {
  .parts__steps__row {
    grid-template-columns: 1fr;
  }
}
.parts__step {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(var(--black-rgb), 0.08);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(var(--black-rgb), 0.04);
  transition: 0.2s;
}
.parts__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(var(--black-rgb), 0.08);
}
.parts__step__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(var(--red-rgb), 0.12);
  line-height: 1;
}
.parts__step__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  background: rgba(var(--red-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.parts__step__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--red);
}
.parts__step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.parts__step p {
  font-size: 0.9rem;
  color: rgba(var(--black-rgb), 0.6);
  line-height: 1.5rem;
}
.parts__help {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(var(--black-rgb), 0.03);
  border: 1px solid rgba(var(--black-rgb), 0.06);
}
.parts__help__text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--black);
}
.parts__help__text p {
  color: rgba(var(--black-rgb), 0.65);
  line-height: 1.5rem;
  max-width: 40rem;
}
.parts__help__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.parts__help__actions a {
  text-decoration: none;
}
@media (max-width: 820px) {
  .parts__help {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .parts__help__actions {
    width: 100%;
  }
  .parts__help__actions a {
    flex: 1;
  }
}

.navbar__search {
  position: relative;
  margin-left: auto;
  align-self: center;
  flex: 0 1 22rem;
  min-width: 12rem;
}
.navbar__search__form {
  display: flex;
  align-items: center;
  height: 2.5rem;
  background: rgba(var(--black-rgb), 0.05);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 2rem;
  padding: 0 0.5rem 0 0.25rem;
  transition: 0.2s;
}
.navbar__search__form:focus-within {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.1);
}
.navbar__search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(var(--black-rgb), 0.55);
}
.navbar__search__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.navbar__search__icon:hover {
  color: var(--red);
}
.navbar__search__input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--black);
  min-width: 0;
}
.navbar__search__input::placeholder {
  color: rgba(var(--black-rgb), 0.45);
}
.navbar__search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
@media (max-width: 1320px) {
  .navbar__search {
    flex-basis: 16rem;
  }
}
@media (max-width: 1024px) {
  .navbar__search {
    margin-left: auto;
    flex-basis: 14rem;
  }
}
@media (max-width: 600px) {
  .navbar__search {
    flex-basis: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
  .navbar__search__input::placeholder {
    content: "Leita…";
  }
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.navbar__cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.2s;
}
.navbar__cta__btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
.navbar__cta__btn--shop {
  background: var(--red);
  color: var(--white);
}
.navbar__cta__btn--shop:hover {
  background: var(--black);
}
.navbar__cta__btn--parts {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(var(--black-rgb), 0.2);
}
.navbar__cta__btn--parts:hover {
  border-color: var(--red);
  color: var(--red);
}
@media (max-width: 1500px) {
  .navbar__cta__btn span {
    display: none;
  }
  .navbar__cta__btn {
    padding: 0 0.75rem;
  }
}
@media (max-width: 400px) {
  .navbar__cta__btn--parts {
    display: none;
  }
}

.navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--black);
  align-self: center;
  margin-left: 0.25rem;
}
.navbar__burger svg {
  width: 1.6rem;
  height: 1.6rem;
}
.navbar__burger:hover {
  color: var(--red);
}

@media (max-width: 1320px) {
  .navbar__bottom__wrapper__links {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .navbar__search {
    margin-left: 0.75rem;
    margin-right: 0.5rem;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 26rem;
  }
  .navbar__bottom {
    padding: 0 1rem;
  }
}
.navbar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 20rem);
  z-index: 60;
  background: var(--white);
  box-shadow: -8px 0 30px rgba(var(--black-rgb), 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 2rem;
}
.navbar-drawer.open {
  transform: translateX(0);
}
.navbar-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}
.navbar-drawer__head__logo {
  height: 1.75rem;
  width: auto;
}
.navbar-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-drawer__close svg {
  width: 1.4rem;
  height: 1.4rem;
}
.navbar-drawer__close:hover {
  color: var(--red);
}
.navbar-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}
.navbar-drawer__cta__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 3rem;
  padding: 0 1.25rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.navbar-drawer__cta__btn svg {
  width: 1.2rem;
  height: 1.2rem;
}
.navbar-drawer__cta__btn--shop {
  background: var(--red);
  color: var(--white);
}
.navbar-drawer__cta__btn--parts {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(var(--black-rgb), 0.2);
}
.navbar-drawer__links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(var(--black-rgb), 0.08);
}
.navbar-drawer__links__link {
  padding: 0.9rem 0.25rem;
  color: var(--black);
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.08);
  transition: color 0.15s;
}
.navbar-drawer__links__link:hover {
  color: var(--red);
}
.navbar-drawer__links__link:first-child {
  font-weight: 600;
}
.navbar-drawer__contact {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.navbar-drawer__contact a {
  color: rgba(var(--black-rgb), 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-drawer__contact a svg {
  width: 1rem;
  height: 1rem;
  color: var(--red);
}
.navbar-drawer__contact a:hover {
  color: var(--red);
}
.navbar-drawer__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(var(--black-rgb), 0.5);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.navbar-drawer__backdrop.open {
  display: block;
  opacity: 1;
}
@media (min-width: 1025px) {
  .navbar-drawer {
    display: none;
  }
  .navbar-drawer__backdrop {
    display: none !important;
  }
}

.search-suggest {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--white);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.18);
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
}
.search-suggest.open {
  display: block;
}
.search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.06);
  transition: background 0.12s;
}
.search-suggest__item:last-of-type {
  border-bottom: none;
}
.search-suggest__item.is-active, .search-suggest__item:hover {
  background: rgba(var(--red-rgb), 0.06);
}
.search-suggest__item__img {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0.4rem;
  background: rgba(var(--black-rgb), 0.04);
}
.search-suggest__item__img--ph {
  display: block;
}
.search-suggest__item__body {
  flex: 1;
  min-width: 0;
}
.search-suggest__item__name {
  display: block;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest__item__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  font-size: 0.78rem;
  color: rgba(var(--black-rgb), 0.55);
}
.search-suggest__item__submeta {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.search-suggest__item__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.1rem 0.4rem;
  border-radius: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.search-suggest__item__tag--taeki {
  background: rgba(var(--red-rgb), 0.12);
  color: var(--red);
}
.search-suggest__item__tag--vara {
  background: rgba(var(--blue-rgb), 0.12);
  color: var(--blue);
}
.search-suggest__item__tag--aukahlutur {
  background: rgba(var(--black-rgb), 0.08);
  color: rgba(var(--black-rgb), 0.7);
}
.search-suggest__item__price {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.search-suggest__empty {
  padding: 1.25rem 1rem;
  color: rgba(var(--black-rgb), 0.55);
  font-size: 0.9rem;
}
.search-suggest__all {
  display: block;
  padding: 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red);
  background: rgba(var(--red-rgb), 0.04);
}
.search-suggest__all:hover {
  background: rgba(var(--red-rgb), 0.09);
}

.search-page {
  max-width: 60rem;
  margin: 0 auto;
  padding: 9rem 1.5rem 4rem;
}
.search-page__title {
  font-size: 2.5rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
}
.search-page__line {
  width: 4rem;
  height: 3px;
  background: var(--red);
  margin: 1rem 0 1.25rem;
  border-radius: 2px;
}
.search-page__lead {
  color: rgba(var(--black-rgb), 0.65);
  line-height: 1.6rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.search-page__box {
  position: relative;
}
.search-page__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 0.5rem 0 1rem;
  background: var(--white);
  border: 2px solid rgba(var(--black-rgb), 0.12);
  border-radius: 0.75rem;
  transition: 0.2s;
}
.search-page__form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(var(--red-rgb), 0.08);
}
.search-page__form__icon {
  display: flex;
  color: rgba(var(--black-rgb), 0.5);
}
.search-page__form__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.search-page__form__input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 1.05rem;
  color: var(--black);
  min-width: 0;
}
.search-page__form__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-page__form__submit {
  height: 2.5rem;
  border: none;
  cursor: pointer;
}
.search-page__hint {
  margin-top: 2.5rem;
  color: rgba(var(--black-rgb), 0.7);
  line-height: 1.7rem;
}
.search-page__hint ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}
.search-page__hint li {
  margin-bottom: 0.5rem;
}
.search-page__hint em {
  color: var(--red);
  font-style: normal;
  font-weight: 500;
}
.search-page__tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}
.search-page__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: rgba(var(--black-rgb), 0.6);
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: 0.15s;
}
.search-page__tab:hover {
  color: var(--black);
}
.search-page__tab.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
  font-weight: 500;
}
.search-page__tab__count {
  font-size: 0.75rem;
  background: rgba(var(--black-rgb), 0.08);
  border-radius: 1rem;
  padding: 0.05rem 0.45rem;
}
.search-page__tab.is-active .search-page__tab__count {
  background: rgba(var(--red-rgb), 0.12);
  color: var(--red);
}
.search-page__count {
  font-size: 0.9rem;
  color: rgba(var(--black-rgb), 0.55);
  margin-bottom: 1rem;
}
.search-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.search-page__empty {
  padding: 3rem 1rem;
  text-align: center;
}
.search-page__empty h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.search-page__empty p {
  color: rgba(var(--black-rgb), 0.6);
  line-height: 1.6rem;
  max-width: 32rem;
  margin: 0 auto;
}
.search-page__empty p a {
  color: var(--red);
}

.sresult {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 0.6rem;
  background: var(--white);
  transition: 0.15s;
}
.sresult:hover {
  border-color: rgba(var(--red-rgb), 0.4);
  box-shadow: 0 4px 16px rgba(var(--black-rgb), 0.06);
}
.sresult__img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0.4rem;
  background: rgba(var(--black-rgb), 0.04);
}
.sresult__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--black-rgb), 0.25);
}
.sresult__img--ph svg {
  width: 1.5rem;
  height: 1.5rem;
}
.sresult__body {
  flex: 1;
  min-width: 0;
}
.sresult__name {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.sresult__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(var(--black-rgb), 0.55);
}
.sresult__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.1rem 0.45rem;
  border-radius: 0.75rem;
  font-weight: 600;
}
.sresult__tag--taeki {
  background: rgba(var(--red-rgb), 0.12);
  color: var(--red);
}
.sresult__tag--vara {
  background: rgba(var(--blue-rgb), 0.12);
  color: var(--blue);
}
.sresult__tag--aukahlutur {
  background: rgba(var(--black-rgb), 0.08);
  color: rgba(var(--black-rgb), 0.7);
}
.sresult__sub {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sresult__price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--black);
}

.navbar__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--black);
  text-decoration: none;
  transition: color 0.15s;
}
.navbar__cart svg {
  width: 1.5rem;
  height: 1.5rem;
}
.navbar__cart:hover {
  color: var(--red);
}
.navbar__cart__count {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__cart__count.is-empty {
  display: none;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 2.75rem;
}
.qty__btn {
  width: 2.5rem;
  height: 100%;
  border: none;
  background: rgba(var(--black-rgb), 0.03);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--black);
  transition: background 0.15s;
}
.qty__btn:hover {
  background: rgba(var(--red-rgb), 0.1);
  color: var(--red);
}
.qty__input {
  width: 3rem;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 1rem;
  color: var(--black);
  -moz-appearance: textfield;
  outline: none;
}
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wproduct__info__cart {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: auto;
  flex-wrap: wrap;
}
.wproduct__info__cart .wproduct__info__buy {
  margin-top: 0;
  height: 2.75rem;
}

.cart, .checkout, .confirm {
  max-width: 72rem;
  margin: 0 auto;
  padding: 9rem 1.5rem 4rem;
}

.cart__title, .checkout__title {
  font-size: 2.5rem;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
}

.cart__line, .checkout__line {
  width: 4rem;
  height: 3px;
  background: var(--red);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}

.cart__empty {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(var(--black-rgb), 0.6);
}
.cart__empty svg {
  width: 3rem;
  height: 3rem;
  color: rgba(var(--black-rgb), 0.2);
  margin-bottom: 1rem;
}
.cart__empty p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cart__grid {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 850px) {
  .cart__grid {
    grid-template-columns: 1fr;
  }
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.citem {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 0.6rem;
  background: var(--white);
}
.citem__img {
  width: 5rem;
  height: 5rem;
}
.citem__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.citem__name {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}
.citem__name:hover {
  color: var(--red);
}
.citem__sku {
  font-size: 0.8rem;
  color: rgba(var(--black-rgb), 0.5);
  margin-top: 0.2rem;
}
.citem__unit {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.6);
  margin-top: 0.2rem;
}
.citem__qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.citem__update {
  border: none;
  background: none;
  font-size: 0.75rem;
  color: rgba(var(--black-rgb), 0.55);
  cursor: pointer;
  text-decoration: underline;
}
.citem__update:hover {
  color: var(--red);
}
.citem__total {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.citem__remove button {
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(var(--black-rgb), 0.4);
  display: flex;
}
.citem__remove button svg {
  width: 1.25rem;
  height: 1.25rem;
}
.citem__remove button:hover {
  color: var(--red);
}
@media (max-width: 560px) {
  .citem {
    grid-template-columns: 4rem 1fr auto;
    grid-template-areas: "img body remove" "img qty total";
  }
  .citem__img {
    grid-area: img;
    width: 4rem;
    height: 4rem;
  }
  .citem__body {
    grid-area: body;
  }
  .citem__qty {
    grid-area: qty;
    align-items: flex-start;
  }
  .citem__total {
    grid-area: total;
    text-align: right;
  }
  .citem__remove {
    grid-area: remove;
    justify-self: end;
  }
}

.cart__summary, .checkout__summary {
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: rgba(var(--black-rgb), 0.02);
  position: sticky;
  top: 8rem;
}
.cart__summary__title, .checkout__summary__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--black);
}
.cart__summary__row, .checkout__summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: rgba(var(--black-rgb), 0.75);
}
.cart__summary__row--muted, .checkout__summary__row--muted {
  color: rgba(var(--black-rgb), 0.5);
  font-size: 0.9rem;
}
.cart__summary__total, .checkout__summary__total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--black);
  padding: 1rem 0;
  margin: 0.5rem 0 1rem;
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
}
.cart__summary__checkout, .cart__summary__submit, .checkout__summary__checkout, .checkout__summary__submit {
  text-decoration: none;
}
.cart__summary__continue, .cart__summary__back, .checkout__summary__continue, .checkout__summary__back {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: rgba(var(--black-rgb), 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
.cart__summary__continue:hover, .cart__summary__back:hover, .checkout__summary__continue:hover, .checkout__summary__back:hover {
  color: var(--red);
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 22rem;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 850px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }
}

.checkout__form__head {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.checkout__form__note {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.55);
  line-height: 1.5rem;
  margin-top: 1.25rem;
}

.checkout__alert {
  background: rgba(var(--error-rgb), 0.08);
  border: 1px solid rgba(var(--error-rgb), 0.3);
  color: var(--error);
  padding: 0.9rem 1.1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.field-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 500px) {
  .field-row {
    flex-direction: column;
    gap: 0;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.9rem;
  color: rgba(var(--black-rgb), 0.7);
}
.field--small {
  flex: 0 0 8rem;
}
.field input, .field textarea {
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  color: var(--black);
  font-family: inherit;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.1);
}
.field.has-error input, .field.has-error textarea {
  border-color: var(--error);
}
.field__err {
  color: var(--error);
  font-size: 0.8rem;
}

.checkout__summary__items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.checkout__summary__item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.checkout__summary__item__qty {
  color: rgba(var(--black-rgb), 0.5);
  flex-shrink: 0;
}
.checkout__summary__item__name {
  flex: 1;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout__summary__item__price {
  font-weight: 500;
  white-space: nowrap;
}

.confirm {
  max-width: 40rem;
  text-align: center;
}

.confirm__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--red);
}

.confirm__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.confirm__text {
  color: rgba(var(--black-rgb), 0.7);
  line-height: 1.7rem;
  margin-bottom: 0.75rem;
}
.confirm__text strong {
  color: var(--black);
}

.confirm__test {
  background: rgba(var(--yellow-rgb), 0.15);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(var(--black-rgb), 0.75);
  margin: 1.5rem 0;
  line-height: 1.5rem;
}

.confirm__btn {
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-flex;
}

.cart__summary__handoff {
  font-size: 0.8rem;
  color: rgba(var(--black-rgb), 0.55);
  line-height: 1.4rem;
  margin-top: 0.75rem;
  text-align: center;
}

.cedit {
  padding: 1.5rem 2rem 3rem;
  max-width: 60rem;
}
.cedit__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cedit__tab {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(var(--black-rgb), 0.15);
  border-radius: 2rem;
  text-decoration: none;
  color: rgba(var(--black-rgb), 0.7);
  font-size: 0.95rem;
  transition: 0.15s;
}
.cedit__tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.cedit__tab.selected {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.cedit__hint {
  color: rgba(var(--black-rgb), 0.55);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}
.cedit__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cedit__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cedit__field__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}
.cedit__field__input, .cedit__field__textarea {
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.5rem;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--black);
  width: 100%;
  box-sizing: border-box;
}
.cedit__field__input:focus, .cedit__field__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.1);
}
.cedit__field__textarea {
  resize: vertical;
  line-height: 1.5rem;
}
.cedit__image {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .cedit__image {
    flex-direction: column;
  }
}
.cedit__image__preview {
  flex: 0 0 10rem;
  width: 10rem;
  height: 7rem;
  border: 1px solid rgba(var(--black-rgb), 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(var(--black-rgb), 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cedit__image__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cedit__image__controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}
.cedit__image__file {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-start;
}
.cedit__image__file span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(var(--black-rgb), 0.2);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--black);
  transition: 0.15s;
}
.cedit__image__file:hover span {
  border-color: var(--red);
  color: var(--red);
}
.cedit__image__file input[type=file] {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.6);
}
.cedit__image__note {
  font-size: 0.8rem;
  color: #1a8a3b;
}
.cedit__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.cedit__actions .button {
  text-decoration: none;
}
.cedit__view {
  color: rgba(var(--black-rgb), 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
.cedit__view:hover {
  color: var(--red);
}

.wmore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
  text-align: center;
}
.wmore__count {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.55);
}
.wmore__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 12rem;
}
.wmore__btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
