:root {
  --bg: #040404;
  --bg-elevated: #0b0b0b;
  --panel: rgba(10, 10, 10, 0.92);
  --panel-strong: rgba(13, 13, 13, 0.98);
  --card: rgba(12, 12, 12, 0.94);
  --text: #f6f6f6;
  --text-soft: #cfcfcf;
  --muted: #b7a375;
  --line: rgba(255, 170, 0, 0.18);
  --line-strong: rgba(255, 170, 0, 0.34);
  --gold: #ffb100;
  --gold-soft: #ffd36d;
  --orange: #ff8b11;
  --orange-deep: #ff5c15;
  --accent-grad: linear-gradient(135deg, #ffcc33 0%, #ffb100 48%, #ff7b00 100%);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 40px rgba(255, 174, 0, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 177, 0, 0.08), transparent 18%),
    radial-gradient(circle at 18% 10%, rgba(255, 122, 0, 0.06), transparent 16%),
    linear-gradient(180deg, #020202 0%, #080808 48%, #040404 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 174, 0, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 174, 0, 0.028) 0,
      rgba(255, 174, 0, 0.028) 1px,
      transparent 1px,
      transparent 44px
    );
  opacity: 0.45;
}

body::after {
  background:
    radial-gradient(circle at bottom center, rgba(255, 112, 0, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 177, 0, 0.05), transparent 18%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

code {
  padding: 0.14em 0.4em;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: 10px;
  background: rgba(255, 177, 0, 0.08);
  color: var(--gold-soft);
  font-family: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero,
.section {
  position: relative;
  padding-inline: 24px;
}

.topbar,
.hero-layout,
.admin-page-intro,
.section-line,
.section-heading,
.catalog-toolbar,
.filters,
.catalog-grid,
.services-grid,
.value-grid,
.timeline-track,
.spotlight-grid,
.cta-banner,
.site-footer,
.admin-layout {
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero {
  padding-bottom: 22px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 177, 0, 0.09), transparent 16%),
    linear-gradient(180deg, rgba(255, 177, 0, 0.03), transparent 70%);
  pointer-events: none;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 16px 18px 16px 20px;
  border-bottom: 1px solid rgba(255, 177, 0, 0.22);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 177, 0, 0.12), transparent 72%);
  transform: translateY(-50%);
  filter: blur(2px);
  pointer-events: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.84;
  mix-blend-mode: screen;
  filter: saturate(0.92) brightness(0.98) drop-shadow(0 0 12px rgba(255, 177, 0, 0.12));
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.topbar-links a {
  position: relative;
  padding: 12px 12px 14px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent-grad);
  transition: transform 180ms ease;
}

.topbar-links a:hover,
.topbar-links a.is-active {
  color: #ffffff;
}

.topbar-links a:hover::after,
.topbar-links a.is-active::after {
  transform: scaleX(1);
}

.topbar-cta {
  min-width: 170px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: #161616;
  background: var(--accent-grad);
  box-shadow: 0 14px 30px rgba(255, 132, 0, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 132, 0, 0.24);
}

.button-secondary {
  color: var(--gold-soft);
  border-color: var(--line-strong);
  background: rgba(255, 177, 0, 0.04);
}

.button-secondary:hover {
  background: rgba(255, 177, 0, 0.08);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.94fr);
  gap: 28px;
  align-items: start;
  padding-block: 26px 54px;
}

.hero-copy,
.hero-visual,
.service-card,
.product-card,
.value-card,
.timeline-step-body,
.cta-banner,
.site-footer,
.admin-login-card,
.admin-panel,
.admin-overview-card,
.admin-product-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(8, 8, 8, 0.96)),
    var(--card);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.cta-banner,
.site-footer,
.admin-login-card,
.admin-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  max-width: 560px;
  padding: 30px 32px;
  justify-self: start;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.45rem, 4.4vw, 4.4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.16;
}

.text-accent {
  color: var(--gold);
}

.hero-copy h1 {
  max-width: 11ch;
  margin-top: 10px;
}

