@font-face {
  font-family: "Helvetica Compressed";
  src: url("/theme/eyezy/fonts/Helvetica-Compressed.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading-family: var(--font-archivo-narrow), "Archivo Narrow", sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 700;
  --font-body-family: Helvetica, Arial, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-display-family: "Helvetica Compressed", "Arial Narrow", sans-serif;
}

/* Storefront base — overrides.css only loads on EYEZY store pages */
body {
  font-family: var(--font-body-family) !important;
  font-style: var(--font-body-style) !important;
  font-weight: var(--font-body-weight) !important;
  font-size: 16px !important;
  line-height: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background: #ffffff !important;
  color: #000000 !important;
  margin: 0;
  padding: 0;
  /* Match EYEZY demo: subpixel smoothing reads slightly bolder than antialiased */
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

body .mono,
body .brand-mark {
  font-family: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}

/*
 * Exact heading / UI font map from EYEZY layout/theme.liquid
 * Archivo Narrow 700 + uppercase
 */
h1, h2, h3, h4, h5,
.header-logo-text,
.copyright__content,
.copyright__content a,
.menu-item,
.product-list__product-name,
.right-nav,
.right-nav > *,
.option-value,
.product-info__cart-btn,
#contact-button input,
input.search-button,
.action_bottom,
.account-button,
.shop-all-button-404,
.cart__total,
.cart__submit-btn,
.cart__item-remove-link,
#CartCount,
.pages > *,
.number_pages > *,
.custom-button,
.footer-nav,
.cart-drawer__checkout-btn,
.cart-drawer-item__remove-link,
.cart-drawer__total,
.email-banner__button span,
.best-content_button .button-outline,
.banner-button,
.button,
.product-info__title,
.f-collection-title,
.email-banner__name,
.banner-content_h2,
.cart-drawer__header h2,
.cart-drawer-item__title,
.accordion-toggle,
.burger-menu,
.option-value {
  font-family: var(--font-heading-family) !important;
  font-style: var(--font-heading-style) !important;
  font-weight: var(--font-heading-weight) !important;
  text-transform: uppercase !important;
  letter-spacing: 0;
  line-height: normal !important;
}

/*
 * Exact body font map from EYEZY layout/theme.liquid
 * Helvetica 400, no transform
 */
p,
span,
input,
textarea,
#collections-listing ul li,
#contactFormMessageContainer,
.product-info__description-pc,
.product-info__description-mobile,
.product-info__description-pc p,
.product-info__description-mobile p,
.email-banner__desc,
.cart-drawer-item__final-price,
.cart-drawer-empty p,
.product-list__product-price,
.product-price-block,
.product-price__current,
.accordion-content,
.accordion-content > * {
  font-family: var(--font-body-family) !important;
  font-style: var(--font-body-style) !important;
  font-weight: var(--font-body-weight) !important;
  text-transform: none !important;
  line-height: normal !important;
}

/* Re-assert heading on spans that live inside UI chrome */
.menu-item span,
.right-nav span,
.footer-nav span,
.button span,
.email-banner__button span,
.cart-drawer__total span,
#CartCount,
.product-list__product-name span,
.copyright__content span {
  font-family: var(--font-heading-family) !important;
  font-style: var(--font-heading-style) !important;
  font-weight: var(--font-heading-weight) !important;
  text-transform: uppercase !important;
}

.imgbg { display: none !important; }

/* ——— Header ——— */
.page-width {
  padding: 0 25px;
  max-width: 100%;
}

@media screen and (max-width: 749px) {
  .page-width { padding: 0 15px; }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-wrapper > * {
  flex: 1;
  text-align: center;
}

.logo-wrapper {
  flex: 0 1 auto;
  padding: 20px 10px;
  margin: 0 auto;
}

.logo-wrapper img,
.header-logo {
  /* Portrait mark sized to keep header ~59px like the demo wordmark row */
  width: auto;
  height: 62px;
  max-width: 110px;
  display: block;
  margin: 0 auto;
  background: transparent;
  object-fit: contain;
}

.header-logo-text {
  font-size: 22px;
  white-space: nowrap;
}

.header-menu {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-menu .menu-item:not(:last-child) {
  margin-right: 15px;
}

.header-menu .menu-item,
.right-nav,
.right-nav > * {
  font-size: 16px;
  color: #000000;
}

.right-nav {
  text-align: right;
  white-space: nowrap;
}

.right-nav .account {
  margin-right: 15px;
}

.right-nav a,
.right-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font: inherit;
}

.burger-menu {
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 997;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  line-height: 0;
}

.burger-menu .burger,
.burger-menu .cross {
  display: block;
  width: 45px;
  height: 41px;
}

/* Overlay header on homepage hero — matches EYEZY image-banner overlay */
.eyezy-home .header-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 25px;
  z-index: 10;
  box-sizing: border-box;
}

.eyezy-home .header-wrapper .menu-item a,
.eyezy-home .header-wrapper .right-nav,
.eyezy-home .header-wrapper .right-nav > *,
.eyezy-home .header-wrapper .header-logo-text {
  color: #ffffff !important;
}

.eyezy-home .header-wrapper .header-logo {
  filter: invert(1) brightness(2);
}

/* When fullscreen menu is open, force readable black chrome */
body.eyezy-menu-open .header-menu .menu-item a,
body.eyezy-menu-open .header-menu .menu-link {
  color: #000000 !important;
}

body.eyezy-menu-open.eyezy-home .header-wrapper .header-logo {
  filter: none;
}

body.eyezy-menu-open.eyezy-home .header-wrapper .header-logo-text,
body.eyezy-menu-open.eyezy-home .header-wrapper .right-nav,
body.eyezy-menu-open.eyezy-home .header-wrapper .right-nav > * {
  color: #000000 !important;
}

.account-mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .logo-wrapper img,
  .header-logo {
    width: auto;
    height: 50px;
    max-width: 88px;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 59px;
  }

  /* display:none removes menu from flex — row is burger | logo | cart */
  .header-wrapper > * {
    flex: 0 1 auto;
  }

  .burger-menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 12px;
    min-height: 45px;
    z-index: 997;
  }

  .logo-wrapper {
    position: static;
    left: auto;
    transform: none;
    margin: 0 auto;
    padding: 12px 10px;
  }

  .right-nav {
    flex-shrink: 0;
    margin-left: 0;
  }

  .header-menu .menu-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.7rem;
  }

  .header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 100;
  }

  .header-menu.active {
    display: flex;
  }

  .header-menu .menu-item {
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
  }

  .header-menu .menu-item a,
  .header-menu .menu-link {
    color: #000000 !important;
  }

  .account-mobile {
    display: inline !important;
  }

  .right-nav .account { display: none; }

  .eyezy-home .header-wrapper { padding: 0 15px; }
}

