.horbinor-widget {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.horbinor-widget *,
.horbinor-widget *::before,
.horbinor-widget *::after {
  box-sizing: inherit;
}

.horbinor-shell {
  max-width: var(--horbinor-max-width, 1280px);
  margin: 0 auto;
  padding-left: var(--horbinor-padding, 24px);
  padding-right: var(--horbinor-padding, 24px);
}

.horbinor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--horbinor-accent, #5B2D63);
  background: var(--horbinor-accent, #5B2D63);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.horbinor-button--ghost {
  background: transparent;
  color: var(--horbinor-text, #1F2430);
}

.horbinor-header {
  position: relative;
  z-index: 20;
  background: var(--horbinor-bg, #fff);
  color: var(--horbinor-text, #1F2430);
  border-bottom: 1px solid var(--horbinor-border, #E5E7EB);
}

.horbinor-header--sticky {
  position: sticky;
  top: 0;
}

.horbinor-header .horbinor-shell {
  min-height: var(--horbinor-header-height, 88px);
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) minmax(220px, 360px) auto;
  align-items: center;
  gap: 16px;
}

.horbinor-brand__text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.horbinor-brand__logo {
  max-height: 52px;
  width: auto;
}

.horbinor-nav__menu,
.horbinor-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.horbinor-nav__menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.horbinor-nav__menu a,
.horbinor-footer__links a,
.horbinor-footer a,
.horbinor-chip {
  color: inherit;
  text-decoration: none;
}

.horbinor-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--horbinor-border, #E5E7EB);
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff;
}

.horbinor-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.horbinor-search button {
  border: 0;
  border-radius: 999px;
  background: var(--horbinor-accent, #5B2D63);
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
}

.horbinor-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.horbinor-chip,
.horbinor-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(91, 45, 99, 0.08);
}

.horbinor-chip strong {
  font-size: 0.95rem;
}

.horbinor-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.horbinor-hero--soft {
  background: linear-gradient(135deg, #f7f4ef 0%, #ffffff 60%, #efe6f3 100%);
  color: #1F2430;
}

.horbinor-hero--dark {
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #5b2d63 100%);
  color: #F9FAFB;
}

.horbinor-hero--light {
  background: #fff;
  color: #1F2430;
}

.horbinor-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, var(--horbinor-content-width, 620px)) minmax(260px, 1fr);
  align-items: center;
  gap: 32px;
}

.horbinor-hero--centered .horbinor-hero__inner {
  grid-template-columns: 1fr;
}

.horbinor-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91, 45, 99, 0.1);
  color: #5B2D63;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.horbinor-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.05;
}

.horbinor-hero__text {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 60ch;
}

.horbinor-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.horbinor-hero__media {
  position: relative;
  min-height: 340px;
}

.horbinor-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.18);
}

.horbinor-hero__shape {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(91,45,99,0.16), rgba(200,169,107,0.26));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 24px 64px rgba(17, 24, 39, 0.12);
}

.horbinor-hero__shape span {
  position: absolute;
  border-radius: 999px;
  background: rgba(91, 45, 99, 0.14);
}

.horbinor-hero__shape span:nth-child(1) {
  inset: 32px auto auto 32px;
  width: 120px;
  height: 120px;
}

.horbinor-hero__shape span:nth-child(2) {
  inset: auto 40px 48px auto;
  width: 160px;
  height: 160px;
  background: rgba(200, 169, 107, 0.22);
}

.horbinor-hero__shape span:nth-child(3) {
  inset: 110px 90px auto auto;
  width: 220px;
  height: 220px;
}

.horbinor-footer {
  padding: var(--horbinor-padding, 32px) 0;
  background: var(--horbinor-bg, #111827);
  color: var(--horbinor-text, #F9FAFB);
}

.horbinor-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.horbinor-footer__brand p,
.horbinor-footer__column p,
.horbinor-footer__column li {
  color: var(--horbinor-muted, #9CA3AF);
  line-height: 1.7;
}

.horbinor-footer__column h4 {
  margin: 0 0 14px;
}

.horbinor-footer__links {
  display: grid;
  gap: 10px;
}

@media (max-width: 1024px) {
  .horbinor-header .horbinor-shell,
  .horbinor-hero__inner,
  .horbinor-footer__grid {
    grid-template-columns: 1fr;
  }

  .horbinor-search,
  .horbinor-nav,
  .horbinor-utilities {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .horbinor-hero {
    padding: 56px 0;
  }

  .horbinor-button,
  .horbinor-chip,
  .horbinor-cart {
    width: 100%;
  }
}
