/* =============================================
   reset & common
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-title);
  font-weight: var(--weight-bold);
}

:root {
  /* colors*/
  --color-primary: #212121;
  --color-txt-gray: #616161;
  --color-txt-light: #d9d9d9;
  --color-white: #ffffff;

  --color-bg: #f7f7f7;
  --color-bg-second: #faf9f2;
  --color-bg-shape: #333333;
  --color-bg-sale: #e2735f;
  --color-bg-footer: #d1d1c7;

  /* button */
  --btn-width: clamp(8.75rem, 15vw, 11.5rem);
  --btn-height: clamp(2.75rem, 4vw, 3.1875rem);

  /* font */
  --font-main: "Nunito Sans", sans-serif;
  --font-title: "Cardo", serif;

  --weight-regular: 400;
  --weight-bold: 700;

  --font-visual: clamp(1.5rem, 4vw, 2.8125rem); /* 24px ~ 45px · hero */
  --font-35: clamp(1.5rem, 4vw, 2.1875rem); /* 24px ~ 35px */
  --font-25: clamp(1.125rem, 3vw, 1.5625rem); /* 18px ~ 25px */
  --font-18: clamp(0.9375rem, 2vw, 1.125rem); /* 15px ~ 18px */
  --font-16: clamp(0.875rem, 1.5vw, 1rem); /* 14px ~ 16px */
  --font-14: clamp(0.75rem, 1.2vw, 0.875rem); /* 12px ~ 14px */
  --font-12: clamp(0.625rem, 1vw, 0.75rem); /* 10px ~ 12px */

  /* padding */
  --pad-y-120: clamp(3.75rem, 8vw, 7.5rem); /* 60px ~ 120px */
  --pad-y-100: clamp(3.125rem, 6vw, 6.25rem); /* 50px ~ 100px */
  --pad-y-80: clamp(2.5rem, 5vw, 5rem); /* 40px ~ 80px */
  --pad-y-20: clamp(0.75rem, 2vw, 1.25rem); /* 12px ~ 20px */

  --header-height: clamp(3.75rem, 8vw, 7.5rem); /* 60px ~ 120px */
  --footer-height: clamp(6.25rem, 50vw, 30rem); /* 100px ~ 180px */

  /* slide */
  --visible-slides: 4;

  /* 텍스트 드래그(선택) 하이라이트 */
  --selection-bg: rgba(33, 33, 33, 0.14);
  --selection-color: inherit;
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

body {
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: var(--font-18);
  font-weight: var(--weight-regular);
  width: 100%;
  min-width: 0;
  margin: 0;
}

html {
  width: 100%;
  min-width: 0;
}

