:root {
  --bg: #edf4fc;
  --surface: #ffffff;
  --ink: #0f2740;
  --muted: #5c7895;
  --brand: #0a4f84;
  --brand-dark: #083c66;
  --brand-soft: #dbe9f7;
  --accent: #f68a1f;
  --border: #d6e4f2;
  --success: #118a6a;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, #d5e8fb 0, transparent 28%),
    radial-gradient(circle at 85% 5%, #cee4fb 0, transparent 24%),
    linear-gradient(180deg, #f5f9ff 0%, var(--bg) 100%);
  color: var(--ink);
}

a {
  text-decoration: none;
}

.page-wrap {
  max-width: 1200px;
}

.home-showcase {
  position: relative;
}

.home-showcase__hero {
  position: relative;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  overflow: hidden;
  padding: 2rem 2rem 7rem;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, #0a4f84 0%, #116ca2 48%, #3dd6af 100%);
  box-shadow: 0 30px 80px -45px rgba(10,79,132,.45);
}

.home-showcase__hero::before,
.home-showcase__hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-showcase__hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: 8%;
  background: rgba(255,255,255,.1);
}

.home-showcase__hero::after {
  width: 260px;
  height: 260px;
  bottom: -140px;
  left: -80px;
  background: rgba(255,255,255,.08);
}

.home-showcase__copy,
.home-showcase__stats {
  position: relative;
  z-index: 1;
}

.home-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-showcase__title {
  margin: 1rem 0 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
}

.home-showcase__desc {
  max-width: 640px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.home-showcase__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.home-showcase__stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}

.home-showcase__stat span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-showcase__stat strong {
  display: block;
  margin-top: .55rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.home-banner-shell {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: -4.8rem auto 0;
}

.home-banner-shell .carousel {
  position: relative;
}

.home-banner-slide {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: stretch;
  gap: 1.1rem;
  min-height: 360px;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 24px 55px -35px rgba(8,60,102,.35);
}

.home-banner-slide__image {
  overflow: hidden;
  border-radius: 24px;
  background: #e8f1fb;
  min-height: 100%;
}

.home-banner-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.carousel-item.active .home-banner-slide__image img:hover {
  transform: scale(1.04);
}

.home-banner-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1rem 1.25rem .75rem;
}

.home-banner-slide__labels {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.home-banner-slide__pill {
  display: inline-flex;
  align-items: center;
  padding: .6rem .95rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-banner-slide__pill--accent {
  background: var(--brand);
  color: #fff;
}

.home-banner-slide__content h2 {
  margin: 1rem 0 0;
  color: #132845;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 900;
}

.home-banner-slide__content p {
  margin: 1rem 0 0;
  max-width: 520px;
  color: #567089;
  line-height: 1.8;
}

.home-banner-slide__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.15rem;
}

.home-banner-slide__chips span {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: #eef5fc;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 700;
}

.home-banner-slide__cta {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: .95rem 1.3rem;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease;
}

.home-banner-slide__cta:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.home-banner-shell__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(214,228,242,.95);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--brand);
  box-shadow: 0 22px 40px -28px rgba(8,60,102,.35);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-banner-shell__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 28px 44px -28px rgba(8,60,102,.4);
}

.home-banner-shell__arrow i {
  font-size: 1.45rem;
}

.home-banner-shell__arrow--prev {
  left: -18px;
}

.home-banner-shell__arrow--next {
  right: -18px;
}

.home-banner-shell__dots {
  bottom: -2rem !important;
  margin-bottom: 0 !important;
  gap: .45rem;
}

.home-banner-shell__dots button {
  margin: 0 !important;
  width: 30px !important;
  height: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(10,79,132,.2) !important;
}

.home-banner-shell__dots .active {
  width: 42px !important;
  background: var(--brand) !important;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-category-card {
  display: block;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(214,228,242,.85);
  box-shadow: 0 18px 42px -28px rgba(8,60,102,.22);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px -28px rgba(8,60,102,.28);
}

.home-category-card__label {
  display: inline-flex;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-category-card h3 {
  margin: 1rem 0 0;
  color: #172942;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.home-category-card p {
  margin: .9rem 0 0;
  color: #587188;
  line-height: 1.8;
}

.home-category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}

.home-category-card__footer span {
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
}

.home-featured-panel {
  padding: 1.7rem;
  border-radius: 32px;
  border: 1px solid rgba(214,228,242,.9);
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 48px -30px rgba(8,60,102,.2);
}

.home-featured-panel__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.home-featured-panel__eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-featured-panel__header h2 {
  margin: .8rem 0 0;
  color: #172942;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 900;
}

.home-featured-panel__header p {
  margin: .85rem 0 0;
  max-width: 660px;
  color: #5d768d;
  line-height: 1.8;
}

.home-featured-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(10,79,132,.14);
  background: #eff6fd;
  color: var(--brand);
  font-weight: 800;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.home-product-card {
  overflow: hidden;
  border: 1px solid rgba(214,228,242,.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 30px -24px rgba(8,60,102,.16);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px -24px rgba(8,60,102,.22);
}

.home-product-card__image {
  display: block;
  overflow: hidden;
  background: #eef5fc;
}

.home-product-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}

.home-product-card:hover .home-product-card__image img {
  transform: scale(1.04);
}

.home-product-card__body {
  padding: 1.15rem;
}

.home-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .9rem;
}

.home-product-card__tags span {
  padding: .42rem .75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-product-card__tags .is-muted {
  background: #eff3f7;
  color: #62788f;
}

.home-product-card__body h3 {
  min-height: 3.3rem;
  margin: 0;
  color: #172942;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.03em;
}

.home-product-card__body p {
  min-height: 3rem;
  margin: .65rem 0 0;
  color: #62788f;
  font-size: .92rem;
  line-height: 1.6;
}

.home-product-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1rem;
}

.home-product-card__bottom small {
  display: block;
  color: #7f92a5;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-product-card__bottom strong {
  display: block;
  margin-top: .35rem;
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 900;
}

.home-product-card__bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 1rem;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}

[v-cloak] {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.16));
  border: 1px solid rgba(255,255,255,.34);
}

.card-soft {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 38px -28px rgba(8, 60, 102, .65);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card-soft:hover {
  box-shadow: 0 24px 46px -30px rgba(8, 60, 102, .45);
}

.hero-main {
  border-radius: 28px;
  background: linear-gradient(145deg, var(--brand), #0a3d66 65%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -45px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  filter: blur(4px);
}

.hero-main::after {
  content: "";
  position: absolute;
  left: -55px;
  bottom: -65px;
  width: 210px;
  height: 210px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes slideTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.home-hero-slider {
  position: relative;
}

.home-top-stage {
  position: relative;
}

.home-top-stage__bg {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 38px 38px;
  background: linear-gradient(135deg, #0a78a8 0%, #0aa58f 46%, #28cf82 100%);
  min-height: 220px;
  padding: 2rem 1.5rem 5.75rem;
}

.home-top-stage__bg::before,
.home-top-stage__bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.home-top-stage__bg::before {
  width: 520px;
  height: 520px;
  top: -240px;
  right: 15%;
}

.home-top-stage__bg::after {
  width: 460px;
  height: 460px;
  top: -150px;
  right: -140px;
}

.home-top-stage__content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}

.home-top-stage__eyebrow {
  margin: 0 0 .45rem;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.86);
}

.home-top-stage__content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -.03em;
}

.home-banner-slider-wrap {
  max-width: 1100px;
  margin: -4.25rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.home-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  padding: 2rem 2.2rem;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(15, 39, 64, .06);
  box-shadow: 0 26px 52px -32px rgba(8, 60, 102, .35);
}

.home-banner-card--gold {
  background: linear-gradient(135deg, #fff3ca 0%, #ffe18f 100%);
}

.home-banner-card--blue {
  background: linear-gradient(135deg, #dff3ff 0%, #bce7ff 50%, #eaf7ff 100%);
}

.home-banner-card--dark {
  background: linear-gradient(135deg, #dfeffd 0%, #c6dff6 40%, #eef6ff 100%);
}

.home-banner-card__copy {
  position: relative;
  z-index: 1;
  color: #1c2533;
}

.home-banner-card__label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--brand);
  padding: .5rem .85rem;
  margin-bottom: .9rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-banner-card__copy h2 {
  max-width: 580px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
  color: #202532;
}

.home-banner-card__promo {
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  background: rgba(246,138,31,.18);
  color: #1e2c3f;
  padding: .8rem 1.1rem;
  margin-bottom: .85rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.home-banner-card__copy p {
  max-width: 520px;
  margin: 0 0 1rem;
  color: #4f6074;
  line-height: 1.85;
}

.home-banner-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  padding: .95rem 1.2rem;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease;
}

.home-banner-card__link:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  color: #fff;
}

.home-banner-card__visual {
  position: relative;
  min-height: 240px;
}

.home-banner-card__shape {
  position: absolute;
  border-radius: 32px;
  background: rgba(255,255,255,.28);
}

.home-banner-card__shape--one {
  inset: 30px 10% 18px 24%;
}

.home-banner-card__shape--two {
  top: 18px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 999px;
}

.home-banner-product {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 44px -26px rgba(8, 60, 102, .3);
}

.home-banner-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-product--main {
  inset: 12px 28px 16px 20%;
  transform: rotate(-8deg);
}

.home-banner-product--mini {
  width: 180px;
  height: 120px;
  right: 0;
  bottom: 18px;
  transform: rotate(8deg);
}

.home-banner-stack {
  position: relative;
  min-height: 260px;
}

.home-banner-stack__card {
  position: absolute;
  width: 72%;
  right: 8%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 42px -28px rgba(8, 60, 102, .28);
}

.home-banner-stack__card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.home-banner-stack__card span {
  display: block;
  padding: .9rem 1rem;
  color: var(--ink);
  font-weight: 800;
}

.home-banner-stack__card--offset {
  top: 74px;
  right: 24%;
}

.home-furniture-orbit {
  position: relative;
  min-height: 260px;
}

.home-furniture-orbit__ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(10,79,132,.22);
}

.home-furniture-orbit__item {
  position: absolute;
  width: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
  box-shadow: 0 24px 42px -30px rgba(8, 60, 102, .3);
  animation: floatSoft 4.5s ease-in-out infinite;
}

.home-furniture-orbit__item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.home-furniture-orbit__item span {
  display: block;
  padding: .9rem 1rem;
  color: var(--ink);
  font-weight: 800;
}

.home-furniture-orbit__item--one {
  left: 4%;
  top: 10px;
}

.home-furniture-orbit__item--two {
  right: 0;
  bottom: 0;
  animation-delay: .7s;
}

.home-banner-control {
  width: 52px;
  opacity: 1;
}

.home-banner-control .carousel-control-prev-icon,
.home-banner-control .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-size: 38% 38%;
  border-radius: 999px;
  background-color: rgba(255,255,255,.96);
  box-shadow: 0 16px 36px -28px rgba(8, 60, 102, .3);
}

.home-banner-indicators {
  margin-bottom: -2rem;
}

.home-banner-indicators [data-bs-target] {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px;
  background-color: #b8cfe3;
}

.home-banner-indicators .active {
  background-color: #2bb673;
}

.home-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 520px;
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 50px -32px rgba(8, 60, 102, .55);
}

