:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-muted: #dddddd;
  --color-line: rgba(255, 255, 255, .18);
  --font-base: 14px;
  --header-pad-x: 24px;
  --header-pad-y: 20px;
  --ease: 300ms ease;
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.25;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open,
body.cart-notice-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: start;
  padding: var(--header-pad-y) var(--header-pad-x);
  pointer-events: none;
}

.site-header a,
.site-header button {
  pointer-events: auto;
}

.desktop-menu ul,
.footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-menu {
  justify-self: start;
  max-width: 160px;
  font-size: 12px;
  text-transform: uppercase;
}

.desktop-menu a,
.header-actions a,
.footer-menu a {
  display: inline-block;
  padding: 2px 0;
  transition: color var(--ease), opacity var(--ease);
}

.desktop-menu a:hover,
.header-actions a:hover,
.footer-menu a:hover,
.view-all:hover {
  color: var(--color-muted);
}

.desktop-menu ul ul,
.desktop-menu .sub-menu {
  padding-left: 16px;
  margin-bottom: 10px;
}

.desktop-menu ul ul a,
.desktop-menu .sub-menu a {
  color: var(--color-muted);
}

.header-logo {
  justify-self: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 420ms ease, visibility 420ms ease, transform 420ms ease;
}

.header-logo.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-logo-always .header-logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-logo img {
  width: 60px;
  height: auto;
}

.header-actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 13px;
}

.cart-link {
  text-transform: uppercase;
}

.cart-link span {
  margin-right: 2px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 7px 0;
  background: var(--color-text);
  transition: transform var(--ease), opacity var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  padding: 92px 24px 28px;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.mobile-panel-logo {
  position: absolute;
  top: 84px;
  right: 20px;
  width: 60px;
  height: auto;
  opacity: .95;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  background: var(--color-bg);
}

.hero-viewport {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide iframe {
  border: 0;
}

.hero-slide-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
}

.vimeo-background,
.vimeo-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
}

.vimeo-background {
  overflow: hidden;
}

.vimeo-background iframe {
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: clamp(170px, 24vw, 330px);
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.slider-control,
.sound-toggle {
  position: absolute;
  z-index: 8;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: .82;
  transition: opacity var(--ease), transform var(--ease);
}

.slider-control:hover,
.sound-toggle:hover {
  opacity: 1;
}

.slider-control {
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}

.slider-control:hover {
  transform: translateY(-50%) scale(1.08);
}

.slider-control::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 2px solid var(--color-text);
  border-left: 2px solid var(--color-text);
}

.slider-control-prev {
  left: var(--header-pad-x);
}

.slider-control-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.slider-control-next {
  right: var(--header-pad-x);
}

.slider-control-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.sound-toggle {
  right: var(--header-pad-x);
  bottom: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .38);
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 13h5l7-6v18l-7-6H7v-6z' fill='%23fff'/%3E%3Cpath d='M22 11c2 2.4 2 7.6 0 10' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M25 8c3.4 4.5 3.4 11.5 0 16' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' opacity='.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 38% center;
  background-size: 24px 24px;
}

.sound-toggle:hover {
  transform: scale(1.08);
}

