/* ================================
   HAND-CURATED COLLECTIONS SECTION
   ================================ */
.curated-collections {
  background-color: #fff;
  padding: 64px 0 80px;
}

.curated-collections__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.curated-collections__header {
  text-align: center;
  margin-bottom: 40px;
}

.curated-collections__title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.curated-collections__title-hand {
  font-family: var(--font-handwriting);
  font-weight: var(--weight-regular);
  color: var(--imperial-purple);
  font-size: 42px;
}

.curated-collections__title-main {
  font-family: var(--font-headline);
  font-weight: var(--weight-semibold);
  color: var(--velvet-black);
}

.curated-collections__subtitle {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 14px;
  line-height: 1.6;
  color: var(--velvet-black);
  max-width: 600px;
  margin: 0 auto;
}

.curated-collections__nav-arrows {
  display: flex;
  gap: 12px;
}

.curated-collections__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.curated-collections__arrow:active {
  background-color: var(--soft-gray);
  border-color: #d8d8d8;
}

.curated-collections__arrow svg {
  width: 20px;
  height: 20px;
  color: var(--velvet-black);
}

.curated-collections__carousel {
  position: relative;
  width: 100%;
}

.curated-collections__product {
  display: none;
}

.curated-collections__product--active {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.curated-collections__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.curated-collections__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curated-collections__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.curated-collections__dots--mobile {
  display: flex;
}

.curated-collections__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.curated-collections__dot--active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--imperial-purple);
}

.curated-collections__dot:hover:not(.curated-collections__dot--active) {
  background-color: rgba(10, 10, 10, 0.4);
}

.curated-collections__content {
  display: flex;
  flex-direction: column;
}

.curated-collections__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.curated-collections__product-title {
  font-family: var(--font-headline);
  font-weight: var(--weight-semibold);
  font-size: 28px;
  line-height: 1.3;
  color: var(--imperial-purple);
  margin-bottom: 0;
}

.curated-collections__product-tagline {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 13px;
  line-height: 1.4;
  color: var(--warm-bronze);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.curated-collections__product-description {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 14px;
  line-height: 1.7;
  color: var(--velvet-black);
  margin-bottom: 20px;
}

.curated-collections__price {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 20px;
  color: var(--velvet-black);
  margin-bottom: 24px;
}

.curated-collections__bundle {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.curated-collections__bundle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--soft-gray);
  padding: 20px 16px;
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

.curated-collections__bundle-image-wrapper {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 0;
}

.curated-collections__bundle-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.curated-collections__bundle-title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 15px;
  line-height: 1.4;
  color: var(--imperial-purple);
  margin-bottom: 6px;
}

.curated-collections__bundle-description {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 13px;
  line-height: 1.6;
  color: var(--velvet-black);
  max-width: 280px;
}

.curated-collections__cta {
  background-color: var(--imperial-purple);
  color: var(--pearl-white);
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  width: 100%;
  transition: all 0.3s ease;
}

.curated-collections__cta:hover {
  background-color: var(--deep-plum);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 0, 130, 0.3);
}

.curated-collections__cta:active {
  transform: translateY(0);
}

/* ================================
   TABLET & DESKTOP (768px+)
   ================================ */
@media (min-width: 768px) {
  .curated-collections {
    padding: 80px 0 100px;
  }

  .curated-collections__header {
    margin-bottom: 56px;
  }

  .curated-collections__title {
    font-size: 40px;
  }

  .curated-collections__title-hand {
    font-size: 52px;
  }

  .curated-collections__subtitle {
    font-size: 16px;
  }

  .curated-collections__container {
    padding: 0 60px;
    position: relative;
  }

  .curated-collections__nav-arrows {
    display: flex;
    gap: 12px;
  }

  .curated-collections__carousel {
    position: static;
  }

  .curated-collections__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }

  .curated-collections__arrow:hover {
    background-color: var(--soft-gray);
    border-color: #d8d8d8;
  }

  .curated-collections__arrow svg {
    width: 24px;
    height: 24px;
    color: var(--velvet-black);
  }

  .curated-collections__product--active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    grid-auto-rows: 1fr;
  }

  .curated-collections__image-container {
    max-width: 600px;
    height: 100%;
    min-height: 100%;
  }

  .curated-collections__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .curated-collections__dots--mobile {
    display: none;
  }

  .curated-collections__content {
    max-width: 560px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .curated-collections__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .curated-collections__product-title {
    font-size: 36px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .curated-collections__product-tagline {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .curated-collections__product-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .curated-collections__price {
    font-size: 22px;
    margin-bottom: 0;
  }

  .curated-collections__bundle {
    margin-top: auto;
    padding-top: 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    justify-content: flex-start;
  }

  .curated-collections__bundle-item {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    padding: 24px 20px;
  }

  .curated-collections__bundle-image-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    padding: 0;
    margin-bottom: 20px;
  }

  .curated-collections__bundle-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .curated-collections__bundle-description {
    font-size: 14px;
    max-width: 240px;
  }

  .curated-collections__cta {
    font-size: 16px;
    padding: 20px 60px;
    width: 100%;
  }
}
