/* ── Handpicked bento (Lilac-style mosaic) ── */
.picks-bento {
  background: #fff;
  padding: 24px 0 28px;
}

.picks-bento__header {
  text-align: center;
  margin-bottom: 20px;
}

.picks-bento__header .products-showcase__eyebrow {
  margin-bottom: 8px;
}

.picks-bento__title {
  margin: 0 0 10px !important;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  color: #2d3748;
  text-align: center;
}

.picks-bento__sub {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7a8d;
  text-align: center;
}

.picks-bento__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.15fr;
  grid-template-rows: minmax(120px, 14vw) minmax(140px, 17vw);
  gap: 10px;
}

.picks-bento__card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8ecf1;
  text-decoration: none;
  color: #111;
  min-height: 0;
}

.picks-bento__card:nth-child(1) { grid-column: 1; grid-row: 1; }
.picks-bento__card:nth-child(2) { grid-column: 2; grid-row: 1; }
.picks-bento__card:nth-child(3) { grid-column: 1; grid-row: 2; }
.picks-bento__card:nth-child(4) { grid-column: 2; grid-row: 2; }
.picks-bento__card--featured,
.picks-bento__card:nth-child(5) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.picks-bento__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.picks-bento__card:hover img {
  transform: scale(1.04);
}

.picks-bento__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0));
}

.picks-bento__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5c534c;
}

.picks-bento__name {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a120e;
}

.picks-bento .products-showcase__more-wrap {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .picks-bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .picks-bento__card,
  .picks-bento__card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 5 / 4;
  }

  .picks-bento__card--featured,
  .picks-bento__card:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 560px) {
  .picks-bento {
    padding: 18px 0 22px;
  }

  .picks-bento__header {
    margin-bottom: 12px;
  }

  .picks-bento__grid {
    grid-template-columns: 1fr;
  }

  .picks-bento__card,
  .picks-bento__card--featured,
  .picks-bento__card:nth-child(5) {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }
}

/* ── Shop by category (bento) ── */
.category-bento {
  background: #fff;
  padding: 32px 0 48px;
}

.category-bento__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.category-bento-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f3f3f3;
  color: #111;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.category-bento-card:hover {
  opacity: 0.95;
}

.category-bento-card--featured {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.category-bento-card--featured .category-bento-card__media {
  position: absolute;
  inset: 0;
  padding: 20px;
}

.category-bento-card--featured .category-bento-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.category-bento-card--featured .category-bento-card__content {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  max-width: min(200px, 48%);
  text-align: left;
}

.category-bento-card--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 0;
}

.category-bento-card--reverse .category-bento-card__media {
  order: 2;
}

.category-bento-card--reverse .category-bento-card__content {
  order: 1;
}

.category-bento-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  background: transparent;
}

.category-bento-card--row .category-bento-card__media {
  padding: 14px;
}

.category-bento-card--row .category-bento-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.category-bento-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
}

.category-bento-card__tag {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}

.category-bento-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  color: #111;
  margin: 0;
}

.category-bento-card__cta {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #111;
  margin-top: 2px;
}

/* ── Shop by category (slider) ── */
.shop-categories.products-showcase {
  padding: 56px 0 72px;
}

.shop-categories .products-showcase__title {
  margin-bottom: 36px;
}

.shop-categories__slider {
  position: relative;
}

.shop-categories-swiper {
  overflow: hidden;
}

.shop-categories-swiper .swiper-slide {
  height: auto;
}

.shop-category-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8ecf1;
  border: 0;
}

.shop-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-category-card:hover img {
  transform: scale(1.04);
}

.shop-category-card__label {
  position: absolute;
  bottom: 12px;
  left: 0;
  background: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  max-width: 85%;
}

/* ── Testimonials ── */
.testimonials {
  background: #fff;
  padding: 56px 0 64px;
}

.testimonials__eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9d3b16;
  margin-bottom: 10px;
}

.testimonials__title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 40px;
}

.testimonials-swiper {
  padding-bottom: 8px;
}

.testimonial-card {
  background: #eef0ec;
  border-radius: 8px;
  padding: 40px 36px 36px;
  text-align: center;
  height: auto;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonials__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dde3ec;
  background: #fff;
  color: #6b7a8d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__arrow:hover {
  background: #f0f2f5;
  color: #1a2b4a;
}

.testimonials__pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  gap: 6px;
}

.testimonials__pagination .swiper-pagination-bullet {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #d0d5dc;
  opacity: 1;
  margin: 0 !important;
}

.testimonials__pagination .swiper-pagination-bullet-active {
  background: #4caf50;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
  color: #f5a623;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__heading {
  font-size: 18px;
  font-weight: 600;
  color: #1a2b4a;
  margin-bottom: 14px;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #5a6577;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1a2b4a;
}

/* ── Explore collections spotlight ── */
.explore-spotlight {
  padding: 12px 0 24px;
  background: #fff;
}

.explore-spotlight__panel {
  position: relative;
  background-color: var(--color-coral, #9d3b16);
  padding: 64px 0;
  overflow: hidden;
}

.explore-spotlight__panel:has(.product-stories) {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ── Product craft stories ── */
.product-stories {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
  color: #fff;
}

.product-stories__header {
  text-align: center;
  margin-bottom: 22px;
}

.product-stories__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.product-stories__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
}

.product-stories__slider {
  overflow: hidden;
}

.product-stories-swiper .swiper-slide {
  height: auto;
}

.product-story {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-story__media {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 32px rgba(8, 22, 40, 0.22);
}

.product-story__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1c1a17;
}

.product-story__logo {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.product-story__logo img {
  display: block;
  height: 18px;
  width: auto;
}

.product-story__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 48px 14px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 70%);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-story__product {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #1c1a17;
  box-shadow: 0 8px 18px rgba(8, 22, 40, 0.12);
}

.product-story__thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3ece6;
}

