.explore-collections {
  padding: 100px 0;
  background-color: var(--color-white);
  border-top: 1px solid rgba(138, 21, 81, 0.04);
}

.collection-subsection {
  margin-bottom: 90px;
}

.collection-subsection:last-child {
  margin-bottom: 0;
}

.subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1.5px solid rgba(138, 21, 81, 0.06);
  padding-bottom: 20px;
}

.header-titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subsection-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  background-color: rgba(138, 21, 81, 0.05);
  border: 1px solid rgba(138, 21, 81, 0.12);
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(138, 21, 81, 0.02);
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--color-dark-bg);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
  margin-top: 8px;
}

.btn-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px 16px;
  border-radius: 20px;
  background-color: rgba(138, 21, 81, 0.03);
}

.btn-view-all svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-view-all:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-view-all:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .explore-collections {
    padding: 60px 0;
  }
  .collection-subsection {
    margin-bottom: 60px;
  }
  .subsection-header {
    margin-bottom: 28px;
    padding-bottom: 14px;
    align-items: center;
  }
  .subsection-badge {
    font-size: 11.5px;
  }
  .subsection-title {
    font-size: 24px;
  }
  .btn-view-all {
    font-size: 13px;
    padding: 5px 12px;
  }
  .btn-view-all svg {
    width: 16px;
    height: 16px;
  }
}