.sound-toggle.is-muted {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 13h5l7-6v18l-7-6H7v-6z' fill='%23fff'/%3E%3Cpath d='M23 12l6 8' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M29 12l-6 8' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.product-section {
  padding: clamp(42px, 7vw, 60px) var(--header-pad-x) clamp(56px, 8vw, 80px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  align-items: end;
}

.product-card {
  display: grid;
  min-height: clamp(210px, 27vw, 460px);
  place-items: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: opacity var(--ease), transform var(--ease);
}

.product-card:hover img {
  opacity: .76;
  transform: translateY(-3px);
}

.view-all {
  display: block;
  width: max-content;
  margin: clamp(44px, 7vw, 60px) auto 0;
  font-size: clamp(2.3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--ease);
}

.site-footer {
  padding: 0 var(--header-pad-x) 30px;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.footer-menu {
  color: var(--color-muted);
  font-size: 12px;
}

.footer-menu ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-main {
  min-height: calc(100vh - 160px);
  padding: 150px var(--header-pad-x) 90px;
}

.page-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 54px;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-content h1 {
  font-size: 32px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 18px;
}

.page-content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 14px;
}

.page-content p,
.page-content li {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-content p {
  margin: 0 0 16px;
}

.page-content .page-intro {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.35;
}

.page-content ul,
.page-content ol {
  margin: 0 0 28px;
  padding-left: 18px;
}

.page-content li + li {
  margin-top: 8px;
}

.page-content a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.page-content a:hover {
  color: var(--color-muted);
}

.page-content blockquote {
  margin: 34px 0;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--color-muted);
}

.page-content blockquote p {
  color: var(--color-text);
}

.commerce-main {
  width: 100%;
  max-width: 980px;
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding: 150px var(--header-pad-x) 90px;
}

.commerce-main h1,
.commerce-main h2 {
  margin: 0;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.commerce-main h1 {
  margin-bottom: 54px;
  font-size: 32px;
  text-align: center;
}

.commerce-main h2 {
  margin-bottom: 20px;
  font-size: 16px;
}

.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  color: var(--color-text);
  font-size: 14px;
  text-align: left;
}

.shop_table th,
.shop_table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  font-weight: 400;
  vertical-align: top;
}

.shop_table thead th {
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.shop_table .product-name a,
.shop_table .product-name span {
  display: block;
}

.shop_table .product-name span {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
}

.qty,
.form-row input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-muted);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  line-height: 1.25;
}

.qty {
  max-width: 48px;
  padding: 0 0 4px;
}

.form-row input {
  padding: 8px 0;
}

.qty:focus,
.form-row input:focus {
  outline: 0;
  border-color: var(--color-text);
}

.cart_totals {
  width: min(100%, 380px);
  margin-left: auto;
}

.order-total th,
.order-total td {
  color: var(--color-text);
  font-weight: 700;
}

.button,
.checkout-button,
.cart-notice-link {
  display: inline-block;
  padding: 7px 10px 6px;
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.button:hover,
.checkout-button:hover,
.cart-notice-link:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.wc-block-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  color: var(--color-text);
}

.wc-block-components-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px) !important;
  gap: clamp(48px, 7vw, 96px) !important;
}

.wc-block-checkout a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wc-block-components-main,
.wc-block-components-sidebar {
  width: 100%;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  grid-column: 1;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  padding: 0 !important;
}

.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  grid-column: 2;
  width: 100% !important;
  max-width: 380px !important;
  min-width: 300px;
  padding: 0 !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-sidebar-layout .wc-block-components-main h2,
.wc-block-components-sidebar-layout .wc-block-components-sidebar h2 {
  margin: 0 0 22px;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.wc-block-components-checkout-step {
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.wc-block-components-checkout-step__container {
  padding: 0;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-totals-coupon__input input,
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url] {
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--color-muted);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  line-height: 1.25;
  box-shadow: none;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-totals-coupon__input input:focus {
  border-color: var(--color-text);
  background: transparent;
  color: var(--color-text);
  box-shadow: none;
  outline: 0;
}

.wc-block-components-text-input label,
.wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.wc-block-components-address-form__address_2-toggle {
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.wc-block-components-address-form-wrapper,
.wc-block-components-address-card,
.wc-block-components-checkout-step__description,
.wc-block-components-validation-error,
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
  color: var(--color-muted);
}

.wc-block-components-checkbox__input,
.wc-block-components-radio-control__input {
  accent-color: var(--color-text);
}

.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link) {
  min-height: 0;
  padding: 9px 12px 8px;
  border: 1px solid var(--color-text);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link):hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.wc-block-components-sidebar {
  position: sticky;
  top: 110px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background: transparent;
  color: var(--color-text);
}

.wc-block-components-sidebar > * {
  padding-right: 18px;
  padding-left: 18px;
}

.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-totals-wrapper,
.wc-block-components-sidebar .wc-block-components-order-summary,
.wc-block-components-sidebar .wc-block-components-order-summary__content {
  border-color: rgba(255, 255, 255, .22);
  background: transparent;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px 0;
  color: var(--color-text);
}

.wc-block-components-order-summary-item__image {
  position: relative;
  width: 58px;
  align-self: start;
}

.wc-block-components-order-summary-item__image img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.wc-block-components-order-summary-item__quantity {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-bg);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--color-bg);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-order-summary-item__total-price {
  color: var(--color-text);
}

