@charset "UTF-8";
/*Base Variables & Reset*/
:root {
  --color-background: #000000;
  --color-main-1: #FFFFFF;
  --color-main-2: #161616;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  background: var(--color-background);
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body::-webkit-scrollbar {
  display: none;
}
#footer {
  margin-top: auto;
}
p, span, a, li {
  color: var(--color-main-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
.container {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
  padding: 0 16px;
}
/*Header*/
.header-topbar {
  background: var(--color-main-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 36px;
  display: flex;
  align-items: center;
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-topbar .tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.header-topbar .tagline em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.95);
}
.header-topbar .header-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-topbar .header-socials__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.header-topbar .header-socials a {
  color: var(--color-main-1);
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.header-topbar .header-socials a svg {
  width: 20px;
  height: 20px;
}
.header-desktop {
  display: block;
}
.header-desktop .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-desktop .header_logo {
  width: fit-content;
  flex-shrink: 0;
}
.header-desktop .header_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-desktop .header_logo img, .header-desktop .header_logo .custom-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
  display: block;
}
.header-desktop .header_logo .logo-placeholder {
  width: 33px;
  height: 50px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-desktop .header_logo .logo-placeholder span {
  color: var(--color-main-1);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
.header-desktop .home-links {
  display: flex;
  flex-direction: row;
  gap: 4px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}
.header-desktop .home-links a, .header-desktop .home-links li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-main-1);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.header-desktop .home-links a:hover, .header-desktop .home-links a.active, .header-desktop .home-links a[aria-current="page"], .header-desktop .home-links li a:hover, .header-desktop .home-links li a.active, .header-desktop .home-links li a[aria-current="page"] {
  background: var(--color-main-2);
}
.header-desktop .other-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.header-desktop .other-links .header-contacts-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.header-desktop .other-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--color-main-1);
  transition: background 0.2s, border-color 0.2s;
}
.header-desktop .other-links a:hover:not(.is-empty):not(.header-contacts-btn) {
  background: #202020;
  border-color: rgba(255, 255, 255, 0.16);
}
.header-desktop .other-links a svg {
  flex-shrink: 0;
}
.header-desktop .other-links .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--color-main-1);
  color: #000;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header-cart.is-empty, .mob-cart.is-empty {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.header-mobile .mob-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-mobile .mob-logo img, .header-mobile .mob-logo .custom-logo {
  width: auto;
  height: 38px;
  object-fit: contain;
  display: block;
}
.header-mobile .mob-logo .logo-placeholder {
  width: 25px;
  height: 38px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile .mob-logo .logo-placeholder span {
  color: var(--color-main-1);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
.header-mobile .mob-burger {
  width: 36px;
  height: 36px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.header-mobile .mob-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-main-1);
  border-radius: 1px;
}
.header-mobile .mob-cart {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-main-1);
  flex-shrink: 0;
}
.header-mobile .mob-cart .mob-cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--color-main-1);
  color: #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header-mobile .mob-cart-placeholder {
  width: 36px;
  flex-shrink: 0;
}
.mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--color-background);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mob-drawer::-webkit-scrollbar {
  display: none;
}
.mob-drawer.is-open {
  transform: translateX(0);
}
.mob-drawer__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 30px;
}
.mob-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: var(--color-background);
  z-index: 1;
}
.mob-drawer__head .mob-logo {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mob-drawer__head .mob-logo img {
  width: auto;
  height: 38px;
  object-fit: contain;
  display: block;
}
.mob-drawer__head .mob-cart {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-main-1);
  flex-shrink: 0;
}
.mob-drawer__head .mob-cart .mob-cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--color-main-1);
  color: #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mob-drawer__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main-1);
  letter-spacing: 0.03em;
  line-height: 1;
}
.mob-drawer__close {
  width: 36px;
  height: 36px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main-1);
  flex-shrink: 0;
}
.mob-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}
.mob-drawer__nav a, .mob-drawer__nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-main-1);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}
.mob-drawer__nav a:hover, .mob-drawer__nav li a:hover {
  background: var(--color-main-2);
}
.mob-drawer__nav a svg, .mob-drawer__nav li a svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.mob-drawer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 20px;
  margin-top: auto;
}
.mob-drawer__socials a {
  color: var(--color-main-1);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mob-drawer__socials a svg {
  width: 22px;
  height: 22px;
}
.mob-drawer__socials-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}
.mob-drawer__contacts-icon {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.mob-drawer__contacts-icon:hover {
  color: #fff;
}
.mob-drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mob-drawer__overlay.is-visible {
  display: block;
}
@media (max-width: 900px) {
  .header-desktop .home-links a, .header-desktop .home-links li a {
    font-size: 13px;
    padding: 7px 8px;
  }
  .header-topbar .tagline {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
  .header-topbar {
    display: none;
  }
}
#footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  display: inline-flex;
  text-decoration: none;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-desc {
  font-size: 13px;
  color: var(--color-main-1);
  line-height: 1.6;
  max-width: 260px;
}
.footer-desc em {
  font-style: normal;
  font-weight: 500;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  color: var(--color-main-1);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  font-size: 14px;
  color: var(--color-main-1);
  text-decoration: none;
  line-height: 1.4;
}
.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contacts li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-main-1);
  text-decoration: none;
  line-height: 1.4;
}
.footer-contacts li a img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-contacts {
    align-items: stretch;
  }
  .footer-contacts li {
    width: 100%;
  }
  .footer-contacts li a {
    background: var(--color-main-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 20px;
    justify-content: center;
    gap: 12px;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}
.footer-dev {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}
.footer-dev a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 12px;
}
.footer-dev a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.7;
}
.footer-payments img {
  height: 16px;
  width: auto;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 40px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col--brand {
    grid-column: auto;
    align-items: center;
    text-align: center;
  }
  .footer-desc {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
    gap: 20px;
  }
  .footer-socials a svg {
    width: 24px;
    height: 24px;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    align-items: stretch;
  }
  .footer-contacts li {
    width: 100%;
  }
  .footer-contacts li a {
    background: var(--color-main-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 20px;
    justify-content: center;
    gap: 12px;
  }
  .footer-bottom {
    padding: 16px 0;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-dev {
    text-align: center;
  }
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 22px;
  }
}
.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.slider-btn svg {
  stroke: var(--color-main-1);
}
.slider-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover {
  color: var(--color-main-1);
}
.hero {
  position: relative;
  width: 100%;
  height: 800px;
  min-height: 500px;
  background-image: url('../img/banner.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero__text {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-main-1);
  line-height: 1.7;
  max-width: 700px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--color-main-1);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.hero__btn:hover {
  opacity: 0.85;
  color: #000;
}
@media (max-width: 767px) {
  .hero__content {
    padding-bottom: 48px;
  }
  .hero__text {
    font-size: 15px;
  }
}
.home-cats {
  padding: 80px 0;
}
.home-cats .section-title {
  margin-bottom: 32px;
}
.home-cats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.home-cats__item {
  position: relative;
  display: block;
  width: calc((100% - 24px) / 3);
  aspect-ratio: 1.3333333333;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.home-cats__item:hover .home-cats__overlay {
  background: rgba(0, 0, 0, 0.5);
}
.home-cats__item:hover .home-cats__img {
  transform: scale(1.04);
}
.home-cats__img {
  position: absolute;
  inset: 0;
  background-color: var(--color-main-2);
  transition: transform 0.4s ease;
  overflow: hidden;
}
.home-cats__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-cats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s;
}
.home-cats__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main-1);
  letter-spacing: 0.03em;
  z-index: 1;
}
@media (max-width: 600px) {
  .home-cats {
    padding: 48px 0;
  }
  .home-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .home-cats__name {
    font-size: 14px;
    bottom: 12px;
    left: 12px;
  }
}
.home-stats {
  background: var(--color-main-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
  margin-bottom: 80px;
}
.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.home-stats__value {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-stats__num, .home-stats__suffix {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-main-1);
  line-height: 1;
  display: inline;
}
.home-stats__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main-1);
  line-height: 1.3;
}
.home-stats__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .home-stats {
    padding: 36px 0;
    margin-bottom: 48px;
  }
  .home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.home-products {
  padding: 0 0 80px;
}
.home-products__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.home-products__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.home-products__slider {
  overflow: hidden;
  position: relative;
}
.home-products__slider .swiper-wrapper {
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.home-products__slider .swiper-slide {
  flex-shrink: 0;
  width: calc(25% - 12px);
}
@media (max-width: 900px) {
  .home-products__slider .swiper-slide {
    width: calc(33.333% - 11px);
  }
}
@media (max-width: 600px) {
  .home-products {
    padding-bottom: 48px;
  }
  .home-products__slider .swiper-slide {
    width: calc(50% - 5px);
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 10px;
}
.product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.product-card__img {
  position: relative;
  aspect-ratio: 0.75;
  background: var(--color-main-2);
  border-radius: 10px;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-main-1);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
.product-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main-1);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main-1);
  line-height: 1;
}
.product-card__price span, .product-card__price ins, .product-card__price del {
  font-size: inherit;
  color: inherit;
}
.product-card__price del {
  opacity: 0.4;
  font-size: 12px;
}
.home-utp {
  background: var(--color-main-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
  margin-bottom: 80px;
}
.home-utp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-utp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.home-utp__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main-1);
  flex-shrink: 0;
}
.home-utp__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main-1);
  line-height: 1.3;
}
.home-utp__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .home-utp {
    padding: 36px 0;
    margin-bottom: 48px;
  }
  .home-utp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.home-about {
  padding: 0 0 100px;
}
.home-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-about__text .section-title {
  margin-bottom: 0;
}
.home-about__text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.home-about__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-main-1);
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}
.home-about__btn:hover {
  background: var(--color-main-2);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-main-1);
}
.home-about__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.3333333333;
}
.home-about__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: about-fade 32s infinite;
}
.home-about__img img:nth-child(1) {
  animation-delay: 0s;
}
.home-about__img img:nth-child(2) {
  animation-delay: 4s;
}
.home-about__img img:nth-child(3) {
  animation-delay: 8s;
}
.home-about__img img:nth-child(4) {
  animation-delay: 12s;
}
.home-about__img img:nth-child(5) {
  animation-delay: 16s;
}
.home-about__img img:nth-child(6) {
  animation-delay: 20s;
}
.home-about__img img:nth-child(7) {
  animation-delay: 24s;
}
.home-about__img img:nth-child(8) {
  animation-delay: 28s;
}
@keyframes about-fade {
  0% {
    opacity: 1;
  }
  9.38% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .home-about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .home-about {
    padding-bottom: 60px;
  }
}
.shop-head {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.shop-head .container {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.shop-head__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.shop-head__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 700px) {
  .shop-head__title {
    font-size: 22px;
  }
}
.shop-layout {
  padding: 48px 0 80px;
}
.shop-layout__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .shop-layout__inner {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .shop-layout__inner {
    grid-template-columns: 1fr;
  }
}
.shop-sidebar {
  position: sticky;
  top: 24px;
}
@media (max-width: 700px) {
  .shop-sidebar {
    position: static;
  }
}
.shop-sidebar__toggle {
  display: none;
  width: 100%;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-main-1);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
}
@media (max-width: 700px) {
  .shop-sidebar__toggle {
    display: flex;
  }
}
.shop-sidebar__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 700px) {
  .shop-sidebar__body {
    display: none;
  }
  .shop-sidebar__body.is-open {
    display: flex;
  }
}
.shop-filter {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.shop-filter:first-child {
  padding-top: 0;
}
.shop-filter__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.shop-filter__select-wrap {
  position: relative;
}
.shop-filter__select-wrap select {
  width: 100%;
  appearance: none;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-main-1);
  font-size: 13px;
  padding: 9px 34px 9px 12px;
  cursor: pointer;
  outline: none;
}
.shop-filter__select-wrap select:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.shop-filter__chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.4);
}
.shop-filter__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  user-select: none;
}
.shop-filter__check input[type="checkbox"] {
  display: none;
}
.shop-filter__check-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.shop-filter__check input:checked + .shop-filter__check-box {
  background: var(--color-main-1);
  border-color: var(--color-main-1);
}
.shop-filter__check input:checked + .shop-filter__check-box::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.shop-filter__check:hover .shop-filter__check-box {
  border-color: rgba(255, 255, 255, 0.5);
}
.shop-filter__check-label {
  font-size: 13px;
  color: var(--color-main-1);
  flex: 1;
}
.shop-filter__check-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.shop-filter__price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-filter__price input {
  flex: 1;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-main-1);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  width: 100%;
}
.shop-filter__price input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.shop-filter__price input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.shop-filter__price-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  flex-shrink: 0;
}
.shop-filter__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.shop-filter__search-wrap svg {
  position: absolute;
  left: 12px;
  stroke: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.shop-filter__search-wrap input {
  width: 100%;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-main-1);
  font-size: 13px;
  padding: 9px 12px 9px 36px;
  outline: none;
}
.shop-filter__search-wrap input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}
.shop-filter__search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.shop-filter__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
}
.shop-filter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: var(--color-main-1);
  color: var(--color-background);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.shop-filter__btn:hover {
  opacity: 0.85;
}
.shop-filter__reset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.shop-filter__reset:hover {
  color: var(--color-main-1);
  border-color: rgba(255, 255, 255, 0.3);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.shop-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}