.btn-view-details {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: transparent;
  border: 1.5px solid rgba(138, 21, 81, 0.15);
  border-radius: 30px;
  text-decoration: none;
  margin-top: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn-view-details:hover {
  background-color: rgba(138, 21, 81, 0.04);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(138, 21, 81, 0.05);
}

/* ===================================================
   Luxury Perfume Sets & Gift Bundles (Wide Modern Cards)
   =================================================== */
.sets-grid-luxury {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 28px;
  width: 100%;
}

.luxury-set-card {
  display: flex;
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid rgba(138, 21, 81, 0.12);
  box-shadow: 0 8px 24px rgba(138, 21, 81, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 290px;
  max-width: 580px;
  width: 100%;
}

.luxury-set-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(138, 21, 81, 0.14);
}

/* Image Side: Full Width & Height Cover */
.set-card-media {
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #180913;
  padding: 0;
  margin: 0;
  display: flex;
}

.set-card-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.set-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.luxury-set-card:hover .set-card-media img {
  transform: scale(1.07);
}

.set-badge-gift {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 850;
  padding: 6px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.set-badge-gift span,
.set-badge-gift svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.set-items-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--color-primary, #8A1551);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Info Side */
.set-card-content {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

.set-brand-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.set-card-title {
  margin: 2px 0 0;
  font-size: 17.5px;
  font-weight: 850;
  color: #0F172A;
  line-height: 1.35;
}

.set-card-desc {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.5;
}

/* Contents tags */
.set-contents-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.set-chip {
  background: rgba(138, 21, 81, 0.06);
  border: 1px solid rgba(138, 21, 81, 0.12);
  color: var(--color-primary, #8A1551);
  font-size: 11px;
  font-weight: 750;
  padding: 3px 9px;
  border-radius: 8px;
}

/* Rating */
.set-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #D4AF37;
}

.set-rating-row .stars {
  letter-spacing: 2px;
}

.set-rating-row .count {
  color: #94A3B8;
  font-weight: 600;
}

/* Price & Buy Area */
.set-price-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(138, 21, 81, 0.08);
}

.set-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.set-current-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary, #8A1551);
}

.set-old-price {
  font-size: 13.5px;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 6px;
}

/* Equal Buttons Group (50% / 50%) */
.set-btns-group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn-set-add-cart,
.btn-set-details {
  flex: 1 1 0;
  min-width: 0;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-set-add-cart {
  background: linear-gradient(135deg, var(--color-primary, #8A1551) 0%, var(--color-secondary, #6F1041) 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(138, 21, 81, 0.25);
}

.btn-set-add-cart svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  stroke-width: 2.2 !important;
}

.btn-set-add-cart span {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-set-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(138, 21, 81, 0.4);
}

.btn-set-details {
  background: transparent;
  border: 1.5px solid rgba(138, 21, 81, 0.22);
  color: var(--color-primary, #8A1551) !important;
}

.btn-set-details:hover {
  background: rgba(138, 21, 81, 0.06);
  border-color: var(--color-primary, #8A1551);
  transform: translateY(-2px);
}

/* ===================================================
   Mobile & Tablet Responsive Styling
   =================================================== */
@media (max-width: 991px) {
  .sets-grid-luxury {
    grid-template-columns: 1fr;
  }
  .luxury-set-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .subsection-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .subsection-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
  }

  .subsection-title {
    font-size: 21px !important;
    margin-top: 4px !important;
  }

  .btn-view-all {
    font-size: 12px;
    padding: 4px 10px;
    white-space: nowrap;
  }

  .btn-view-all svg {
    width: 14px;
    height: 14px;
  }

  .luxury-set-card {
    flex-direction: column;
    min-height: auto;
  }

  .set-card-media {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 240px;
    min-height: 240px;
  }

  .set-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .set-card-content {
    padding: 18px 16px;
  }

  .set-btns-group {
    flex-direction: row;
    gap: 8px;
  }

  .btn-set-add-cart,
  .btn-set-details {
    height: 40px;
    font-size: 12px;
    padding: 8px 10px;
  }

  .btn-set-add-cart svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
  }
}

/* ─── Mobile 2-Column Fragrance Sets & Dynamic Section Cards (Identical to Home Collection) ─── */
@media (max-width: 600px) {
  .sets-grid-luxury {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    display: grid !important;
    width: 100% !important;
  }

  .luxury-set-card {
    border-radius: 18px !important;
    border: 1px solid rgba(138, 21, 81, 0.09) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-height: auto !important;
    width: 100% !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .set-card-media {
    height: 165px !important;
    min-height: 165px !important;
    max-height: 165px !important;
    border-radius: 17px 17px 0 0 !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F5EFF2 100%) !important;
  }

  .set-card-media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.0) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .set-badge-gift {
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(138, 21, 81, 0.2) !important;
    line-height: 1.15 !important;
    gap: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    z-index: 4 !important;
  }

  .set-badge-gift svg {
    width: 10px !important;
    height: 10px !important;
  }

  .set-items-pill {
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    z-index: 4 !important;
  }

  .set-card-content {
    padding: 12px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
  }

  .set-brand-tag {
    font-size: 10px !important;
    margin-bottom: 2px !important;
    display: block !important;
    color: var(--color-primary, #8A1551) !important;
    font-weight: 600 !important;
  }

  .set-card-title {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }

  /* Hide long descriptions and bulky chips on mobile cards */
  .set-card-desc,
  .set-contents-tags {
    display: none !important;
  }

  .set-rating-row {
    margin-bottom: 6px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: center !important;
  }

  .set-rating-row .stars svg {
    width: 12px !important;
    height: 12px !important;
  }

  .set-rating-row .count {
    font-size: 10px !important;
  }

  .set-price-actions-wrap {
    margin-top: auto !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(138, 21, 81, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .set-price-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
  }

  .set-current-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    color: #1A1A1A !important;
  }

  .set-old-price {
    font-size: 11px !important;
    margin-bottom: 0 !important;
    color: #999 !important;
    text-decoration: line-through !important;
    margin-left: 4px !important;
  }

  .set-btns-group {
    margin-top: 4px !important;
    gap: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .btn-set-add-cart {
    padding: 8px 10px !important;
    font-size: 11.5px !important;
    min-height: 34px !important;
    height: 34px !important;
    border-radius: 20px !important;
    gap: 5px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--color-primary, #8A1551) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
  }

  .btn-set-add-cart svg {
    width: 13px !important;
    height: 13px !important;
  }

  .btn-set-details {
    padding: 7px 10px !important;
    font-size: 11px !important;
    border-radius: 20px !important;
    min-height: 32px !important;
    height: 32px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid rgba(138, 21, 81, 0.15) !important;
    background-color: transparent !important;
    color: var(--color-primary, #8A1551) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 360px) {
  .sets-grid-luxury {
    gap: 8px !important;
  }
  .set-card-media {
    height: 140px !important;
    min-height: 140px !important;
  }
}
