@font-face {
  font-family: "Fracktif SemiBold";
  src: local("Fracktif SemiBold"), local("Fracktif-SemiBold"), local("Fracktif Semibold");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --header-height: 40px;
  --ink: #0a0a0a;
  --paper: #ffffff;
  --panel: rgba(248, 248, 246, 0.93);
  --muted: #6f6f6f;
  --border: #d7d7d7;
  --accent: #111111;
  --site-font: "Poppins", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--site-font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

/* Slim, fashion-retail style header */
.site-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px 0 30px;
  background: rgba(255,255,255,1);
  border-bottom: 1px solid #1c1c1c;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.brand {
  font-family: var(--site-font);
  font-weight: 600;
  font-size: clamp(19px, 1.62vw, 23px);
  letter-spacing: -1.05px;
  line-height: .9;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-name {
  display: inline-block;
}

/* Animated JEZ live mark: four equal green cells reveal one-by-one, hold, then fade away one-by-one. */
.live-logo {
  width: .82em;
  height: .82em;
  flex: 0 0 .82em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: transparent;
}

.live-logo-cell {
  display: block;
  width: 100%;
  height: 100%;
  background: #49a942;
  opacity: 0;
  transform: scale(.82);
  will-change: opacity, transform;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.live-logo-cell.cell-1 { animation-name: liveCell1; }
.live-logo-cell.cell-2 { animation-name: liveCell2; }
.live-logo-cell.cell-3 { animation-name: liveCell3; }
.live-logo-cell.cell-4 { animation-name: liveCell4; }

@keyframes liveCell1 {
  0%, 3%   { opacity: 0; transform: scale(.82); }
  10%, 55% { opacity: 1; transform: scale(1); }
  62%, 100%{ opacity: 0; transform: scale(.82); }
}

@keyframes liveCell2 {
  0%, 11%  { opacity: 0; transform: scale(.82); }
  18%, 63% { opacity: 1; transform: scale(1); }
  70%, 100%{ opacity: 0; transform: scale(.82); }
}

@keyframes liveCell3 {
  0%, 19%  { opacity: 0; transform: scale(.82); }
  26%, 71% { opacity: 1; transform: scale(1); }
  78%, 100%{ opacity: 0; transform: scale(.82); }
}

@keyframes liveCell4 {
  0%, 27%  { opacity: 0; transform: scale(.82); }
  34%, 79% { opacity: 1; transform: scale(1); }
  86%, 100%{ opacity: 0; transform: scale(.82); }
}

@media (prefers-reduced-motion: reduce) {
  .live-logo-cell {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.nav-link {
  border: 0;
  background: transparent;
  color: #b9b9b9;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--site-font);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12px;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active { color: #969696; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: #a4a4a4;
}

/* Search and member tools on the top-right */
.header-actions {
  margin-left: auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.header-search {
  width: clamp(180px, 16vw, 235px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  background: rgba(255,255,255,.995);
}
.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: #767676;
  font-family: var(--site-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1px;
}
.header-search input::placeholder {
  color: #a8a8a8;
  opacity: 1;
}
.search-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: #8f8f8f;
  stroke-width: 1.55;
  stroke-linecap: round;
}

.member-login {
  height: 100%;
  padding: 0 8px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #a9a9a9;
  font-family: var(--site-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1px;
  transition: color .18s ease;
}
.member-login:hover { color: #858585; }
.member-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: #111;
  margin: 4px 0;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #ededeb;
}

.slider-viewport {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* Two identical groups are placed edge-to-edge for a truly continuous loop. */
.slider-group {
  height: 100%;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.slide {
  margin: 0;
  padding: 0;
  border: 0;
  flex: 0 0 clamp(280px, 25vw, 520px);
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #d8d8d5;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Floating collection panel — matched to the approved second-version layout. */
.hero-panel {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: clamp(24px, 4vw, 64px);
  transform: translateY(-46%);
  width: min(367px, calc(100vw - 48px));
  padding: 23px 23px 22px;
  background: var(--panel);
  -webkit-backdrop-filter: blur(1.25px);
  backdrop-filter: blur(1.25px);
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 8px 28px rgba(0,0,0,.035);
}

.eyebrow {
  margin: 0 0 7px;
  font-family: var(--site-font);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.05px;
  color: #7b7b7b;
}

.hero-panel h1 {
  margin: 0;
  font-family: var(--site-font);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.55px;
}

.panel-copy {
  margin: 13px 0 18px;
  max-width: 35ch;
  color: #595959;
  font-family: var(--site-font);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
}

.category-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 11px;
}

.category-button {
  height: 34px;
  border: 1px solid #bdbdbd;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.category-button:hover { border-color: #111; }
.category-button.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.explore-button {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .65px;
  transition: background .18s ease;
}
.explore-button:hover { background: #2a2a2a; }

.benefits {
  border-top: 1px solid #d4d4d4;
  margin-top: 16px;
  padding-top: 5px;
}
.benefit-line {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--site-font);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0;
}
.benefit-icon { width: 17px; height: 17px; flex: 0 0 17px; }
.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  :root { --header-height: 38px; }
  .site-header { padding: 0 14px 0 18px; gap: 14px; }
  .brand { font-size: 20px; }
  .header-actions { margin-left: auto; }
  .header-search { width: 155px; padding: 0 10px; }
  .member-login { padding-left: 12px; padding-right: 4px; }
  .member-login span { display: none; }
  .menu-toggle { display: block; margin-left: 0; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    height: auto;
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #111;
    padding: 7px 12px 12px;
  }
  .main-nav.is-open { display: flex; }
  .nav-link { min-height: 40px; justify-content: flex-start; padding: 0 9px; font-size: 10.5px; }
  .nav-link.is-active::after { left: 9px; right: auto; width: 36px; height: 1px; }
  .slide { flex-basis: 47vw; }
  .hero-panel { right: 20px; }
}

@media (max-width: 620px) {
  .header-search { width: 132px; }
  .header-search input { font-size: 9px; }
  .hero { min-height: 700px; }
  .slide { flex-basis: 80vw; }
  .hero-panel {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 15px;
    transform: none;
    width: auto;
    padding: 20px 18px 17px;
  }
  .panel-copy { margin: 11px 0 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track { transform: translate3d(0,0,0) !important; }
}

/* ---------------------------------------------------------
   Left slide-out collection menu (Bershka-inspired behavior)
   --------------------------------------------------------- */
.nav-drawer-overlay {
  position: fixed;
  z-index: 41;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .34s ease, visibility 0s linear .34s;
}

.nav-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-drawer {
  position: fixed;
  z-index: 45;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: clamp(340px, 40vw, 545px);
  background: rgba(255, 255, 255, .99);
  border-right: 1px solid #d8d8d8;
  transform: translate3d(-101%, 0, 0);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.22,.72,.2,1), visibility 0s linear .42s;
  will-change: transform;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-drawer.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-drawer-inner {
  min-height: 100%;
  padding: 30px 32px 42px;
}

.nav-drawer-heading {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.nav-drawer-heading h2 {
  margin: 0;
  font-family: var(--site-font);
  font-size: 23px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.3px;
}

.nav-drawer-close {
  width: 28px;
  height: 28px;
  margin: -5px -4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-drawer-close span {
  position: absolute;
  top: 13px;
  left: 5px;
  width: 18px;
  height: 1px;
  background: #8b8b8b;
  transform-origin: center;
}
.nav-drawer-close span:first-child { transform: rotate(45deg); }
.nav-drawer-close span:last-child { transform: rotate(-45deg); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
  color: #171717;
  font-family: var(--site-font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02px;
  transition: color .18s ease, padding-left .2s ease;
}

.nav-drawer-links a:hover,
.nav-drawer-links a:focus-visible {
  color: #767676;
  padding-left: 5px;
  outline: none;
}

body.drawer-open { overflow: hidden; }

@media (max-width: 620px) {
  .nav-drawer {
    width: min(88vw, 420px);
  }
  .nav-drawer-inner {
    padding: 26px 24px 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer,
  .nav-drawer-overlay {
    transition-duration: .01ms;
  }
}

/* =========================================================
   Product collection popup + 10-image product detail system
   ========================================================= */
.product-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}

.product-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.product-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.product-popup-window {
  position: relative;
  width: min(1180px, calc(100vw - 54px));
  height: min(86vh, 820px);
  margin-top: var(--header-height);
  overflow: hidden;
  background: rgba(250,250,248,.985);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 22px 75px rgba(0,0,0,.18);
  transform: translateY(16px) scale(.992);
  transition: transform .4s cubic-bezier(.22,.72,.2,1);
}

.product-popup.is-open .product-popup-window {
  transform: translateY(0) scale(1);
}

.product-popup-header {
  height: 76px;
  padding: 0 26px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  background: rgba(255,255,255,.91);
}

.product-popup-eyebrow {
  margin: 0 0 4px;
  color: #8d8d8d;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .9px;
}

.product-popup-header h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.3px;
}

.product-popup-close {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.product-popup-close span {
  position: absolute;
  left: 7px;
  top: 16px;
  width: 20px;
  height: 1px;
  background: #777;
}
.product-popup-close span:first-child { transform: rotate(45deg); }
.product-popup-close span:last-child { transform: rotate(-45deg); }

.product-gallery-view,
.product-detail-view {
  height: calc(100% - 76px);
}

.product-gallery-view {
  overflow-y: auto;
  padding: 24px 26px 32px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .25s ease, transform .42s cubic-bezier(.22,.72,.2,1);
}

.product-popup.show-detail .product-gallery-view {
  opacity: 0;
  transform: translateX(-8%);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 12px;
}

.product-card {
  min-width: 0;
  background: transparent;
}

.product-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ecece9;
  border: 1px solid #e1e1de;
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}

.product-card:hover .product-card-image img { transform: scale(1.018); }

.product-card-footer {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card-name {
  min-width: 0;
  margin: 0;
  color: #4e4e4e;
  font-size: 9px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-detail-button {
  flex: 0 0 auto;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid #c7c7c7;
  background: transparent;
  color: #151515;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .25px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.product-detail-button:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.product-detail-view {
  position: absolute;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 28px 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .45s;
}

.product-popup.show-detail .product-detail-view {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: .08s, 0s;
}

.product-back-button {
  height: 28px;
  padding: 0;
  margin: 0 0 14px;
  border: 0;
  background: transparent;
  color: #7d7d7d;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3px;
  cursor: pointer;
}
.product-back-button span { margin-right: 5px; }
.product-back-button:hover { color: #111; }

.product-detail-layout {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: stretch;
  overflow: hidden;
}

.product-detail-image-wrap {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #efefec;
  transform: translateX(42%);
  opacity: .65;
  transition: transform .62s cubic-bezier(.18,.78,.16,1), opacity .45s ease;
}

.product-detail-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-copy {
  min-width: 0;
  padding: clamp(28px, 4vw, 58px) clamp(30px, 4.4vw, 64px);
  overflow-y: auto;
  background: rgba(255,255,255,.92);
  border-left: 1px solid #dedede;
  transform: translateX(-36%);
  opacity: 0;
  transition: transform .65s cubic-bezier(.18,.78,.16,1), opacity .45s ease;
}

.product-popup.show-detail .product-detail-image-wrap {
  transform: translateX(0);
  opacity: 1;
}

.product-popup.show-detail .product-detail-copy {
  transform: translateX(0);
  opacity: 1;
}

.product-detail-kicker {
  margin: 0 0 8px;
  color: #969696;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .75px;
}

.product-detail-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.65px;
}

.product-detail-description {
  max-width: 48ch;
  margin: 14px 0 24px;
  color: #616161;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.62;
}

.product-spec-block {
  padding: 13px 0;
  border-top: 1px solid #dedede;
}
.product-spec-block:last-child { border-bottom: 1px solid #dedede; }
.product-spec-label {
  display: block;
  margin-bottom: 6px;
  color: #8a8a8a;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .62px;
}
.product-spec-block p {
  margin: 0;
  color: #292929;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.5;
}
.product-moq p { font-weight: 600; }

.product-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-size-list span {
  min-width: 36px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c9c9;
  background: #fff;
  font-size: 9px;
  font-weight: 400;
}

body.product-popup-open { overflow: hidden; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-popup-window { width: calc(100vw - 32px); height: min(88vh, 820px); }
  .product-detail-copy { padding: 32px 30px; }
}

@media (max-width: 760px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 10px; }
  .product-popup-window { width: calc(100vw - 18px); height: calc(100vh - 58px); margin-top: 38px; }
  .product-popup-header { height: 66px; padding: 0 17px 0 18px; }
  .product-gallery-view, .product-detail-view { height: calc(100% - 66px); }
  .product-detail-view { top: 66px; padding: 12px 15px 18px; overflow-y: auto; }
  .product-detail-layout { height: auto; grid-template-columns: 1fr; overflow: visible; }
  .product-detail-image-wrap { height: min(48vh, 480px); transform: translateX(28%); }
  .product-detail-copy { border-left: 0; border-top: 1px solid #dedede; padding: 26px 20px 32px; transform: translateX(-22%); }
}

@media (prefers-reduced-motion: reduce) {
  .product-popup,
  .product-popup-window,
  .product-gallery-view,
  .product-detail-image-wrap,
  .product-detail-copy {
    transition-duration: .01ms !important;
  }
}