.home-hero-panel--board {
  background: linear-gradient(135deg, #083c66 0%, #0a4f84 50%, #0e6aa3 100%);
}

.home-hero-panel--plafon {
  background: linear-gradient(135deg, #12395b 0%, #0b5485 45%, #f68a1f 140%);
}

.home-hero-panel--furniture {
  background: linear-gradient(135deg, #0b456f 0%, #0a4f84 48%, #11355a 100%);
}

.home-hero-panel__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .6;
}

.home-hero-panel__glow--left {
  left: -40px;
  top: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.12);
}

.home-hero-panel__glow--right {
  right: -20px;
  bottom: -50px;
  width: 260px;
  height: 260px;
  background: rgba(246,138,31,.2);
}

.home-hero-panel__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 472px;
}

.home-hero-panel__copy {
  color: #fff;
}

.home-hero-panel__copy h1,
.home-hero-panel__copy h2 {
  max-width: 720px;
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

.home-hero-panel__copy h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
}

.home-hero-panel__copy p {
  max-width: 640px;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.95;
}

.home-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: .7rem 1rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.4rem;
}

.home-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 20px;
  padding: 1rem 1.3rem;
  font-size: .95rem;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.home-hero-btn:hover {
  transform: translateY(-2px);
}

.home-hero-btn--light {
  background: #fff;
  color: var(--brand);
}

.home-hero-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.home-hero-stat {
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.home-hero-stat strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.home-hero-stat span {
  color: rgba(255,255,255,.8);
  font-size: .86rem;
}

.home-hero-showcase {
  position: relative;
  min-height: 390px;
}

.home-hero-showcase__card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 48px -34px rgba(8, 60, 102, .72);
}

.home-hero-showcase__card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-showcase__card--main {
  inset: 10px 40px 30px 0;
}

.home-hero-showcase__card--main img {
  height: 260px;
}

.home-hero-showcase__card--float {
  right: 0;
  bottom: 0;
  width: 220px;
  animation: floatSoft 4s ease-in-out infinite;
}

.home-hero-showcase__card--float img {
  height: 150px;
}

.home-hero-showcase__body {
  padding: 1rem 1rem 1.1rem;
  color: #fff;
}

.home-hero-showcase__body span {
  display: inline-block;
  margin-bottom: .45rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

.home-hero-showcase__body strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.18rem;
  font-weight: 900;
}

.home-hero-showcase__body small {
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

.home-hero-highlight-grid {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.home-mini-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  padding: 1rem;
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 42px -32px rgba(8, 60, 102, .64);
}

.home-mini-banner img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  object-fit: cover;
}

.home-mini-banner strong {
  display: block;
  margin-bottom: .3rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.home-mini-banner span {
  color: rgba(255,255,255,.84);
  line-height: 1.6;
  font-size: .9rem;
}

.home-mini-banner--accent {
  justify-content: center;
  min-height: 110px;
  background: rgba(246,138,31,.18);
}

.home-orbit-wrap {
  position: relative;
  min-height: 380px;
}

.home-orbit-ring {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.22);
}

.home-orbit-card {
  position: absolute;
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 42px -30px rgba(8, 60, 102, .72);
  animation: floatSoft 4.5s ease-in-out infinite;
}

.home-orbit-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.home-orbit-card span {
  display: block;
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}

.home-orbit-card--one {
  top: 16px;
  left: 28px;
}

.home-orbit-card--two {
  right: 12px;
  bottom: 8px;
  animation-delay: .7s;
}

.home-hero-control {
  width: 52px;
}

.home-hero-control .carousel-control-prev-icon,
.home-hero-control .carousel-control-next-icon {
  background-color: rgba(255,255,255,.18);
  border-radius: 999px;
  background-size: 46% 46%;
  width: 48px;
  height: 48px;
}

.home-hero-indicators {
  margin-bottom: 1.2rem;
}

.home-hero-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px;
}

.home-promo-marquee {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 1rem 0;
  box-shadow: 0 18px 34px -28px rgba(8, 60, 102, .28);
}

.home-promo-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0 1rem;
  animation: slideTicker 24s linear infinite;
}

.home-promo-marquee:hover .home-promo-marquee__track {
  animation-play-state: paused;
}

.home-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbe7f2;
  color: var(--ink);
  padding: .8rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  max-height: 72px;
  width: auto;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 8px 12px;
}

.top-strip {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2px;
}

.nav-modern {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
}

.search-wrap {
  background: #f1f7fd;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.category-pill {
  border: 1px solid var(--border);
  color: #214767;
  background: #f6faff;
  border-radius: 999px;
  padding: .48rem .9rem;
  font-weight: 600;
  font-size: .88rem;
}

.category-pill:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 14px 28px -26px rgba(8,60,102,.6);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -24px rgba(8,60,102,.42);
  border-color: #bfd4e8;
}

.product-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform .3s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.code-badge {
  background: #edf5fc;
  color: var(--brand);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  padding: .24rem .6rem;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-accent:hover {
  filter: brightness(.95);
  color: #fff;
}

.footer-pro {
  background: #003357;
  color: #dbe8f4;
  margin-top: 4rem;
}

.footer-pro h4 {
  color: #fff;
  font-weight: 800;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

.metric h6 {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}

.metric .value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
}

.admin-shell {
  border-radius: 24px;
  background: linear-gradient(145deg, var(--brand), #0a3d66);
  color: #fff;
  box-shadow: 0 28px 54px -34px rgba(8,60,102,.5);
}

.admin-shell--compact {
  position: relative;
  overflow: hidden;
}

.admin-shell--compact::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.admin-shell__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.admin-shell__logout {
  align-self: center;
}

.admin-shell__logout-btn {
  min-width: 132px;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 20px 38px -30px rgba(8,44,73,.45);
}

.admin-hero-copy {
  max-width: 760px;
}

.admin-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.admin-hero-subtitle {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
}

.admin-topnav-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,251,255,.95));
  padding: 1.3rem;
  box-shadow: 0 24px 42px -34px rgba(8,60,102,.22);
}

.admin-topnav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-topnav-kicker {
  color: var(--brand);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.admin-topnav-caption {
  margin-top: .32rem;
  color: #68829b;
  font-size: .94rem;
  font-weight: 600;
  max-width: 620px;
  line-height: 1.7;
}

.admin-topnav-active {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  border-radius: 999px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  padding: .72rem 1rem;
  color: #3f5d79;
  font-size: .9rem;
  font-weight: 700;
}

.admin-topnav-active-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand), #0d5f94);
  box-shadow: 0 0 0 5px rgba(10,79,132,.1);
}

.admin-topnav-divider {
  height: 1px;
  margin: 1rem 0 1.2rem;
  background: linear-gradient(90deg, rgba(214,228,242,0) 0%, rgba(214,228,242,.95) 14%, rgba(214,228,242,.95) 86%, rgba(214,228,242,0) 100%);
}

.admin-topnav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.admin-topnav-link {
  display: flex;
  align-items: center;
  gap: .95rem;
  min-height: 96px;
  border-radius: 20px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 1.05rem 1.1rem;
  text-decoration: none;
  color: #25364a;
  box-shadow: 0 14px 30px -28px rgba(8,60,102,.22);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
}

.admin-topnav-link:hover {
  transform: translateY(-2px);
  color: var(--brand);
  border-color: #c8dcec;
  box-shadow: 0 20px 36px -28px rgba(8,60,102,.24);
}

.admin-topnav-link.is-active {
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand), #0d5f94);
  color: #fff;
  box-shadow: 0 24px 42px -28px rgba(8,60,102,.4);
}

.admin-topnav-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(10,79,132,.08);
  color: var(--brand);
  font-size: 1.2rem;
}

.admin-topnav-link.is-active .admin-topnav-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.admin-topnav-copy {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.admin-topnav-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.12;
}

.admin-topnav-copy small {
  display: block;
  color: #6d8499;
  font-size: .82rem;
  line-height: 1.45;
}

.admin-topnav-link.is-active .admin-topnav-copy small {
  color: rgba(255,255,255,.82);
}

.admin-nav-shell {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.94));
  padding: 1rem;
  box-shadow: 0 22px 42px -30px rgba(8,60,102,.18);
}

.admin-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.admin-nav-kicker {
  color: var(--brand);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.admin-nav-caption {
  margin-top: .3rem;
  color: #678098;
  font-size: .92rem;
  font-weight: 600;
}

.admin-nav-active-note {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 999px;
  border: 1px solid #dce7f2;
  background: #ffffff;
  padding: .65rem .95rem;
  color: #44617d;
  font-size: .84rem;
  font-weight: 700;
}

.admin-nav-active-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand), #0d5f94);
  box-shadow: 0 0 0 5px rgba(10,79,132,.12);
}

.admin-nav-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(214,228,242,0) 0%, rgba(214,228,242,.95) 14%, rgba(214,228,242,.95) 86%, rgba(214,228,242,0) 100%);
  margin-bottom: 1rem;
}

.admin-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.admin-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 52px;
  min-width: 150px;
  border-radius: 18px;
  border: 1px solid #dce7f2;
  background: #f8fbff;
  color: #385571;
  padding: .95rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.admin-nav-link__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8fb7da;
  box-shadow: 0 0 0 5px rgba(143,183,218,.18);
  flex: 0 0 auto;
}

.admin-nav-link:hover {
  transform: translateY(-2px);
  color: var(--brand);
  border-color: #c4d9ea;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 18px 32px -24px rgba(8,60,102,.2);
}

.admin-nav-link.is-active {
  background: linear-gradient(145deg, var(--brand), #0d5f94);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 38px -24px rgba(8,60,102,.35);
}

.admin-nav-link.is-active .admin-nav-link__dot {
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.16);
}

.admin-grid-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: .95rem;
  background: #fff;
}

.table-modern th {
  color: #567390;
  font-weight: 700;
  font-size: .84rem;
}

.table-modern td {
  font-size: .9rem;
}

.auth-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 40px -28px rgba(8,60,102,.65);
}

.auth-side {
  background: linear-gradient(150deg, var(--brand), #0b3a5f);
  color: #fff;
}

.google-auth-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  border: 1px solid #d5e2ef;
  border-radius: 18px;
  background: #fff;
  color: #244565;
  padding: 1rem 1.2rem;
  font-weight: 800;
  box-shadow: 0 18px 34px -30px rgba(8, 60, 102, .3);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.google-auth-btn:hover {
  transform: translateY(-2px);
  border-color: #bdd2e7;
  background: #f8fbff;
  box-shadow: 0 20px 36px -28px rgba(8, 60, 102, .28);
  color: #244565;
}

.google-auth-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.auth-divider {
  position: relative;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #deebf6;
}

.auth-divider span {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 .9rem;
  color: var(--muted);
  font-size: .9rem;
}

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 3.35rem;
}

.password-toggle {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b7f95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease;
}

.password-toggle:hover {
  background: #eef5fb;
  color: var(--brand);
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
}

.product-detail-shell {
  margin-top: .35rem;
}

.product-gallery-card,
.product-info-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 42px -34px rgba(8, 60, 102, .55);
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-gallery-card:hover,
.product-info-card:hover {
  box-shadow: 0 28px 54px -36px rgba(8, 60, 102, .48);
}