.wc-block-components-product-name {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.wc-block-components-product-metadata,
.wc-block-components-product-metadata__description,
.wc-block-components-product-metadata__variation-data {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.25;
}

.wc-block-components-totals-wrapper {
  padding: 0;
}

.wc-block-components-totals-item,
.wc-block-components-totals-coupon,
.wc-block-components-order-summary__button-text,
.wc-block-components-panel__button,
.wc-block-components-totals-coupon__button {
  color: var(--color-text);
}

.wc-block-components-totals-item {
  padding: 16px 0;
}

.wc-block-components-totals-footer-item {
  font-size: 1.25rem;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: 400;
}

.wc-block-components-notice-banner {
  border-radius: 0;
  font-size: 13px;
  line-height: 1.35;
}

.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-checkout,
.woocommerce-checkout .wc-block-components-sidebar-layout {
  width: 100% !important;
  max-width: none !important;
}

@media (min-width: 861px) {
  .woocommerce-checkout .commerce-main {
    width: calc(100vw - 220px) !important;
    max-width: 1280px !important;
    min-width: 1060px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 1060px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 84px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block {
    flex: 0 0 620px !important;
    width: 620px !important;
    max-width: 620px !important;
    min-width: 620px !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    flex: 0 0 380px !important;
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block > *,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-step,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-step__container,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-step__content,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-address-form,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-text-input,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-combobox,
  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block .wc-block-components-country-input {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: clamp(48px, 7vw, 96px) !important;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    order: 1;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    order: 2;
    flex: 0 0 380px !important;
    width: 380px !important;
    max-width: 380px !important;
    min-width: 300px !important;
    padding: 0 !important;
  }

  .woocommerce-checkout .wc-block-components-checkout-step__content,
  .woocommerce-checkout .wc-block-components-address-form,
  .woocommerce-checkout .wc-block-components-text-input,
  .woocommerce-checkout .wc-block-components-combobox {
    width: 100% !important;
    min-width: 0 !important;
  }
}

.checkout-fields,
.checkout-review {
  min-width: 0;
}

.woocommerce-checkout .checkout-commerce {
  width: 100% !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.adelfos-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.adelfos-checkout .checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.adelfos-checkout .checkout-fields h2,
.adelfos-checkout .form-row-wide,
.adelfos-checkout .form-row.notes {
  grid-column: 1 / -1;
}

.adelfos-checkout .form-row {
  margin: 0;
}

.adelfos-checkout .form-row-first {
  grid-column: 1;
}

.adelfos-checkout .form-row-last {
  grid-column: 2;
}

.adelfos-checkout .checkout-review {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
}

.woocommerce-checkout .adelfos-checkout input.input-text,
.woocommerce-checkout .adelfos-checkout input[type="email"],
.woocommerce-checkout .adelfos-checkout input[type="tel"],
.woocommerce-checkout .adelfos-checkout input[type="text"],
.woocommerce-checkout .adelfos-checkout textarea,
.woocommerce-checkout .adelfos-checkout select,
.woocommerce-checkout .adelfos-checkout .select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 38px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--color-muted);
  border-radius: 0;
  background: #111111 !important;
  background-color: #111111 !important;
  color: var(--color-text) !important;
  font: inherit;
  line-height: 1.25;
  box-shadow: none;
}

.woocommerce-checkout .adelfos-checkout textarea {
  min-height: 88px;
  resize: vertical;
}

.woocommerce-checkout .adelfos-checkout input.input-text:focus,
.woocommerce-checkout .adelfos-checkout input[type="email"]:focus,
.woocommerce-checkout .adelfos-checkout input[type="tel"]:focus,
.woocommerce-checkout .adelfos-checkout input[type="text"]:focus,
.woocommerce-checkout .adelfos-checkout textarea:focus,
.woocommerce-checkout .adelfos-checkout select:focus,
.woocommerce-checkout .adelfos-checkout .select2-container--open .select2-selection--single,
.woocommerce-checkout .adelfos-checkout .select2-container--focus .select2-selection--single {
  outline: 0;
  border-color: var(--color-text);
  background: #111111 !important;
  background-color: #111111 !important;
  color: var(--color-text) !important;
  box-shadow: none;
}

.woocommerce-checkout .adelfos-checkout .select2,
.woocommerce-checkout .adelfos-checkout .select2-container,
.woocommerce-checkout .adelfos-checkout .select2-container .selection,
.woocommerce-checkout .adelfos-checkout .select2-selection,
.woocommerce-checkout .adelfos-checkout .select2-selection__rendered {
  background: #111111 !important;
  background-color: #111111 !important;
  color: var(--color-text) !important;
}

.woocommerce-checkout .adelfos-checkout input:-webkit-autofill,
.woocommerce-checkout .adelfos-checkout input:-webkit-autofill:hover,
.woocommerce-checkout .adelfos-checkout input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  box-shadow: 0 0 0 1000px #111111 inset;
  transition: background-color 9999s ease-out;
}

.woocommerce-checkout .adelfos-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 24px;
  padding-left: 0;
  color: var(--color-text) !important;
  line-height: 1.25;
}