.shop-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.shop-pagination .page-numbers:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-main-1);
}
.shop-pagination .page-numbers.current {
  background: var(--color-main-1);
  border-color: var(--color-main-1);
  color: var(--color-background);
  font-weight: 600;
}
.shop-pagination .page-numbers svg {
  stroke: currentColor;
}
.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 0;
  text-align: center;
}
.shop-empty svg {
  stroke: rgba(255, 255, 255, 0.15);
}
.shop-empty p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}
.product-page {
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  .product-page {
    padding: 40px 0 60px;
  }
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.product-gallery {
  position: sticky;
  top: 100px;
  max-width: 634px;
  width: 100%;
}
@media (max-width: 900px) {
  .product-gallery {
    position: static;
    max-width: 100%;
  }
}
.product-gallery__main {
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-main-2);
  aspect-ratio: 0.75;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-info__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
}
.product-info__back svg {
  stroke: currentColor;
  flex-shrink: 0;
}
.product-info__back:hover {
  color: var(--color-main-1);
}
.product-info__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-main-1);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-info__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-main-1);
  line-height: 1;
}
.product-info__price span, .product-info__price ins {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}
.product-info__price del {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-right: 8px;
}
.product-info__short-desc p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.product-info__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info__add-btn {
  flex: 1;
  min-width: 0;
  height: 52px;
  border-radius: 12px;
  background: var(--color-main-1);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.product-info__add-btn svg {
  stroke: currentColor;
}
.product-info__add-btn:hover {
  opacity: 0.88;
}
.product-info__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.product-qty {
  display: flex;
  align-items: center;
  height: 52px;
  width: 132px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-main-2);
  overflow: hidden;
}
.product-qty__btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  color: var(--color-main-1);
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.15s;
}
.product-qty__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}
.product-qty__input {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-main-1);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}
.product-qty__input::-webkit-inner-spin-button, .product-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-attrs-row {
  display: flex;
  gap: 12px;
  padding-top: 22px;
}
@media (max-width: 768px) {
  .product-attrs-row {
    flex-direction: column;
    padding-top: 0;
  }
}
.product-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.product-dropdown {
  position: relative;
  flex: 0 0 calc(50% - 6px);
}
@media (max-width: 768px) {
  .product-dropdown {
    flex: none;
    width: 100%;
  }
}
.product-dropdown__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 52px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--color-main-1);
  font-size: 14px;
  font-weight: 500;
  padding: 0 40px 0 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.product-dropdown__select option {
  background: #1a1a1a;
  color: #fff;
}
.product-dropdown__select:focus {
  border-color: rgba(255, 255, 255, 0.35);
}
.product-dropdown__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.5);
}
.product-dropdown--size {
  position: relative;
}
@media (max-width: 768px) {
  .product-dropdown--size {
    padding-top: 22px;
  }
}
.size-guide-btn {
  position: absolute;
  top: -22px;
  right: 0;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
@media (max-width: 768px) {
  .size-guide-btn {
    top: 0;
  }
}
.size-guide-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
  opacity: 0.9;
}
.size-guide-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.size-guide-btn:hover {
  color: var(--color-main-1);
}
.size-guide-btn:hover::after {
  opacity: 1;
}
.size-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.size-modal.is-open {
  display: block;
}
.size-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.size-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
}
.size-modal__box img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
@media (max-width: 768px) {
  .size-modal__box {
    width: 96vw;
    max-width: 96vw;
    max-height: 85vh;
    border-radius: 12px;
  }
  .size-modal__box img {
    width: 100%;
    max-height: 85vh;
  }
}
.size-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.size-modal__close svg {
  stroke: #fff;
}
.size-modal__close:hover {
  background: rgba(0, 0, 0, 0.9);
}
.product-desc {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.product-desc p, .product-desc li {
  font-size: 15px;
  line-height: 1.75;
}
.product-desc strong {
  color: var(--color-main-1);
  font-weight: 600;
}
.product-desc ul, .product-desc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-desc h2, .product-desc h3, .product-desc h4 {
  color: var(--color-main-1);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}
.cart-page-hero, .checkout-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-page-hero h2, .checkout-hero h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: -0.02em;
}
@media (max-width: 600px) {
  .cart-page-hero, .checkout-hero {
    padding: 32px 0 24px;
  }
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 0;
  text-align: center;
}
.cart-empty p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 600px) {
  .cart-empty {
    padding: 60px 0;
  }
}
.cart-continue-btn, .cart-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 12px;
  background: var(--color-main-1);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cart-continue-btn:hover, .cart-checkout-btn:hover {
  opacity: 0.88;
}
.cart-page-content {
  padding: 40px 0 80px;
}
@media (max-width: 600px) {
  .cart-page-content {
    padding: 24px 0 60px;
  }
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr 132px auto auto;
  grid-template-areas: "img info qty subtotal remove";
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cart-item__image {
  grid-area: img;
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main-1);
  line-height: 1.4;
}
.cart-item__unit-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.cart-item__qty {
  grid-area: qty;
}
.cart-item__subtotal {
  grid-area: subtotal;
  text-align: right;
}
.cart-item__subtotal .product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-1);
}
.cart-item__subtotal .product-price .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}
.cart-item__remove {
  grid-area: remove;
}
.cart-item__remove .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.cart-item__remove .remove:hover {
  background: rgba(255, 60, 60, 0.15);
  color: #ff6060;
}
.cart-item__remove .remove svg {
  display: block;
}
@media (max-width: 700px) {
  .cart-item {
    grid-template-columns: 80px 1fr auto;
    grid-template-areas: "img info remove" "img qty subtotal";
    gap: 12px;
  }
  .cart-item__image {
    width: 80px;
    height: 80px;
  }
  .cart-item__subtotal {
    text-align: left;
  }
}
@media (max-width: 420px) {
  .cart-item {
    grid-template-columns: 70px 1fr auto;
  }
  .cart-item__image {
    width: 70px;
    height: 70px;
  }
  .cart-item__name {
    font-size: 14px;
  }
}
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
}
.cart-footer__total {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cart-footer__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}
.cart-footer__amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-main-1);
}
.cart-footer__amount .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}
@media (max-width: 560px) {
  .cart-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .cart-footer__amount {
    font-size: 26px;
  }
  .cart-footer .cart-checkout-btn {
    width: 100%;
  }
}
.checkout-content {
  padding: 40px 0 80px;
}
.checkout-content .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkout-content form.checkout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .checkout-content {
    padding: 24px 0 60px;
  }
}
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 32px;
}
.checkout-fields .form-row {
  margin: 0;
  padding: 0;
}
.checkout-fields .form-row label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.checkout-fields .form-row input[type="text"], .checkout-fields .form-row input[type="email"], .checkout-fields .form-row input[type="tel"], .checkout-fields .form-row input[type="number"], .checkout-fields .form-row select, .checkout-fields .form-row textarea {
  width: 100%;
  height: 48px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-main-1);
  font-size: 15px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.checkout-fields .form-row input[type="text"]:focus, .checkout-fields .form-row input[type="email"]:focus, .checkout-fields .form-row input[type="tel"]:focus, .checkout-fields .form-row input[type="number"]:focus, .checkout-fields .form-row select:focus, .checkout-fields .form-row textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