.inner {
  max-width: 1860px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading-visual,
.heading-35,
.heading-25-bold,
.heading-25,
.mega-title {
  font-family: var(--font-title);
  font-weight: var(--weight-bold);
}

.heading-visual {
  font-size: var(--font-visual);
  font-weight: var(--weight-bold);
}

.heading-35 {
  font-size: var(--font-35);
  font-weight: var(--weight-bold);
}

.heading-25-bold {
  font-size: var(--font-25);
  font-weight: var(--weight-bold);
}

.heading-25 {
  font-size: var(--font-25);
  font-weight: var(--weight-regular);
}

.body-18-bold {
  font-size: var(--font-18);
  font-weight: var(--weight-bold);
}

.body-18 {
  font-size: var(--font-18);
  font-weight: var(--weight-regular);
}

.body-16 {
  font-size: var(--font-16);
  font-weight: var(--weight-regular);
}

.small-14 {
  font-size: var(--font-14);
  font-weight: var(--weight-regular);
}

.macro-12 {
  font-size: var(--font-12);
  font-weight: var(--weight-regular);
}

.pad-y-120 {
  padding-top: var(--pad-y-120);
  padding-bottom: var(--pad-y-120);
}

.pad-y-100 {
  padding-top: var(--pad-y-100);
  padding-bottom: var(--pad-y-100);
}

.pad-y-80 {
  padding-top: var(--pad-y-80);
  padding-bottom: var(--pad-y-80);
}

.pad-y-20 {
  padding-top: var(--pad-y-20);
  padding-bottom: var(--pad-y-20);
}

/* button */
.btn-primary {
  font-size: var(--font-16);

  width: var(--btn-width);
  height: var(--btn-height);

  background-color: var(--color-bg-shape);
  color: var(--color-white);
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============================================
   Header & GNB
   ============================ */

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height, 120px);
  background-color: transparent;
  border-bottom: 1px solid var(--color-white);
  transition: all 0.3s ease;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
av.navbar.desktop-only {
  height: 100%;
}
.logo-sec {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* header hover + search open + mobile scrolled (same look) */
.header:hover,
.header:has(.header-search.is-open),
.header.is-scrolled {
  background-color: var(--color-white);
}

.header:hover .gnb .g-link > a,
.header:has(.header-search.is-open) .gnb .g-link > a,
.header.is-scrolled .gnb .g-link > a {
  color: var(--color-primary);
}

.header:hover .gnb .sale > a,
.header:has(.header-search.is-open) .gnb .sale > a,
.header.is-scrolled .gnb .sale > a {
  color: var(--color-bg-sale) !important;
}

.header .logo img,
.header .icon img {
  transition: filter 0.3s ease-in-out;
}

.header:hover .logo img,
.header:hover .icon img,
.header:has(.header-search.is-open) .logo img,
.header:has(.header-search.is-open) .icon img,
.header.is-scrolled .logo img,
.header.is-scrolled .icon img {
  filter: brightness(0) invert(13%);
}

.header:hover .btn-hamburger .line,
.header:has(.header-search.is-open) .btn-hamburger .line,
.header.is-scrolled .btn-hamburger .line {
  background-color: var(--color-primary);
}

/* gnb */
.gnb {
  display: flex;
  gap: 40px;
  height: 100%;
}

.gnb .g-link > a {
  color: var(--color-white);
}

.gnb > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.gnb .g-link > a {
  position: relative;
  display: inline-block;
}

.gnb .g-link > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}

.gnb .g-link:hover > a::after {
  width: 100%;
}

/* mega menu */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.shop-mega .mega-inner {
  display: flex;
  justify-content: space-between;
}

.mega-title {
  display: block;
  font-weight: var(--weight-bold);
  margin-bottom: 15px;
}

.mega-col ul li {
  margin-bottom: 10px;
}

.mega-col ul li a {
  color: var(--color-txt-gray);
  font-size: var(--font-16);
}

.mega-col ul li a:hover {
  color: var(--color-primary);
}

.comm-mega .mega-inner.center-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 20px;
}

.comm-mega .mega-inner.center-row a {
  font-size: var(--font-16);
  font-weight: var(--weight-regular);
}

/* mobile side menu */
.mobile-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 2000;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-side-menu.active {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn-close {
  background: none;
  border: none;
  font-size: var(--font-16);
  cursor: pointer;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.mobile-bottom-links {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-txt-gray);
}

/* mobile side menu — desktop GNB / SNB 구조와 동일 */
.mobile-side-menu .gnb {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  height: auto;
  margin-top: 40px;
}

.mobile-side-menu .gnb > li {
  height: auto;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 25px;
}

.mobile-side-menu .gnb .g-link > a {
  color: var(--color-primary);
  font-size: var(--font-18);
  width: 100%;
}

.mobile-side-menu .gnb .g-link > a::after {
  display: none;
}

.mobile-side-menu .gnb .sale > a {
  color: var(--color-bg-sale) !important;
}

.mobile-side-menu .has-mega-menu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-side-menu .gnb-arrow {
  flex-shrink: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-135deg);
  transition: transform 0.3s ease;
}

.mobile-side-menu .has-mega-menu.is-open > a .gnb-arrow {
  transform: rotate(45deg);
}

.mobile-side-menu .mega-menu.snb {
  position: static;
  width: 100%;
  background: transparent;
  border: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: auto;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-in-out,
    margin-top 0.3s ease-in-out;
}

.mobile-side-menu .has-mega-menu.is-open .mega-menu.snb {
  max-height: 2000px;
  margin-top: 15px;
}

.mobile-side-menu .mega-menu.snb .mega-inner {
  max-width: none;
  margin: 0;
  padding: 0 0 0 15px;
}

.mobile-side-menu .shop-mega .mega-inner {
  flex-direction: column;
  gap: 10px;
}