.product-gallery-stage {
  position: relative;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(244, 249, 255, .96), rgba(232, 241, 250, .88));
  border: 1px solid #e1edf8;
  padding: 14px;
  overflow: hidden;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  box-shadow: 0 18px 36px -24px rgba(8, 60, 102, .4);
  transform: translateY(-50%);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.product-gallery-nav:hover {
  transform: translateY(calc(-50% - 2px));
  background: #fff;
  box-shadow: 0 22px 38px -24px rgba(8, 60, 102, .48);
}

.product-gallery-nav--prev {
  left: 20px;
}

.product-gallery-nav--next {
  right: 20px;
}

.detail-hero-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform .3s ease;
}

.product-gallery-stage:hover .detail-hero-image {
  transform: scale(1.04);
}

.product-thumbs {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  padding-bottom: .2rem;
  scrollbar-width: thin;
}

.product-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  padding: 6px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 28px -26px rgba(8, 60, 102, .5);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.product-thumb.is-active,
.product-thumb:hover {
  transform: translateY(-2px);
  border-color: #9ec0df;
  box-shadow: 0 18px 34px -26px rgba(8, 60, 102, .42);
}

.product-gallery-note {
  color: #58718a;
  font-size: .9rem;
  font-weight: 600;
}

.product-title {
  font-size: clamp(2rem, 2.6vw, 2.85rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}

.product-short-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: #e7f1fb;
  color: var(--brand);
}

.detail-badge-muted {
  background: #f1f6fb;
  color: #496883;
}

.detail-badge-stock {
  background: #def5ec;
  color: #0c7254;
}

.detail-badge-danger {
  background: #fde5e5;
  color: #a13636;
}

.price-panel {
  border: 1px solid #d4e4f2;
  border-radius: 24px;
  padding: 1.15rem 1.3rem;
  background: linear-gradient(180deg, #f7fbff, #eef5fc);
}

.price-caption {
  display: inline-block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}

.product-price {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -.03em;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.detail-meta-item {
  min-width: 132px;
  border-radius: 18px;
  padding: .85rem 1rem;
  background: #f8fbfe;
  border: 1px solid #d9e7f4;
}

.detail-meta-label {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn-detail-primary,
.btn-detail-secondary {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border-radius: 18px;
  padding: .95rem 1.3rem;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}

.btn-detail-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  box-shadow: 0 18px 30px -24px rgba(8, 60, 102, .85);
}

.btn-detail-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 34px -24px rgba(8, 60, 102, .72);
}

.btn-detail-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid #b8cfe4;
  box-shadow: 0 16px 28px -24px rgba(8, 60, 102, .35);
}

.btn-detail-secondary:hover {
  background: #eef6fd;
  color: var(--brand);
  border-color: #9abddc;
  transform: translateY(-2px);
}

.trust-strip {
  border-top: 1px solid #e4eef7;
  padding-top: 1.25rem;
}

.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dbe9f5;
  padding: .95rem 1rem;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -28px rgba(8, 60, 102, .42);
}

.trust-pill i {
  color: var(--brand);
  font-size: 1.2rem;
}

.trust-pill strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
}

.trust-pill small {
  color: var(--muted);
}

.product-story-card {
  border: 1px solid rgba(8, 60, 102, .08);
}

.product-story-mini,
.detail-highlight-card {
  height: 100%;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(8, 60, 102, .08);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9fe 100%);
  box-shadow: 0 20px 34px -32px rgba(8, 60, 102, .26);
}

.product-story-mini strong,
.detail-highlight-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.product-story-mini p,
.detail-highlight-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

.product-story-points {
  display: grid;
  gap: .9rem;
}

.product-story-point {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(8, 60, 102, .08);
  box-shadow: 0 20px 35px -34px rgba(8, 60, 102, .26);
}

.product-story-point i {
  color: var(--brand);
  font-size: 1.15rem;
  margin-top: .1rem;
}

.product-story-point strong {
  display: block;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 800;
}

.product-story-point p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.detail-highlight-grid {
  display: grid;
  gap: .9rem;
}

.detail-shipping-note {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, .18);
  background: linear-gradient(180deg, #f4fff9 0%, #ebfbf3 100%);
  box-shadow: 0 20px 34px -32px rgba(16, 185, 129, .28);
}

.detail-shipping-note__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .12);
  color: #119267;
  font-size: 1.15rem;
}

.detail-shipping-note strong {
  display: block;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 800;
}

.detail-shipping-note p {
  color: #5f766d;
  font-size: .92rem;
  line-height: 1.72;
}

.detail-shipping-note--compact {
  padding: .9rem 1rem;
}

.detail-shipping-note--compact strong {
  font-size: .92rem;
}

.detail-shipping-note--compact p {
  font-size: .85rem;
}

.product-card-premium img {
  height: 220px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
}

.summary-card {
  position: sticky;
  top: 96px;
}

.soft-table thead th {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.status-pill {
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 700;
}

.status-pending { background: #fff3cd; color: #8a6d1d; }
.status-paid, .status-settled { background: #d8f5ea; color: #0e6b52; }
.status-expire, .status-cancel { background: #fde0e0; color: #a13636; }

.admin-metric {
  border-radius: 18px;
  min-height: 128px;
  padding: 1.08rem 1.12rem;
  color: #fff;
  box-shadow: 0 24px 40px -32px rgba(8,60,102,.32);
}

.admin-metric h6 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
}

.admin-metric .value {
  font-size: 1.7rem;
  font-weight: 800;
}

.admin-metric-primary { background: linear-gradient(145deg, var(--brand), #0d3e66); }
.admin-metric-accent { background: linear-gradient(145deg, var(--accent), #db7412); }
.admin-metric-success { background: linear-gradient(145deg, #14906d, #0d7054); }
.admin-metric-dark { background: linear-gradient(145deg, #233e5f, #172d47); }

.admin-panel-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 34px -28px rgba(8, 60, 102, .24);
  overflow: hidden;
}

.admin-highlight-card {
  height: 100%;
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dce7f2;
  box-shadow: 0 18px 34px -28px rgba(8,60,102,.18);
}

.admin-highlight-label {
  display: inline-block;
  margin-bottom: .55rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--brand);
  opacity: .82;
}

.admin-highlight-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .3rem;
  color: var(--ink);
}

.admin-highlight-card small {
  color: #678098;
  line-height: 1.7;
}

.admin-low-stock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid #dde9f3;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 1rem 1.05rem;
}

.admin-low-stock-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dce8f3;
}

.admin-order-address {
  max-width: 280px;
  line-height: 1.65;
  color: var(--ink);
}

.admin-order-attachments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.admin-order-attachment-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 16px 32px -28px rgba(8,60,102,.18);
}

.admin-order-attachment-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  background: #eef5fb;
}

.admin-order-attachment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-order-attachment-body {
  padding: .9rem;
}

.admin-order-attachment-body strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.4;
}

.admin-order-attachment-body small {
  display: block;
  margin-top: .3rem;
  color: #678098;
}

@media (max-width: 768px) {
  .admin-order-attachment-card {
    grid-template-columns: 1fr;
  }
}

.admin-action-card {
  display: block;
  height: 100%;
  border-radius: 20px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1.1rem 1.15rem;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 34px -28px rgba(8,60,102,.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.admin-action-card:hover {
  transform: translateY(-2px);
  border-color: #c4d9ea;
  box-shadow: 0 20px 38px -26px rgba(8,60,102,.22);
}

.admin-action-card--muted {
  background: linear-gradient(180deg, #f9fbff 0%, #f4f8fd 100%);
}

.admin-action-card__label,
.admin-inline-note span {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-action-card strong,
.admin-inline-note strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: .3rem;
}

.admin-action-card small {
  color: #678098;
  line-height: 1.7;
}

.admin-inline-note {
  height: 100%;
  border-radius: 18px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 1rem 1.05rem;
}

.admin-note-card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1.1rem 1.15rem;
  box-shadow: 0 16px 32px -28px rgba(8,60,102,.18);
}

.admin-note-card__label {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-note-card strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: .3rem;
}

.admin-note-card small {
  display: block;
  color: #678098;
  line-height: 1.7;
}

.admin-quick-card {
  display: block;
  height: 100%;
  border-radius: 22px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 18px 34px -28px rgba(8,60,102,.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.admin-quick-card:hover {
  transform: translateY(-2px);
  border-color: #c4d9ea;
  box-shadow: 0 20px 38px -26px rgba(8,60,102,.22);
  color: var(--brand);
}

.admin-quick-card--muted {
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8fd 100%);
}

.admin-quick-card__label {
  display: inline-block;
  margin-bottom: .6rem;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-quick-card__title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.admin-quick-card__copy {
  color: #678098;
  line-height: 1.7;
}

.admin-promo-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dce7f2;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 18px 34px -28px rgba(8,60,102,.18);
}

.admin-promo-card__image {
  width: 100%;
  aspect-ratio: 40 / 13;
  object-fit: cover;
  background: #eef5fb;
}

.admin-promo-card__body {
  padding: 1rem;
}

.home-promo-slide {
  display: block;
  position: relative;
  aspect-ratio: 40 / 13;
  background: linear-gradient(180deg,#edf5fc 0%,#f8fbff 100%);
}

.home-promo-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .admin-topnav-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-topnav-active {
    width: 100%;
    justify-content: flex-start;
  }

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

  .admin-nav-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-nav-active-note {
    width: 100%;
    justify-content: flex-start;
  }
}

.admin-alert {
  border: 1px solid #f1b6b6;
  border-radius: 16px;
}

.admin-check {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .9rem 1rem .9rem 2.2rem;
  width: 100%;
}

.papan-promo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d5e4f1;
  background: linear-gradient(145deg, #edf6ff 0%, #e4f0fb 52%, #f7fbff 100%);
  padding: 2rem;
}

.papan-promo__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(10,79,132,.09), transparent 18%),
    linear-gradient(140deg, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(35deg, rgba(10,79,132,.05), transparent 35%);
}

.papan-promo__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: center;
}

.papan-promo__stack {
  position: relative;
  min-height: 360px;
}

.papan-sheet {
  position: absolute;
  left: 0;
  width: 74%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 34px -28px rgba(8, 60, 102, .5);
  transition: transform .3s ease;
}

.papan-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.papan-sheet--top {
  top: 0;
  transform: rotate(-10deg);
  height: 78px;
}

.papan-sheet--mid {
  top: 88px;
  left: 34px;
  transform: rotate(-11deg);
  height: 92px;
}

.papan-sheet--low {
  top: 194px;
  left: 62px;
  transform: rotate(-12deg);
  height: 100px;
}

.papan-sheet--base {
  top: 310px;
  left: 86px;
  transform: rotate(-13deg);
  height: 108px;
}

.papan-tone-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: .6rem;
}

.papan-tone-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  color: #5d6d80;
  font-weight: 700;
  font-size: 1rem;
}

.papan-tone-list i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(15, 39, 64, .12);
  flex: 0 0 auto;
}

.papan-thickness {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  padding: .75rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 22px 36px -30px rgba(8, 60, 102, .9);
}

.papan-thickness strong {
  font-size: 1.8rem;
  line-height: 1;
}

.papan-promo__copy {
  margin-top: 1rem;
}

.papan-promo__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}

.papan-promo__copy p {
  margin: 0;
  color: #4d6680;
  font-size: 1.06rem;
  line-height: 1.8;
}