.checkout-fields .form-row input[type="text"]::placeholder, .checkout-fields .form-row input[type="email"]::placeholder, .checkout-fields .form-row input[type="tel"]::placeholder, .checkout-fields .form-row input[type="number"]::placeholder, .checkout-fields .form-row select::placeholder, .checkout-fields .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.checkout-fields .form-row textarea {
  height: 100px;
  padding: 12px 14px;
  resize: none;
}
.checkout-fields .form-row select {
  appearance: none;
  cursor: pointer;
}
.checkout-fields .form-row.form-row-wide, .checkout-fields .form-row.notes {
  grid-column: 1 / -1;
}
.checkout-fields .form-row abbr[title] {
  color: rgba(255, 80, 80, 0.8);
}
.checkout-fields .form-row .woocommerce-invalid-text {
  font-size: 12px;
  color: #ff6060;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .checkout-fields {
    gap: 12px;
    margin-bottom: 24px;
  }
  .checkout-fields .form-row input[type="text"], .checkout-fields .form-row input[type="email"], .checkout-fields .form-row input[type="tel"], .checkout-fields .form-row input[type="number"], .checkout-fields .form-row select {
    height: 44px;
    font-size: 16px;
  }
}
.checkout-shipping .woocommerce-additional-fields {
  display: none;
}
.checkout-shipping {
  width: 100%;
  max-width: 560px;
  margin-bottom: 24px;
}
.checkout-shipping h3 {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
}
.checkout-shipping #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-shipping #shipping_method li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-shipping #shipping_method li input[type="radio"] {
  accent-color: var(--color-main-1);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.checkout-shipping #shipping_method li label {
  font-size: 15px;
  color: var(--color-main-1);
  cursor: pointer;
}
.checkout-shipping .nova-poshta-fields, .checkout-shipping .shipping_nova_poshta, .checkout-shipping [class*="nova-poshta"] {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-shipping .nova-poshta-fields label, .checkout-shipping .shipping_nova_poshta label, .checkout-shipping [class*="nova-poshta"] label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.checkout-shipping .nova-poshta-fields input[type="text"], .checkout-shipping .nova-poshta-fields select, .checkout-shipping .shipping_nova_poshta input[type="text"], .checkout-shipping .shipping_nova_poshta select, .checkout-shipping [class*="nova-poshta"] input[type="text"], .checkout-shipping [class*="nova-poshta"] select {
  width: 100%;
  height: 48px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-main-1);
  font-size: 15px;
  padding: 0 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.checkout-shipping .nova-poshta-fields input[type="text"]:focus, .checkout-shipping .nova-poshta-fields select:focus, .checkout-shipping .shipping_nova_poshta input[type="text"]:focus, .checkout-shipping .shipping_nova_poshta select:focus, .checkout-shipping [class*="nova-poshta"] input[type="text"]:focus, .checkout-shipping [class*="nova-poshta"] select:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
.checkout-shipping .nova-poshta-fields input[type="text"]::placeholder, .checkout-shipping .nova-poshta-fields select::placeholder, .checkout-shipping .shipping_nova_poshta input[type="text"]::placeholder, .checkout-shipping .shipping_nova_poshta select::placeholder, .checkout-shipping [class*="nova-poshta"] input[type="text"]::placeholder, .checkout-shipping [class*="nova-poshta"] select::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.checkout-submit {
  width: 100%;
  max-width: 560px;
}
.checkout-submit .cart-checkout-btn {
  width: 100%;
  height: 56px;
  font-size: 16px;
}
@media (max-width: 600px) {
  .checkout-submit .cart-checkout-btn {
    height: 52px;
    font-size: 15px;
  }
}
.contacts-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contacts-hero h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: -0.02em;
}
@media (max-width: 600px) {
  .contacts-hero {
    padding: 32px 0 24px;
  }
}
.contacts-content {
  padding: 48px 0 80px;
}
.contacts-content .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .contacts-content {
    padding: 32px 0 60px;
  }
}
.contacts-group {
  width: 100%;
  max-width: 640px;
  margin-bottom: 48px;
}
.contacts-group:last-child {
  margin-bottom: 0;
}
.contacts-group__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.contacts-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.contacts-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}
.contacts-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-main-1);
}
.contacts-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.contacts-card__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.contacts-card__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main-1);
}
.contacts-card__arrow {
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.contacts-card:hover .contacts-card__arrow {
  color: rgba(255, 255, 255, 0.7);
  transform: translateX(4px);
}
@media (max-width: 480px) {
  .contacts-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .contacts-card__icon {
    width: 38px;
    height: 38px;
  }
  .contacts-card__value {
    font-size: 15px;
  }
  .contacts-card__arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  .contacts-group {
    margin-bottom: 32px;
  }
}
.page-404 {
  min-height: calc(100vh - 458px);
  display: flex;
  align-items: center;
}
.page-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.page-404__code {
  font-size: clamp(100px, 16vw, 180px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-main-1);
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
.page-404__title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: var(--color-main-1);
  margin-bottom: 30px;
}
.page-404__actions {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .page-404__actions {
    gap: 16px;
    flex-direction: column;
    width: 100%;
  }
}
.page-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-404__btn:hover {
  opacity: 0.8;
}
@media (max-width: 480px) {
  .page-404__btn {
    width: 100%;
    height: 52px;
  }
}
.page-404__btn--primary {
  background: var(--color-main-1);
  color: #000;
}
.page-404__btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-main-1);
}
.page-404__btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.woocommerce-message, .woocommerce-error, .woocommerce-info, .woocommerce-notices-wrapper, .wc-block-components-notice-banner {
  display: none !important;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  width: 320px !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
  margin-left: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}