.mobile-side-menu .comm-mega .mega-inner.center-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.mobile-side-menu .mega-title {
  font-size: var(--font-16);
  margin-bottom: 10px;
}

.mobile-side-menu .mega-col ul li {
  margin-bottom: 12px;
}

.mobile-side-menu .mega-col ul li a,
.mobile-side-menu .comm-mega .mega-inner.center-row a {
  font-size: var(--font-14);
  color: #666;
}

/* hamburger button */
.btn-hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  padding: 0;
}

.btn-hamburger .line {
  display: block;
  position: absolute;
  height: 2px;
  background-color: var(--color-white);
  left: 0;
  transition: all 0.3s ease-in-out;
}

.btn-hamburger .line1 {
  top: 0;
  width: 100%;
}
.btn-hamburger .line2 {
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
}
.btn-hamburger .line3 {
  bottom: 0;
  width: 100%;
}

.btn-hamburger.active .line1 {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(45deg);
}

.btn-hamburger.active .line2 {
  opacity: 0;
}

.btn-hamburger.active .line3 {
  bottom: auto;
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(-45deg);
}

/* icons */
.icon-sec {
  display: flex;
  gap: 20px;
}

.icon-sec .icon.search {
  font: inherit;
  color: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* header search panel — viewport 상단(top:0)에서 아래로 슬라이드 */
.header-search {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1002;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  max-height: min(88vh, 920px);
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s;
}

.header-search.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .header-search {
    transition-duration: 0.01ms;
  }
}

.header-search-inner {
  position: relative;
  padding-top: 0;
  padding-bottom: clamp(1.25rem, 4vw, 2.5rem);
}

/* 헤더 영역 높이 유지, 검색 줄은 아래쪽에 붙여 구분선과 간격 최소화 */
.header-search-top {
  display: flex;
  align-items: flex-end;
  min-height: var(--header-height, 120px);
  padding-right: 44px;
}

.header-search-form {
  width: 100%;
}

.header-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0 4px;
}

.header-search-ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.header-search-ico img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(13%);
  opacity: 0.75;
}

.header-search-input {
  flex: 1;
  min-width: 0;
  padding: 8px 0 6px;
  font-family: var(--font-main);
  font-size: var(--font-16);
  font-weight: var(--weight-regular);
  color: var(--color-primary);
  border: none;
  border-radius: 0;
  cursor: text;
  background: transparent;
}

/* type=search 일 때만 생기는 브라우저 기본 지우기 버튼 숨김 (text 사용 시 불필요하지만 보강) */
.header-search-input::-webkit-search-cancel-button,
.header-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.header-search-input::-ms-clear {
  display: none;
}

.header-search-input::placeholder {
  color: #9e9e9e;
}