.hero-text,
.section-text,
.service-card p,
.product-description,
.product-meta,
.status-note,
.value-card p,
.timeline-step p,
.floating-note p,
.card-label,
.card-highlight,
.panel-label,
.admin-message,
.admin-overview-card p,
.footer-copy p,
.footer-contact span {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 50ch;
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 177, 0, 0.04);
  color: var(--text-soft);
  font-size: 0.84rem;
}

.hero-visual {
  min-height: 470px;
  max-width: 560px;
  padding: 20px;
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(6, 6, 6, 0.98)),
    var(--card);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 177, 0, 0.06) 100%),
    linear-gradient(90deg, transparent 0%, rgba(255, 177, 0, 0.03) 50%, transparent 100%);
}

.hero-orb {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 177, 0, 0.28);
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 177, 0, 0.22) 0,
      rgba(255, 177, 0, 0.22) 2px,
      transparent 2px,
      transparent 26px
    ),
    radial-gradient(circle at center, rgba(255, 177, 0, 0.2), rgba(255, 119, 0, 0.08) 52%, transparent 72%);
  filter: drop-shadow(0 0 28px rgba(255, 162, 0, 0.08));
  opacity: 0.62;
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 177, 0, 0.18);
  border-radius: 50%;
}

.hero-orb::after {
  inset: 42px;
}

.dashboard-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  margin-top: 88px;
  margin-inline: 20px 16px;
  border: 1px solid rgba(255, 177, 0, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 12, 4, 0.88), rgba(10, 10, 10, 0.98)),
    rgba(7, 7, 7, 0.94);
  box-shadow: var(--glow);
}

.dashboard-sidebar {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 24px 0;
  border-right: 1px solid rgba(255, 177, 0, 0.12);
}

.dashboard-dot {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 177, 0, 0.38);
  border-radius: 50%;
  background: transparent;
}

.dashboard-dot.is-active {
  background: var(--accent-grad);
  box-shadow: 0 0 16px rgba(255, 177, 0, 0.28);
}

.dashboard-main {
  padding: 20px 18px 18px;
}

.dashboard-heading {
  display: grid;
  gap: 6px;
}

.dashboard-heading p,
.stat-label,
.card-label,
.panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.stat-card,
.dashboard-card,
.admin-overview-card {
  padding: 14px;
  border: 1px solid rgba(255, 177, 0, 0.14);
  border-radius: 18px;
  background: rgba(255, 177, 0, 0.04);
}

.stat-value,
.panel-number {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 10px;
  margin-top: 10px;
}

.mini-chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 96px;
  margin-top: 10px;
}

.mini-chart-bars span {
  width: 100%;
  border-radius: 8px 8px 0 0;
  background: var(--accent-grad);
  box-shadow: 0 0 24px rgba(255, 164, 0, 0.12);
}

.mini-chart-bars span:nth-child(1) {
  height: 24%;
}

.mini-chart-bars span:nth-child(2) {
  height: 34%;
}

.mini-chart-bars span:nth-child(3) {
  height: 31%;
}

.mini-chart-bars span:nth-child(4) {
  height: 55%;
}

.mini-chart-bars span:nth-child(5) {
  height: 48%;
}

.mini-chart-bars span:nth-child(6) {
  height: 73%;
}

.mini-chart-bars span:nth-child(7) {
  height: 88%;
}

.dashboard-ring-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.mini-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(11, 11, 11, 1) 0 42%, transparent 42% 100%),
    conic-gradient(from 12deg, #ffb100 0 34%, #ff7b00 34% 76%, rgba(255, 177, 0, 0.16) 76% 100%);
  box-shadow: 0 0 24px rgba(255, 164, 0, 0.12);
}

.card-highlight {
  margin: 4px 0 0;
  font-weight: 700;
}

.dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.dashboard-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 177, 0, 0.04);
  color: var(--text-soft);
  font-size: 0.76rem;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  width: 200px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow: var(--glow);
}

.floating-note strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.floating-note p {
  margin: 4px 0 0;
  font-size: 0.8rem;
}

.floating-note-left {
  left: 10px;
  bottom: 92px;
}

.floating-note-right {
  right: 10px;
  bottom: 34px;
}

