/* ===== Lookbook Dual — Two Images + Center Text + Decorative Frame ===== */

.lookbook-dual-section {
  width: 100%;
  background-color: rgb(var(--color-background));
}

.lookbook-dual__container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 60px 20px;
}

/* Decorative line frame: 40% wide, 670px tall, centered, independent of content */
.lookbook-dual__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 670px;
  border: 1px solid #cdc4bb;
  pointer-events: none;
  z-index: 1;
}

/* Three items: image (35%) + text (30%) + image (35%) = 100% */
.lookbook-dual__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

.lookbook-dual__image {
  flex: 0 0 35%;
  width: 35%;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  position: relative;
}

.lookbook-dual__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-dual__placeholder {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-foreground), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--color-foreground), 0.3);
}

/* Middle text: 30% wide, 670px tall */
.lookbook-dual__text {
  flex: 0 0 30%;
  width: 30%;
  min-height: 670px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: transparent;
}

.lookbook-dual__text-inner {
  width: 100%;
  padding: 40px 20px;
}

.lookbook-dual__subtitle {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #332C30;
  margin-bottom: 12px;
  line-height: 1;
}

.lookbook-dual__title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: 0.05em;
  color: #332C30;
  margin: 0 0 8px 0;
  line-height: 1;
}

.lookbook-dual__title-second {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3vw;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(51, 44, 48, 0.5);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.lookbook-dual__divider {
  display: none;
}

.lookbook-dual__button {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  border: 1.5px solid #000000;
  outline: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

/* Remove any inherited ::after decoration */
.lookbook-dual__button::after {
  content: none;
  box-shadow: none;
}

.lookbook-dual__button:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  text-decoration: none !important;
  outline: none !important;
}

/* ===== Mobile ===== */
@media (max-width: 959px) {
  .lookbook-dual__container {
    padding: 30px 16px;
  }

  .lookbook-dual__frame {
    width: 80%;
    height: 500px;
  }

  .lookbook-dual__inner {
    flex-direction: column;
    gap: 20px;
  }

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

  .lookbook-dual__text {
    width: 100%;
    flex: 0 0 auto;
    min-height: 0;
    order: -1;
    padding: 40px 20px;
  }

  .lookbook-dual__title {
    font-size: 40px;
  }

  .lookbook-dual__title-second {
    font-size: 32px;
  }
}