.papan-section-card {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 1.25rem;
  align-items: center;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 1rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.papan-section-card:hover {
  transform: translateY(-3px);
  border-color: #b9d0e6;
  box-shadow: 0 24px 40px -32px rgba(8, 60, 102, .52);
}

.papan-section-card__media {
  border-radius: 22px;
  overflow: hidden;
  background: #edf5fc;
  min-height: 160px;
}

.papan-section-card__media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.papan-section-card__badge {
  display: inline-flex;
  margin-bottom: .7rem;
  border-radius: 999px;
  background: #edf5fc;
  color: var(--brand);
  padding: .4rem .8rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.papan-section-card__body h3 {
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
}

.papan-section-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.papan-section-card__meta {
  text-align: right;
  color: var(--brand);
}

.papan-section-card__meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.papan-section-card__meta small {
  color: var(--muted);
  font-size: .85rem;
}

.papan-hero-custom {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid #d7e6f3;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.85), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(246,138,31,.14), transparent 22%),
    linear-gradient(135deg, #eef6ff 0%, #e5f0fb 42%, #f9fbff 100%);
  padding: 2rem;
}

.papan-hero-custom__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .8;
}

.papan-hero-custom__glow--one {
  top: -10px;
  right: 110px;
  width: 220px;
  height: 220px;
  background: rgba(246, 138, 31, .15);
}

.papan-hero-custom__glow--two {
  left: -50px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  background: rgba(10, 79, 132, .08);
}

.papan-hero-custom__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 360px;
}

.papan-hero-custom__visual {
  position: relative;
  min-height: 340px;
}

.papan-hero-variants-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.papan-hero-variants-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  width: 100%;
}

.papan-hero-variant-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 64px;
  padding: .75rem .9rem;
  border-radius: 20px;
  border: 1px solid rgba(10,79,132,.14);
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 38px -30px rgba(8, 60, 102, .28);
  backdrop-filter: blur(10px);
}

.papan-hero-variant-card__dot {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.95);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 42%),
    linear-gradient(135deg, var(--variant-swatch) 0%, var(--variant-swatch-accent) 100%);
  box-shadow: 0 10px 18px -14px rgba(8, 60, 102, .45);
}

.papan-hero-variant-card__text {
  min-width: 0;
}

.papan-hero-variant-card__text strong {
  display: block;
  color: #12345a;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.papan-hero-variant-card__text span {
  display: block;
  margin-top: .2rem;
  color: #7a8ea4;
  font-size: .76rem;
  line-height: 1.2;
}

.papan-hero-custom__content {
  position: relative;
  z-index: 1;
}

.papan-hero-custom__logo {
  margin-bottom: 1rem;
}

.papan-hero-custom__kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--brand);
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.papan-hero-custom__title {
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--brand-dark);
}

.papan-hero-custom__text {
  margin: 0 0 1.2rem;
  color: #587088;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 520px;
}

.papan-hero-custom__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.25rem;
}

.papan-hero-custom__chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8e6f3;
  color: var(--brand);
  padding: .68rem 1rem;
  font-size: .84rem;
  font-weight: 800;
  box-shadow: 0 14px 28px -26px rgba(8, 60, 102, .3);
}

.papan-hero-custom__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.papan-hero-custom__stat {
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid #d9e7f4;
  padding: 1rem;
  box-shadow: 0 18px 34px -30px rgba(8, 60, 102, .26);
}

.papan-hero-custom__stat strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}

.papan-hero-custom__stat span {
  color: #617a93;
  font-size: .82rem;
  line-height: 1.5;
}

.catalog-section-block {
  padding: 4.25rem 0;
}

.catalog-section-head {
  margin-bottom: 2rem;
}

.catalog-section-kicker {
  margin: 0 0 .6rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
}

.catalog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-product-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 34px -26px rgba(8, 60, 102, .35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  border-color: #bfd4e8;
  box-shadow: 0 22px 42px -24px rgba(8, 60, 102, .34);
}

.catalog-product-card__media {
  position: relative;
  overflow: hidden;
  background: #eef5fb;
}

.catalog-product-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .3s ease;
}

.catalog-product-card:hover .catalog-product-card__media img {
  transform: scale(1.05);
}

.catalog-product-card__hover {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.catalog-product-card:hover .catalog-product-card__hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.catalog-product-card__cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 18px;
  background: rgba(10, 79, 132, .94);
  color: #fff;
  padding: .9rem 1rem;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 20px 34px -24px rgba(8, 60, 102, .92);
}

.catalog-product-card__body {
  padding: 1rem 1rem 1.1rem;
}

.catalog-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  margin-bottom: .8rem;
}

.catalog-product-card__tag,
.catalog-product-card__subtag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .34rem .72rem;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.catalog-product-card__tag {
  background: #e8f2fb;
  color: var(--brand);
}

.catalog-product-card__subtag {
  background: #f3f7fb;
  color: #546b83;
}

.catalog-product-card__name {
  display: block;
  min-height: 54px;
  margin: 0 0 .9rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -.02em;
}

.catalog-product-card__price-wrap {
  margin-bottom: 1rem;
}

