#hero-section {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px 0;
  padding-bottom: 48px;
  border-bottom: 1px solid #171717;
}

/* --- Background slides --- */
#hero-section .hs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-section .hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  pointer-events: none;
}

#hero-section .hs-slide.active {
  opacity: 0.35;
  transform: scale(1);
}

#hero-section .hs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hero-section .hs-gradient-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #161e33,
      rgb(22 30 51 / 47%),
      transparent);
}

#hero-section .hs-gradient-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      #161e33,
      transparent,
      rgba(22, 30, 51, 0.2));
}

/* --- Main content grid --- */
#hero-section .hs-inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* --- Left column --- */
#hero-section .hs-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
  animation: hsFadeLeft 0.7s ease forwards;
}

@keyframes hsFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge row */
#hero-section .hs-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#hero-section .hs-badge-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(234, 88, 12, 0.25);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fb923c;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

#hero-section .hs-badge-orange svg {
  width: 14px;
  height: 14px;
  fill: #f97316;
  color: #f97316;
  animation: hsPulse 2s ease-in-out infinite;
}

#hero-section .hs-badge-neutral {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #a3a3a3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid rgba(38, 38, 38, 0.8);
  padding: 7px 10px;
  border-radius: 9999px;
}

#hero-section .hs-badge-neutral svg {
  width: 12px;
  height: 12px;
  color: #f97316;
}

/* Heading block */
#hero-section .hs-heading-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#hero-section .hs-eyebrow {
  font-size: 14px;
  font-weight: 900;
  color: #f97316;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: hsPulse 2s ease-in-out infinite;
}

@keyframes hsPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

#hero-section .hs-h1 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

/* Description */
#hero-section .hs-desc {
  color: #d4d4d4;
  font-size: 14px;
  max-width: 576px;
  line-height: 1.625;
  font-weight: 500;
  margin: 0;
}

#hero-section .hs-tab span {
  line-height: 20px;
}

/* Promo card */
#hero-section .hs-promo-card {
  background: rgba(23, 23, 23, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  max-width: 576px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s;
}

#hero-section .hs-promo-card:hover {
  background: rgba(23, 23, 23, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

#hero-section .hs-promo-icon {
  background: linear-gradient(135deg, #f97316, #d97706);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  transition: transform 0.2s;
  max-height: 44px;
}

#hero-section .hs-promo-card:hover .hs-promo-icon {
  transform: scale(1.05);
}

#hero-section .hs-promo-icon svg {
  width: 20px;
  height: 20px;
}

#hero-section .hs-promo-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fb923c;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

#hero-section .hs-promo-label svg {
  width: 14px;
  height: 14px;
  color: #ef4444;
  fill: #ef4444;
  animation: hsPulse 2s ease-in-out infinite;
}

#hero-section .hs-promo-title {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
}

#hero-section .hs-promo-sub {
  font-size: 14px;
  color: #737373;
  font-weight: 500;
  margin-bottom: 0;
}

/* CTA buttons */
#hero-section .hs-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

#hero-section .hs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 900;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  padding: 7px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin: 0;
}

#hero-section .hs-btn-primary:hover {
  background: #e5e5e5;
}

#hero-section .hs-btn-primary:active {
  transform: scale(0.95);
}

#hero-section .hs-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

#hero-section .hs-btn-primary:hover svg {
  transform: translateX(6px);
}

#hero-section .hs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(23, 23, 23, 0.8);
  border: 1px solid #262626;
  color: #e5e5e5;
  font-size: 14px;
  text-transform: capitalize;
  padding: 7px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin: 0;
}

#hero-section .hs-btn-secondary:hover {
  background: #262626;
  color: #fff;
}

#hero-section .hs-btn-secondary svg {
  width: 16px;
  height: 16px;
  color: #f97316;
}

#hero-section .hs-product-item p {
  line-height: normal;
}

#hero-section .hs-price-old {
  margin-bottom: 0;
}

/* --- Right column (lookbook card) --- */
#hero-section .hs-right {
  display: none;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: hsFadeRight 0.7s ease forwards;
}

@keyframes hsFadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#hero-section .hs-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: rgba(23, 23, 23, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#hero-section .hs-card-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #dd3333;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-bottom-left-radius: 16px;
}

#hero-section .hs-card-eyebrow {
  font-size: 10px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

#hero-section .hs-card-eyebrow svg {
  width: 14px;
  height: 14px;
  color: #f97316;
}

#hero-section .hs-card-title {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

#hero-section .hs-card-products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-auto-flow: row;
  gap: 16px;
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
}

#hero-section .hs-product-item {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  background: none;
  border: none;
	text-decoration: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

#hero-section .hs-product-item[hidden] {
  display: none !important;
}

#hero-section .hs-product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  /* border: 1px solid #262626;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); */
}

#hero-section .hs-product-img-wrap img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#hero-section .hs-product-item:hover .hs-product-img-wrap img {
  transform: scale(1.05);
}