.header-search-submit {
  flex: 0 0 auto;
  padding: 8px 18px;
  min-height: 38px;
  font-family: var(--font-main);
  font-size: var(--font-14);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-search-submit:hover {
  opacity: 0.9;
}

.header-search-submit:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 팝업처럼 패널 우상단 고정 */
.header-search-close {
  position: absolute;
  top: clamp(8px, 1.5vw, 14px);
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header-search-close span {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}

.header-search-close span::before,
.header-search-close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: var(--color-primary);
  transform-origin: center;
}

.header-search-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-search-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-search-rule {
  height: 1px;
  background-color: rgba(33, 33, 33, 0.1);
  margin: 2px 0 1rem;
}

.header-search-title {
  font-family: var(--font-title);
  font-size: var(--font-25);
  font-weight: var(--weight-regular);
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.header-search-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.header-search-list > li {
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
}

.header-search-list > li:last-child {
  border-bottom: none;
}

.header-search-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/* .header-search-item:hover {
  opacity: 0.72;
} */

.header-search-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.header-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 호버 이미지: ::after + opacity (이미지 URL은 부드럽게 전환 불가) */
.header-search-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.header-search-item:hover .header-search-thumb::after,
.header-search-item:focus-visible .header-search-thumb::after {
  opacity: 1;
}

.header-search-list > li:nth-child(1) .header-search-thumb::after {
  background-image: url(../img/search/search-product01-h.png);
}

.header-search-list > li:nth-child(2) .header-search-thumb::after {
  background-image: url(../img/search/search-product02-h.png);
}

.header-search-list > li:nth-child(3) .header-search-thumb::after {
  background-image: url(../img/search/search-product03-h.png);
}

.header-search-list > li:nth-child(4) .header-search-thumb::after {
  background-image: url(../img/search/search-product04-h.png);
}

@media (prefers-reduced-motion: reduce) {
  .header-search-thumb::after {
    transition-duration: 0.01ms;
  }
}

.header-search-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.header-search-name {
  font-family: var(--font-title);
  font-size: var(--font-18);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1.3;
}

.header-search-price {
  font-family: var(--font-main);
  font-size: var(--font-14);
  font-weight: var(--weight-regular);
  color: var(--color-txt-gray);
}

.header-search-price.is-soldout {
  color: var(--color-bg-sale);
}

@media (min-width: 769px) {
  .header-search-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 36px);
    padding-top: 0.5rem;
  }

  .header-search-list > li {
    border-bottom: none;
  }

  .header-search-item {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0;
  }

  .header-search-thumb {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .header-search-meta {
    gap: 8px;
  }
}

/* ==========================================
   Footer
   ========================================== */
.ark-footer {
  position: relative;
  background-color: var(--color-bg-footer);
  color: var(--color-primary);
  overflow: hidden;
  font-size: var(--font-16);
}

/* --- 1. 배경 선 공통 & 위치 --- */
.bg-line {
  position: absolute;
  background-color: var(--color-primary);
  z-index: 1;
}

/* 기존 세로선 */
.line-l1 {
  top: 0;
  bottom: 0;
  width: 1px;
  left: 2%;
}
.line-l2 {
  top: 0;
  bottom: 0;
  width: 1px;
  left: 4%;
}
.line-r1 {
  top: 0;
  bottom: 0;
  width: 1px;
  right: 4%;
}
.line-r2 {
  top: 0;
  bottom: 0;
  width: 1px;
  right: 2%;
}

/* [추가] 상단 2% 가로선 */
.line-top-hz {
  top: 5%;
  left: 0;
  width: 100%;
  height: 1px;
}

/* [추가] 로고 위 중앙 세로선 */
.line-top-vt {
  top: 0%; /* 가로선부터 시작 */
  left: 50%;
  width: 1px;
  height: 100px; /* 로고 위쪽 여백(padding-top)만큼의 높이 */
  transform: translateX(-50%); /* 정확한 중앙 정렬 */
}

/* --- 2. 콘텐츠 레이아웃 (선 위로 올리기) --- */
.footer-wrap {
  position: relative;
  z-index: 2;
}

.ark-footer .inner {
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

/* 상단 */
.footer-top {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--color-primary);
}
.footer-logo {
  display: block;
  margin: 50px auto 50px auto;
}

/* 중간 (가로선은 100%인 이 곳에서 그려짐) */
.footer-mid {
  padding: 20px 0;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  position: relative;
}

/* 양끝 정렬용 클래스 */
.footer-mid .flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 중앙 세로선 (가상 요소 활용 유지) */
.footer-mid::before {
  content: "";
  position: absolute;
  top: -60px; /* 위로 솟아오르는 높이 */
  left: 50%;
  width: 1px;
  height: calc(100% + 60px);
  background-color: var(--color-primary);
  transform: translateX(-50%);
}

/* 하단 */
.footer-bot {
  text-align: center;
  padding: 10px 0;
  font-size: var(--font-12);
}

.footer-mid .contact span {
  display: inline-block;
}

.footer-mid .contact .link-instagram {
  margin-left: 15px;
}

/* ==========================================
   반응형
   ========================================== */

@media (max-width: 1650px) {
  /* .logo-sec {
    position: inherit;
    transform: inherit;
} */
}

@media (max-width: 768px) {
  :root {
    --visible-slides: 2;
  }
  .header {
    position: fixed;
  }
  .desktop-only {
    display: none;
  }
  .btn-hamburger {
    display: block;
  }
  .logo-sec {
    zoom: 60%;
    position: absolute;
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
  .icon-sec {
    gap: 10px;
  }
}

/* GSAP scroll text reveal */
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}

.reveal-word__inner {
  display: inline-block;
  will-change: transform, opacity;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line__inner {
  display: block;
  will-change: transform, opacity;
}