@media screen and (min-width: 750px) {
  .account-mobile {
    display: none !important;
  }
}

/* ——— Hero banner ——— */
.image-banner {
  height: 91vh;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 45px;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 40%);
}

.banner-content {
  margin: 50px 25px;
  position: relative;
  z-index: 3;
}

.banner-content_h2 {
  padding-bottom: 15px;
  color: #ffffff;
  font-size: 32px;
  line-height: normal;
  text-align: left;
  margin: 0;
}

.banner-button {
  padding: 13px;
  font-size: 16px;
  display: inline-block;
  color: #ffffff;
  background: #000000;
  text-decoration: none;
}

@media screen and (max-width: 749px) {
  .banner-content { margin: 50px 15px; }
  .banner-content_h2 { font-size: 24px; }
}

/* Dedicated home hero — section height matches image (1024×575) */
.eyezy-home-hero {
  height: auto !important;
  min-height: 0;
  aspect-ratio: 1024 / 575;
  width: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 749px) {
  .eyezy-home-hero {
    /* Same image aspect on mobile — full frame, no crop */
    aspect-ratio: 1024 / 575;
    background-size: 100% 100%;
    background-position: center center;
  }
}

/* ——— Product grid ——— */
.f-collection-title {
  padding-bottom: 15px;
  font-size: 32px;
  line-height: normal;
  text-align: left;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .f-collection-title { font-size: 24px; }
}

.product-list__product-block {
  width: 50%;
  max-width: 50%;
}

@media screen and (min-width: 750px) {
  .product-list__product-block {
    width: 33.3333%;
    max-width: 33.3333%;
  }
}

.product-list__img-link {
  position: relative;
  display: block;
  width: 100%;
}

.product-list__img-link::before {
  content: "";
  display: block;
  padding-bottom: 100%;
  width: 100%;
}

.product-image-container {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-card__image.is-active {
  opacity: 1;
  visibility: visible;
}

.product-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  font-size: 24px;
  line-height: 1;
  color: #000000;
}

.product-card-arrow--prev { left: 0; }
.product-card-arrow--next { right: 0; }

.product-image-container:hover .product-card-arrow {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 748px) {
  .product-card-arrow { display: none; }
}

.product-list__product-price-red {
  color: #e53935;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 70px;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .product-list {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 749px) {
  .product-list {
    margin-bottom: 25px;
  }
}

.product-list__product-name {
  display: block;
  font-size: 17px;
  line-height: 1.2 !important;
  text-decoration: none;
  text-align: center;
  max-width: 75%;
  margin: auto;
  padding-bottom: 5px;
  color: #000000;
}

.product-list__product-price {
  font-size: 15px;
  line-height: 1.2 !important;
  text-align: center;
}

@media screen and (max-width: 1268px) {
  .product-list__product-name,
  .product-list__product-price { font-size: 13px; }
}

@media screen and (max-width: 1024px) {
  .product-list__product-name,
  .product-list__product-price { font-size: 14px; }
}

/* ——— Product page ——— */
.product-page-wrap {
  padding-top: 20px;
  padding-bottom: 40px;
}

.accordion-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #000000;
  border-bottom: none;
}

.accordion-container .accordion-item:last-child,
.last-accordion .accordion-item {
  border-bottom: 1px solid #000000;
}

.accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 10px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #000000;
}

