:root {
  --ink: #101114;
  --ink-soft: #191b20;
  --paper: #fff;
  --mist: #f2f3f5;
  --line: #dfe1e5;
  --muted: #686c75;
  --electric: #1267f4;
  --electric-dark: #0754d8;
  --acid: #d7ff3f;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-poster: 0 28px 70px rgba(0, 0, 0, .34), 0 4px 14px rgba(0, 0, 0, .24);
  --shell: min(1440px, calc(100% - 64px));
  --font: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-content {
  min-height: 52vh;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
}

.promo-bar {
  position: relative;
  z-index: 80;
  background: var(--electric);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.promo-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.promo-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid rgba(16, 17, 20, .08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(16,17,20,.08);
}

.site-header__main {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto auto minmax(210px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-grid;
  align-content: center;
  flex: 0 0 auto;
  min-width: 152px;
  line-height: 1;
}

.brand__word {
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -.08em;
  transform: skew(-8deg);
}

.brand__tag {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .2em;
}

.brand .custom-logo-link,
.brand .custom-logo {
  display: block;
  max-width: 170px;
  max-height: 54px;
  width: auto;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav__list a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a {
  color: var(--electric);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.header-search svg {
  position: absolute;
  left: 16px;
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  pointer-events: none;
}

.header-search input[type="search"] {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 48px;
  border: 1px solid #cfd2d8;
  border-radius: 12px;
  outline: none;
  background: #f8f9fa;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.header-search input[type="search"]:focus {
  border-color: var(--electric);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(18,103,244,.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions > a {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
}

.header-actions > a:hover {
  background: var(--mist);
}

.header-actions svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-cart__count {
  position: absolute;
  top: 1px;
  right: -1px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 9px;
  background: var(--electric);
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  font-weight: 850;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-2px);
}

.button--electric,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce div.product form.cart .button {
  background: var(--electric);
  color: var(--paper);
  box-shadow: 0 10px 25px rgba(18,103,244,.22);
}

.button--electric:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce div.product form.cart .button:hover {
  background: var(--electric-dark);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
}

.text-link span {
  font-size: 1.3em;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.kicker::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.kicker--dark {
  color: var(--electric);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 77% 18%, rgba(18,103,244,.46), transparent 26%),
    radial-gradient(circle at 52% 100%, rgba(215,255,63,.10), transparent 30%),
    linear-gradient(135deg, #111318 0%, #171922 58%, #0c0d10 100%);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  font-size: clamp(48px, 5.2vw, 84px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .95;
  text-wrap: balance;
}

.hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 19px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero__actions .text-link {
  color: var(--paper);
}

.hero__proof {
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.hero__proof li {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
}

.hero__proof strong {
  font-size: 27px;
  line-height: 1;
}

.hero__proof span {
  max-width: 82px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__gallery {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.hero__glow {
  position: absolute;
  top: 14%;
  left: 22%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(18,103,244,.38);
  filter: blur(90px);
}

.hero-poster {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 36%;
  aspect-ratio: .704;
  border-radius: 5px;
  background: #252936;
  box-shadow: var(--shadow-poster);
  transition: transform .28s ease, filter .28s ease;
}

.hero-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,.22), transparent 22%, transparent 72%, rgba(0,0,0,.15));
  content: "";
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster--1 {
  z-index: 3;
  top: 4%;
  left: 34%;
  width: 41%;
  transform: rotateY(-5deg) rotateZ(1deg);
}

.hero-poster--2 {
  z-index: 2;
  top: 20%;
  left: 3%;
  transform: rotateY(8deg) rotateZ(-6deg);
  filter: brightness(.82);
}

.hero-poster--3 {
  z-index: 1;
  top: 26%;
  right: -2%;
  transform: rotateY(-8deg) rotateZ(7deg);
  filter: brightness(.72);
}

.hero__gallery:hover .hero-poster--1 {
  transform: translateY(-8px) rotateY(-3deg) rotateZ(0);
}

.hero__gallery:hover .hero-poster--2 {
  transform: translate(-8px, -2px) rotateY(6deg) rotateZ(-7deg);
}

.hero__gallery:hover .hero-poster--3 {
  transform: translate(8px, -2px) rotateY(-6deg) rotateZ(8deg);
}

.hero__gallery--empty {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
}

.hero__placeholder {
  max-width: 240px;
  color: rgba(255,255,255,.5);
  font-weight: 800;
  text-align: center;
}

.category-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.category-ribbon__inner {
  display: flex;
  overflow-x: auto;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  scrollbar-width: none;
}

.category-ribbon__inner::-webkit-scrollbar {
  display: none;
}

.category-ribbon__label {
  margin-right: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.category-ribbon a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: border-color .18s, background .18s;
}

.category-ribbon a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.home-section {
  padding-block: 100px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2,
.process-section h2,
.catalog-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 930;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.section-heading--light {
  color: var(--paper);
}

.home-section--collections {
  overflow: hidden;
  background: var(--ink);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #313849, #11141c);
  isolation: isolate;
}

.collection-card--2 {
  background: linear-gradient(145deg, #3e204b, #171019);
}

.collection-card--3 {
  background: linear-gradient(145deg, #244d4e, #0f191a);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.82));
}

.collection-card__content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  color: var(--paper);
}

.collection-card__content small {
  margin-bottom: 8px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.collection-card__content strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.collection-card__content em {
  margin-top: 18px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.process-section {
  background: #f4f5f7;
}

.process-section__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.process-section__intro > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #d4d6db;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.process-list strong {
  font-size: 18px;
}

.process-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

/* WooCommerce product cards */
.woocommerce ul.products,
ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 22px;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
ul.products li.product {
  position: relative;
  float: none;
  width: auto;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products li.product a img,
ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 841;
  margin: 0 0 17px;
  object-fit: contain;
  border-radius: 5px;
  background: #e6e7e9;
  box-shadow: 0 10px 28px rgba(12,15,20,.13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover a img,
ul.products li.product:hover a img {
  transform: translateY(-7px);
  box-shadow: 0 22px 40px rgba(12,15,20,.22);
}

.product-card__eyebrow {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
  display: none;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.woocommerce ul.products li.product .price del {
  color: var(--muted);
  font-weight: 600;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins {
  color: var(--electric);
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 77px;
  left: 12px;
  min-height: 44px;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  background: rgba(16,17,20,.94);
  color: var(--paper);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.woocommerce ul.products li.product:hover .button,
ul.products li.product:hover .button {
  opacity: 1;
  transform: translateY(0);
}

.woocommerce ul.products li.product .add_to_cart_button,
ul.products li.product .add_to_cart_button {
  display: none !important;
}

.woocommerce span.onsale {
  z-index: 4;
  top: 12px;
  right: auto;
  left: 12px;
  min-width: auto;
  min-height: auto;
  padding: 6px 9px;
  margin: 0;
  border-radius: 5px;
  background: var(--electric);
  color: var(--paper);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.empty-state,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  padding: 22px 24px;
  border: 0;
  border-left: 4px solid var(--electric);
  border-radius: var(--radius-sm);
  background: var(--mist);
}

/* Catalog */
.catalog-page,
.single-product-page,
.content-page {
  padding-top: 34px;
  padding-bottom: 100px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 12px;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-breadcrumb a {
  color: var(--ink);
}

.catalog-hero {
  max-width: 900px;
  padding: 32px 0 48px;
}

.catalog-hero .term-description {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.catalog-filters {
  position: sticky;
  top: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.admin-bar .catalog-filters {
  top: 162px;
}

.catalog-filters__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-filters__top h2 {
  margin: 0;
  font-size: 19px;
}

.catalog-filters__top a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
}

.shop-filter-widget {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.shop-filter-widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-filter-title {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.shop-filter-widget ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shop-filter-widget li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #34363b;
  font-size: 13px;
}

.shop-filter-widget li a:hover {
  color: var(--electric);
}

.shop-filter-widget li small {
  color: #9a9da3;
}

.attribute-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.attribute-pills a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.attribute-pills a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.catalog-toolbar {
  min-height: 48px;
  margin-bottom: 24px;
}

.catalog-preview-note {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  margin-bottom: 24px;
  border-left: 3px solid var(--electric);
  border-radius: 8px;
  background: #eef4ff;
  color: #24416f;
  font-size: 12px;
}

.catalog-preview-note strong {
  color: var(--electric-dark);
  font-size: 13px;
}

.catalog-toolbar .woocommerce-result-count {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-ordering select {
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.catalog-results .products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 54px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Product detail */
.single-product-page {
  max-width: 1440px;
}

.woocommerce div.product {
  margin-bottom: 0;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 80px;
}

.woocommerce div.product div.images {
  width: 55%;
  padding: 34px;
  border-radius: var(--radius-md);
  background: #f3f4f6;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce div.product div.images .flex-viewport {
  overflow: hidden;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
}

.woocommerce div.product div.images img {
  max-height: 720px;
  width: auto;
  margin: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-poster);
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 70px;
}

.woocommerce div.product div.summary {
  position: static;
  top: auto;
  width: 39%;
  padding: 20px 0 0;
}

.admin-bar .woocommerce div.product div.summary {
  top: auto;
}

.woocommerce div.product .product_title {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 930;
  letter-spacing: -.055em;
  line-height: 1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
}

.woocommerce-product-details__short-description {
  color: #4e525a;
  font-size: 15px;
  line-height: 1.65;
}

.woocommerce div.product form.cart {
  padding: 24px 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 18px;
}

.woocommerce div.product form.cart .variations tr {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  margin-bottom: 11px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0;
  line-height: 1.3;
}

.woocommerce div.product form.cart .variations label {
  font-size: 13px;
  font-weight: 850;
}

.woocommerce div.product form.cart .variations select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfd2d8;
  border-radius: 8px;
  background: var(--paper);
}

.woocommerce div.product form.cart .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
}

.variation-ui-enhanced .variations {
  position: absolute !important;
  overflow: hidden;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.displate-variant-picker {
  display: grid;
  gap: 22px;
  margin-bottom: 20px;
}

.displate-option-group {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.displate-option-group__legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
}

.displate-option-group__legend span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.displate-option-group__legend small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.displate-option-group__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 9px;
}

.displate-option-group--size .displate-option-group__choices {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.displate-option-group--size .displate-option-card {
  flex-direction: column;
  text-align: center;
}

.displate-option-group--size .displate-option-card strong {
  font-size: 19px;
}

.displate-option-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 11px 12px;
  border: 1px solid #cfd2d8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.displate-option-card:hover:not(:disabled) {
  border-color: #88909c;
  transform: translateY(-1px);
}

.displate-option-card.is-selected {
  border-color: var(--blue);
  background: #f5f9ff;
  box-shadow: 0 0 0 1px var(--blue);
}

.displate-option-card.is-selected::after {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  content: '✓';
  font-size: 10px;
  font-weight: 900;
}

.displate-option-card:focus-visible {
  outline: 3px solid rgba(18, 103, 244, .25);
  outline-offset: 2px;
}

.displate-option-card:disabled,
.displate-option-card.is-disabled {
  border-color: #e3e5e9;
  background: #f4f5f6;
  color: #a4a8af;
  cursor: not-allowed;
  opacity: .72;
}

.displate-option-card strong,
.displate-option-card small {
  display: block;
}

.displate-option-card strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.displate-option-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.2;
}

.displate-option-card:disabled small {
  color: inherit;
}

.displate-option-group--material .displate-option-card {
  justify-content: flex-start;
  gap: 11px;
  min-height: 72px;
}

.displate-option-card__swatch {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(12, 15, 20, .12);
  border-radius: 50%;
  background: linear-gradient(145deg, #f5f5f4, #aeb1b4);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.85);
}

.displate-option-card[data-appearance="matte"] .displate-option-card__swatch {
  background: linear-gradient(145deg, #f2f2ef, #a7aaad);
}

.displate-option-card[data-appearance="gloss"] .displate-option-card__swatch {
  background: linear-gradient(135deg, #10131a 0 44%, #edf5ff 45% 58%, #4e6f97 59% 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.3), 0 2px 7px rgba(12,15,20,.18);
}

.displate-option-card__copy {
  min-width: 0;
}

.woocommerce .quantity .qty {
  width: 64px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.woocommerce div.product form.cart .button {
  min-width: 220px;
  height: 50px;
}

.woocommerce div.product .product_meta {
  padding-top: 18px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 5px;
}

.product-assurances {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-assurances > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}

.product-assurances > div:last-child {
  border-bottom: 0;
}

.product-assurances strong {
  font-size: 12px;
}

.product-assurances span {
  color: var(--muted);
  font-size: 11px;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  clear: both;
}

.woocommerce div.product .woocommerce-tabs {
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 32px;
  padding: 0;
  margin: 0 0 32px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0;
  margin: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--electric);
  background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 850;
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 850px;
  margin: 0;
  color: #444850;
  font-size: 16px;
  line-height: 1.75;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 920;
  letter-spacing: -.045em;
}

.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  padding: 76px 0 20px;
  border-top: 1px solid var(--line);
}

/* Cart, account, checkout and generic content */
.content-page {
  max-width: 1080px;
}

.content-page article > header h1,
.content-page__header h1,
.woocommerce-cart .entry-content > h1,
.woocommerce-checkout .entry-content > h1 {
  margin: 24px 0 42px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 930;
  letter-spacing: -.055em;
  line-height: 1;
}

.entry-content {
  font-size: 17px;
  line-height: 1.75;
}

.woocommerce table.shop_table {
  border-color: var(--line);
  border-radius: 12px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #cfd2d8;
  border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.post-card time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.post-card h2 {
  margin: 9px 0;
  font-size: 23px;
  line-height: 1.15;
}

.error-page {
  min-height: 65vh;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.error-page__code {
  display: block;
  color: var(--electric);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .7;
}

.error-page h1 {
  margin: 40px 0 12px;
  font-size: 44px;
  letter-spacing: -.05em;
}

.error-page p {
  margin: 0 0 30px;
  color: var(--muted);
}

.service-strip {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 120px;
}

.service-strip__grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.service-strip__grid > div:last-child {
  border-right: 0;
}

.service-strip__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  font-size: 19px;
  font-weight: 900;
}

.service-strip p {
  display: grid;
  margin: 0;
}

.service-strip strong {
  font-size: 13px;
}

.service-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 76px 0 28px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .8fr 1.15fr;
  gap: 58px;
}

.brand--light {
  color: var(--paper);
}

.site-footer__brand p,
.site-footer__cta p {
  max-width: 320px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li,
.site-footer li a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.site-footer li a:hover {
  color: var(--paper);
}

.site-footer__cta .button {
  min-height: 44px;
  margin-top: 10px;
  font-size: 13px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1160px); }
  .site-header__main { grid-template-columns: auto 1fr auto; gap: 18px; }
  .primary-nav { display: none; }
  .header-search { max-width: none; }
  .hero__grid { grid-template-columns: .9fr 1.1fr; gap: 30px; }
  .hero h1 { font-size: clamp(46px, 6vw, 70px); }
  .woocommerce ul.products, ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-results .products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .site-header__main { min-height: 70px; grid-template-columns: auto 1fr auto auto; }
  .menu-toggle { display: block; grid-column: 4; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .header-search { grid-column: 2; grid-row: 1; }
  .primary-nav {
    position: fixed;
    z-index: 100;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 30px 20px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity .2s, visibility .2s, transform .2s;
  }
  .admin-bar .primary-nav { top: 150px; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav__list { display: grid; gap: 0; }
  .primary-nav__list a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 22px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 70px 50px; }
  .hero__copy { max-width: 720px; }
  .hero__gallery { width: min(620px, 100%); min-height: 470px; margin: 10px auto 0; }
  .home-section { padding-block: 74px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:first-child { grid-column: 1 / -1; }
  .collection-card { min-height: 360px; }
  .process-section__grid { grid-template-columns: 1fr; gap: 50px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 22px; }
  .catalog-filters__top { grid-column: 1 / -1; }
  .catalog-results .products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary { float: none; width: 100%; }
  .woocommerce div.product div.summary { position: static; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer__cta { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .promo-bar__inner { min-height: 30px; font-size: 9px; }
  .promo-bar__inner span:last-child, .promo-bar__dot { display: none; }
  .site-header__main { grid-template-columns: auto 1fr auto auto; gap: 5px; min-height: 64px; }
  .brand { min-width: 112px; }
  .brand__word { font-size: 25px; }
  .brand__tag { display: none; }
  .header-search { justify-content: flex-end; }
  .header-search input[type="search"] { width: 44px; height: 44px; padding: 0; border-color: transparent; background: transparent; cursor: pointer; }
  .header-search input[type="search"]::placeholder { color: transparent; }
  .header-search input[type="search"]:focus { position: fixed; z-index: 120; top: 38px; right: 14px; left: 14px; width: calc(100% - 28px); padding: 0 18px 0 48px; border-color: var(--electric); background: var(--paper); cursor: text; }
  .admin-bar .header-search input[type="search"]:focus { top: 84px; }
  .header-search svg { left: 12px; }
  .header-search:focus-within svg { position: fixed; z-index: 121; top: 50px; left: 28px; }
  .admin-bar .header-search:focus-within svg { top: 96px; }
  .header-actions > a:first-child { display: none; }
  .header-actions > a { width: 40px; height: 40px; }
  .menu-toggle { width: 40px; }
  .primary-nav { top: 94px; }
  .admin-bar .primary-nav { top: 140px; }
  .hero__grid { padding-block: 56px 24px; gap: 15px; }
  .hero h1 { margin-top: 17px; font-size: clamp(43px, 14vw, 62px); }
  .hero__copy > p { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero__proof { gap: 18px; margin-top: 38px; }
  .hero__proof strong { font-size: 22px; }
  .hero__gallery { min-height: 390px; transform: scale(.96); }
  .hero-poster--1 { left: 30%; width: 45%; }
  .hero-poster--2 { left: 1%; width: 40%; }
  .hero-poster--3 { right: 0; width: 40%; }
  .category-ribbon__inner { min-height: 62px; }
  .home-section { padding-block: 60px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading h2, .process-section h2, .catalog-hero h1 { font-size: 36px; }
  .woocommerce ul.products, ul.products,
  .catalog-results .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 12px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  ul.products li.product .woocommerce-loop-product__title { font-size: 13px; }
  .woocommerce ul.products li.product .button,
  ul.products li.product .button { display: none; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card:first-child { grid-column: auto; }
  .collection-card { min-height: 360px; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 14px; }
  .catalog-page, .single-product-page, .content-page { padding-top: 20px; padding-bottom: 65px; }
  .catalog-hero { padding: 20px 0 32px; }
  .catalog-filters { display: block; }
  .woocommerce div.product div.images { padding: 20px; margin-bottom: 36px; }
  .woocommerce div.product .product_title { font-size: 40px; }
  .woocommerce div.product form.cart .variations tr { grid-template-columns: 82px 1fr; }
  .woocommerce div.product form.cart .button { min-width: 0; width: calc(100% - 74px); }
  .product-assurances > div { grid-template-columns: 1fr; gap: 2px; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { overflow-x: auto; gap: 22px; white-space: nowrap; }
  .woocommerce div.product .related.products > h2,
  .woocommerce div.product .upsells.products > h2 { font-size: 32px; }
  .service-strip__grid { grid-template-columns: 1fr; padding-block: 15px; }
  .service-strip__grid > div { justify-content: flex-start; padding: 14px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-strip__grid > div:last-child { border-bottom: 0; }
  .site-footer { padding-top: 58px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .site-footer__brand, .site-footer__cta { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; margin-top: 44px; }
  .post-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* Catalog category and collection navigation */
.catalog-category-index {
  scroll-margin-top: 120px;
  padding: 30px;
  margin: 0 0 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7f8fa 0%, #eef3fb 100%);
}
.catalog-category-index__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.catalog-category-index__heading h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 930;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.catalog-category-card {
  display: flex;
  min-width: 0;
  min-height: 76px;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(16, 17, 20, .1);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 5px 16px rgba(16, 17, 20, .04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.catalog-category-card:hover {
  border-color: var(--electric);
  box-shadow: 0 12px 26px rgba(18, 103, 244, .12);
  transform: translateY(-2px);
}
.catalog-category-card.is-current {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.catalog-category-card span {
  overflow: hidden;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
}
.catalog-category-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}
.catalog-category-card.is-current small {
  color: rgba(255,255,255,.62);
}
@media (max-width: 1180px) {
  .catalog-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .catalog-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .catalog-category-index { scroll-margin-top: 100px; padding: 20px; margin-bottom: 30px; }
  .catalog-category-index__heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .catalog-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-category-card { min-height: 70px; padding: 13px; }
}

/* Three-poster category previews */
.catalog-category-grid {
  gap: 14px;
}
.catalog-category-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(16, 17, 20, .12);
  background: var(--paper);
  color: var(--ink);
}
.catalog-category-card__preview {
  position: relative;
  display: block;
  overflow: hidden;
  height: 152px;
  background:
    radial-gradient(circle at 68% 18%, rgba(18,103,244,.68), transparent 38%),
    radial-gradient(circle at 20% 100%, rgba(215,255,63,.16), transparent 40%),
    linear-gradient(145deg, #171a22, #08090d);
  isolation: isolate;
  perspective: 650px;
}
.catalog-category-card__preview::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
}
.catalog-category-card__poster {
  position: absolute;
  top: 17px;
  display: block;
  overflow: hidden;
  width: 64px;
  height: 108px;
  border-radius: 3px;
  background: #292d38;
  box-shadow: 0 10px 22px rgba(0,0,0,.48);
  transition: transform .28s ease, filter .28s ease;
}
.catalog-category-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-category-card__poster--1 {
  z-index: 2;
  left: 12%;
  transform: rotateY(7deg) rotateZ(-8deg);
  filter: brightness(.76);
}
.catalog-category-card__poster--2 {
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 70px;
  height: 118px;
  transform: translateX(-50%) rotateZ(1deg);
}
.catalog-category-card__poster--3 {
  z-index: 1;
  right: 12%;
  transform: rotateY(-7deg) rotateZ(8deg);
  filter: brightness(.7);
}
.catalog-category-card:hover .catalog-category-card__poster--1 {
  transform: translate(-4px, -3px) rotateY(5deg) rotateZ(-10deg);
}
.catalog-category-card:hover .catalog-category-card__poster--2 {
  transform: translate(-50%, -6px) rotateZ(0);
}
.catalog-category-card:hover .catalog-category-card__poster--3 {
  transform: translate(4px, -3px) rotateY(-5deg) rotateZ(10deg);
}
.catalog-category-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.16);
  font-size: 74px;
  font-weight: 950;
}
.catalog-category-card__copy {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 16px;
  background: var(--paper);
}
.catalog-category-card__copy > span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.catalog-category-card.is-current .catalog-category-card__copy {
  background: var(--ink);
  color: var(--paper);
}
@media (max-width: 1180px) {
  .catalog-category-card__preview { height: 146px; }
}
@media (max-width: 680px) {
  .catalog-category-card { padding: 0; }
  .catalog-category-card__preview { height: 138px; }
  .catalog-category-card__poster { width: 58px; height: 98px; }
  .catalog-category-card__poster--2 { width: 64px; height: 108px; }
  .catalog-category-card__copy { min-height: 72px; padding: 13px; }
}
@media (max-width: 420px) {
  .catalog-category-grid { grid-template-columns: 1fr; }
  .catalog-category-card__preview { height: 170px; }
  .catalog-category-card__poster { top: 19px; width: 72px; height: 121px; }
  .catalog-category-card__poster--2 { top: 10px; width: 80px; height: 135px; }
}