.header-buy-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  color: #160f04;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffde9a 0%, #ffce79 45%, #e8b55f 100%);
  border: 1px solid rgba(255, 222, 154, 0.65);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(232, 181, 95, 0.28);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.header-buy-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 48%, transparent 100%);
  transform: translateX(-135%);
  transition: transform 420ms ease;
}

.header-buy-cta:hover {
  color: #160f04;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(232, 181, 95, 0.38);
}

.header-buy-cta:hover::before {
  transform: translateX(135%);
}

.submenu-highlight {
  display: flex;
  align-items: stretch;
}

.submenu-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 206, 121, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 121, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(9, 11, 15, 0.74));
}

.submenu-highlight-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffce79;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submenu-highlight-card h3 {
  margin: 0;
  color: #fffaf2;
  font-size: 34px;
  line-height: 1.02;
}

.submenu-highlight-card p {
  margin: 18px 0 0;
  color: rgba(245, 242, 236, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.submenu-buy-cta {
  width: fit-content;
  margin-top: 24px;
}

.mobile-product-label {
  margin-top: 10px;
}

.mobile-product-label .menu-link {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-product-link {
  padding-left: 1.25rem;
  font-size: 15px;
}

.mobile-header-buy-cta {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .submenu-highlight {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-buy-cta {
    width: 100%;
  }
}