.product-info__description-pc,
.product-info__description-pc > *,
.product-info__description-pc p {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.product-info__title,
.product-info__title-top {
  font-size: 30px;
  line-height: 1.5em !important;
  margin: 0 0 31px;
  letter-spacing: 0;
}

.product-info__title-top {
  display: block !important;
  text-align: center;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}

.product-price-block {
  font-size: 16px;
  gap: 8px;
  padding: 5px 0 15px;
  font-family: var(--font-body-family) !important;
  font-weight: var(--font-body-weight) !important;
  text-transform: none !important;
  line-height: normal !important;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  line-height: 1.4;
}

.accordion-content.open {
  max-height: 400px;
}

.accordion-content > * {
  padding: 0 10px 10px;
}

.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.option-value {
  padding: 5px 10px;
  margin: 0;
  background: none;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  -webkit-appearance: none;
  text-decoration: none;
  text-transform: uppercase;
}

.option-value.active,
.option-value.selected {
  border: 1px solid #000000;
  background: none;
  color: #000000;
}

.product-info__cart-btn {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  width: 80%;
  padding: 13px !important;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0 !important;
}

.product-price__compare {
  text-decoration: line-through;
  opacity: 0.6;
}

.nav-dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.nav-dot.active { background-color: #000000; }

.nav-dots {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.image-navigation {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 5px 0 1.5rem;
}

.nav-arrow {
  cursor: pointer;
  padding: 10px 15px;
  font-size: 20px;
  background: none;
  border: none;
}

/* Product page: mobile-first show/hide (matches product-main.liquid) */
.product-title-pc,
.product-info__pc,
.product-price-pc,
.accordion-container.acc-pc {
  display: none !important;
}

.product-title-mobile {
  display: block;
  line-height: inherit;
  padding-bottom: 0 !important;
}

.product-price-mobile {
  display: flex;
  padding: 0;
}

.accordion-container.acc-mobile {
  display: block;
  max-width: 100%;
  margin-top: 1.5rem;
}

@media screen and (max-width: 749px) {
  .image-navigation {
    display: flex;
  }

  .nav-arrow {
    padding: 10px 0;
  }

  .product-info {
    display: block;
    padding: 0;
  }

  .product-info__main {
    width: 100% !important;
    padding: 0 !important;
  }

  .figureImg {
    width: 100% !important;
    margin: 0 auto;
    padding-bottom: 1.5rem;
  }

  .product-info__title-top.product-title-mobile {
    display: block !important;
    max-width: 100%;
    margin: 0 auto 8px;
    font-size: 26px;
    line-height: 1.25 !important;
  }

  .product-price-mobile {
    justify-content: center;
    padding: 0 0 10px;
  }

  .product-info__description-mobile {
    display: block !important;
    text-align: justify;
    margin: 20px 0 !important;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  .product-info__cart-btn {
    margin-bottom: 24px;
  }

  .product-options {
    margin-bottom: 6px;
    width: 100%;
  }

  .option-values {
    gap: 8px;
  }

  .accordion-container.acc-mobile {
    max-width: 100%;
  }

  .accordion-container.acc-mobile .accordion-item {
    border-left: none;
    border-right: none;
  }
}

@media screen and (min-width: 750px) {
  .product-title-mobile,
  .product-price-mobile,
  .accordion-container.acc-mobile {
    display: none !important;
  }

  .product-title-pc,
  .product-info__pc {
    display: flex !important;
  }

  .product-price-pc {
    display: flex !important;
  }

  .accordion-container.acc-pc {
    display: block !important;
    max-width: 80%;
  }

  .image-navigation {
    display: none !important;
  }
}

/* ——— Newsletter ——— */
.email-banner__name {
  text-align: center;
  font-size: 50px;
  line-height: normal;
  margin-bottom: 24px;
}

@media screen and (max-width: 749px) {
  .email-banner__name {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.email-banner__desc {
  text-align: center;
  max-width: 35rem;
  margin: 0 auto;
  font-size: 15px;
}

.email-banner__form-group {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.email-banner__input {
  display: block;
  width: 300px;
  max-width: 55vw;
  padding: 11px 18px;
  font-size: 14px;
  border: 1px solid #000000;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.email-banner__button {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  border-radius: 0;
  color: #ffffff;
  background: #000000;
}

/* ——— Cart drawer (matches EYEZY cart-drawer.liquid) ——— */
.cart-drawer {
  position: fixed;
  display: flex;
  flex-direction: column;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer__header {
  padding: 1rem;
  display: flex;
  flex-grow: 0;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__header h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 24px;
  line-height: normal;
}

#CartDrawerContent,
.cart-drawer__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
}

.cart-drawer__close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-cross {
  width: 35px;
  height: 35px;
}

.cart-drawer-item {
  display: flex;
  padding: 1rem;
}

.cart-drawer-item__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  height: 100%;
  max-width: 100%;
}

.cart-drawer-item__img-cont {
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 15px;
  flex-shrink: 0;
}

.cart-drawer-item__img-cont::before {
  content: "";
  display: block;
  padding-bottom: 100%;
  height: 100%;
  width: 100%;
}

#CartDrawerItems {
  overflow-y: auto;
  flex-grow: 1;
}

.cart-drawer-item__quantity {
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
  font-size: 14px;
}

.cart-drawer-checkout {
  padding: 1.5rem 1rem;
  width: 100%;
  flex-grow: 0;
  max-width: 400px;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.cart-drawer-item__details {
  flex: 1;
  min-width: 0;
}

.cart-drawer-item__title {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  color: #000000;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.cart-drawer-item__title a {
  color: inherit;
  text-decoration: none;
}

.cart-drawer-item__final-price {
  font-size: 14px;
  color: #000000;
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.cart-drawer-item__price {
  font-size: 14px;
}

.cart-drawer-item__final-price-on-sale {
  color: #e53935;
  padding-right: 5px;
}

.cart-drawer-item__compare-price {
  color: #000000;
  opacity: 0.6;
}

.cart-drawer-item__remove-link {
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline !important;
  text-underline-offset: 0.2rem !important;
  border: none;
  background: none;
  appearance: none;
  color: #000000;
  padding: 0;
  font-family: var(--font-heading-family) !important;
  font-weight: var(--font-heading-weight) !important;
  text-transform: uppercase !important;
}

.cart-drawer__total {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700 !important;
  font-size: 18px;
  color: #000000;
  font-family: var(--font-heading-family) !important;
  text-transform: uppercase !important;
}

.cart-drawer__checkout-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  padding: 13px;
  font-size: 16px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.cart-drawer__checkout-btn:hover {
  background: #333;
}

.cart-drawer-empty {
  padding: 2rem;
  text-align: center;
  color: #000000;
}

.cart-drawer-empty p {
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin: 0;
}

.quantity-wrapper-drawer {
  display: flex;
  align-items: center;
}

.cart-drawer__quantity-btn svg {
  width: 13px;
  height: 13px;
}

.cart-drawer__quantity-btn {
  padding: 5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.cart-drawer__quantity-btn-minus {
  padding-left: 0;
}

.cart-drawer__quantity-value {
  margin: 0 0.4rem;
  text-align: center;
  font-size: 13px;
  color: #000000;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.cart-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #49494985;
}

.cart-drawer-overlay.active {
  display: block;
}

.cart-drawer__quantity-btn-minus.disabled,
.cart-drawer__quantity-btn-plus.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media screen and (max-width: 500px) {
  .cart-drawer {
    max-width: 345px;
  }

  .cart-drawer-checkout {
    max-width: 345px;
  }
}

/* ——— Footer ——— */
.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.6rem 0 0.5rem;
}

.footer-nav a {
  font-size: 20px;
  line-height: normal;
  color: #000000;
  text-decoration: none;
}

.footer-nav a:not(:last-child) {
  margin-right: 0.7rem;
}

.list-social {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-social__link {
  display: flex;
  padding: 0.6rem;
  color: #000000;
}

.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0 !important;
}

/* Match EYEZY demo: site copyright hidden */
.site-copy {
  width: 1px;
  height: 1px;
  opacity: 0;
  padding: 0;
  margin: 0 !important;
  overflow: hidden;
}

.footer__big-logo {
  margin-top: 60px;
  margin-bottom: 0;
}

.page-width.footer__big-logo {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  padding: 0;
}

.footer__big-logo-crop {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  height: var(--cropH, auto);
}

.footer__big-logo-fit {
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.footer__big-logo-text {
  display: inline-block;
  width: max-content;
  white-space: nowrap;
  text-transform: none !important;
  color: #000000;
  font-family: var(--font-display-family) !important;
  font-weight: 900 !important;
  font-size: 220px !important;
  line-height: 0.85 !important;
  transform-origin: left bottom;
  transform: translateY(var(--cropShift, 0px)) scale(var(--fit, 1));
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }

  .footer-nav a { font-size: 16px; }

  .footer-nav a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    width: 100%;
  }

  .list-social {
    justify-content: center;
  }

  .footer__big-logo {
    margin-top: 30px;
  }
}

/* ——— Policy pages (match Shopify .shopify-policy__* layout) ——— */
.shopify-policy__container {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: var(--font-body-family);
  font-size: 16px;
}

.shopify-policy__title {
  text-align: center;
  margin: 0 0 1em;
  padding-bottom: 40px;
  line-height: 1.4;
}

.shopify-policy__title h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
}

.shopify-policy__body {
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.shopify-policy__body,
.shopify-policy__body p,
.shopify-policy__body li,
.shopify-policy__body .rte {
  font-family: var(--font-body-family) !important;
  font-weight: var(--font-body-weight) !important;
  text-transform: none !important;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.shopify-policy__body h2,
.shopify-policy__body h3 {
  font-family: var(--font-heading-family) !important;
  font-weight: var(--font-heading-weight) !important;
  text-transform: uppercase !important;
  font-size: 18px;
  margin: 1.5rem 0 0.75rem;
}

.shopify-policy__container p:not(:last-child) {
  margin-bottom: 1.6rem;
}

.shopify-policy__container ul:not(:last-child) {
  margin-bottom: 1.6rem;
}

.shopify-policy__body a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.shopify-policy__body strong {
  font-weight: 700;
}

/* ——— Checkout (EYEZY chrome around Stripe embedded) ——— */
.eyezy-checkout {
  background: #ffffff;
  color: #000000;
  padding: 40px 0 80px;
  min-height: 60vh;
  font-family: Helvetica, Arial, sans-serif;
}

.eyezy-checkout--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.eyezy-checkout__header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
}

.eyezy-checkout__back {
  display: inline-block;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  margin-bottom: 12px;
}

.eyezy-checkout__back:hover {
  opacity: 0.55;
}

.eyezy-checkout__title {
  margin: 0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyezy-checkout__secure {
  margin: 8px 0 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #666666;
  text-transform: none;
}

.eyezy-checkout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.eyezy-checkout__section-title {
  margin: 0 0 16px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.eyezy-checkout__embed {
  width: 100%;
  min-height: 480px;
}

.eyezy-checkout__embed .stripe-embedded-checkout,
.stripe-embedded-checkout {
  min-height: 480px;
}

.eyezy-checkout__error {
  margin: 0;
  padding: 24px 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #666666;
}

.eyezy-checkout-summary__title {
  margin: 0 0 20px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.eyezy-checkout-summary__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyezy-checkout-summary__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eyezy-checkout-summary__thumb {
  position: relative;
  width: 72px;
  height: 90px;
  flex-shrink: 0;
  background: #f0f0f0;
  overflow: hidden;
}

.eyezy-checkout-summary__qty {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.eyezy-checkout-summary__meta {
  min-width: 0;
  flex: 1;
  padding-top: 2px;
}

.eyezy-checkout-summary__name {
  margin: 0;
  font-family: var(--font-heading-family) !important;
  font-style: var(--font-heading-style) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
  color: #000000;
  letter-spacing: 0 !important;
}

.eyezy-checkout-summary__variant {
  margin: 4px 0 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #666666;
  text-transform: none;
}

.eyezy-checkout-summary__price {
  margin: 10px 0 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.eyezy-checkout-summary__totals {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyezy-checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.eyezy-checkout-summary__row--total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyezy-checkout-summary__note {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #666666;
}

.eyezy-checkout-summary__legal {
  margin: 20px 0 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
}

.eyezy-checkout-summary__legal a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media screen and (min-width: 990px) {
  .eyezy-checkout {
    padding: 48px 0 100px;
  }

  .eyezy-checkout__title {
    font-size: 40px;
  }

  .eyezy-checkout__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 56px;
    align-items: start;
  }

  /* Payment form left, order summary sticky right */
  .eyezy-checkout__payment {
    order: 1;
  }

  .eyezy-checkout__summary {
    order: 2;
    position: sticky;
    top: 24px;
  }
}

@media screen and (max-width: 989px) {
  .eyezy-checkout {
    padding: 28px 0 60px;
  }

  .eyezy-checkout__title {
    font-size: 28px;
  }

  .eyezy-checkout__grid {
    gap: 28px;
  }

  /* Mobile: order summary above payment form */
  .eyezy-checkout__summary {
    order: 1;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
  }

  .eyezy-checkout__payment {
    order: 2;
  }
}

/* ——— Contact (EYEZY contact-form.liquid) ——— */
.eyezy-contact {
  padding-bottom: 60px;
}

.eyezy-contact .page-title {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 1.2rem;
  font-size: 32px;
  line-height: 1.2;
}

.contact-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-form .form-field {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact_form input.input-class,
#contact_form textarea.input-class {
  padding: 7px 10px;
  font-size: 15px;
  margin-bottom: 10px;
  width: 280px;
  max-width: 100%;
  border: 1px solid #000000;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}

#contact_form textarea.input-class {
  resize: vertical;
  min-height: 160px;
}

#contact_form input.input-class::placeholder,
#contact_form textarea.input-class::placeholder {
  color: #000000;
  opacity: 0.55;
}

/* Exact EYEZY contact Send — #contact-button input in contact-form.liquid */
#contact-button {
  margin-top: 0;
}

#contact-button input.button,
#contact-button .button {
  display: inline-block !important;
  width: 280px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 7px 10px !important;
  margin: 0 0 10px !important;
  font-size: 15px !important;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: normal !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: #000000 !important;
  border: 0 !important;
  border-style: hidden !important;
  border-radius: 0 !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#contact-button input.button:hover,
#contact-button .button:hover {
  opacity: 0.8;
}

#contact-button input.button:disabled,
#contact-button .button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.contact-form-success {
  text-align: center;
  color: #2e7d32;
  font-size: 15px;
  margin: 1rem 0;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.contact-form-hint {
  width: 280px;
  max-width: 100%;
  margin: -4px 0 10px;
  font-size: 13px;
  color: #c62828;
  text-align: left;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.contact-form-email {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 14px;
}

.contact-form-email a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

@media screen and (min-width: 749px) {
  #contact_form input.input-class,
  #contact_form textarea.input-class {
    padding: 10px;
    margin-bottom: 15px;
    width: 350px;
  }

  #contact-button input.button,
  #contact-button .button {
    padding: 10px !important;
    margin-bottom: 15px !important;
    width: 350px !important;
    font-size: 15px !important;
  }

  .contact-form-hint {
    width: 350px;
  }
}

/* ——— Contact FAQ (EYEZY faq.liquid) ——— */
.eyezy-contact-faq.faq-section {
  margin: 20px auto 15px;
  max-width: 1100px;
}

.faq-block {
  background: none;
  margin-bottom: 30px;
  border-bottom: 1px solid #000000;
}

.faq-block .question {
  padding: 16px 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: normal !important;
  color: #000000;
  user-select: none;
}

.faq-block .right-arrow-corner,
.faq-block .minus-arrow-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.faq-block .right-arrow-corner {
  display: block;
}

.faq-block .minus-arrow-icon {
  display: none;
  transform: rotate(0deg);
}

.faq-block .question.active .right-arrow-corner {
  display: none;
}

.faq-block .question.active .minus-arrow-icon {
  display: block;
}

.faq-block .answer {
  background: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-block .answer p {
  margin-top: 0;
  margin-block-end: 1em;
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  font-size: 15px;
  line-height: 1.5rem;
  color: #000000;
}

@media screen and (max-width: 749px) {
  .eyezy-contact-faq.faq-section {
    max-width: 100%;
  }

  .faq-block .question {
    font-size: 15px;
  }
}

/* ——— Account login / register / dashboard (EYEZY customers/*) ——— */
.account-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.account-container .template_header {
  width: 100%;
  text-align: center;
}

.account-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}

.account-input {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 11px 18px;
  font-size: 14px;
  border: 1px solid #000000;
  border-radius: 0;
  margin-bottom: 20px;
  background: transparent;
  color: #000000;
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}

.account-input::placeholder {
  color: #000000;
  opacity: 0.55;
}

#forgot_password {
  text-align: right;
  font-size: 15px;
  margin-bottom: 20px;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.account-forgot-link {
  background: none;
  border: none;
  padding: 0;
  color: #000000;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  font-size: 15px;
  font-family: var(--font-body-family) !important;
}

.account-button {
  width: 100%;
  padding: 12px 18px;
  height: auto;
  cursor: pointer;
  border: none;
  border-radius: 0;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-top: 15px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
}

.account-button:hover {
  opacity: 0.85;
}

.account-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.account-button-second {
  border: 1px solid #000000 !important;
  background: transparent !important;
  color: #000000 !important;
}

a.account-button-second {
  display: block;
}

#customer_login,
#create_customer {
  width: 100%;
}

.account-form-error {
  width: 100%;
  margin: 0 0 16px;
  font-size: 14px;
  color: #c62828;
  text-align: left;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
}

.account-note {
  margin-bottom: 15px;
  font-size: 15px;
  font-family: var(--font-body-family) !important;
  text-transform: none !important;
  line-height: 1.5;
}

.account-note a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* ——— Account dashboard ——— */
.eyezy-account {
  padding-bottom: 0;
  overflow-x: clip;
  max-width: 100%;
}

.account-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #2a2a2a 0%, #0a0a0a 55%, #000 100%);
  color: #ffffff;
  min-height: min(62vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: 72px 0 56px;
}

.account-hero-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.account-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.account-hero-brand {
  margin: 0 0 18px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.account-hero-name {
  margin: 0;
  font-family: "Helvetica Compressed", "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(64px, 16vw, 148px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  word-break: break-word;
}

.account-hero-rule {
  margin: 28px 0 22px;
  height: 1px;
  width: min(220px, 40%);
  background: rgba(255, 255, 255, 0.55);
  transform-origin: left center;
}

.account-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 28px;
  font-family: var(--font-body-family) !important;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none !important;
}

.account-hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  display: inline-block;
}

.account-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-hero-cta,
.account-hero-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 13px 22px;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.account-hero-cta {
  background: #ffffff;
  color: #000000;
}

.account-hero-cta:hover {
  background: transparent;
  color: #ffffff;
}

.account-hero-logout {
  background: transparent;
  color: #ffffff;
}

.account-hero-logout:hover {
  background: #ffffff;
  color: #000000;
}

.account-hero-logout:disabled {
  opacity: 0.55;
  cursor: wait;
}

.account-orders {
  padding: 56px 0 96px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

.account-orders-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #000000;
}

.account-orders-title {
  margin: 0;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.account-orders-count {
  margin: 0;
  font-family: var(--font-body-family) !important;
  font-size: 13px;
  color: #666666;
  text-transform: none !important;
  flex-shrink: 0;
}

.account-empty {
  padding: 64px 0 24px;
  text-align: left;
}

.account-empty-kicker {
  margin: 0 0 12px;
  font-family: "Helvetica Compressed", "Arial Narrow", sans-serif !important;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.account-empty-copy {
  margin: 0 0 28px;
  max-width: 360px;
  font-family: var(--font-body-family) !important;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
  text-transform: none !important;
}

.account-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  text-decoration: none;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.account-empty-cta:hover {
  opacity: 0.85;
}

.account-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.account-order-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, max-content);
  gap: 12px 20px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 22px 12px;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.account-order-row:hover {
  background: #f7f7f7;
}

.account-order-row:focus-visible {
  outline: 2px solid #000000;
  outline-offset: -2px;
}

.account-order-main,
.account-order-items,
.account-order-side {
  min-width: 0;
  max-width: 100%;
}

.account-order-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-order-id {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 16px;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.account-order-date {
  font-family: var(--font-body-family) !important;
  font-size: 13px;
  color: #666666;
  text-transform: none !important;
}

.account-order-items {
  font-family: var(--font-body-family) !important;
  font-size: 14px;
  line-height: 1.4;
  color: #222222;
  text-transform: none !important;
  overflow-wrap: anywhere;
}

.account-order-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
  justify-self: end;
}

.account-order-status-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.account-order-eta {
  display: block;
  max-width: 180px;
  font-family: var(--font-body-family) !important;
  font-weight: 400 !important;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none !important;
  color: #666666;
  text-align: right;
}

.account-order-eta-date {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.account-order-status {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 4px 8px;
  white-space: nowrap;
}

.account-order-status.status-shipped,
.account-order-status.status-in_transit,
.account-order-status.status-delivered {
  background: #000000;
  color: #ffffff;
}

.account-order-status.status-cancelled {
  border-color: #999999;
  color: #999999;
}

.account-order-total {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 16px;
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .account-hero {
    min-height: auto;
    padding: 48px 0 40px;
  }

  .account-hero-name {
    font-size: clamp(52px, 18vw, 88px);
  }

  .account-orders {
    padding: 40px 0 72px;
  }

  .account-order-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .account-order-side {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    justify-self: stretch;
  }

  .account-order-status-block {
    align-items: flex-start;
  }

  .account-order-eta {
    text-align: left;
    max-width: none;
  }
}

.eyezy-order-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: calc(100vh - 80px);
  width: 100%;
  max-width: 100%;
  overflow: clip;
  background: #ffffff;
}

.order-detail-panel {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  border-right: 1px solid #e8e8e8;
}

.order-detail-panel-inner {
  width: 100%;
  max-width: 560px;
  padding: 36px 40px 64px;
  box-sizing: border-box;
}

.order-detail-back {
  display: inline-block;
  margin-bottom: 36px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
}

.order-detail-back:hover {
  opacity: 0.55;
}

.order-detail-kicker {
  margin: 0 0 14px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666666;
}

.order-detail-product {
  margin: 0;
  font-family: "Helvetica Compressed", "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
  word-break: break-word;
}

.order-detail-rule {
  width: min(180px, 45%);
  height: 1px;
  margin: 26px 0 28px;
  background: #000000;
  transform-origin: left center;
}

.order-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0 0 36px;
}

.order-detail-facts dt {
  margin: 0 0 4px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
}

.order-detail-facts dd {
  margin: 0;
  font-family: var(--font-body-family) !important;
  font-size: 15px;
  line-height: 1.4;
  color: #111111;
  text-transform: none !important;
}

.order-detail-status {
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.order-detail-eta {
  margin-bottom: 28px;
}

.order-detail-eta-label {
  margin: 0 0 14px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666666;
}

.order-detail-eta-date {
  margin: 0;
  font-family: "Helvetica Compressed", "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
  word-break: break-word;
}

.order-detail-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.order-detail-status-label {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
}

.order-detail-status-pill {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 6px 10px;
  white-space: nowrap;
}

.order-detail-status-pill.fulfillment-in_transit {
  background: #000000;
  color: #ffffff;
}

.order-detail-status-pill.fulfillment-delivered {
  background: #000000;
  color: #ffffff;
}

.order-detail-status-pill.fulfillment-cancelled {
  border-color: #999999;
  color: #999999;
}

.order-detail-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.order-detail-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.order-detail-step-dot {
  position: relative;
  width: 100%;
  height: 2px;
  background: #d5d5d5;
  display: block;
  overflow: hidden;
}

.order-detail-step.is-done .order-detail-step-dot,
.order-detail-step.is-current .order-detail-step-dot {
  background: #000000;
}

.order-detail-step.is-current .order-detail-step-dot {
  animation: order-progress-pulse 1.8s ease-in-out infinite;
}

.order-detail-step.is-current .order-detail-step-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 100%
  );
  animation: order-progress-shimmer 1.8s ease-in-out infinite;
}

.order-detail-step-label {
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaaaaa;
}

.order-detail-step.is-done .order-detail-step-label,
.order-detail-step.is-current .order-detail-step-label {
  color: #000000;
}

.order-detail-tracking {
  margin-bottom: 28px;
}

.order-detail-tracking-label,
.order-detail-ship-label {
  margin: 0 0 8px;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
}

.order-detail-carrier {
  margin: 0 0 4px;
  font-family: var(--font-body-family) !important;
  font-size: 14px;
  color: #444444;
  text-transform: none !important;
}

.order-detail-tracking-number {
  margin: 0;
  display: inline-block;
  font-family: var(--font-heading-family) !important;
  font-weight: 700 !important;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #000000;
  text-decoration: none;
  word-break: break-all;
}

a.order-detail-tracking-number {
  border-bottom: 1px solid #000000;
}

a.order-detail-tracking-number:hover {
  opacity: 0.55;
}

.order-detail-ship {
  margin-bottom: 8px;
}

.order-detail-ship-lines {
  margin: 0;
  font-family: var(--font-body-family) !important;
  font-size: 14px;
  line-height: 1.55;
  color: #222222;
  text-transform: none !important;
}

.order-detail-items {
  list-style: none;
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #dddddd;
}

.order-detail-items li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-family: var(--font-body-family) !important;
  font-size: 14px;
  text-transform: none !important;
}

.order-detail-visual {
  position: relative;
  min-height: 520px;
  background: #0c0c0c;
  overflow: hidden;
}

.order-detail-visual-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.order-detail-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  animation: none;
}

.order-detail-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Helvetica Compressed", "Arial Narrow", sans-serif !important;
  font-size: clamp(40px, 8vw, 80px);
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
  background:
    radial-gradient(90% 70% at 70% 20%, #2c2c2c 0%, #0c0c0c 55%, #000 100%);
}

@keyframes order-detail-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes order-progress-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
  }
  50% {
    opacity: 0.55;
    transform: scaleY(1.8);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0);
  }
}