.floating-icon,
.service-icon,
.value-icon,
.timeline-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 177, 0, 0.08);
}

.section {
  padding-block: 26px 70px;
}

.section-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.section-line span {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 177, 0, 0.36) 50%, transparent 100%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading-centered {
  align-items: center;
}

.section-text {
  max-width: 42ch;
  margin: 0;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading-centered h2 {
  max-width: 18ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 26px 24px;
  border-radius: 20px;
}

.service-icon,
.value-icon {
  width: 62px;
  height: 62px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 177, 0, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 177, 0, 0.08);
}

.service-card h3,
.value-card h3 {
  margin-top: 20px;
}

.service-card p,
.value-card p {
  margin: 10px 0 0;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.search-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-field input {
  width: min(100%, 440px);
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.98);
  color: var(--text);
  font: inherit;
  outline: none;
}

.search-field input::placeholder,
.admin-field input::placeholder,
.admin-field textarea::placeholder {
  color: rgba(207, 207, 207, 0.44);
}

.search-field input:focus,
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(255, 177, 0, 0.08);
}

.results-summary {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-button {
  padding: 11px 16px;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 177, 0, 0.04);
  color: var(--text-soft);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  transform: translateY(-1px);
  color: #111111;
  border-color: transparent;
  background: var(--accent-grad);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--glow);
}

.product-media {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  padding: 18px;
  border: 1px solid rgba(255, 177, 0, 0.14);
  border-radius: 18px;
  color: #fff8e6;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 231, 180, 0.08) 0,
      rgba(255, 231, 180, 0.08) 4px,
      transparent 4px,
      transparent 26px
    ),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
}

.product-media[data-tone="muebles"] {
  background: linear-gradient(180deg, #111111 0%, #1b0f03 22%, #ff9800 58%, #d71d1d 100%);
}

.product-media[data-tone="deco"] {
  background: linear-gradient(180deg, #111111 0%, #1e1002 20%, #ffb100 50%, #ff6b00 76%, #c81919 100%);
}

.product-media[data-tone="electro"] {
  background: linear-gradient(180deg, #111111 0%, #1a0e03 16%, #ffc22d 44%, #ff7f00 76%, #be1818 100%);
}

.product-media[data-tone="hogar"] {
  background: linear-gradient(180deg, #111111 0%, #170d04 18%, #ffb100 50%, #ff7d00 74%, #cf1d1d 100%);
}

.product-image {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 177, 0, 0.12);
  border-radius: 18px;
}

.product-media-tag,
.product-category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-media-tag {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 243, 212, 0.22);
  background: rgba(0, 0, 0, 0.24);
}

.product-media-copy {
  position: relative;
  z-index: 1;
  margin-top: 62px;
}

.product-media-copy strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.product-media-copy p {
  max-width: 24ch;
  margin: 8px 0 0;
  color: rgba(255, 248, 230, 0.9);
  line-height: 1.6;
}

.product-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-category {
  color: #161616;
  background: var(--accent-grad);
}

.product-price {
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-description {
  margin: 0;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.product-meta span,
.admin-product-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 177, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 177, 0, 0.04);
}

.status-note {
  margin: 0;
  font-size: 0.92rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed rgba(255, 177, 0, 0.22);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.9);
}

.empty-state h3 {
  margin-bottom: 8px;
}

.empty-state p {
  margin: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 20px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.timeline-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 177, 0, 0.14), rgba(255, 177, 0, 0.9), rgba(255, 177, 0, 0.14));
}

.timeline-step {
  position: relative;
  padding-top: 18px;
}

.timeline-step-number {
  position: absolute;
  top: -2px;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: #0e0e0e;
  color: var(--gold-soft);
  font-weight: 800;
}

.timeline-step-body {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 46px 22px 22px;
  border-radius: 22px;
}

.timeline-step-icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 177, 0, 0.05);
}

.timeline-step p {
  margin: 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.spotlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 177, 0, 0.03);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.cta-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 177, 0, 0.18), rgba(255, 124, 0, 0.28)),
    linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(8, 8, 8, 0.96));
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  opacity: 0.35;
  pointer-events: none;
}

.cta-brand {
  width: 124px;
}

