/* HI-Fashion page */

.hf-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hf-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 40%;
  filter: grayscale(1) contrast(1.05);
}

.hf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.9) 100%);
}

.hf-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 32px 110px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hf-hero-body .hf-eyebrow {
  color: var(--muted-white);
}

.hf-hero-body h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hf-hero-body .hf-hero-copy {
  color: var(--muted-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hf-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.hf-eyebrow--light {
  color: var(--muted-white);
}

.hf-hero h1 {
  font-size: clamp(40px, 8vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hf-hero-copy {
  font-size: 19px;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

/* Quote */
.hf-quote {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 56px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hf-quote p {
  font-size: clamp(19px, 3.4vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0 auto 12px;
  max-width: 90vw;
  white-space: nowrap;
  text-align: center;
}

.hf-quote-cite {
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--grey);
  margin: 0 !important;
}

/* Lifestyle — image + closing statement split (merged former "movement" statement in) */
.hf-lifestyle {
  background: var(--black);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
}

.hf-lifestyle-img {
  overflow: hidden;
  height: 100%;
}

.hf-lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.05);
}

.hf-lifestyle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
}

.hf-lifestyle-tag {
  color: var(--muted-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}

.hf-lifestyle h2 {
  color: #fff;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hf-lime-underline {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

/* Marquee */
.hf-marquee {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  padding: 16px 0;
  display: flex;
  align-items: center;
}

.hf-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: hf-marquee-scroll 22s linear infinite;
}

.hf-marquee-track span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.hf-marquee-track span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 40px;
  background: #fff;
  border-radius: 1px;
  transform: rotate(45deg);
}

@keyframes hf-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hf-movement-copy {
  color: var(--muted-white);
  font-size: 17px;
  line-height: 1.5;
}

/* Shop grid */
.hf-shop {
  background: var(--black);
  padding: 88px 32px 0;
}

.hf-shop-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.hf-shop-head h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hf-shop-title {
  text-transform: uppercase;
}

.hf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 920px;
  margin: 0 auto;
}

.hf-product {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hf-product-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fff;
  padding: 12px;
}

.hf-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.3s;
}

.hf-product:hover .hf-product-img img {
  transform: scale(1.04);
}

.hf-product-body {
  padding: 16px 2px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.hf-product-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.hf-product-body h3 .hf-variant {
  display: block;
  font-weight: 400;
}

.hf-price {
  font-size: 14px;
  color: var(--muted-white);
  white-space: nowrap;
}

.hf-shop-cta {
  background: var(--white);
  text-align: center;
  margin: 64px -32px 0;
  padding: 40px 24px;
}

.hf-shop-cta p {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  .hf-hero { min-height: 75vh; }
  .hf-hero-body { padding: 24px 20px 90px; }
  .hf-quote { padding: 56px 20px 40px; }
  .hf-quote p { font-size: 15px; }
  .hf-lifestyle { grid-template-columns: 1fr; min-height: auto; }
  .hf-lifestyle-img { height: auto; aspect-ratio: 4/5; }
  .hf-lifestyle-inner { padding: 40px 20px; }
  .hf-shop { padding: 56px 20px 0; }
  .hf-shop-cta { margin: 48px -20px 0; }
  .hf-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; gap: 24px 16px; }
}

/* Product detail page */
.pdp {
  background: var(--black);
  padding: 56px 32px 88px;
}

.pdp-back {
  max-width: 1000px;
  margin: 0 auto 32px;
}

.pdp-back a {
  color: var(--muted-white);
  font-size: 13px;
  text-decoration: none;
}

.pdp-back a:hover {
  text-decoration: underline;
}

.pdp-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pdp-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fff;
  padding: 20px;
}

.pdp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08);
}

.pdp-details {
  color: #fff;
  padding-top: 12px;
}

.pdp-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 12px;
}

.pdp-details h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.pdp-variant {
  font-size: 15px;
  color: var(--muted-white);
  margin-bottom: 16px;
}

.pdp-price {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.pdp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-white);
  margin-bottom: 32px;
  max-width: 440px;
}

.pdp-notify {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 24px;
}

.pdp-notify p {
  font-size: 13px;
  color: var(--muted-white);
  margin-bottom: 14px;
}

.pdp-facts {
  margin-bottom: 24px;
  max-width: 440px;
}

.pdp-buy {
  margin-bottom: 32px;
  max-width: 440px;
}

.pdp-facts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-white);
  margin-bottom: 8px;
}

.pdp-facts-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-white);
}

.pdp-features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.pdp-features li {
  font-size: 13.5px;
  color: var(--muted-white);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.pdp-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--lime);
}

.pdp-size-chart {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  color: var(--muted-white);
}

.pdp-size-chart th,
.pdp-size-chart td {
  text-align: left;
  padding: 6px 10px 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pdp-size-chart th {
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.pdp-gallery-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.pdp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 0.2s;
}

.pdp-gallery-thumb:hover img {
  opacity: 0.75;
}

.pdp-returns {
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.pdp-returns summary {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-white);
  cursor: pointer;
}

.pdp-returns p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-white);
  margin-top: 12px;
  max-width: 440px;
}

.pdp-related {
  max-width: 1100px;
  margin: 72px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.pdp-related-label {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 40px;
}

.pdp-related-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.pdp-related-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.pdp-related-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fff;
  padding: 10px;
}

.pdp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.3s;
}

.pdp-related-item:hover .pdp-related-img img {
  transform: scale(1.04);
}

.pdp-related-item h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-related-item .pdp-related-variant {
  color: var(--muted-white);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

.pdp-related-item p {
  color: var(--muted-white);
  font-size: 12.5px;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .pdp { padding: 40px 20px 64px; }
  .pdp-layout { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { grid-template-columns: repeat(5, 1fr); }
}