.catalog-product-card__price-label {
  display: block;
  margin-bottom: .28rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.catalog-product-card__price {
  display: block;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.catalog-product-card__actions {
  display: flex;
  gap: .65rem;
}

.catalog-product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: .8rem 1rem;
  font-size: .88rem;
  font-weight: 800;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.catalog-product-card__btn:hover {
  transform: translateY(-1px);
}

.catalog-product-card__btn--ghost {
  flex: 1;
  border: 1px solid #c7d9ea;
  background: #fff;
  color: var(--brand);
}

.catalog-product-card__btn--ghost:hover {
  background: #eef6fd;
}

.catalog-product-card__btn--primary {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

.catalog-product-card__btn--primary:hover {
  background: var(--brand-dark);
}

.upload-box {
  border: 1px dashed #b7cfe6;
  border-radius: 14px;
  background: #f7fbff;
}

@media (max-width: 992px) {
  .home-top-stage__bg {
    min-height: 180px;
    padding-bottom: 5rem;
  }

  .home-banner-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem;
  }

  .home-banner-card__visual {
    min-height: 220px;
  }

  .home-banner-product--main {
    inset: 16px 20px 8px 10%;
  }

  .home-banner-stack__card {
    width: 70%;
    right: 12%;
  }

  .home-furniture-orbit__item {
    width: 190px;
  }

  .home-hero-panel {
    min-height: auto;
    padding: 1.5rem;
  }

  .home-hero-panel__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero-showcase,
  .home-orbit-wrap {
    min-height: 320px;
  }

  .home-hero-showcase__card--main {
    inset: 0 40px 36px 0;
  }

  .home-hero-showcase__card--float {
    width: 200px;
  }

  .home-hero-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-stats {
    grid-template-columns: 1fr;
  }

  .papan-hero-custom__layout {
    grid-template-columns: 1fr;
  }

  .papan-hero-custom__visual {
    min-height: 420px;
  }

  .papan-promo__content,
  .papan-section-card {
    grid-template-columns: 1fr;
  }

  .papan-section-card__meta {
    text-align: left;
  }

  .papan-promo__stack {
    min-height: 440px;
  }

  .product-card img {
    height: 170px;
  }

  .product-card-premium img {
    height: 200px;
  }

  .detail-hero-image {
    min-height: 260px;
  }

  .product-title {
    font-size: 2rem;
  }

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

@media (max-width: 768px) {
  .home-top-stage__content h1 {
    font-size: 2.3rem;
  }

  .home-banner-card__copy h2 {
    font-size: 2.2rem;
  }

  .home-banner-control {
    display: none;
  }

  .home-hero-panel__copy h1,
  .home-hero-panel__copy h2 {
    font-size: 2.4rem;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-mini-banner {
    flex-direction: column;
    text-align: center;
  }

  .home-hero-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-card,
  .product-info-card {
    border-radius: 24px;
  }

  .product-thumb {
    width: 74px;
    height: 74px;
  }

  .detail-meta-list {
    gap: .7rem;
  }

  .detail-meta-item {
    flex: 1 1 calc(50% - .7rem);
  }

  .detail-highlight-grid {
    grid-template-columns: 1fr;
  }

  .variant-chip--papan {
    min-width: 0;
  }

  .catalog-section-block {
    padding: 3rem 0;
  }

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

@media (max-width: 576px) {
  .home-top-stage__bg {
    border-radius: 0 0 26px 26px;
    padding: 1.4rem 1rem 4.7rem;
  }

  .home-banner-slider-wrap {
    margin-top: -3.4rem;
    padding: 0 .6rem;
  }

  .home-banner-card {
    border-radius: 22px;
    padding: 1.1rem;
  }

  .home-banner-card__copy h2 {
    font-size: 1.8rem;
  }

  .home-banner-card__promo {
    font-size: 1rem;
  }

  .home-banner-card__visual {
    min-height: 170px;
  }

  .home-banner-product--main {
    inset: 8px 12px 18px 8%;
  }

  .home-banner-product--mini {
    width: 112px;
    height: 80px;
    bottom: 8px;
  }

  .home-banner-stack {
    min-height: 200px;
  }

  .home-banner-stack__card img,
  .home-furniture-orbit__item img {
    height: 120px;
  }

  .home-furniture-orbit__item {
    width: 140px;
  }

  .home-hero-panel {
    border-radius: 24px;
    padding: 1.1rem;
  }

  .home-hero-control {
    display: none;
  }

  .home-hero-showcase,
  .home-orbit-wrap {
    min-height: 250px;
  }

  .home-hero-showcase__card--main {
    inset: 0 14px 28px 0;
  }

  .home-hero-showcase__card--main img,
  .home-orbit-card img {
    height: 140px;
  }

  .home-hero-showcase__card--float,
  .home-orbit-card {
    width: 160px;
  }

  .home-orbit-card--one {
    left: 0;
  }

  .home-orbit-card--two {
    right: 0;
  }

  .papan-hero-custom {
    padding: 1.25rem;
  }

  .papan-hero-custom__visual {
    min-height: 310px;
  }

  .papan-hero-variants-grid {
    grid-template-columns: 1fr;
  }

  .papan-hero-custom__stats {
    grid-template-columns: 1fr;
  }

  .papan-promo {
    padding: 1.25rem;
  }

  .papan-promo__stack {
    min-height: 320px;
  }

  .papan-sheet {
    width: 88%;
  }

  .papan-sheet--top {
    height: 56px;
  }

  .papan-sheet--mid {
    top: 70px;
    left: 16px;
    height: 68px;
  }

  .papan-sheet--low {
    top: 150px;
    left: 28px;
    height: 76px;
  }

  .papan-sheet--base {
    top: 240px;
    left: 40px;
    height: 84px;
  }

  .product-price {
    font-size: 2.15rem;
  }

  .detail-meta-item {
    flex: 1 1 100%;
  }

  .catalog-grid {
    gap: .95rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-product-card__actions {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .catalog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.home-lux-carousel .carousel-item {
  transition: opacity .95s ease, transform .95s ease;
}

.home-lux-carousel .carousel-item-next:not(.carousel-item-start),
.home-lux-carousel .active.carousel-item-end {
  transform: translateX(3%) scale(.985);
}

.home-lux-carousel .carousel-item-prev:not(.carousel-item-end),
.home-lux-carousel .active.carousel-item-start {
  transform: translateX(-3%) scale(.985);
}

.home-slide-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.home-slide-anim--1 { transition-delay: .08s; }
.home-slide-anim--2 { transition-delay: .18s; }
.home-slide-anim--3 { transition-delay: .3s; }
.home-slide-anim--4 { transition-delay: .42s; }
.home-slide-anim--5 { transition-delay: .54s; }

.home-slide-visual {
  opacity: 0;
  transform: translateY(18px) scale(.965);
  transition: opacity .9s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
  transition-delay: .24s;
}

.home-slide-frame {
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease;
}

.home-slide-float {
  opacity: 0;
  transform: translateY(20px) scale(.94);
  transition: opacity .75s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
  transition-delay: .5s;
}

.home-slide-float--delay {
  transition-delay: .66s;
}

.carousel-item.active .home-slide-anim,
.carousel-item.carousel-item-start .home-slide-anim,
.carousel-item.carousel-item-end .home-slide-anim {
  opacity: 1;
  transform: translateY(0);
}

.carousel-item.active .home-slide-visual,
.carousel-item.carousel-item-start .home-slide-visual,
.carousel-item.carousel-item-end .home-slide-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.carousel-item.active .home-slide-float,
.carousel-item.carousel-item-start .home-slide-float,
.carousel-item.carousel-item-end .home-slide-float {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.carousel-item.active .home-slide-frame {
  animation: homeHeroPulse 5s ease-in-out infinite;
}

.carousel-item.active .home-slide-float {
  animation: homeFloatSoft 5.8s ease-in-out infinite;
}

.carousel-item.active .home-slide-float--delay {
  animation-duration: 6.6s;
}

.home-lux-carousel .carousel-indicators [data-bs-target] {
  transition: all .35s ease;
}

.home-lux-carousel .carousel-indicators .active {
  width: 42px !important;
  background: var(--brand) !important;
  box-shadow: 0 8px 18px -10px rgba(10, 79, 132, .7);
}

.home-lux-carousel .carousel-control-prev,
.home-lux-carousel .carousel-control-next {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.home-lux-carousel .carousel-control-prev:hover,
.home-lux-carousel .carousel-control-next:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 36px -20px rgba(10, 79, 132, .45);
  background: rgba(255,255,255,.98) !important;
}

@keyframes homeHeroPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.012);
  }
}

@keyframes homeFloatSoft {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-lux-carousel .carousel-item,
  .home-slide-anim,
  .home-slide-visual,
  .home-slide-float,
  .home-slide-frame {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.home-service-card,
.home-promo-tile,
.home-signal-card,
.home-mini-glow,
.home-buyer-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.home-service-card::after,
.home-promo-tile::after,
.home-signal-card::after,
.home-mini-glow::after,
.home-buyer-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(10,79,132,.12), transparent 68%);
  pointer-events: none;
}

.home-service-card:hover,
.home-signal-card:hover,
.home-buyer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px -34px rgba(10, 79, 132, .34);
  border-color: rgba(10,79,132,.18);
}

.home-service-card--sun {
  background:
    radial-gradient(circle at top right, rgba(246,138,31,.16), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff8ec 100%);
}

.home-service-card--sea {
  background:
    radial-gradient(circle at top right, rgba(10,79,132,.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f2f8ff 100%);
}

.home-service-card--leaf {
  background:
    radial-gradient(circle at top right, rgba(37,211,102,.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f2fff6 100%);
}

.home-service-card--night {
  background:
    radial-gradient(circle at top right, rgba(15,23,42,.10), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.home-energy-panel {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,138,31,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.95));
}

.home-energy-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(10,79,132,.08), transparent 70%);
  pointer-events: none;
}

.home-promo-tile {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 26px;
  padding: 1.25rem;
  box-shadow: 0 22px 48px -34px rgba(10, 79, 132, .28);
}

.home-promo-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 58px -32px rgba(10, 79, 132, .34);
}

.home-promo-tile--warm {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(145deg, #fff4d0 0%, #ffe1a2 100%);
}

.home-promo-tile--cool {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.6), transparent 28%),
    linear-gradient(145deg, #e3f5ff 0%, #cde9ff 100%);
}

.home-promo-tile--deep {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, #0a4f84 0%, #0d6aa3 100%);
}

.home-signal-card {
  background:
    radial-gradient(circle at top right, rgba(10,79,132,.08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.home-buyer-card {
  background:
    radial-gradient(circle at top right, rgba(246,138,31,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.home-signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  padding: .95rem 1rem;
  color: var(--muted);
}

.home-signal-row strong {
  color: var(--brand);
  font-weight: 800;
}

.home-mini-glow {
  background-size: 120% 120%;
  animation: homeGlowDrift 8s ease-in-out infinite;
}

.home-metric-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.home-metric-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -54px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  filter: blur(18px);
}

.home-metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 56px -34px rgba(10,79,132,.34);
}

.home-metric-card--ice {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.home-metric-card--sun {
  background: linear-gradient(180deg, #fff8ee 0%, #ffe8bc 100%);
}

.home-metric-card--sky {
  background: linear-gradient(180deg, #edf8ff 0%, #d7efff 100%);
}

.home-metric-card--deep {
  background: linear-gradient(180deg, #eaf1ff 0%, #d6e2fb 100%);
}

@keyframes homeGlowDrift {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1055;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.whatsapp-float__badge {
  border-radius: 999px;
  background: rgba(15, 23, 42, .88);
  color: #fff;
  padding: .8rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, .65);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, opacity .3s ease;
}

.whatsapp-float__button {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25d366 0%, #16b956 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 22px 44px -22px rgba(37, 211, 102, .78);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-float:hover .whatsapp-float__button {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 28px 54px -24px rgba(37, 211, 102, .72);
  filter: saturate(1.08);
}

.whatsapp-float:hover .whatsapp-float__badge {
  transform: translateY(-2px);
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 22px 44px -22px rgba(37, 211, 102, .78);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 28px 56px -22px rgba(37, 211, 102, .62);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float__badge {
    display: none;
  }

  .whatsapp-float__button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
  }
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer-wa-link:hover {
  color: #9ef0bd;
  transform: translateX(2px);
}

.footer-wa-link__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25d366 0%, #16b956 100%);
  color: #fff;
  box-shadow: 0 14px 28px -16px rgba(37, 211, 102, .7);
}

.footer-wa-link__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.account-trigger {
  min-width: 44px;
  box-shadow: 0 14px 34px -24px rgba(8, 60, 102, .28);
}

.account-trigger:hover [data-lucide="chevron-down"] {
  transform: translateY(1px);
}

.account-dropdown-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-radius: 16px;
  color: #334b63;
  padding: .85rem .95rem;
  font-size: .92rem;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.account-dropdown-link:hover {
  background: #f4f9ff;
  color: var(--brand);
  transform: translateX(2px);
}

.order-stage-tabs {
  gap: .75rem;
  padding: .25rem;
  scrollbar-width: thin;
}

.order-stage-tab {
  position: relative;
  gap: .7rem;
  min-height: 72px;
  min-width: 150px;
  border-radius: 20px;
  border: 1px solid #d9e6f2;
  background: #f8fbff;
  color: #48627e;
  padding: .95rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.order-stage-tab__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf4fc;
  color: var(--brand);
}

.order-stage-tab__text {
  flex: 1 1 auto;
  line-height: 1.35;
}

.order-stage-tab strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f04452;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
}

.order-stage-tab:hover {
  transform: translateY(-2px);
  color: var(--brand);
  box-shadow: 0 20px 38px -28px rgba(8, 60, 102, .35);
}

.order-stage-tab.is-active {
  background: linear-gradient(145deg, #f04452 0%, #ef3947 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 24px 42px -28px rgba(240, 68, 82, .5);
}

.order-stage-tab.is-active .order-stage-tab__icon {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.order-stage-tab.is-active strong {
  background: rgba(255,255,255,.2);
}

.order-number-heading {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.order-stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-size: .86rem;
  font-weight: 800;
}

.order-stage-badge--waiting-payment,
.order-stage-badge--waiting-verification {
  background: #fff2d8;
  color: #9a6208;
}

.order-stage-badge--processing,
.order-stage-badge--shipping {
  background: #e7f2ff;
  color: var(--brand);
}

.order-stage-badge--completed {
  background: #e8fbf2;
  color: #107552;
}

.order-stage-badge--history {
  background: #f3f5f8;
  color: #607489;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .8rem;
}

.order-progress__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  color: #7a8fa5;
}

.order-progress__item::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: #dbe7f1;
}

.order-progress__item:last-child::after {
  display: none;
}

.order-progress__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf4fc;
  border: 1px solid #d9e6f2;
}

.order-progress__item.is-current .order-progress__icon {
  background: linear-gradient(145deg, var(--brand) 0%, #0d6aa3 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 34px -24px rgba(10, 79, 132, .5);
}

.order-progress__item.is-current .order-progress__label {
  color: var(--brand);
  font-weight: 800;
}

.order-progress__label {
  font-size: .82rem;
  line-height: 1.45;
}

.order-item-card,
.order-info-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 20px;
  border: 1px solid #dbe7f1;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  padding: 1rem 1.1rem;
}

.order-info-box {
  flex-direction: column;
  gap: .45rem;
}

.order-info-box span {
  color: #70869d;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.order-info-box strong {
  color: var(--ink);
  font-size: 1rem;
}

.variant-picker {
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(10,79,132,.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1.1rem 1.15rem;
}

.variant-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  cursor: pointer;
  border: 1px solid #d4e3f0;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  padding: .82rem .95rem;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.variant-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(10,79,132,.28);
  box-shadow: 0 16px 28px -22px rgba(10,79,132,.35);
}

.variant-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.variant-chip__dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.92);
  background:
    linear-gradient(135deg, var(--variant-swatch, #ffffff) 0%, var(--variant-swatch, #ffffff) 56%, var(--variant-swatch-accent, #edf5fc) 56%, var(--variant-swatch-accent, #edf5fc) 100%);
  box-shadow:
    0 0 0 1px rgba(10,79,132,.18),
    inset 0 0 0 2px rgba(255,255,255,.55);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  flex: 0 0 auto;
}

.variant-chip:has(input:checked),
.variant-chip.is-selected {
  border-color: rgba(10,79,132,.42);
  background: linear-gradient(180deg, #f8fbff 0%, #e8f2fb 100%);
  box-shadow: 0 18px 34px -24px rgba(10,79,132,.35);
  color: var(--brand);
}

.variant-chip:has(input:checked) .variant-chip__dot,
.variant-chip.is-selected .variant-chip__dot {
  transform: scale(1.04);
  box-shadow:
    0 0 0 2px rgba(10,79,132,.2),
    inset 0 0 0 2px rgba(255,255,255,.55);
}

.variant-chip__text {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}

.variant-chip__text strong {
  font-size: .92rem;
  line-height: 1.15;
}

.variant-chip__text small {
  color: #6e859b;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
}

.variant-chip:has(input:checked) .variant-chip__text small,
.variant-chip.is-selected .variant-chip__text small {
  color: #446b92;
}

.variant-chip--papan {
  min-width: 292px;
}

.variant-chip__dot--bar {
  width: 22px;
  height: 54px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, var(--variant-swatch, #ffffff) 0%, var(--variant-swatch-accent, #edf5fc) 100%);
  box-shadow:
    0 0 0 1px rgba(10,79,132,.18),
    inset 0 0 0 2px rgba(255,255,255,.55);
}

.variant-chip:has(input:checked) .variant-chip__dot--bar,
.variant-chip.is-selected .variant-chip__dot--bar {
  transform: scaleY(1.04);
}

.variant-picker__error {
  margin-top: .9rem;
  border-radius: 16px;
  background: #fff3f3;
  color: #b23b3b;
  padding: .75rem .9rem;
  font-size: .88rem;
  font-weight: 600;
}

.quantity-picker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid #d7e4ef;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: .45rem;
  box-shadow: 0 18px 32px -28px rgba(10,79,132,.16);
}

.quantity-picker__btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #eef5fc;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.quantity-picker__btn:hover {
  background: #dfeefb;
  transform: translateY(-1px);
}

.quantity-picker__input {
  width: 90px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  outline: none;
}

.quantity-picker__input::-webkit-outer-spin-button,
.quantity-picker__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 2rem;
}

.catalog-hero--plafon {
  background:
    radial-gradient(circle at top right, rgba(246,138,31,.14), transparent 24%),
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(135deg, #edf5ff 0%, #d9ebff 58%, #fdf1dc 100%);
}

.catalog-hero--furniture {
  background:
    radial-gradient(circle at top right, rgba(246,138,31,.15), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(10,79,132,.14), transparent 28%),
    linear-gradient(135deg, #eff5ff 0%, #dce9fb 52%, #eef5ff 100%);
}

.catalog-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: .7;
  pointer-events: none;
}

.catalog-hero__glow--one {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -40px;
  background: rgba(255,255,255,.55);
}

.catalog-hero__glow--two {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -40px;
  background: rgba(10,79,132,.12);
}

.catalog-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.catalog-hero__visual {
  position: relative;
  min-height: 360px;
}

.catalog-hero__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.catalog-hero__kicker {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.catalog-hero__title {
  margin: 1rem 0 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
  color: #12345a;
}

.catalog-hero__text {
  max-width: 650px;
  margin: 1rem 0 0;
  color: #50657e;
  line-height: 1.85;
}

.catalog-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.4rem;
}

.catalog-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10,79,132,.12);
  background: rgba(255,255,255,.78);
  color: var(--brand);
  font-size: .92rem;
  font-weight: 700;
}

.catalog-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.catalog-hero__stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(10,79,132,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px -34px rgba(10,79,132,.28);
}

.catalog-hero__stat strong {
  display: block;
  color: #12345a;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.catalog-hero__stat span {
  display: block;
  margin-top: .35rem;
  color: #5e728a;
  font-size: .92rem;
}

.catalog-plafon-hero-rail-wrap {
  position: absolute;
  inset: 1rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.18));
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}

.catalog-plafon-hero-label {
  display: inline-flex;
  align-self: flex-start;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--brand);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.catalog-plafon-hero-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: .25rem .2rem .5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 79, 132, .28) transparent;
}

.catalog-plafon-hero-rail::-webkit-scrollbar {
  height: 8px;
}

.catalog-plafon-hero-rail::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-plafon-hero-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(10, 79, 132, .24);
}

.catalog-plafon-hero-card {
  flex: 0 0 170px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.84);
  box-shadow: 0 20px 45px -34px rgba(10,79,132,.34);
}