.woocommerce-checkout .adelfos-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  right: 0;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: rgba(255, 255, 255, .28);
  background: #111111 !important;
  color: var(--color-text) !important;
}

.select2-container--default .select2-results__option {
  background: #111111;
  color: var(--color-text) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #1b1b1b;
  color: var(--color-text);
}

.adelfos-checkout .woocommerce-checkout-review-order-table {
  margin-bottom: 22px;
}

.adelfos-checkout .woocommerce-checkout-payment {
  margin: 0;
}

.adelfos-checkout .woocommerce-privacy-policy-text {
  margin: 22px 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.adelfos-checkout .place-order {
  margin: 0;
  padding: 0;
}

.adelfos-checkout #place_order {
  width: 100%;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
  max-width: 980px;
}

.form-row {
  margin: 0 0 18px;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.payment_methods {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.payment_method_paypal {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  padding-bottom: 18px;
}

.payment_method_paypal label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment_method_paypal input {
  accent-color: var(--color-text);
}

.payment_method_paypal p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
}

.cart-notice {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .62);
}

.cart-notice[hidden] {
  display: none;
}

.cart-notice-panel {
  position: relative;
  width: min(100%, 360px);
  padding: 28px;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, .28);
  text-align: center;
}

.cart-notice-title {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.cart-notice-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-notice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-notice-close::before,
.cart-notice-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--color-text);
  content: "";
}

.cart-notice-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cart-notice-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 0;
  color: var(--color-muted);
  font-size: 14px;
  list-style: none;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-pagination {
  margin-top: 54px;
  text-align: center;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  list-style: none;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  color: inherit;
}

.woocommerce-pagination .page-numbers .current {
  color: var(--color-text);
}

.woocommerce-pagination.is-infinite-hidden {
  display: none;
}

.infinite-scroll-status {
  margin-top: 54px;
  color: var(--color-muted);
  font-size: .82rem;
  text-align: center;
  text-transform: uppercase;
}

.infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
}

.product-info form.cart {
  margin: 0;
}

.product-info form.cart .quantity,
.product-info input.qty,
.product-info .qty,
.product-info .variations {
  display: none;
}

.product-info form.cart .button {
  margin-top: 0;
}

.product-form-message {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: .82rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-info form.cart .button:disabled {
  opacity: .45;
  cursor: wait;
}

.product-info select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-muted);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
}

.product-info select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: 0;
  border-color: var(--color-text);
}