.product-story__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-story__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #1c1a17;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-story__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.product-story__pricing strong {
  font-weight: 700;
  color: #1c1a17;
}

.product-story__pricing s {
  color: #8a96a8;
  font-weight: 500;
}

.product-story__pricing em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-coral, #9d3b16);
  padding: 2px 6px;
  border-radius: 3px;
}

.explore-spotlight__inner--after-stories {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.explore-spotlight__panel::before,
.explore-spotlight__panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 42px;
  background-color: var(--color-coral, #9d3b16);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.explore-spotlight__panel::before {
  top: 0;
  background-image: url(../images/middle_background1.svg);
}

.explore-spotlight__panel::after {
  bottom: 0;
  background-image: url(../images/middle_background1.svg);
  transform: rotate(180deg);
}

.products-showcase--catalog + .explore-spotlight {
  margin-top: 0;
}

.explore-spotlight + .shop-categories.products-showcase {
  padding-top: 36px;
  padding-bottom: 64px;
}

.explore-spotlight__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: #fff;
}

.explore-spotlight__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.explore-spotlight__brush {
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 244, 230, 0.16) 55%, rgba(0, 0, 0, 0.08) 100%);
  transform: rotate(-8deg);
}

.explore-spotlight__img {
  position: relative;
  z-index: 1;
  width: min(78%, 380px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(8, 22, 40, 0.28);
  transform: rotate(-6deg);
}

.explore-spotlight__content {
  max-width: 34rem;
}

.explore-spotlight__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.explore-spotlight__title {
  margin: 0 0 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}

.explore-spotlight__text {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.explore-spotlight__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.explore-spotlight__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.explore-spotlight__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
}

.explore-spotlight__icon svg {
  width: 20px;
  height: 20px;
}

.explore-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.explore-spotlight__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  background: var(--color-navy-dark, #081628);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.explore-spotlight__btn:hover {
  background: var(--color-navy, #0c1f3f);
  transform: translateY(-1px);
}

.explore-spotlight__chat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.explore-spotlight__chat:hover .explore-spotlight__chat-phone {
  color: rgba(255, 255, 255, 0.85);
}

.explore-spotlight__chat-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
}

.explore-spotlight__chat-icon svg {
  width: 18px;
  height: 18px;
}

.explore-spotlight__chat-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.explore-spotlight__chat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.78);
}

.explore-spotlight__chat-phone {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .explore-spotlight__panel {
    padding: 52px 0;
  }

  .product-stories {
    margin-bottom: 28px;
  }

  .explore-spotlight + .shop-categories.products-showcase {
    padding-top: 28px;
  }

  .explore-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .explore-spotlight__content {
    max-width: none;
    margin: 0 auto;
  }

  .explore-spotlight__media {
    min-height: 280px;
    order: -1;
  }

  .explore-spotlight__img {
    width: min(70%, 300px);
  }

  .explore-spotlight__features {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .explore-spotlight__actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .explore-spotlight__features {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .explore-spotlight__actions {
    flex-direction: column;
  }
}

/* ── CTA banner ── */
.cta-banner {
  padding: 12px 0 24px;
  background: #fff;
}

.cta-banner__brush {
  position: relative;
  background-color: var(--color-coral, #9d3b16);
  padding: 64px 0;
}

.cta-banner__brush::before,
.cta-banner__brush::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 42px;
  background-color: var(--color-coral, #9d3b16);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.cta-banner__brush::before {
  top: 0;
  background-image: url(../images/middle_background1.svg);
}

.cta-banner__brush::after {
  bottom: 0;
  background-image: url(../images/middle_background1.svg);
  transform: rotate(180deg);
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cta-banner__title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-banner__text {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.5;
}

.cta-banner__btn {
  display: inline-block;
  background: var(--color-navy-dark, #081628);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.cta-banner__btn:hover {
  background: var(--color-navy, #0c1f3f);
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .category-bento__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .category-bento-card--featured {
    grid-row: auto;
    min-height: 240px;
  }

  .category-bento-card--featured .category-bento-card__media img {
    max-width: 70%;
    max-height: 80%;
  }

  .category-bento-card--featured .category-bento-card__content {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .category-bento-card--row {
    grid-template-columns: 1fr;
  }

  .category-bento-card--row .category-bento-card__content {
    order: 1;
  }

  .category-bento-card--row .category-bento-card__media {
    order: 2;
    min-height: 150px;
  }

  .category-bento-card--row .category-bento-card__media img {
    max-width: 55%;
    max-height: 130px;
  }

  .category-bento-card__content {
    padding: 8px 10px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .shop-categories.products-showcase {
    padding: 40px 0 56px;
  }

  .shop-categories .products-showcase__title {
    margin-bottom: 28px;
  }

  .shop-categories__slider {
    margin: 0 -4px;
  }

  .shop-category-card {
    aspect-ratio: 16 / 10;
  }

  .shop-category-card__label {
    padding: 12px 16px;
    font-size: 13px;
  }

  .category-bento {
    padding: 28px 0 40px;
  }

  .testimonials {
    padding: 40px 0 48px;
  }

  .testimonials-swiper {
    padding-bottom: 4px;
  }

  .testimonial-card {
    padding: 32px 24px 28px;
  }

  .cta-banner__brush {
    padding: 48px 0;
  }
}
