.ayk-customer-looks {
  --ayk-looks-cream: #fcf3ec;
  --ayk-looks-burgundy: #7a2130;
  --ayk-looks-burgundy-dark: #5e1825;
  --ayk-looks-text: #352b2c;
  padding: 4rem 0;
  background: #fff;
}

.ayk-customer-looks .section-title {
  margin-bottom: 2rem;
  color: var(--ayk-looks-burgundy);
}

.ayk-customer-looks__list {
  display: grid;
  gap: 2.5rem;
}

.ayk-customer-look {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.85fr);
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(122, 33, 48, 0.12);
  border-radius: 1rem;
  background: var(--ayk-looks-cream);
  box-shadow: 0 0.75rem 2.25rem rgba(74, 36, 40, 0.08);
}

.ayk-customer-look--reverse {
  grid-template-columns: minmax(19rem, 0.85fr) minmax(0, 1.35fr);
}

.ayk-customer-look__photo-wrap {
  min-width: 0;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  background: #f1e7df;
}

.ayk-customer-look--reverse .ayk-customer-look__photo-wrap {
  order: 2;
}

.ayk-customer-look__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ayk-customer-look:hover .ayk-customer-look__photo {
  transform: scale(1.018);
}

.ayk-customer-look__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 2.25rem;
}

.ayk-customer-look__title {
  margin: 0 0 0.75rem;
  color: var(--ayk-looks-burgundy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.ayk-customer-look__description {
  margin-bottom: 1rem;
  color: var(--ayk-looks-text);
  line-height: 1.65;
}

.ayk-customer-look__description > :last-child {
  margin-bottom: 0;
}

.ayk-customer-look__instagram {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--ayk-looks-burgundy);
  font-weight: 600;
  text-decoration: none;
}

.ayk-customer-look__instagram:hover {
  color: var(--ayk-looks-burgundy-dark);
  text-decoration: underline;
}

.ayk-customer-look__products-title {
  margin: 0 0 0.75rem;
  color: #6c5357;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ayk-customer-look__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ayk-look-product {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 33, 48, 0.13);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ayk-looks-text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ayk-look-product:hover {
  border-color: rgba(122, 33, 48, 0.45);
  color: var(--ayk-looks-text);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 0.4rem 1rem rgba(74, 36, 40, 0.09);
}

.ayk-look-product__image-wrap {
  display: block;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: #f7f3f0;
}

.ayk-look-product__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ayk-look-product__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.65rem;
}

.ayk-look-product__name {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ayk-look-product__price {
  margin-top: 0.3rem;
  color: var(--ayk-looks-burgundy);
  font-size: 0.83rem;
  font-weight: 700;
}

.ayk-look-product__link {
  margin-top: 0.35rem;
  color: var(--ayk-looks-burgundy);
  font-size: 0.72rem;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .ayk-customer-look,
  .ayk-customer-look--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  }

  .ayk-customer-look__products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ayk-customer-looks {
    padding: 2.75rem 0;
  }

  .ayk-customer-look,
  .ayk-customer-look--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ayk-customer-look--reverse .ayk-customer-look__photo-wrap {
    order: 0;
  }

  .ayk-customer-look__photo-wrap {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .ayk-customer-look__content {
    padding: 1.5rem;
  }

  .ayk-customer-look__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 419.98px) {
  .ayk-customer-look__products {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ayk-customer-look__photo,
  .ayk-look-product {
    transition: none;
  }
}