.moove-gdpr-info-bar-container {
  padding: inherit !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
  flex-direction: column !important;
  padding: 20px !important;
  align-items: flex-start !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
  padding-left: 0 !important;
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  flex: 1 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1 !important;
  margin: 0 !important;
  transition: opacity 0.2s !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
  opacity: 0.85 !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.moove-gdpr-infobar-allow-all {
  background: #fff !important;
  color: #000 !important;
}
.moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.moove-gdpr-infobar-reject-btn, .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.moove-gdpr-infobar-settings-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.moove-gdpr-info-bar-content p {
  margin-bottom: 16px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}
@media (max-width: 600px) {
  #moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}
#wpadminbar, #wpadminbar * {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif !important;
}
.legal-hero {
  padding: 60px 0 40px;
}
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-main-1);
}
.legal-content {
  padding: 0 0 80px;
}
.legal-content .section-inner {
  max-width: 800px;
}
.legal-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.legal-block {
  margin-bottom: 48px;
}
.legal-block h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-main-1);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main-1);
  margin: 20px 0 10px;
}
.legal-block p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.legal-block ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.legal-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}
.legal-block a {
  color: var(--color-main-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover {
  opacity: 0.7;
}
.legal-block strong {
  color: var(--color-main-1);
  font-weight: 600;
}
.np-city-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 10px 10px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.np-city-dropdown li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-main-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.np-city-dropdown li:last-child {
  border-bottom: none;
}
.np-city-dropdown li:hover {
  background: rgba(255, 255, 255, 0.07);
}
.thankyou-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.thankyou-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: -0.02em;
}
@media (max-width: 600px) {
  .thankyou-hero {
    padding: 32px 0 24px;
  }
}
.thankyou-content {
  padding: 40px 0 80px;
}
.thankyou-content .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  gap: 40px;
}
@media (max-width: 600px) {
  .thankyou-content {
    padding: 24px 0 60px;
  }
}
.thankyou-message {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thankyou-message p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.thankyou-message p strong {
  color: var(--color-main-1);
  font-weight: 600;
}
.thankyou-details {
  width: 100%;
  background: var(--color-main-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.thankyou-details h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-1);
  letter-spacing: -0.01em;
}
.thankyou-details__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.thankyou-details__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.thankyou-details__item:last-child {
  border-bottom: none;
}
.thankyou-details__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-main-1);
}
.thankyou-details__qty {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.thankyou-details__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main-1);
  white-space: nowrap;
}
.thankyou-details__price .woocommerce-Price-currencySymbol {
  font-weight: 600;
}
.thankyou-details__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.thankyou-details__total span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.thankyou-details__total strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main-1);
}
.thankyou-details__delivery {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.thankyou-details__delivery p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .thankyou-details {
    padding: 20px 16px;
    border-radius: 12px;
  }
}
#wpadminbar .ab-icon::before, #wpadminbar .dashicons::before, #wpadminbar .dashicons-before::before {
  font-family: dashicons !important;
}