#hero-section .hs-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#hero-section .hs-product-item:hover .hs-product-overlay {
  background: rgba(10, 10, 10, 0.2);
}

#hero-section .hs-product-overlay span {
  opacity: 0;
  background: #fff;
  color: #0a0a0a;
  font-size: 9px;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1;
}

#hero-section .hs-product-item:hover .hs-product-overlay span {
  opacity: 1;
  transform: translateY(0);
}

#hero-section .hs-product-name {
  font-size: 11px;
  font-weight: 900;
  color: #e5e5e5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-bottom: 2px;
  transition: color 0.2s;
}

#hero-section .hs-product-item:hover .hs-product-name {
  color: #fb923c;
}

#hero-section .hs-product-price {
  font-size: 12px;
  font-weight: 800;
  color: #fb923c;
  margin-bottom: 0;
}

#hero-section .hs-product-price .amount,
#hero-section .hs-product-price .woocommerce-Price-currencySymbol {
  color: #fb923c !important;
  font: inherit;
}

/* Card footer */
#hero-section .hs-card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(38, 38, 38, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hero-section .hs-price-old {
  font-size: 10px;
  color: #525252;
  text-decoration: line-through;
  font-weight: 700;
}

#hero-section .hs-price-old .amount,
#hero-section .hs-price-old .woocommerce-Price-currencySymbol {
  color: #737373 !important;
  font: inherit;
  text-decoration: line-through;
}

#hero-section .hs-price-new {
  font-size: 18px;
  font-weight: 900;
  color: #fb923c;
  margin-bottom: 0;
}

#hero-section .hs-price-new .amount,
#hero-section .hs-price-new .woocommerce-Price-currencySymbol {
  color: #fb923c !important;
  font: inherit;
}

#hero-section .hs-buy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
	text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  margin: 0;
}

#hero-section .hs-buy-btn:hover {
  background: #ea580c;
}

#hero-section .hs-buy-btn:active {
  transform: scale(0.95);
}

#hero-section .hs-buy-btn svg {
  width: 12px;
  height: 12px;
}

/* Card decorative layers */
#hero-section .hs-card-deco-1 {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 24px;
  z-index: -1;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.5s;
  pointer-events: none;
  display: none;
}

#hero-section .hs-card:hover .hs-card-deco-1 {
  transform: rotate(-3deg);
}

#hero-section .hs-card.hs-card-fade {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#hero-section .hs-card-deco-2 {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  /* background: #171717; */
  border-radius: 24px;
  z-index: -2;
  /* border: 1px solid #262626; */
  transform: rotate(3deg);
  transition: transform 0.5s;
  pointer-events: none;
}

#hero-section .hs-card:hover .hs-card-deco-2 {
  transform: rotate(4deg);
}

/* --- Nav arrows --- */
#hero-section .hs-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}

#hero-section .hs-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.6);
  border: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s, color 0.2s;
}

#hero-section .hs-arrow-btn:hover {
  background: #262626;
  color: #fff;
}

#hero-section .hs-arrow-btn svg {
  width: 20px;
  height: 20px;
}

/* --- Tabs --- */
#hero-section .hs-tabs-wrap {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 16px;
  width: 100%;
}

#hero-section .hs-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 0px solid rgba(38, 38, 38, 0.8);
  padding-top: 24px;
}

#hero-section .hs-tab {
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

#hero-section .hs-tab-bar {
  width: 100%;
  height: 4px;
  background: rgba(38, 38, 38, 0.8);
  border-radius: 9999px;
  overflow: hidden;
}

#hero-section .hs-tab-progress {
  height: 100%;
  background: #f97316;
  border-radius: 9999px;
  width: 0%;
  transition: width 0.3s ease;
}

#hero-section .hs-tab-num {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #737373;
  display: block;
  transition: color 0.2s;
}

#hero-section .hs-tab.active .hs-tab-num {
  color: #f97316;
}

#hero-section .hs-tab:hover .hs-tab-num {
  color: #a3a3a3;
}

#hero-section .hs-tab-label {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

#hero-section .hs-tab.active .hs-tab-label {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  #hero-section .hs-badge-neutral {
    display: inline-flex;
  }

  #hero-section .hs-promo-card {
    padding: 20px;
  }


  #hero-section .hs-tab-label {
    display: block;
  }

  #hero-section .hs-arrows {
    padding: 0 16px;
  }
}

@media (min-width: 768px) {
  #hero-section {
    min-height: 850px;
  }

  #hero-section .hs-tabs-wrap {
    margin-top: 48px;
  }

  #hero-section .hs-tabs {
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  #hero-section .hs-inner {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }

  #hero-section .hs-left {
    grid-column: span 7;
  }

  #hero-section .hs-right {
    grid-column: span 5;
    display: flex;
  }

  /* #hero-section .hs-tabs-wrap {
    padding: 0 32px;
  } */
}
#hero-section .hs-cta-row a {
    display: flex;
    height: 49px;
}
