/* ===== HERO ===== */
.strand-hero { width: 100%; position: relative; }
.strand-hero__img { width: 100%; height: auto; display: block; }
.strand-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
}
.strand-hero__title {
  color: var(--strand-white);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  margin-top: auto;
  margin-bottom: auto;
}
.strand-hero__cta {
  color: var(--strand-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid var(--strand-white);
  padding-bottom: 3px;
  align-self: center;
}
.strand-hero__cta:hover { opacity: 0.8; }

/* ===== PRODUCT GRID + CARRUSEL ===== */
.strand-product-grid { padding: 80px 40px; }
.strand-product-grid__title { font-size: 13px; letter-spacing: 0.05em; margin-bottom: 30px; text-align: center; }

.strand-carousel { position: relative; display: flex; align-items: center; gap: 12px; }

.strand-carousel__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.strand-carousel__btn {
  background: var(--strand-white);
  border: 1px solid var(--strand-grey-line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.strand-carousel__btn:hover { background: var(--strand-grey-bg); }

.strand-product-card {
  text-decoration: none;
  color: var(--strand-black);
  display: block;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}
.strand-product-card__img { background: var(--strand-grey-bg); overflow: hidden; margin-bottom: 12px; aspect-ratio: 3/4; }
.strand-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.strand-product-card:hover .strand-product-card__img img { transform: scale(1.03); }
.strand-product-card__sku { font-size: 10px; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
.strand-product-card__price { font-size: 13px; font-weight: 500; }
.strand-product-card__price del { opacity: 0.5; margin-right: 6px; }
.strand-product-card__price ins { text-decoration: none; color: var(--strand-sale-red); }
.strand-product-grid__empty { font-size: 13px; opacity: 0.6; padding: 40px 0; text-align: center; }

.strand-product-grid__footer { text-align: center; margin-top: 40px; }
.strand-product-grid__ver-todo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--strand-black);
  text-decoration: none;
  border-bottom: 1px solid var(--strand-black);
  padding-bottom: 2px;
}
.strand-product-grid__ver-todo:hover { opacity: 0.6; }

/* ===== CAMPAIGN BANNER (LANZAMIENTOS / JEANS) ===== */
.strand-campaign { display: grid; grid-template-columns: 1fr 1fr; }
.strand-campaign__block { position: relative; display: block; aspect-ratio: 1/1.1; overflow: hidden; text-decoration: none; }
.strand-campaign__block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strand-campaign__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--strand-white); font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--strand-white); padding-bottom: 4px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .strand-campaign { grid-template-columns: 1fr; }
}

/* ===== CATEGORY NAV — CARRUSEL ===== */
.strand-category-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 0 40px;
}

.strand-category-nav__track {
  display: flex;
  gap: 2px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.strand-category-nav__item {
  flex: 0 0 25%;
  min-width: 0;
  text-decoration: none;
  color: var(--strand-black);
  display: block;
  background: var(--strand-white);
}

.strand-category-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.strand-category-nav__ver {
  font-size: 10px;
  text-decoration: underline;
  opacity: 0.7;
}

.strand-category-nav__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.strand-category-nav__item:hover img { transform: scale(1.03); }

.strand-category-nav__btn {
  background: var(--strand-white);
  border: 1px solid var(--strand-grey-line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.strand-category-nav__btn--prev { left: 4px; }
.strand-category-nav__btn--next { right: 4px; }
.strand-category-nav__btn:hover { background: var(--strand-grey-bg); }

/* ===== STATEMENT SECTION (Traditional. Never Boring.) ===== */
.strand-statement {
  position: relative; min-height: 500px;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: center;
  padding: 60px 40px; overflow: hidden;
  margin-top: 60px;
}
.strand-statement__bg {
  position: absolute; inset: 0;
  background: url('../img/statement-bg.jpg') center/cover;
  z-index: -1;
}
.strand-statement__text {
  color: var(--strand-white); font-size: 52px; line-height: 1.1;
  font-weight: 900;
  text-align: center;
  margin: auto 0;
}
.strand-statement__cta {
  color: var(--strand-white); font-size: 12px; letter-spacing: 0.05em;
  text-decoration: none; border-bottom: 1px solid var(--strand-white);
  width: fit-content; padding-bottom: 2px;
}

/* ===== COMMUNITY GRID ===== */
.strand-community { margin-top: 60px; }
.strand-community__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.strand-community__item {
  width: 100%;
  aspect-ratio: 300 / 330;
  background: var(--strand-grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.strand-community__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.strand-community__item:hover img { transform: scale(1.03); }
.strand-community__item span { font-size: 10px; letter-spacing: 0.05em; opacity: 0.5; }

/* ===== RESPONSIVE HOME ===== */
@media (max-width: 1024px) {
  .strand-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .strand-hero__title { font-size: 36px; }
  .strand-hero__overlay { padding: 40px 20px; }
  .strand-product-grid { padding: 40px 20px; }

  /* Carrusel destacados: 1 producto visible */
  .strand-product-card {
    flex: 0 0 calc(100% - 0px);
  }

  /* Carrusel categorías: 1 categoría visible */
  .strand-category-nav__item {
    flex: 0 0 100%;
  }

  .strand-statement { min-height: 380px; padding: 40px 20px; }
  .strand-statement__text { font-size: 36px; }
  .strand-community__grid { grid-template-columns: repeat(2, 1fr); }
  .strand-category-nav { padding: 0 40px; }
}
}