.catalog-plafon-hero-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}

.catalog-plafon-hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-plafon-hero-card__body {
  padding: .85rem .95rem 1rem;
}

.catalog-plafon-hero-card__series {
  color: #6b7f94;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-plafon-hero-card__code {
  margin-top: .35rem;
  color: #12345a;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.catalog-plafon-orb {
  position: absolute;
  right: 5%;
  top: 18px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246,138,31,.22), transparent 68%);
}

.catalog-furniture-slider {
  position: absolute;
  inset: 8px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: .95rem;
  padding: 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.62);
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.28));
  box-shadow: 0 30px 56px -36px rgba(10,79,132,.42);
  backdrop-filter: blur(12px);
}

.catalog-furniture-slider__screen {
  position: relative;
  flex: 0 0 auto;
  min-height: 250px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #f5f9ff 0%, #e8f1fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.catalog-furniture-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity .45s ease, transform .55s ease;
}

.catalog-furniture-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.catalog-furniture-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-furniture-slider__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10,79,132,.08), rgba(255,255,255,.92));
  border: 1px solid rgba(208,225,239,.92);
  box-shadow: 0 18px 36px -30px rgba(10,79,132,.18);
}

.catalog-furniture-slider__badge {
  display: flex;
  align-self: flex-start;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(10,79,132,.08);
  color: var(--brand);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-furniture-slider__info strong {
  display: block;
  margin-top: .55rem;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

.catalog-furniture-slider__info p {
  margin: .45rem 0 0;
  max-width: 560px;
  color: #55718d;
  font-size: .88rem;
  line-height: 1.6;
}

.catalog-furniture-slider__info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 126px;
  padding: .65rem .9rem;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px -26px rgba(10,79,132,.34);
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.catalog-furniture-slider__info a:hover {
  transform: translateY(-1px);
  background: #0d5f94;
  box-shadow: 0 22px 40px -24px rgba(10,79,132,.42);
}

.catalog-furniture-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px -26px rgba(10,79,132,.34);
  transform: translateY(-50%);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.catalog-furniture-slider__nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: #fff;
  box-shadow: 0 22px 40px -24px rgba(10,79,132,.42);
}

.catalog-furniture-slider__nav--prev {
  left: .9rem;
}

.catalog-furniture-slider__nav--next {
  right: .9rem;
}

.catalog-furniture-slider__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.catalog-furniture-slider__thumb {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 36px -28px rgba(10,79,132,.26);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.catalog-furniture-slider__thumb:hover {
  transform: translateY(-1px);
}

.catalog-furniture-slider__thumb.is-active {
  border-color: rgba(10,79,132,.34);
  box-shadow: 0 22px 42px -28px rgba(10,79,132,.38);
}

.catalog-furniture-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plafon-reference-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 79, 132, .28) transparent;
}

.plafon-reference-rail::-webkit-scrollbar {
  height: 8px;
}

.plafon-reference-rail::-webkit-scrollbar-track {
  background: transparent;
}

.plafon-reference-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(10, 79, 132, .24);
}

.plafon-reference-card {
  flex: 0 0 200px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #f8fafc;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
  scroll-snap-align: start;
}

.plafon-reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 79, 132, .25);
  background: #fff;
  box-shadow: 0 20px 45px -32px rgba(10, 79, 132, .35);
}

.plafon-reference-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
}

.plafon-reference-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(10, 79, 132, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 12px 25px -18px rgba(10, 79, 132, .35);
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.plafon-reference-nav:hover {
  transform: translateY(-1px);
  background: var(--brand-soft);
  border-color: rgba(10, 79, 132, .22);
  box-shadow: 0 18px 32px -22px rgba(10, 79, 132, .42);
}

.catalog-plafon-popup-launcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 24px;
  background: rgba(255, 255, 255, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.catalog-plafon-popup-launcher__eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-plafon-popup-launcher__text {
  margin-top: .3rem;
  font-size: .92rem;
  line-height: 1.65;
  color: #475569;
}

.catalog-plafon-popup-launcher__button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  padding: .88rem 1.1rem;
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 20px 40px -28px rgba(10, 79, 132, .45);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.catalog-plafon-popup-launcher__button:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
  box-shadow: 0 22px 44px -26px rgba(10, 79, 132, .48);
}

.catalog-plafon-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.catalog-plafon-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(8px);
}

.catalog-plafon-popup__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(88vh, 920px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, .95);
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, .38), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .98));
  box-shadow: 0 40px 100px -44px rgba(15, 23, 42, .55);
}

.catalog-plafon-popup__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, .88);
}

.catalog-plafon-popup__eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-plafon-popup__title {
  margin-top: .35rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #0f172a;
}

.catalog-plafon-popup__text {
  margin-top: .45rem;
  max-width: 40rem;
  font-size: .95rem;
  line-height: 1.7;
  color: #64748b;
}

.catalog-plafon-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #0f172a;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.catalog-plafon-popup__close:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(10, 79, 132, .24);
}

.catalog-plafon-popup__body {
  max-height: calc(88vh - 112px);
  overflow-y: auto;
  padding: 1rem 1.4rem 1.4rem;
}

.catalog-plafon-popup__group + .catalog-plafon-popup__group {
  margin-top: 1.15rem;
}

.catalog-plafon-popup__group {
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 26px;
  background: rgba(255, 255, 255, .84);
  padding: 1rem;
}

.catalog-plafon-popup__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .9rem;
}

.catalog-plafon-popup__group-series {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0f4f84;
}

.catalog-plafon-popup__group-title {
  margin-top: .2rem;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #0f172a;
}

.catalog-plafon-popup__group-count {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(10, 79, 132, .08);
  color: var(--brand);
  padding: .55rem .85rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-plafon-popup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: .9rem;
}

.catalog-plafon-popup__card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .96);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px -34px rgba(15, 23, 42, .26);
}

.catalog-plafon-popup__card-media {
  aspect-ratio: 4 / 5;
  background: #f8fafc;
}

.catalog-plafon-popup__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-plafon-popup__card-body {
  padding: .72rem .8rem .86rem;
}