.woocommerce form .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.woocommerce form .form-row label {
  color: var(--color-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order,
.woocommerce-checkout-payment,
.woocommerce-billing-fields {
  margin-bottom: 36px;
}

.shop-main {
  min-height: 100vh;
  padding: 90px var(--header-pad-x) clamp(60px, 8vw, 110px);
}

.shop-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.shop-symbol {
  width: clamp(62px, 7vw, 94px);
  height: auto;
  margin-bottom: 12px;
}

.shop-wordmark {
  position: fixed;
  top: 90px;
  left: 50%;
  z-index: 14;
  width: 170px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.size-filter {
  position: fixed;
  top: 124px;
  right: var(--header-pad-x);
  z-index: 14;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 0;
  color: var(--color-muted);
  font-size: .82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.size-filter a {
  transition: color var(--ease);
}

.size-filter a:hover,
.size-filter a.is-active {
  color: var(--color-text);
}

.size-filter a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(34px, 4.8vw, 72px) clamp(18px, 2.4vw, 44px);
  align-items: start;
  width: 100%;
}

.woocommerce-result-count,
.woocommerce-ordering,
.products .product .woocommerce-loop-product__title,
.products .product .price,
.products .product .button,
.products .product .star-rating {
  display: none;
}

.products.listing-grid,
.listing-grid.products {
  padding: 0;
  margin: 0;
  list-style: none;
}

.listing-product {
  display: grid;
  aspect-ratio: 1 / 1.05;
  place-items: center;
  text-align: initial;
}

.listing-product.product {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}

.listing-product img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: opacity var(--ease), transform var(--ease);
}

.listing-product:hover img {
  opacity: .78;
  transform: translateY(-3px);
}

.product-main {
  min-height: 100vh;
  padding: 80px var(--header-pad-x) 90px;
}

.single-product div.product > .woocommerce-product-gallery,
.single-product div.product > .summary.entry-summary,
.single-product div.product > .woocommerce-tabs,
.single-product div.product > .related,
.single-product div.product > .upsells {
  display: none;
}

.product-info {
  position: fixed;
  top: 240px;
  left: var(--header-pad-x);
  z-index: 9;
  width: min(340px, 23vw);
  text-transform: uppercase;
}

.product-info h1 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

.product-subtitle {
  margin: 0 0 24px;
  font-weight: 400;
}

.product-description {
  max-width: 330px;
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: .86rem;
  line-height: 1.25;
}

.product-description p {
  margin: 0 0 10px;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 18px;
}

.product-size-label {
  flex: 0 0 100%;
  margin: 0;
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-sizes button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--ease);
}

.product-sizes button.is-selected {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-sizes button:hover {
  color: var(--color-muted);
}

.product-size-chart {
  display: inline-block;
  margin-bottom: 32px;
  border-bottom: 1px solid currentColor;
  font-size: .86rem;
}

.product-price {
  margin: 0 0 22px;
  font-size: 1.18rem;
  font-weight: 700;
}

.add-to-cart {
  padding: 5px 9px 4px;
  border: 1px solid var(--color-text);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color var(--ease), color var(--ease);
}

.add-to-cart:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.product-gallery {
  display: grid;
  justify-items: center;
  width: min(62vw, 880px);
  margin: 0 auto;
  gap: clamp(70px, 10vw, 150px);
}

.gallery-scrollbar {
  display: none;
}

.product-image-button {
  display: grid;
  width: 100%;
  min-height: 78vh;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-image-button:focus,
.product-image-button:focus-visible,
.product-image-button:active {
  outline: 0;
  box-shadow: none;
}

.product-image-button img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  transition: opacity var(--ease);
}

.product-image-button:hover img {
  opacity: .82;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, .92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  content: "";
  background: var(--color-text);
}

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

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

@media (max-width: 860px) {
  :root {
    --header-pad-x: 16px;
    --header-pad-y: 16px;
  }

  .site-header {
    grid-template-columns: 72px 1fr minmax(72px, auto);
    align-items: start;
  }

  .desktop-menu {
    position: fixed;
    z-index: 16;
    top: 92px;
    left: 24px;
    width: 58%;
    max-width: 210px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
  }

  .desktop-menu a {
    font-size: 12px;
    line-height: 1.25;
  }

  .desktop-menu .sub-menu {
    padding-left: 12px;
    margin-bottom: 10px;
  }

  .menu-open .desktop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
    justify-self: start;
  }

  .mobile-panel {
    display: block;
  }

  .menu-open .mobile-panel {
    opacity: 1;
    visibility: visible;
  }

  .menu-open .header-logo,
  .menu-open .header-actions {
    opacity: 0;
    visibility: hidden;
  }

  .header-actions {
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .product-card {
    min-height: clamp(220px, 58vw, 380px);
  }

  .footer-menu {
    position: fixed;
    z-index: 16;
    left: 24px;
    bottom: 30px;
    display: block;
    max-width: 180px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-align: left;
    transition: opacity var(--ease), visibility var(--ease);
  }

  .footer-menu ul {
    display: block;
  }

  .footer-menu a {
    display: block;
    padding: 1px 0;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
  }

  .menu-open .footer-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .page-main {
    padding: 104px 18px 64px;
  }

  .page-header {
    margin-bottom: 38px;
  }

  .page-content h1 {
    font-size: 24px;
  }

  .page-content h2 {
    margin-top: 38px;
    font-size: 16px;
  }

  .page-content .page-intro {
    font-size: 14px;
  }

  .commerce-main {
    padding: 104px 18px 64px;
  }

  .woocommerce-checkout .commerce-main {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .commerce-main h1 {
    margin-bottom: 36px;
    font-size: 24px;
  }

  .woocommerce-cart-form .shop_table thead {
    display: none;
  }

  .woocommerce-cart-form .shop_table tr,
  .woocommerce-cart-form .shop_table td {
    display: block;
  }

  .woocommerce-cart-form .shop_table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .woocommerce-cart-form .shop_table td::before {
    color: var(--color-muted);
    content: attr(data-title);
    font-size: 12px;
    text-transform: uppercase;
  }

  .woocommerce-cart-form .product-name {
    align-items: flex-start;
  }

  .cart_totals {
    width: 100%;
    margin-left: 0;
  }

  .checkout {
    display: block;
  }

  .adelfos-checkout {
    display: block;
  }

  .adelfos-checkout .checkout-fields {
    display: block;
  }

  .adelfos-checkout .checkout-fields h2,
  .adelfos-checkout .form-row {
    margin-bottom: 18px;
  }

  .adelfos-checkout .checkout-review {
    margin-top: 42px;
    padding: 18px;
  }

  .wc-block-checkout,
  .wc-block-components-sidebar-layout {
    display: block;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout {
    display: block !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout {
    display: block !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-fields-block,
  .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .woocommerce-checkout .wp-block-woocommerce-checkout-totals-block {
    margin-top: 34px;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
  }

  .wc-block-components-sidebar {
    position: static;
    margin-top: 34px;
  }

  .wc-block-components-sidebar > * {
    padding-right: 14px;
    padding-left: 14px;
  }

  .wc-block-components-order-summary .wc-block-components-order-summary-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .wc-block-components-order-summary-item__image,
  .wc-block-components-order-summary-item__image img {
    width: 52px;
    height: 52px;
  }

  .checkout-fields {
    margin-bottom: 42px;
  }

  .cart-notice-panel {
    padding: 26px 18px;
  }

  .shop-main {
    padding: 90px 18px 56px;
  }

  .shop-heading {
    margin-bottom: 28px;
  }

  .shop-symbol {
    width: 54px;
    margin-bottom: 8px;
  }

  .shop-wordmark {
    position: static;
    width: 90vw;
    transform: none;
  }

  .size-filter {
    position: static;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 13px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: .68rem;
    scrollbar-width: none;
  }

  .size-filter::-webkit-scrollbar {
    display: none;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    align-items: center;
  }

  .listing-product {
    aspect-ratio: 1 / 1.1;
  }

  .listing-product img {
    max-height: 270px;
  }

  .product-main {
    display: flex;
    flex-direction: column;
    padding: 92px 0 50px;
  }

  .product-gallery {
    display: flex;
    width: 100%;
    margin: 0;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-scrollbar {
    display: block;
    width: calc(100% - 36px);
    height: 2px;
    margin: 0 18px 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .28);
  }

  .gallery-scrollbar span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--color-text);
    transform: translate3d(0, 0, 0);
  }

  .product-image-button {
    flex: 0 0 100%;
    min-height: 0;
    padding: 24px 18px 32px;
    border: 0;
    scroll-snap-align: start;
  }

  .product-image-button img {
    width: 100%;
    height: auto;
    max-height: 62vh;
    object-fit: contain;
  }

  .product-info {
    position: static;
    width: 100%;
    padding: 18px 18px 0;
    border: 0;
  }

  .product-info h1 {
    font-size: 1rem;
  }

  .product-subtitle {
    margin-bottom: 14px;
    font-size: .78rem;
  }

  .product-description {
    margin-bottom: 12px;
    font-size: .67rem;
    line-height: 1.2;
  }

  .product-sizes {
    gap: 18px;
    margin-bottom: 12px;
  }

  .product-size-chart {
    margin-bottom: 18px;
    font-size: .72rem;
  }

  .product-price {
    margin-bottom: 12px;
    font-size: .92rem;
  }

  .add-to-cart {
    padding: 4px 7px;
    font-size: .86rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: clamp(150px, 52vw, 220px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 340px;
  }

  .view-all {
    font-size: clamp(2.8rem, 17vw, 5rem);
  }

  .mobile-panel-logo {
    top: 84px;
    right: 20px;
    width: 60px;
  }

  .shop-main {
    padding-top: 90px;
  }

  .listing-grid {
    gap: 16px 14px;
  }
}

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