.cta-brand img {
  width: 100%;
  opacity: 0.8;
  mix-blend-mode: screen;
  filter: saturate(0.9) brightness(0.96);
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 14ch;
  margin-top: 10px;
}

.cta-copy .section-text {
  max-width: 48ch;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  opacity: 0.76;
  mix-blend-mode: screen;
  filter: saturate(0.88) brightness(0.96);
}

.footer-copy strong {
  display: block;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 800;
}

.footer-copy p {
  max-width: 40ch;
  margin: 8px 0 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

.admin-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
  padding-block: 38px 30px;
}

.admin-overview {
  display: grid;
  gap: 16px;
}

.admin-overview-card {
  border-radius: 20px;
}

.admin-overview-card .stat-value {
  font-size: 1.7rem;
}

.admin-layout {
  display: grid;
  gap: 20px;
}

.admin-login-card,
.admin-panel {
  padding: 30px;
}

.admin-login-card h3,
.admin-panel h3 {
  margin-bottom: 12px;
}

.admin-login-form,
.admin-form {
  display: grid;
  gap: 18px;
}

.admin-login-form {
  max-width: 420px;
  margin-top: 22px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-field {
  display: grid;
  gap: 10px;
}

.admin-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 177, 0, 0.16);
  border-radius: 16px;
  background: rgba(7, 7, 7, 0.98);
  color: var(--text);
  font: inherit;
  resize: vertical;
  outline: none;
}

.admin-field textarea {
  min-height: 136px;
}

.admin-field-wide,
.admin-field-full {
  grid-column: span 2;
}

.admin-panel-header,
.admin-products-header,
.admin-product-item,
.admin-product-actions,
.admin-form-actions {
  display: flex;
  gap: 14px;
}

.admin-panel-header,
.admin-products-header,
.admin-product-item {
  justify-content: space-between;
}

.admin-panel-header,
.admin-products {
  margin-bottom: 24px;
}

.admin-panel-actions,
.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-form-actions {
  flex-wrap: wrap;
  align-items: center;
}

.admin-products {
  margin-top: 28px;
}

.admin-product-list {
  display: grid;
  gap: 14px;
}

.admin-product-item {
  align-items: start;
  padding: 20px;
  border-radius: 20px;
}

.admin-product-main h3 {
  margin: 10px 0 8px;
}

.admin-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.admin-action-button {
  min-height: 44px;
  padding-inline: 18px;
}

.admin-message {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.admin-message.is-error {
  color: #ff8d77;
}

.admin-message.is-success {
  color: var(--gold-soft);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-layout,
  .admin-page-intro,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topbar-links {
    justify-content: start;
  }

  .topbar-cta {
    min-width: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .dashboard-shell {
    margin-inline: 8px;
  }

  .cta-copy h2,
  .cta-copy .section-text {
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .services-grid,
  .catalog-grid,
  .value-grid,
  .timeline-track,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .section-text {
    max-width: none;
  }

  .section-heading h2,
  .section-heading-centered h2,
  .cta-copy h2 {
    max-width: none;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: start;
  }

  .search-field,
  .search-field input {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 120px;
  }

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    padding-top: 0;
  }

  .timeline-step-number {
    position: static;
    margin-bottom: 14px;
  }

  .timeline-step-body {
    padding-top: 22px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-field-wide,
  .admin-field-full {
    grid-column: span 1;
  }

  .admin-panel-header,
  .admin-products-header,
  .admin-product-item {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .hero,
  .section {
    padding-inline: 18px;
  }

  .topbar {
    gap: 16px;
    padding-inline: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-copy,
  .hero-visual,
  .cta-banner,
  .site-footer,
  .admin-login-card,
  .admin-panel {
    padding: 24px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
  }

  .hero-orb {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 280px);
    height: min(100vw - 90px, 280px);
    margin-inline: auto;
  }

  .dashboard-shell {
    margin: 0;
    grid-template-columns: 58px 1fr;
  }

  .product-footer,
  .contact-actions {
    flex-direction: column;
    align-items: start;
  }

  .footer-brand {
    align-items: start;
    flex-direction: column;
  }
}