.catalog-plafon-popup__card-series {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.catalog-plafon-popup__card-code {
  margin-top: .28rem;
  font-size: .88rem;
  font-weight: 900;
  color: #0f172a;
}

@media (max-width: 992px) {
  .catalog-hero__layout {
    grid-template-columns: 1fr;
  }

  .catalog-hero__visual {
    min-height: 300px;
  }

  .catalog-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .catalog-hero {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .catalog-hero__title {
    font-size: 2.2rem;
  }

  .catalog-hero__visual {
    min-height: 260px;
  }

  .catalog-plafon-hero-rail-wrap {
    position: relative;
    inset: auto;
    padding: .9rem;
    border-radius: 24px;
  }

  .catalog-plafon-hero-card {
    flex-basis: 150px;
  }

  .catalog-furniture-slider {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .catalog-furniture-slider__screen {
    min-height: 240px;
  }

  .catalog-furniture-slider__info {
    flex-direction: column;
  }

  .catalog-furniture-slider__info a {
    width: 100%;
  }

  .catalog-furniture-slider__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plafon-reference-card {
    flex-basis: 176px;
  }

  .order-stage-tabs {
    gap: .65rem;
  }

  .order-stage-tab {
    min-width: 210px;
  }

  .order-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plafon-reference-nav {
    width: 2.2rem;
    height: 2.2rem;
  }

  .catalog-plafon-popup {
    padding: .8rem;
  }

  .catalog-plafon-popup-launcher {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-plafon-popup-launcher__button {
    justify-content: center;
  }

  .catalog-plafon-popup__header {
    padding: 1.1rem 1.1rem .9rem;
  }

  .catalog-plafon-popup__body {
    padding: .9rem 1.1rem 1.1rem;
  }

  .catalog-plafon-popup__group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-plafon-popup__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.landing-home {
  position: relative;
  color: #0f172a;
}

.landing-banner {
  position: relative;
  padding-top: .4rem;
}

.motion-reveal {
  --motion-delay: 0ms;
}

.motion-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(.985);
  transition:
    opacity .7s ease,
    transform .9s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--motion-delay);
  will-change: opacity, transform;
}

.motion-reveal.is-visible .motion-item,
.motion-reveal.is-visible.motion-item,
.motion-reveal--hero .motion-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-sequence .motion-item:nth-child(1) { --motion-delay: 40ms; }
.motion-sequence .motion-item:nth-child(2) { --motion-delay: 130ms; }
.motion-sequence .motion-item:nth-child(3) { --motion-delay: 220ms; }
.motion-sequence .motion-item:nth-child(4) { --motion-delay: 310ms; }
.motion-sequence .motion-item:nth-child(5) { --motion-delay: 400ms; }

.motion-float-soft {
  animation: landingFloatSoft 7.2s ease-in-out infinite;
}

.motion-float-soft--delay {
  animation-delay: 1.1s;
}

@keyframes landingFloatSoft {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.landing-shell {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.landing-banner__wrap {
  position: relative;
}

.landing-banner__brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: .7rem;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  border: 1px solid rgba(212, 182, 154, .38);
  background: rgba(255, 250, 245, .92);
  box-shadow: 0 20px 34px -30px rgba(120, 88, 61, .24);
}

.landing-banner__brands span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: .9rem .8rem;
  border-right: 1px solid rgba(212, 182, 154, .26);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8d6a4b;
}

.landing-banner__brands span:last-child {
  border-right: 0;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .58rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 18px 35px -28px rgba(8, 60, 102, .35);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  backdrop-filter: blur(14px);
}

.landing-badge--dark {
  background: rgba(15, 23, 42, .9);
  border-color: rgba(255, 255, 255, .08);
  color: #fff;
}

.landing-badge--warm {
  background: rgba(255, 243, 224, .92);
  border-color: rgba(246, 138, 31, .18);
  color: #b45309;
}

.landing-section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.landing-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 2rem;
  align-items: end;
}

.landing-section-head h2,
.landing-proof__header h2,
.landing-cta__copy h2 {
  margin: .9rem 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 900;
  color: #0f172a;
}

.landing-section-head p,
.landing-proof__header p,
.landing-cta__copy p {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
}

.landing-hero {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding: 1rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(246, 138, 31, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, .18), transparent 24%),
    linear-gradient(160deg, #f9fdff 0%, #edf5ff 33%, #fff4e6 100%);
}

.landing-hero__backdrop::before,
.landing-hero__backdrop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .9;
  animation: landingGlowDrift 12s ease-in-out infinite;
}

.landing-hero__backdrop::before {
  width: 340px;
  height: 340px;
  top: 56px;
  left: -110px;
  background: radial-gradient(circle, rgba(13, 110, 180, .16), transparent 68%);
}

.landing-hero__backdrop::after {
  width: 300px;
  height: 300px;
  right: -70px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(246, 138, 31, .2), transparent 68%);
  animation-delay: 1.8s;
}

@keyframes landingGlowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
}

.landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 1.5rem;
  align-items: start;
}

.landing-hero__copy {
  max-width: 860px;
  padding: .85rem 0 0;
}

.landing-editorial {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.landing-editorial__stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-editorial__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 24px 52px -34px rgba(15, 23, 42, .16);
  backdrop-filter: blur(16px);
}

.landing-editorial__card--note {
  min-height: 220px;
  padding: 1.4rem;
  border-radius: 30px 30px 24px 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 138, 31, .12), transparent 24%),
    rgba(255,255,255,.74);
}

.landing-editorial__card--mini {
  min-height: 150px;
  padding: 1.1rem;
  border-radius: 22px 28px 24px 20px;
  background: rgba(255,255,255,.72);
}

.landing-editorial__eyebrow,
.landing-editorial__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(10,79,132,.08);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0a4f84;
}

.landing-editorial__card h3 {
  margin: .95rem 0 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 900;
  color: #0f172a;
}

.landing-editorial__card p {
  margin: .85rem 0 0;
  line-height: 1.8;
  color: #475569;
}

.landing-lookbook {
  position: relative;
  padding: 1.2rem 0 0;
}

.landing-lookbook__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 1rem;
}

.landing-lookbook__card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 260px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 28px 54px -36px rgba(15, 23, 42, .2);
}

.landing-lookbook__card:nth-child(1) {
  grid-row: span 2;
  min-height: 540px;
}

.landing-lookbook__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.landing-lookbook__card:hover img {
  transform: scale(1.05);
}

.landing-lookbook__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, .78) 100%);
}

.landing-lookbook__overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.landing-lookbook__overlay strong {
  display: block;
  margin-top: .7rem;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.landing-hero__eyebrow {
  margin: 1rem 0 0;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #0f5b92;
}

.landing-hero__title {
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 900;
  color: #0f172a;
}

.landing-hero__text {
  max-width: 760px;
  margin: 1.1rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #334155;
}

.landing-hero__actions,
.landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.7rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: .95rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, color .28s ease, border-color .28s ease;
}

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

.landing-btn--primary {
  background: linear-gradient(135deg, #0a4f84 0%, #0d6fb4 100%);
  color: #fff;
  box-shadow: 0 24px 38px -24px rgba(10, 79, 132, .5);
}

.landing-btn--primary:hover {
  color: #fff;
  box-shadow: 0 28px 46px -22px rgba(10, 79, 132, .58);
}

.landing-btn--ghost {
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #0f172a;
  backdrop-filter: blur(12px);
}

.landing-btn--ghost:hover,
.landing-btn--light:hover {
  color: #0f172a;
  border-color: rgba(10, 79, 132, .16);
  box-shadow: 0 20px 34px -24px rgba(15, 23, 42, .22);
}

.landing-btn--dark {
  background: #0f172a;
  color: #fff;
}

.landing-btn--dark:hover {
  color: #fff;
  background: #111f37;
}

.landing-btn--light {
  background: rgba(255, 255, 255, .74);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(12px);
}

.landing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.35rem;
}

.landing-trust-chip,
.landing-trust-rating {
  min-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: 0 18px 38px -26px rgba(15, 23, 42, .22);
  backdrop-filter: blur(16px);
}

.landing-trust-chip strong,
.landing-trust-rating strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.landing-trust-chip span,
.landing-trust-rating span {
  display: block;
  margin-top: .28rem;
  font-size: .88rem;
  line-height: 1.7;
  color: #475569;
}

.landing-hero__visual {
  position: relative;
  min-height: 0;
  padding: .15rem 0 0;
}

.landing-hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 60px -38px rgba(15, 23, 42, .22);
  border: 1px solid rgba(255,255,255,.42);
  background: #ffffff;
}

.landing-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .02) 0%, rgba(15, 23, 42, .04) 100%);
  pointer-events: none;
}

.landing-hero__frame--main {
  width: 100%;
  margin-left: 0;
  transform: none;
}

.landing-hero-carousel {
  position: relative;
}

.landing-hero-slide-link {
  display: block;
}

.landing-hero__frame--main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 4.8;
  object-fit: cover;
  transition: transform .7s ease;
}

.landing-banner__overlay,
.landing-banner__eyebrow,
.landing-banner__signal,
.landing-banner__overlay h2,
.landing-banner__overlay p,
.landing-banner__cta {
  display: none;
}

.landing-hero__frame--main:hover img {
  transform: scale(1.04);
}

.landing-floating-card {
  position: absolute;
  max-width: 240px;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .56);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px -30px rgba(15, 23, 42, .35);
  z-index: 2;
}

.landing-floating-card--top {
  left: -28px;
  bottom: 28px;
}

.landing-floating-card--bottom {
  right: -26px;
  top: 34px;
  max-width: 250px;
}

.landing-floating-card span {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0f5b92;
}

.landing-floating-card strong {
  display: block;
  margin-top: .42rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 900;
  color: #0f172a;
}

.landing-floating-card small {
  display: block;
  margin-top: .3rem;
  color: #475569;
  line-height: 1.6;
}

.landing-floating-card p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.landing-floating-card a {
  display: inline-flex;
  align-items: center;
  margin-top: .7rem;
  font-weight: 800;
  color: #0a4f84;
  text-decoration: none;
}

.landing-hero-carousel__control {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: 16px;
  transform: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.66);
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 30px -22px rgba(15, 23, 42, .34);
  opacity: 1;
}

.landing-hero-carousel__control:hover {
  background: rgba(255,255,255,.96);
}

.landing-hero-carousel .carousel-control-prev-icon,
.landing-hero-carousel .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
  filter: invert(19%) sepia(36%) saturate(2014%) hue-rotate(179deg) brightness(91%) contrast(95%);
}

.landing-hero-carousel .carousel-control-prev {
  left: auto;
  right: 74px;
}

.landing-hero-carousel .carousel-control-next {
  right: 18px;
}

.landing-hero-carousel__indicators {
  margin-bottom: 0;
  bottom: 18px;
  left: 18px;
  right: auto;
  justify-content: flex-start;
  gap: .45rem;
}

.landing-hero-carousel__indicators [data-bs-target] {
  width: 24px;
  height: 6px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  opacity: 1;
}

.landing-hero-carousel__indicators .active {
  background: #fff;
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, .4);
}

.landing-hero__stack {
  position: absolute;
  left: 0;
  bottom: 36px;
  display: grid;
  gap: 1rem;
  width: 220px;
}

.landing-stack-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .52);
  box-shadow: 0 24px 48px -32px rgba(15, 23, 42, .25);
  backdrop-filter: blur(12px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.landing-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px -30px rgba(15, 23, 42, .3);
}

.landing-stack-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  display: block;
}

.landing-stack-card span {
  display: block;
  padding: .8rem .9rem 1rem;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 800;
  color: #0f172a;
}

.landing-stack-card--2 {
  margin-left: 24px;
}

.landing-stack-card--3 {
  margin-left: 10px;
}

.landing-metric {
  position: absolute;
  min-width: 170px;
  max-width: 220px;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, .9);
  color: #fff;
  box-shadow: 0 26px 46px -28px rgba(15, 23, 42, .55);
}

.landing-metric strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
}

.landing-metric span {
  display: block;
  margin-top: .28rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .74);
}

.landing-metric--one {
  top: 26px;
  right: 38px;
  transform: rotate(6deg);
}

.landing-metric--two {
  right: 10px;
  bottom: -8px;
  background: rgba(246, 138, 31, .95);
  color: #111827;
}

.landing-metric--two span {
  color: rgba(17, 24, 39, .8);
}

.landing-divider--hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: #fff;
  clip-path: polygon(0 26%, 100% 0, 100% 100%, 0 100%);
}

.landing-story,
.landing-categories,
.landing-products,
.landing-reasons,
.landing-proof,
.landing-cta {
  position: relative;
  padding: 2.25rem 0 0;
}

.landing-story__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.landing-problem-card {
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(160deg, #0f172a 0%, #172554 100%);
  color: #fff;
  box-shadow: 0 28px 56px -36px rgba(15, 23, 42, .56);
}

.landing-problem-card h2,
.landing-solution-panel h3,
.landing-product-feature__body h3,
.landing-category-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 900;
}

.landing-problem-list {
  margin-top: 1.4rem;
  display: grid;
  gap: .9rem;
}

.landing-problem-item {
  display: flex;
  gap: .8rem;
  align-items: start;
  padding: 1rem 1rem 1rem .95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
}

.landing-problem-item span {
  line-height: 1.8;
  color: rgba(255, 255, 255, .84);
}

.landing-solution-panel {
  position: relative;
  padding: 2.1rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 138, 31, .12), transparent 24%),
    linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 26px 52px -38px rgba(10, 79, 132, .26);
}