@keyframes order-progress-shimmer {
  0% {
    left: -40%;
  }
  100% {
    left: 120%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-detail-image {
    animation: none;
  }

  .order-detail-step.is-current .order-detail-step-dot {
    animation: none;
  }

  .order-detail-step.is-current .order-detail-step-dot::after {
    animation: none;
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .eyezy-order-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .order-detail-panel {
    border-right: none;
    order: 2;
  }

  .order-detail-visual {
    order: 1;
    min-height: 56vh;
  }

  .order-detail-panel-inner {
    max-width: none;
    padding: 32px 20px 72px;
  }

  .order-detail-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 549px) {
  .order-detail-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .order-detail-step {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .order-detail-step-dot {
    width: 28px;
    height: 2px;
    flex-shrink: 0;
  }
}

/* ——— Lookbook: force full white experience ——— */
body.eyezy-lookbook,
body.eyezy-lookbook .eyezy-store,
body.eyezy-lookbook #MainContent,
body.eyezy-lookbook .content-for-layout {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

body.eyezy-lookbook .header-shell,
body.eyezy-lookbook .header-wrapper,
body.eyezy-lookbook .header-shell--lookbook {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

body.eyezy-lookbook .header-wrapper .right-nav,
body.eyezy-lookbook .header-wrapper .right-nav > *,
body.eyezy-lookbook .header-logo-text,
body.eyezy-lookbook .menu-link {
  color: #0a0a0a !important;
}

body.eyezy-lookbook .site-footer,
body.eyezy-lookbook .footer,
body.eyezy-lookbook footer.footer {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-top-color: #e8e8e8 !important;
}

body.eyezy-lookbook .fs-lookbook__intro {
  text-align: center !important;
}

/* ——— Conversion and utility states ——— */
.eyezy-announcement {
  position: relative;
  z-index: 12;
  width: 100%;
  padding: 8px 15px;
  box-sizing: border-box;
  background: #000000;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-heading-family);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.email-banner__button:disabled,
.email-banner__input:disabled {
  opacity: 0.6;
  cursor: wait;
}

.email-banner__status {
  min-height: 20px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 13px;
}

.email-banner__status--error {
  color: #b42318;
}

.email-banner__status--success {
  color: #166534;
}

.eyezy-empty-state {
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.eyezy-empty-state h2,
.cart-drawer-empty h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.eyezy-empty-state p,
.cart-drawer-empty p {
  margin: 0 0 24px;
  color: #555555;
  font-size: 15px;
}

.lookbook-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading-family);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.product-options {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.product-options legend {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
  font-family: var(--font-heading-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-availability {
  display: flex;
  justify-content: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  font-family: var(--font-heading-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-availability span + span::before {
  content: "·";
  margin-right: 14px;
}

.product-selection-error {
  margin: 8px auto 12px;
  color: #b42318;
  font-size: 13px;
  text-align: center;
}

.product-size-guide-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cart-drawer-item__variant {
  margin: -2px 0 6px;
  color: #666666;
  font-size: 13px;
}

.cart-shipping-progress {
  margin-bottom: 18px;
}

.cart-shipping-progress p {
  margin: 0 0 8px;
  text-align: center;
  font-size: 13px;
}

.cart-shipping-progress__track {
  height: 3px;
  overflow: hidden;
  background: #dedede;
}

.cart-shipping-progress__track span {
  display: block;
  height: 100%;
  background: #000000;
  transition: width 0.25s ease;
}

.cart-drawer-empty {
  margin: auto 0;
}

.cart-drawer-empty__cta,
.eyezy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid #000000;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading-family);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.eyezy-button--outline {
  background: #ffffff;
  color: #000000;
}

/* Legacy route pages in the Eyezy system */
.eyezy-cart-page,
.eyezy-size-guide {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 52px;
  padding-bottom: 90px;
}

.eyezy-cart-page > h1,
.eyezy-size-guide h1,
.eyezy-status-page h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 64px);
}

.eyezy-cart-page__count,
.eyezy-size-guide__kicker,
.eyezy-status-page__kicker {
  margin: 8px 0 38px;
  color: #666666;
  font-family: var(--font-heading-family) !important;
  font-size: 13px;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.eyezy-cart-page__empty {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.eyezy-cart-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #d8d8d8;
}

.eyezy-cart-line__image {
  width: 110px;
  height: 110px;
  background: #f4f4f4;
}

.eyezy-cart-line__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyezy-cart-line__name {
  color: #000000;
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.eyezy-cart-line__variant {
  margin: 6px 0 14px;
  color: #666666;
  font-size: 13px;
}

.eyezy-cart-line__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyezy-cart-line__controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 1px solid #000000;
  background: #ffffff;
  cursor: pointer;
}

.eyezy-cart-line__controls button:disabled {
  opacity: 0.3;
}

.eyezy-cart-line__controls svg {
  width: 13px;
  height: 13px;
}

.eyezy-cart-line__remove {
  margin-left: 8px;
  border: 0 !important;
}

.eyezy-cart-line__total {
  margin: 0;
  font-size: 15px;
}

.eyezy-cart-page__summary {
  margin-left: auto;
  padding-top: 28px;
  width: min(100%, 390px);
}

.eyezy-cart-page__summary > div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyezy-cart-page__summary > p {
  margin: 8px 0 18px;
  color: #666666;
  font-size: 12px;
}

.eyezy-cart-page__summary .eyezy-button {
  width: 100%;
}

.eyezy-status-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyezy-status-page__inner {
  max-width: 600px;
  padding: 70px 0;
}

.eyezy-status-page__copy {
  margin: 18px auto 28px;
  max-width: 500px;
  color: #555555;
  font-size: 15px;
  line-height: 1.5;
}

.eyezy-status-page__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eyezy-size-guide__inner {
  max-width: 760px;
  margin: 0 auto;
}

.eyezy-size-guide__intro {
  max-width: 560px;
  margin: 14px 0 48px;
  color: #555555;
  line-height: 1.5;
}

.eyezy-size-guide__charts {
  display: grid;
  gap: 54px;
}

.eyezy-size-guide__chart h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.eyezy-size-guide__table-wrap {
  overflow-x: auto;
}

.eyezy-size-guide table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.eyezy-size-guide th,
.eyezy-size-guide td {
  padding: 13px 18px 13px 0;
  border-bottom: 1px solid #d8d8d8;
  text-align: left;
  white-space: nowrap;
}

.eyezy-size-guide th {
  font-family: var(--font-heading-family);
  font-size: 12px;
  text-transform: uppercase;
}

.eyezy-size-guide__note {
  margin: 12px 0 0;
  color: #666666;
  font-size: 12px;
}

.eyezy-size-guide__help {
  margin-top: 54px;
  padding: 22px;
  border: 1px solid #000000;
}

.eyezy-size-guide__help p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.eyezy-size-guide__help a {
  color: #000000;
  text-decoration: underline;
}

@media screen and (max-width: 749px) {
  .eyezy-cart-page,
  .eyezy-size-guide {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .eyezy-cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .eyezy-cart-line__image {
    width: 82px;
    height: 92px;
  }

  .eyezy-cart-line__total {
    grid-column: 2;
    margin-top: -8px;
  }
}

