/* ===== Lookbook Right — Editorial asymmetric layout ===== */

.lookbook-right-section {
  position: relative;
  background-color: transparent;
  color: rgb(var(--color-foreground));
  overflow: hidden;
}

/* Background color block: full width, 60% of viewport height, centered vertically */
.lookbook-right-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 450px;
  transform: translateY(-50%);
  background-color: #F6F3EF;
  z-index: 0;
}

.lookbook-right-section > * {
  position: relative;
  z-index: 1;
}

.lookbook-right-section .page-width {
  padding-left: 160px;
  padding-right: 160px;
}

.lookbook-right__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  position: relative;
  min-height: 600px;
}

.image-position--left .lookbook-right__inner {
  flex-direction: row-reverse;
}

/* Info column (text) */
.lookbook-right__info {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  position: relative;
}

.lookbook-right__info-content {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Subheading: small, uppercase, letter-spaced (like "VIEW THE") */
.lookbook-right__info-content .subheading {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(var(--color-foreground), 0.6) !important;
  margin-bottom: 24px !important;
}

/* Heading: italic serif, large */
.lookbook-right__info-content .heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 44px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
  margin: 0 0 36px 0 !important;
  color: rgb(var(--color-foreground)) !important;
}

/* Button: matches image-with-text style — white bg, black text, 1.5px black border */
.lookbook-right__info-content .button {
  position: relative;
  display: inline-block;
  color: #000000 !important;
  background-color: #ffffff !important;
  --button-border-thickness: 0px !important;
  --button-border-radius: 0 !important;
  padding: 20px 36px !important;
  margin-top: 58px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: 1.5px solid #000000 !important;
  outline: none !important;
  text-decoration: none !important;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

.lookbook-right__info-content .button::after,
.lookbook-right__info-content .button:hover::after {
  box-shadow: none !important;
  content: none !important;
}

/* Vertical line directly above the button */
.lookbook-right__info-content .button::before {
  background-color: #000000;
  content: "";
  width: 1px;
  height: 28px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* Button hover: black bg, white text */
.lookbook-right__info-content .button:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  opacity: 1 !important;
  outline: none !important;
  text-decoration: none !important;
}

/* Media column (image) */
.lookbook-right__media {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.image-position--left .lookbook-right__media {
  justify-content: flex-start;
}

.lookbook-right__image,
.lookbook-right__placeholder {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
}

.lookbook-right__placeholder {
  background-color: rgba(var(--color-foreground), 0.05);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.3);
}

/* ===== Mobile ===== */
@media (max-width: 959px) {
  .lookbook-right-section::before {
    height: 50vh;
  }

  .lookbook-right-section .page-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lookbook-right__inner,
  .image-position--left .lookbook-right__inner {
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .lookbook-right__info {
    flex: 0 0 auto;
    width: 100%;
    padding: 60px 24px;
  }

  .lookbook-right__info-content .heading {
    font-size: 32px !important;
  }

  .lookbook-right__media {
    flex: 0 0 auto;
    width: 100%;
  }

  .lookbook-right__image,
  .lookbook-right__placeholder {
    max-height: 500px;
  }
}