.landing-solution-panel h3 {
  max-width: 12ch;
  color: #0f172a;
}

.landing-solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.landing-solution-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 18px 36px -30px rgba(15, 23, 42, .16);
  transition: transform .28s ease, box-shadow .28s ease;
}

.landing-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -28px rgba(10, 79, 132, .24);
}

.landing-solution-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 900;
  color: #0f172a;
}

.landing-solution-card p {
  margin: .55rem 0 0;
  line-height: 1.75;
  color: #475569;
}

.landing-category-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.landing-category-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.7rem;
  border-radius: 34px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 26px 52px -36px rgba(15, 23, 42, .2);
  transition: transform .32s ease, box-shadow .32s ease;
}

.landing-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -34px rgba(15, 23, 42, .24);
}

.landing-category-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .26);
  filter: blur(6px);
}

.landing-category-card--1 {
  min-height: 420px;
}

.landing-category-card--2,
.landing-category-card--3 {
  min-height: 204px;
}

.landing-category-card--3 {
  margin-top: -28px;
}

.landing-category-card--sun {
  background: linear-gradient(155deg, #fff0d4 0%, #ffd991 100%);
}

.landing-category-card--sky {
  background: linear-gradient(155deg, #e3f4ff 0%, #b8dcff 100%);
}

.landing-category-card--pearl {
  background: linear-gradient(155deg, #f3f0ff 0%, #ddd8ff 100%);
}

.landing-category-card__top,
.landing-category-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-category-card__top span,
.landing-category-card__top small {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, .72);
  color: #0f172a;
}

.landing-category-card h3 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  color: #0f172a;
}

.landing-category-card p {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  margin: 1rem 0 0;
  line-height: 1.85;
  color: rgba(15, 23, 42, .78);
}

.landing-category-card__preview {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .75rem;
  margin-top: 1.1rem;
}

.landing-category-card__thumb {
  display: block;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.6);
  box-shadow: 0 18px 26px -22px rgba(15, 23, 42, .24);
}

.landing-category-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-category-card__bottom {
  margin-top: 2rem;
}

.landing-category-card__bottom strong {
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.landing-category-card__bottom span {
  font-weight: 800;
  color: #0a4f84;
}

.landing-products__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 1.2rem;
  align-items: start;
}

.landing-product-feature {
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(160deg, #fff 0%, #f7fbff 100%);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 28px 56px -40px rgba(10, 79, 132, .28);
}

.landing-product-feature__media {
  display: block;
  overflow: hidden;
}

.landing-product-feature__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.landing-product-feature:hover .landing-product-feature__media img {
  transform: scale(1.03);
}

.landing-product-feature__body {
  padding: 1.7rem;
}

.landing-product-feature__body h3 {
  max-width: 12ch;
  color: #0f172a;
}

.landing-product-feature__body p {
  max-width: 58ch;
  margin: 1rem 0 0;
  line-height: 1.9;
  color: #475569;
}

.landing-product-feature__meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
}

.landing-product-feature__meta small {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #94a3b8;
}

.landing-product-feature__meta strong {
  display: block;
  margin-top: .4rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
  color: #0a4f84;
}

.landing-product-stack {
  display: grid;
  gap: 1rem;
}

.landing-product-mini {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: .95rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 22px 42px -34px rgba(15, 23, 42, .18);
  transition: transform .28s ease, box-shadow .28s ease;
}

.landing-product-mini:nth-child(2) {
  margin-left: 20px;
}

.landing-product-mini:nth-child(3) {
  margin-right: 24px;
}

.landing-product-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -30px rgba(10, 79, 132, .24);
}

.landing-product-mini__media {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}

.landing-product-mini__media img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform .6s ease;
}

.landing-product-mini:hover .landing-product-mini__media img {
  transform: scale(1.04);
}

.landing-product-mini__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
}

.landing-product-mini__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.landing-product-mini__tags span {
  padding: .42rem .72rem;
  border-radius: 999px;
  background: #e6f2fb;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0a4f84;
}

.landing-product-mini__tags .is-muted {
  background: #f1f5f9;
  color: #64748b;
}

.landing-product-mini__body h3,
.landing-reason-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  color: #0f172a;
}

.landing-product-mini__body p,
.landing-reason-card p {
  margin: 0;
  line-height: 1.8;
  color: #475569;
}

.landing-product-mini__body strong {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 900;
  color: #0a4f84;
}

.landing-reasons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.landing-reason-card {
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 22px 40px -34px rgba(15, 23, 42, .16);
  transition: transform .28s ease, box-shadow .28s ease;
}

.landing-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -30px rgba(10, 79, 132, .24);
}

.landing-reason-card--1,
.landing-reason-card--4 {
  background: linear-gradient(150deg, #fff 0%, #f7fbff 100%);
}

.landing-reason-card--2 {
  background: linear-gradient(150deg, #fff5e8 0%, #fff 100%);
  margin-top: 28px;
}

.landing-reason-card--3 {
  background: linear-gradient(150deg, #eef7ff 0%, #fff 100%);
  margin-top: -18px;
}

.landing-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(10, 79, 132, .1);
  color: #0a4f84;
}

.landing-reason-card p {
  margin-top: .8rem;
}

.landing-proof__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: 1.6rem;
  align-items: end;
}

.landing-client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
}

.landing-client-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .62rem .95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .88);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #475569;
  box-shadow: 0 16px 30px -26px rgba(15, 23, 42, .16);
}

.landing-testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.landing-testimonial-card {
  padding: 1.45rem;
  border-radius: 30px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 22px 42px -32px rgba(15, 23, 42, .16);
  transition: transform .28s ease, box-shadow .28s ease;
}

.landing-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px -30px rgba(10, 79, 132, .22);
}

.landing-testimonial-card--2 {
  margin-top: 28px;
}

.landing-testimonial-card--3 {
  margin-top: -12px;
}

.landing-testimonial-card__rating {
  font-size: .85rem;
  letter-spacing: .22em;
  color: #f59e0b;
}

.landing-testimonial-card p {
  margin: .95rem 0 0;
  font-size: 1rem;
  line-height: 1.95;
  color: #334155;
}

.landing-testimonial-card__author {
  margin-top: 1.2rem;
}

.landing-testimonial-card__author strong {
  display: block;
  font-size: .98rem;
  font-weight: 900;
  color: #0f172a;
}

.landing-testimonial-card__author span {
  display: block;
  margin-top: .22rem;
  color: #64748b;
}

.landing-cta {
  padding-bottom: 2rem;
}

.landing-cta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 20%),
    linear-gradient(140deg, #0a4f84 0%, #0d6fb4 52%, #18b395 100%);
  box-shadow: 0 34px 70px -38px rgba(10, 79, 132, .46);
}

.landing-cta__panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  right: -70px;
  bottom: -90px;
  background: rgba(255, 255, 255, .12);
}

.landing-cta__copy h2,
.landing-cta__copy p {
  color: #fff;
}

.landing-cta__copy p {
  color: rgba(255, 255, 255, .82);
}

.landing-home img {
  will-change: transform;
}

[data-cart-trigger] {
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  touch-action: manipulation;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

[data-cart-trigger] span {
  pointer-events: none;
}

[data-cart-dropdown] {
  z-index: 60;
}

.motion-reveal.is-visible .landing-category-card:hover,
.motion-reveal.is-visible .landing-product-feature:hover,
.motion-reveal.is-visible .landing-product-mini:hover,
.motion-reveal.is-visible .landing-reason-card:hover,
.motion-reveal.is-visible .landing-solution-card:hover {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .motion-item,
  .motion-float-soft,
  .landing-hero__backdrop::before,
  .landing-hero__backdrop::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1100px) {
  .landing-hero__grid,
  .landing-editorial__stack,
  .landing-hero__grid,
  .landing-story__grid,
  .landing-lookbook__grid,
  .landing-products__layout,
  .landing-section-head--split,
  .landing-cta__panel {
    grid-template-columns: 1fr;
  }

  .landing-hero__title {
    max-width: 12ch;
  }

  .landing-cta__actions {
    margin-top: 0;
  }

  .landing-banner__brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .landing-solution-list,
  .landing-reasons__grid,
  .landing-category-layout {
    grid-template-columns: 1fr;
  }

  .landing-category-card--3,
  .landing-reason-card--2,
  .landing-reason-card--3,
  .landing-product-mini:nth-child(2),
  .landing-product-mini:nth-child(3) {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .landing-product-mini {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .landing-lookbook__card:nth-child(1) {
    grid-row: span 1;
    min-height: 320px;
  }

  .landing-banner__overlay {
    width: min(64%, 520px);
    padding: 1.5rem;
  }

}

@media (max-width: 768px) {
  .landing-shell {
    width: min(100vw - 24px, 1180px);
  }

  .landing-banner {
    padding-top: .2rem;
  }

  .landing-banner__brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-hero {
    padding-top: 1rem;
    padding-bottom: 3.4rem;
  }

  .landing-hero__copy {
    padding-top: .5rem;
  }

  .landing-editorial__stack {
    grid-template-columns: 1fr;
  }

  .landing-editorial__card--note,
  .landing-editorial__card--mini {
    min-height: 0;
  }

  .landing-lookbook__card {
    min-height: 220px;
  }

  .landing-hero__visual {
    min-height: 0;
    padding: .4rem 0 0;
  }

  .landing-hero__frame--main {
    width: 100%;
    transform: rotate(0);
  }

  .landing-hero__frame--main img {
    aspect-ratio: 16 / 7;
  }

  .landing-banner__overlay {
    position: absolute;
    inset: auto 0 0 0;
    width: auto;
    padding: 1.2rem;
    justify-content: end;
    background: linear-gradient(180deg, rgba(120, 88, 61, 0) 0%, rgba(120, 88, 61, .68) 100%);
  }

  .landing-banner__overlay h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .landing-banner__overlay p {
    font-size: .92rem;
  }

  .landing-product-feature__meta {
    flex-direction: column;
    align-items: start;
  }

  .landing-category-card__preview {
    gap: .55rem;
  }

  .landing-category-card__thumb {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .landing-product-mini {
    grid-template-columns: 1fr;
  }

  .landing-product-mini__media img {
    min-height: 220px;
  }

  .landing-cta__panel {
    padding: 1.6rem;
    border-radius: 30px;
  }
}

@media (max-width: 576px) {
  .landing-hero__title {
    font-size: clamp(2.5rem, 16vw, 3.8rem);
  }

  .landing-hero__text,
  .landing-section-head p,
  .landing-cta__copy p,
  .landing-product-feature__body p,
  .landing-category-card p,
  .landing-problem-item span,
  .landing-product-mini__body p {
    line-height: 1.8;
  }

  .landing-hero__trust {
    flex-direction: column;
  }

  .landing-hero-carousel__control {
    width: 42px;
    height: 42px;
    bottom: 12px;
  }

  .landing-hero-carousel .carousel-control-prev {
    right: 68px;
  }

  .landing-hero-carousel .carousel-control-next {
    right: 12px;
  }

  .landing-hero-carousel__indicators {
    left: 12px;
    bottom: 16px;
  }

  .landing-section-head h2,
  .landing-cta__copy h2,
  .landing-problem-card h2,
  .landing-solution-panel h3,
  .landing-product-feature__body h3,
  .landing-category-card h3 {
    font-size: 2rem;
  }
}
