:root {
  --black: #111214;
  --ink: #28282c;
  --muted: #666a72;
  --line: #e6dcc8;
  --paper: #fbf4e7;
  --white: #ffffff;
  --yellow: #ffd400;
  --yellow-soft: #fff4bf;
  --red: #c91828;
  --red-soft: #e94a50;
  --shadow: 0 16px 40px rgba(17, 18, 20, 0.1);
  --shadow-strong: 0 26px 80px rgba(17, 18, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
section[id],
#contatti {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf0 0, var(--paper) 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
}

.top-strip span::before,
.top-strip a::before {
  color: var(--yellow);
  margin-right: 6px;
}

.top-strip span:nth-child(1)::before {
  content: "☎";
}

.top-strip span:nth-child(2)::before {
  content: "✉";
}

.top-strip span:nth-child(3)::before {
  content: "●";
}

.top-strip a::before {
  content: "▣";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(17, 18, 20, 0.16);
}

.header-main {
  display: grid;
  grid-template-columns: 190px minmax(320px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 76px);
}

.brand {
  display: block;
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 52px;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 18, 20, 0.08),
    0 10px 24px rgba(17, 18, 20, 0.08);
  position: relative;
}

.site-search input {
  min-width: 0;
  border: 0;
  padding: 13px 18px 13px 22px;
  outline: 0;
  background: transparent;
  font-weight: 750;
}

.site-search span {
  display: grid;
  place-items: center;
  margin: 5px 5px 5px 0;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
}

.site-search span::before {
  content: "⌕";
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.whatsapp-cta,
.quote-cta,
.account-button,
.backoffice-button,
.cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.84rem;
}

.whatsapp-cta {
  padding: 0 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(17, 18, 20, 0.14);
}

.whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: #1fa855;
}

.quote-cta {
  padding: 0 15px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 20px rgba(201, 24, 40, 0.2);
}

.account-button,
.backoffice-button {
  border: 1px solid rgba(17, 18, 20, 0.22);
  padding: 0 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.backoffice-button {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.cart-button {
  min-width: 54px;
  border: 1px solid rgba(17, 18, 20, 0.2);
  padding: 0 9px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
}

.cart-button span {
  display: none;
}

.cart-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
  z-index: 1;
}

.main-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 9px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.9);
  background: var(--black);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}

.nav-primary,
.nav-service {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.nav-primary {
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-primary::-webkit-scrollbar {
  display: none;
}

.nav-service {
  justify-content: flex-end;
  gap: 2px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0.96;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-featured {
  display: grid;
  align-content: center;
  gap: 0;
  min-height: 38px;
  padding: 0 15px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: inset 0 -2px 0 rgba(17, 18, 20, 0.18);
}

.nav-featured span,
.nav-featured small {
  display: block;
  line-height: 1;
}

.nav-featured span {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-featured small {
  margin-top: 3px;
  font-size: 0.58rem;
  font-weight: 850;
  opacity: 0.72;
  text-transform: none;
}

.nav-service a {
  min-height: 30px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 850;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: clamp(18px, 5vw, 76px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(230px, 1fr) minmax(250px, 0.82fr);
  gap: 10px;
  width: min(960px, calc(100vw - 36px));
  padding: 10px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 18, 20, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 28px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(17, 18, 20, 0.1);
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  transform: rotate(45deg);
}

.nav-featured:hover ~ .mega-menu,
.nav-featured:focus ~ .mega-menu,
.nav-primary:has(.nav-featured:hover) ~ .mega-menu,
.nav-primary:has(.nav-featured:focus) ~ .mega-menu,
.mega-menu:hover,
.mega-menu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-column {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 8px;
}

.mega-column > strong {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.mega-column a {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  justify-content: stretch;
  padding: 10px 12px;
  color: var(--black);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  text-transform: none;
}

.mega-column a:hover {
  background: #fff7d4;
  border-color: rgba(17, 18, 20, 0.08);
}

.mega-column a span {
  font-size: 0.92rem;
  font-weight: 1000;
}

.mega-column a small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

.mega-menu p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.4;
  text-transform: none;
}

.mega-cta {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-content: start;
  align-items: start;
  gap: 10px;
  min-height: 100%;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.98), rgba(43, 19, 22, 0.96));
  border-radius: 8px;
}

.mega-cta img {
  grid-row: 1 / 5;
  width: 92px;
  height: 118px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.mega-cta span {
  width: fit-content;
  padding: 5px 8px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.mega-cta strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.05;
  text-transform: none;
}

.mega-cta a {
  width: fit-content;
  min-height: 32px;
  padding: 0 11px;
  color: var(--black);
  background: var(--yellow);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero {
  min-height: clamp(660px, 76vh, 790px);
  display: flex;
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 86px);
  background: #f8ead0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 249, 235, 0.96) 0%, rgba(255, 249, 235, 0.8) 28%, rgba(255, 249, 235, 0.2) 48%, rgba(255, 249, 235, 0) 68%),
    radial-gradient(circle at 13% 34%, rgba(255, 255, 255, 0.7) 0 6%, transparent 15%),
    radial-gradient(circle at 23% 58%, rgba(255, 212, 0, 0.32) 0 4%, transparent 17%),
    radial-gradient(circle at 9% 72%, rgba(201, 24, 40, 0.12) 0 3%, transparent 14%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.03), transparent 28%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--black));
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(610px, 48vw);
  padding: 28px 0;
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  color: var(--black);
  font-size: clamp(3.2rem, 5.1vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: var(--black);
}

.hero h1 {
  text-wrap: balance;
}

.hero-text {
  max-width: 500px;
  margin: 22px 0 0;
  color: #3c3f45;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--black);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--black);
  background: var(--yellow);
}

.button.primary::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.button.secondary {
  color: var(--black);
  background: var(--white);
}

.button.secondary::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #26a960;
  border: 2px solid #dff6e8;
  border-radius: 999px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-proof div::before {
  content: "✓";
  color: var(--yellow);
  margin-right: 6px;
  text-shadow: 0 0 0 var(--black);
}

.hero-mockup {
  position: absolute;
  inset: 0;
  overflow: hidden;
  aspect-ratio: auto;
  background: #f8ead0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mockup > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mockup-caption {
  position: absolute;
  right: clamp(24px, 5vw, 86px);
  bottom: clamp(44px, 7vw, 86px);
  max-width: 420px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.18);
  z-index: 2;
}

.mockup-caption span,
.mockup-caption strong {
  display: block;
}

.mockup-caption span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-caption strong {
  margin-top: 4px;
  font-size: 1.02rem;
  line-height: 1.12;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1360px;
  margin: -54px auto 0;
  padding: 0 clamp(18px, 5vw, 76px);
  position: relative;
  z-index: 5;
}

.category-rail a {
  min-height: 176px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
  border-right: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(70, 45, 10, 0.12);
  font-weight: 900;
  text-align: center;
}

.category-rail a:first-child {
  border-radius: 8px 0 0 8px;
}

.category-rail a:last-child {
  border-radius: 0 8px 8px 0;
  border-right: 0;
}

.category-rail span {
  width: min(150px, 100%);
  height: 94px;
  display: block;
  background: var(--yellow-soft);
  border-radius: 8px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48), 0 12px 24px rgba(70, 45, 10, 0.12);
  position: relative;
}

.category-rail span::before,
.category-rail span::after {
  content: "";
  position: absolute;
  display: block;
  transition: transform 160ms ease;
}

.category-rail a:hover span::before,
.category-rail a:hover span::after {
  transform: translateY(-2px);
}

.cat-shirt::before {
  left: 34px;
  top: 15px;
  width: 48px;
  height: 58px;
  background: var(--black);
  clip-path: polygon(25% 8%, 39% 0, 61% 0, 75% 8%, 96% 30%, 79% 48%, 70% 35%, 70% 94%, 30% 94%, 30% 35%, 21% 48%, 4% 30%);
}

.cat-shirt::after {
  left: 48px;
  top: 33px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--yellow) 0 38%, var(--red) 40% 62%, transparent 64%);
}

.cat-mug::before {
  left: 33px;
  top: 20px;
  width: 46px;
  height: 48px;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 8px 8px 17px 17px;
}

.cat-mug::after {
  right: 25px;
  top: 31px;
  width: 18px;
  height: 22px;
  border: 5px solid var(--black);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.cat-rollup::before {
  left: 43px;
  top: 10px;
  width: 40px;
  height: 68px;
  background: linear-gradient(135deg, var(--yellow) 0 38%, var(--white) 39% 55%, var(--black) 56% 76%, var(--red) 77%);
  border-radius: 5px 5px 2px 2px;
  box-shadow: 0 0 0 3px var(--white);
}

.cat-rollup::after {
  left: 32px;
  bottom: 9px;
  width: 62px;
  height: 6px;
  background: var(--black);
  border-radius: 999px;
}

.cat-card::before {
  left: 25px;
  top: 25px;
  width: 72px;
  height: 42px;
  background: linear-gradient(135deg, var(--yellow) 0 32%, var(--white) 33% 62%, var(--red) 63%);
  border-radius: 4px;
  box-shadow: 10px 10px 0 rgba(17, 18, 20, 0.16);
}

.cat-card::after {
  left: 30px;
  top: 31px;
  width: 52px;
  height: 4px;
  background: var(--black);
  box-shadow: 0 12px 0 var(--black);
  opacity: 0.7;
}

.cat-sticker::before {
  left: 30px;
  top: 18px;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 24px 13px 0 var(--black);
}

.cat-sticker::after {
  left: 55px;
  top: 30px;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 999px;
  opacity: 0.82;
}

.cat-photo::before {
  left: 27px;
  top: 18px;
  width: 72px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0 12%, var(--yellow) 13% 45%, var(--red) 46% 70%, var(--black) 71%);
  border: 6px solid var(--white);
  border-radius: 5px;
  box-shadow: 8px 10px 0 rgba(17, 18, 20, 0.16);
}

.cat-photo::after {
  left: 40px;
  top: 32px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 999px;
}

.commerce-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 76px) 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 225, 0.92), rgba(255, 255, 255, 0.62));
}

.commerce-strip article {
  min-height: 128px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-content: center;
  gap: 8px 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(70, 45, 10, 0.08);
}

.commerce-strip strong,
.commerce-strip p {
  margin: 0;
}

.commerce-strip strong {
  align-self: end;
  font-size: 1rem;
}

.commerce-strip p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.strip-icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: block;
  background: var(--yellow);
  border: 1px solid rgba(17, 18, 20, 0.18);
  border-radius: 14px;
  box-shadow: inset 0 -3px 0 rgba(17, 18, 20, 0.12), 0 10px 22px rgba(70, 45, 10, 0.12);
  position: relative;
}

.strip-icon::before,
.strip-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.quote-icon::before {
  left: 15px;
  top: 11px;
  width: 21px;
  height: 29px;
  border: 3px solid var(--black);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
}

.quote-icon::after {
  left: 20px;
  top: 20px;
  width: 12px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 7px 0 var(--red);
}

.preview-icon::before {
  left: 10px;
  top: 15px;
  width: 32px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
  border: 3px solid var(--black);
  border-radius: 999px;
}

.preview-icon::after {
  left: 22px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 999px;
}

.lab-icon::before {
  left: 11px;
  bottom: 10px;
  width: 30px;
  height: 27px;
  background: var(--black);
  clip-path: polygon(0 38%, 24% 38%, 24% 12%, 43% 12%, 43% 38%, 66% 38%, 66% 0, 100% 0, 100% 100%, 0 100%);
}

.lab-icon::after {
  left: 18px;
  top: 12px;
  width: 18px;
  height: 4px;
  background: var(--red);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.7);
}

.pickup-icon::before {
  left: 8px;
  top: 18px;
  width: 30px;
  height: 17px;
  background: var(--black);
  border-radius: 3px;
}

.pickup-icon::after {
  left: 13px;
  bottom: 10px;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 20px 0 0 var(--red);
}

section {
  scroll-margin-top: 150px;
}

.catalog-section,
.solutions-section,
.process-section,
.business-section,
.showcase-section,
.sales-band,
.trust-section,
.quote-section,
.track-section,
.faq-section {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 76px);
}

.catalog-section,
.solutions-section,
.quote-section,
.track-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 246, 225, 0.45));
}

.sales-band {
  display: grid;
  grid-template-columns: minmax(440px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.92)),
    linear-gradient(90deg, var(--black), #3b1118);
  border-top: 8px solid var(--yellow);
  border-bottom: 8px solid var(--red);
}

.sales-visual {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  position: relative;
}

.sales-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.sales-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.92) 0%, rgba(17, 18, 20, 0.7) 34%, rgba(17, 18, 20, 0.08) 72%),
    linear-gradient(0deg, rgba(17, 18, 20, 0.2), transparent 44%);
}

.sales-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  width: min(560px, 58%);
  padding: clamp(22px, 4vw, 48px);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
}

.sales-copy h2 {
  margin: 0;
  max-width: 720px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.sales-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sales-actions .secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.sales-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sales-cards article {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: stretch;
  min-height: 172px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 216, 61, 0.24), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  position: relative;
}

.sales-cards article:nth-child(2) {
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 24, 40, 0.34), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.sales-cards article:nth-child(3) {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 216, 61, 0.22), transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(201, 24, 40, 0.28), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.sales-cards span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--yellow);
  background: rgba(17, 18, 20, 0.78);
  border: 1px solid rgba(255, 216, 61, 0.34);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 1000;
}

.sales-cards img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
  object-position: center;
}

.sales-cards article > div {
  display: grid;
  align-content: center;
  padding: 18px;
}

.sales-cards strong {
  color: var(--white);
  font-size: 1.35rem;
}

.sales-cards p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.42;
}

.sales-cards small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 216, 61, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.section-heading {
  max-width: 820px;
}

.section-heading .eyebrow,
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.7rem, 3.8vw, 3.2rem);
  line-height: 1;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.5;
}

.catalog-sync-state {
  width: fit-content;
  margin: 12px 0 0;
  padding: 8px 10px;
  color: var(--black);
  background: var(--yellow-soft);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-link {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-link::after {
  content: " →";
  color: var(--red);
}

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

.search-field {
  display: grid;
  gap: 7px;
  width: min(100%, 340px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs button {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(70, 45, 10, 0.05);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.category-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 18, 20, 0.2);
  background: var(--white);
}

.category-tabs button.is-active {
  color: var(--black);
  border-color: var(--black);
  background: var(--yellow);
  box-shadow: inset 0 -2px 0 rgba(17, 18, 20, 0.2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
  justify-content: start;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: 220px 360px;
  width: 260px;
  min-height: 580px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(70, 45, 10, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.product-art {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 212, 0, 0.28), transparent 36%),
    radial-gradient(circle at 78% 72%, rgba(201, 24, 40, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdf7, #f1e1c8);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.product-art::after {
  content: "Personalizzabile";
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 1;
  padding: 6px 9px;
  color: var(--black);
  background: rgba(255, 212, 0, 0.92);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(17, 18, 20, 0.12);
}

.product-card:nth-child(3n + 2) .product-art {
  background:
    radial-gradient(circle at 44% 34%, rgba(255, 212, 0, 0.22), transparent 34%),
    linear-gradient(145deg, #fff7df, #ffffff 54%, #f2e2cc);
}

.product-card:nth-child(3n) .product-art {
  background:
    radial-gradient(circle at 64% 36%, rgba(201, 24, 40, 0.12), transparent 32%),
    linear-gradient(145deg, #fffdf8, #f6e7c9);
}

.product-photo {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #fff8e6;
  box-shadow: 0 18px 34px rgba(70, 45, 10, 0.16);
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 200ms ease;
}

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

.product-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.product-mockup::before {
  content: "";
  position: absolute;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(70, 45, 10, 0.16);
}

.mock-logo {
  position: absolute;
  width: 78px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  mix-blend-mode: multiply;
}

.mock-tshirt::before,
.mock-hoodie::before {
  width: 112px;
  height: 140px;
  clip-path: polygon(25% 8%, 39% 0, 61% 0, 75% 8%, 96% 30%, 79% 48%, 70% 35%, 70% 94%, 30% 94%, 30% 35%, 21% 48%, 4% 30%);
}

.mock-tshirt .mock-logo,
.mock-hoodie .mock-logo {
  top: 72px;
  width: 74px;
}

.mock-mug::before {
  width: 92px;
  height: 108px;
  border-radius: 10px 10px 28px 28px;
}

.mock-mug::after {
  content: "";
  position: absolute;
  right: 46px;
  width: 32px;
  height: 42px;
  border: 10px solid var(--white);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  box-shadow: 8px 8px 14px rgba(17, 18, 20, 0.08);
}

.mock-mug .mock-logo {
  width: 68px;
}

.mock-rollup::before,
.mock-poster::before {
  width: 82px;
  height: 146px;
  border-radius: 8px 8px 2px 2px;
}

.mock-rollup::after,
.mock-poster::after {
  content: "";
  position: absolute;
  bottom: 16px;
  width: 120px;
  height: 8px;
  background: var(--black);
  border-radius: 999px;
}

.mock-rollup .mock-logo,
.mock-poster .mock-logo {
  top: 78px;
  width: 66px;
}

.mock-business-cards::before,
.mock-card::before {
  width: 130px;
  height: 78px;
  transform: rotate(-4deg);
  border-radius: 4px;
  box-shadow: 15px 18px 0 #ececea, 0 12px 22px rgba(17, 18, 20, 0.12);
}

.mock-business-cards .mock-logo {
  width: 84px;
}

.mock-canvas::before,
.mock-forex::before,
.mock-photo-print::before,
.mock-plaque::before {
  width: 118px;
  height: 94px;
  border: 8px solid var(--white);
  background: linear-gradient(135deg, var(--yellow), var(--red));
}

.mock-canvas .mock-logo,
.mock-forex .mock-logo,
.mock-photo-print .mock-logo,
.mock-plaque .mock-logo {
  width: 76px;
}

.mock-bottle::before {
  width: 58px;
  height: 146px;
  border-radius: 18px 18px 28px 28px;
}

.mock-bottle .mock-logo {
  width: 44px;
}

.mock-stamp::before {
  width: 128px;
  height: 82px;
  background: var(--black);
  border-radius: 14px 14px 8px 8px;
}

.mock-stamp .mock-logo {
  width: 74px;
  filter: invert(1) grayscale(1);
  mix-blend-mode: normal;
}

.mock-keychain::before {
  width: 92px;
  height: 104px;
  border-radius: 38px 38px 48px 48px;
  transform: rotate(-8deg);
}

.mock-keychain .mock-logo {
  width: 52px;
}

.mock-pillow::before {
  width: 128px;
  height: 112px;
  border-radius: 24px;
}

.mock-pillow .mock-logo {
  width: 68px;
}

.mock-puzzle::before {
  width: 134px;
  height: 92px;
  background: linear-gradient(135deg, var(--white), var(--yellow-soft));
}

.mock-puzzle .mock-logo {
  width: 74px;
}

.mock-shopper::before {
  width: 116px;
  height: 120px;
  border-radius: 8px 8px 18px 18px;
}

.mock-shopper::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 70px;
  height: 42px;
  border: 8px solid var(--white);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  filter: drop-shadow(0 8px 9px rgba(17, 18, 20, 0.08));
}

.mock-shopper .mock-logo {
  top: 86px;
  width: 76px;
}

.mock-lamp::before {
  width: 110px;
  height: 126px;
  clip-path: polygon(50% 0, 92% 100%, 8% 100%);
}

.mock-lamp .mock-logo {
  top: 78px;
  width: 54px;
}

.product-body {
  display: grid;
  grid-template-rows: auto auto minmax(48px, 48px) minmax(52px, 52px) minmax(54px, 54px) auto auto;
  gap: 10px;
  padding: 14px;
}

.product-category,
.product-description {
  margin: 0;
}

.product-category {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-description {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  min-height: 48px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 5px;
  min-height: 52px;
  overflow: hidden;
}

.product-tags span {
  padding: 5px 7px;
  color: var(--black);
  background: #fff8d9;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 6px;
  min-height: 54px;
}

.product-promise span {
  display: grid;
  place-items: center;
  padding: 7px 8px;
  color: #4c515a;
  background: #fffdf8;
  border: 1px solid rgba(230, 220, 200, 0.82);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 1000;
  text-align: center;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-meta strong {
  color: var(--black);
  font-size: 1.1rem;
}

.product-controls {
  display: flex;
  gap: 8px;
  min-height: 58px;
}

.product-controls label {
  flex: 1;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
}

.add-to-cart {
  width: 100%;
  color: var(--black);
  background: var(--yellow);
}

.add-to-cart::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.solution-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.solution-card::after {
  display: none;
}

.solution-card img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.solution-card > div {
  grid-row: 2;
  padding: 22px 24px 0;
}

.solution-card span {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.solution-card p {
  margin: 0;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.solution-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
}

.solution-card li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 850;
}

.solution-card li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
  font-weight: 1000;
}

.solution-card a {
  grid-column: 1;
  grid-row: 3;
  width: fit-content;
  margin: 0 24px 24px;
  padding: 10px 13px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.event-kit {
  background: linear-gradient(135deg, #a80f1d, var(--red));
}

.gift-kit {
  color: var(--black);
  background: var(--white);
}

.gift-kit p {
  color: var(--muted);
}

.gift-kit li {
  color: var(--muted);
}

.gift-kit li::before {
  color: var(--red);
}

.gift-kit img {
  box-shadow: 0 16px 28px rgba(17, 18, 20, 0.1);
}

.process-section {
  background: var(--white);
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
}

.process-intro img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 52% center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.steps article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.steps p,
.business-section p,
.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.48;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 35%, rgba(255, 216, 61, 0.22), transparent 26%),
    linear-gradient(135deg, var(--black), #241316);
}

.business-section .eyebrow,
.business-section p {
  color: rgba(255, 255, 255, 0.78);
}

.business-section h2 {
  color: var(--white);
}

.business-section .button {
  background: var(--yellow);
}

.business-copy {
  max-width: 780px;
}

.business-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.business-points span {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.business-panel {
  padding: 22px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.business-visual-card {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  position: relative;
}

.business-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.business-visual-card .business-panel {
  width: min(360px, calc(100% - 32px));
  margin: -76px 16px 16px auto;
  position: relative;
  z-index: 1;
}

.business-panel strong,
.business-panel span {
  display: block;
}

.business-panel strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.business-panel span {
  margin-top: 10px;
  font-size: 1.45rem;
  font-weight: 1000;
  line-height: 1.05;
}

.business-panel p {
  color: rgba(17, 18, 20, 0.72);
}

.business-panel .button {
  width: 100%;
  margin-top: 10px;
  color: var(--white);
  background: var(--black);
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: 34px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 42%, rgba(255, 216, 61, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(17, 18, 20, 0.96) 0%, rgba(17, 18, 20, 0.89) 48%, rgba(17, 18, 20, 0.78) 100%),
    url("assets/digislam/hero-bokeh-products-v5.png") center 62% / cover;
}

.showcase-section .section-heading h2,
.showcase-section h2 {
  color: var(--white);
}

.showcase-section .eyebrow,
.showcase-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.showcase-board article {
  display: grid;
  grid-template-rows: 178px 1fr;
  min-height: 430px;
  overflow: hidden;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3);
  position: relative;
}

.showcase-board article::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 0;
}

.showcase-board article:nth-child(2)::after {
  background: var(--red);
}

.showcase-board img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.showcase-board article > div {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  padding: 18px;
}

.showcase-board strong,
.showcase-board span,
.showcase-board p,
.showcase-board li,
.showcase-board a {
  display: block;
}

.showcase-board span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.showcase-board strong {
  color: var(--black);
  font-size: 1.36rem;
  line-height: 1.05;
}

.showcase-board p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.showcase-board ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-board li {
  color: rgba(17, 18, 20, 0.75);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
  position: relative;
  padding-left: 16px;
}

.showcase-board li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  top: 0.42em;
}

.showcase-board article:nth-child(2) li::before {
  background: var(--red);
}

.showcase-board a {
  align-self: end;
  justify-self: start;
  padding: 11px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(255, 216, 61, 0.24);
}

.showcase-board article:nth-child(2) a {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(197, 32, 45, 0.2);
}

.trust-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.trust-grid article {
  min-height: 190px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(70, 45, 10, 0.08);
  position: relative;
}

.trust-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 6px;
  margin-bottom: 18px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 42px 0 0 var(--red);
}

.trust-grid strong {
  display: block;
  color: var(--black);
  font-size: 1.1rem;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.trust-grid small {
  display: block;
  margin-top: 16px;
  padding-top: 12px;
  color: var(--red);
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.quote-visual,
.quote-form {
  min-width: 0;
}

.quote-visual {
  overflow: hidden;
  min-height: 560px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.quote-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.06) 0%, rgba(17, 18, 20, 0.18) 44%, rgba(17, 18, 20, 0.88) 100%),
    radial-gradient(circle at 20% 15%, rgba(255, 216, 61, 0.18), transparent 28%);
}

.quote-visual-panel {
  width: min(420px, calc(100% - 34px));
  padding: 20px;
  background: rgba(17, 18, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.quote-visual-panel span {
  display: block;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.quote-visual-panel strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.quote-visual-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

.quote-form {
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 20px;
}

.quote-promises span {
  padding: 8px 10px;
  color: var(--black);
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 216, 61, 0.5);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

label {
  color: #3f464c;
  font-weight: 800;
}

label input,
label textarea,
label select {
  margin-top: 7px;
}

.full {
  grid-column: 1 / -1;
}

.form-note,
.checkout-help {
  margin: 12px 0 0;
  color: var(--red);
  font-weight: 800;
}

.checkout-help {
  padding: 12px;
  color: var(--black);
  background: var(--yellow-soft);
  border-radius: 8px;
  font-size: 0.92rem;
}

.track-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 249, 235, 0.88), rgba(255, 255, 255, 0.96)),
    url("assets/digislam/home-process-workflow.png") right center / auto 100% no-repeat;
  border-top: 1px solid rgba(230, 220, 200, 0.7);
}

.track-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1;
}

.track-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.5;
}

.track-assurance {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 20px;
}

.track-assurance span {
  padding: 10px 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 220, 200, 0.9);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(70, 45, 10, 0.08);
}

.track-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.track-result {
  grid-column: 2;
}

.track-result > p {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.track-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.track-card-head,
.track-meta,
.track-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.track-card-head {
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.track-card-head span,
.track-meta,
.track-lines span {
  color: var(--muted);
}

.track-card-head strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 1.45rem;
}

.track-card-head b {
  color: var(--red);
  font-size: 1.25rem;
}

.track-meta {
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.track-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 18px;
  padding: 16px;
  list-style: none;
  background: linear-gradient(135deg, rgba(255, 216, 61, 0.16), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(230, 220, 200, 0.82);
  border-radius: 8px;
}

.track-timeline li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.track-timeline li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(-50% + 18px);
  right: calc(50% + 18px);
  height: 3px;
  background: rgba(20, 20, 20, 0.12);
}

.track-timeline li:first-child::before {
  display: none;
}

.track-timeline span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--muted);
  background: var(--white);
  border: 2px solid rgba(20, 20, 20, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 16, 18, 0.08);
}

.track-timeline strong {
  overflow-wrap: anywhere;
}

.track-timeline li.is-done,
.track-timeline li.is-active {
  color: var(--black);
}

.track-timeline li.is-done::before,
.track-timeline li.is-active::before {
  background: var(--yellow);
}

.track-timeline li.is-done span {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.track-timeline li.is-active span {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.track-lines {
  display: grid;
  gap: 10px;
}

.track-lines div {
  padding-top: 10px;
  border-top: 1px solid rgba(230, 220, 200, 0.72);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(70, 45, 10, 0.06);
}

summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 900;
  line-height: 1.2;
}

summary::marker {
  color: var(--red);
}

details p {
  color: var(--muted);
  line-height: 1.45;
}

.faq-help-card {
  min-height: 314px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.94), rgba(45, 18, 23, 0.92)),
    url("assets/digislam/solution-business-warm.png") center / cover;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 18, 20, 0.22);
  position: sticky;
  top: 110px;
}

.faq-help-card span {
  display: inline-block;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.faq-help-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.06;
}

.faq-help-card p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.faq-help-card .button {
  width: 100%;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.96), rgba(17, 18, 20, 0.88)),
    url("assets/digislam/hero-bokeh-products-v5.png") center 70% / cover;
  border-top: 10px solid var(--yellow);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(360px, 1.5fr) minmax(250px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 48px clamp(18px, 5vw, 76px);
  background: rgba(17, 18, 20, 0.72);
  backdrop-filter: blur(8px);
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.footer-brand p,
.footer-newsletter p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact a,
.footer-links a {
  color: inherit;
}

.footer-badge {
  margin-top: 18px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
}

.footer-badge span,
.footer-badge strong {
  display: block;
}

.footer-badge span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.footer-badge strong {
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.social-whatsapp {
  background: #25d366;
}

.social-youtube {
  background: #ff0033;
}

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

.footer-links h3,
.footer-newsletter h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 18px;
}

.footer-newsletter input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.footer-newsletter button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.payment-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--white);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.pay-visa {
  color: #1434cb !important;
  font-style: italic;
  letter-spacing: 0.03em;
}

.pay-mastercard {
  gap: 0;
  min-width: 58px;
  background: var(--white);
}

.pay-mastercard i,
.pay-mastercard b {
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.pay-mastercard i {
  background: #eb001b;
}

.pay-mastercard b {
  margin-left: -9px;
  background: rgba(247, 158, 27, 0.92);
}

.pay-paypal {
  color: #003087 !important;
  font-weight: 1000 !important;
}

.pay-bonifico {
  min-width: 86px;
  color: var(--black);
  background: var(--yellow-soft) !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 14px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-config-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(17, 18, 20, 0.66);
}

.product-config-drawer.is-open {
  display: flex;
}

.product-config-panel {
  width: min(1120px, 100%);
  max-height: min(820px, 92vh);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.product-config-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.product-config-media {
  min-height: 100%;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 212, 0, 0.24), transparent 32%),
    linear-gradient(145deg, #fff8e6, #f1e1c8);
  position: sticky;
  top: 0;
  align-self: start;
}

.product-config-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(70, 45, 10, 0.18);
}

.product-config-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
}

.product-config-form h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.product-config-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.config-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.config-flow span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px;
  color: var(--black);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--yellow);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 1000;
  text-align: center;
}

.config-highlights span {
  padding: 7px 10px;
  color: var(--black);
  background: #fff7d4;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

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

.config-advice article {
  padding: 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.config-advice strong,
.config-advice span {
  display: block;
}

.config-advice strong {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.config-advice span {
  margin-top: 5px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.config-price,
.config-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: var(--yellow-soft);
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 8px;
}

.config-price span,
.config-summary span {
  color: var(--muted);
  font-weight: 900;
}

.config-price strong,
.config-summary strong {
  color: var(--black);
  font-size: 1.25rem;
}

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

.config-grid label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
}

.config-grid .full {
  grid-column: 1 / -1;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  justify-content: flex-end;
  background: rgba(17, 18, 20, 0.52);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  width: min(100%, 460px);
  min-height: 100%;
  overflow-y: auto;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head button,
.cart-row button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin: 16px 0;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 216, 61, 0.2), rgba(255, 255, 255, 0.96)),
    url("assets/digislam/solution-gift-warm.png") right center / auto 100% no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-empty strong {
  color: var(--black);
  font-size: 1.18rem;
}

.cart-empty span {
  max-width: 260px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row.has-image {
  grid-template-columns: 76px minmax(0, 1fr) auto;
}

.cart-row img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-row span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.cart-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.32;
}

.cart-file {
  display: inline-block;
  max-width: 100%;
  padding: 5px 7px;
  color: var(--black) !important;
  background: var(--yellow-soft);
  border-radius: 6px;
  font-size: 0.82rem !important;
  font-weight: 900;
}

.cart-file.muted {
  color: var(--muted) !important;
  background: rgba(17, 18, 20, 0.05);
}

.cart-row > div:last-child {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.checkout-summary article {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  color: var(--black);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-summary span,
.checkout-summary small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-summary strong {
  color: var(--red);
  font-size: 1.05rem;
  line-height: 1;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

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

.checkout-assurance span {
  padding: 10px;
  color: var(--black);
  background: var(--yellow-soft);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.checkout-form .form-note strong,
.checkout-form .form-note span {
  display: block;
}

.checkout-form .form-note strong {
  color: var(--black);
}

.checkout-form .form-note span {
  margin-top: 4px;
}

.checkout-track-link {
  width: fit-content;
  margin-top: 12px;
}

.cart-total {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.account-drawer,
.backoffice-drawer {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  justify-content: flex-end;
  background: rgba(17, 18, 20, 0.58);
}

.account-drawer.is-open,
.backoffice-drawer.is-open {
  display: flex;
}

.account-panel,
.backoffice-panel {
  width: min(100%, 520px);
  min-height: 100%;
  overflow-y: auto;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.backoffice-panel {
  width: min(100%, 1040px);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.panel-head h2 {
  margin: 4px 0 0;
  color: var(--black);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.panel-head button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.account-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.account-tabs button.is-active {
  color: var(--black);
  border-color: var(--black);
  background: var(--yellow);
}

.auth-form {
  display: none;
  gap: 12px;
}

.auth-form.is-active {
  display: grid;
}

.auth-form[hidden],
.account-tabs[hidden] {
  display: none;
}

.customer-profile {
  display: grid;
  gap: 18px;
}

.customer-profile[hidden] {
  display: none;
}

.profile-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.profile-card strong {
  font-size: 1.25rem;
}

.profile-card span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.profile-orders,
.admin-list {
  display: grid;
  gap: 10px;
}

.profile-orders article,
.admin-list article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.profile-orders span,
.profile-orders small,
.admin-list span,
.admin-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 800;
}

.status-select {
  min-width: 170px;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-detail-button {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid var(--black);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 1000;
}

.admin-detail-button:hover {
  background: var(--yellow);
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow-soft);
  font-size: 0.78rem;
  font-weight: 1000;
  text-align: center;
}

.admin-status-pill.is-warning {
  color: #7a4d00;
  background: #fff4c2;
  border-color: #f2ce55;
}

.admin-status-pill.is-info {
  color: #154075;
  background: #e7f0ff;
  border-color: #b9d2ff;
}

.admin-status-pill.is-ready {
  color: #3c2d00;
  background: var(--yellow);
  border-color: #dfb800;
}

.admin-status-pill.is-done {
  color: #126c35;
  background: #effaf2;
  border-color: #bfe7c9;
}

.admin-status-pill.is-danger {
  color: #9a1f2d;
  background: #fff0f1;
  border-color: #efb7bf;
}

.account-checkout-note {
  margin: 0;
  padding: 10px 12px;
  color: var(--black);
  background: var(--yellow-soft);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.backoffice-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(70, 45, 10, 0.08);
}

.admin-card h3 {
  margin: 0 0 14px;
}

.admin-summary,
.admin-settings,
.admin-order-detail,
.admin-sync-console {
  grid-column: 1 / -1;
}

.sync-console-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.sync-console-grid article {
  padding: 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.sync-console-grid span,
.sync-console-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.sync-console-grid strong {
  display: block;
  margin: 5px 0;
  color: var(--yellow);
  font-size: 1.55rem;
}

.sync-console-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sync-console-flow div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.sync-console-flow b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
}

.sync-console-flow span {
  color: var(--black);
  font-weight: 1000;
}

.sync-console-flow code,
.sync-console-paths code {
  padding: 3px 6px;
  color: var(--red);
  background: rgba(201, 24, 40, 0.08);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.sync-console-paths {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-order-detail[hidden] {
  display: none;
}

.admin-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-detail-head strong,
.admin-detail-head span,
.admin-detail-head small,
.admin-detail-head b {
  display: block;
}

.admin-detail-head strong {
  color: var(--black);
  font-size: 1.15rem;
}

.admin-detail-head span,
.admin-detail-head small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.admin-detail-head b {
  color: var(--red);
  font-size: 1.2rem;
  text-align: right;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
  margin-top: 14px;
}

.admin-detail-grid h4 {
  margin: 0 0 10px;
}

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

.admin-detail-lines article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-detail-lines strong,
.admin-detail-lines span,
.admin-detail-lines small,
.admin-detail-lines b {
  display: block;
}

.admin-detail-lines span,
.admin-detail-lines small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 800;
}

.admin-detail-lines b {
  white-space: nowrap;
  text-align: right;
}

.admin-detail-data {
  display: grid;
  gap: 10px;
  margin: 0;
}

.admin-detail-data div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.admin-detail-data dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.admin-detail-data dd {
  margin: 4px 0 0;
  color: var(--black);
  font-weight: 900;
}

.admin-sync-preview {
  margin-top: 14px;
}

.admin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-detail-actions .button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.admin-detail-actions span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-sync-preview summary {
  cursor: pointer;
  font-weight: 1000;
}

.admin-sync-preview pre {
  max-height: 320px;
  overflow: auto;
  margin: 10px 0 0;
  padding: 14px;
  color: #eef2ff;
  background: #151719;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.api-status {
  margin-bottom: 14px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.api-status.is-online {
  color: #126c35;
  background: #effaf2;
  border-color: #bfe7c9;
}

.api-status.is-local {
  color: var(--black);
  background: var(--yellow-soft);
}

.sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-stats article {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.admin-stats strong {
  color: var(--yellow);
  font-size: 1.45rem;
}

.admin-settings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admin-settings h3,
.admin-settings .form-note,
.admin-settings button,
.admin-settings label:has(textarea) {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 170px minmax(220px, 1fr) auto;
  }

  .whatsapp-cta {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    display: none;
  }

  .nav-service {
    display: none;
  }

  .hero,
  .showcase-section,
  .quote-layout,
  .faq-layout,
  .sales-band,
  .process-intro {
    grid-template-columns: 1fr;
  }

  .faq-help-card {
    position: relative;
    top: auto;
  }

  .sales-copy {
    width: min(620px, 68%);
  }

  .hero-copy {
    width: min(560px, 70vw);
  }

  .category-rail,
  .commerce-strip,
  .sales-cards,
  .trust-grid,
  .solution-grid,
  .steps,
  .faq-grid,
  .track-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 12px 18px;
  }

  .brand img {
    width: 138px;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 6;
  }

  .header-actions {
    gap: 6px;
  }

  .quote-cta,
  .backoffice-button span,
  .account-button span {
    display: none;
  }

  .account-button,
  .backoffice-button {
    min-width: 42px;
    padding: 0;
  }

  .account-button::before {
    content: "◎";
    font-size: 1.05rem;
  }

  .backoffice-button::before {
    content: "▦";
    font-size: 1.05rem;
  }

  .main-nav {
    grid-template-columns: 1fr;
    padding: 8px 18px;
    overflow-x: auto;
  }

  .nav-primary {
    gap: 7px;
  }

  .main-nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .backoffice-button {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
    padding-top: 48px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 249, 235, 0.86) 0%, rgba(255, 249, 235, 0.68) 42%, rgba(255, 249, 235, 0.18) 100%),
      linear-gradient(90deg, rgba(255, 249, 235, 0.88), rgba(255, 249, 235, 0.04));
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-mockup > img:first-child {
    object-position: 58% center;
  }

  .mockup-caption {
    display: none;
  }

  .category-rail {
    margin-top: 0;
    padding: 0;
  }

  .category-rail,
  .commerce-strip,
  .sales-cards,
  .trust-grid,
  .solution-grid,
  .steps,
  .faq-grid,
  .track-section,
  .track-form,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .track-section {
    background: linear-gradient(135deg, rgba(255, 249, 235, 0.92), rgba(255, 255, 255, 0.98));
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
    justify-content: center;
  }

  .sales-visual {
    min-height: 620px;
  }

  .sales-cards article {
    grid-template-columns: 118px 1fr;
  }

  .sales-cards img {
    min-height: 160px;
  }

  .sales-visual img {
    object-position: 62% center;
  }

  .sales-visual::after {
    background:
      linear-gradient(180deg, rgba(17, 18, 20, 0.92) 0%, rgba(17, 18, 20, 0.72) 46%, rgba(17, 18, 20, 0.08) 100%);
  }

  .sales-copy {
    width: 100%;
    inset: 0 0 auto 0;
  }

  .process-intro img {
    aspect-ratio: 4 / 3;
  }

  .config-advice,
  .checkout-assurance {
    grid-template-columns: 1fr;
  }

  .track-result {
    grid-column: 1;
  }

  .track-card-head,
  .track-lines div {
    flex-direction: column;
  }

  .track-timeline {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .track-timeline li {
    grid-template-columns: 32px 1fr;
    justify-items: start;
    text-align: left;
  }

  .track-timeline li::before {
    top: -14px;
    bottom: calc(100% - 10px);
    left: 15px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-card img {
    grid-column: 1;
    grid-row: 1;
    min-height: 220px;
  }

  .category-rail a,
  .category-rail a:first-child,
  .category-rail a:last-child {
    border-radius: 0;
  }

  .commerce-strip {
    padding: 22px 18px 0;
  }

  .commerce-strip article {
    min-height: auto;
  }

  .product-config-drawer {
    align-items: stretch;
    padding: 0;
  }

  .product-config-panel {
    max-height: none;
    min-height: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .product-config-media {
    min-height: auto;
    padding: 18px;
  }

  .product-config-media img {
    min-height: 280px;
    max-height: 360px;
  }

  .config-grid {
    grid-template-columns: 1fr;
  }

  .account-panel,
  .backoffice-panel {
    width: 100%;
  }

  .quote-visual {
    min-height: 420px;
  }

  .backoffice-layout,
  .admin-settings,
  .admin-stats,
  .admin-detail-grid,
  .sync-console-flow {
    grid-template-columns: 1fr;
  }

  .admin-detail-head,
  .admin-detail-lines article {
    flex-direction: column;
  }

  .admin-detail-head b,
  .admin-detail-lines b {
    text-align: left;
  }

  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .section-head-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .business-section,
  .showcase-board {
    grid-template-columns: 1fr;
  }

  .showcase-board article {
    min-height: auto;
  }

  .showcase-board img {
    height: 210px;
  }

  .business-visual-card .business-panel {
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

.site-footer a,
  .showcase-board span {
    text-align: left;
  }

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

/* Final premium homepage overrides */
.top-strip {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 4px solid var(--yellow);
  box-shadow: 0 14px 44px rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(14px);
}

.header-main {
  grid-template-columns: 176px minmax(280px, 650px) auto;
  gap: 16px;
  padding: 12px clamp(18px, 5vw, 76px) 9px;
}

.brand img {
  width: 162px;
  height: auto;
}

.site-search {
  min-height: 54px;
  grid-template-columns: 1fr 52px;
  background: #f7f3ea;
  border: 1px solid rgba(17, 18, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-search input {
  padding: 0 22px;
  font-weight: 850;
}

.site-search span {
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 0 999px 999px 0;
}

.site-search span::before {
  font-size: 1.35rem;
}

.header-actions {
  gap: 8px;
}

.whatsapp-cta,
.quote-cta,
.account-button,
.backoffice-button,
.cart-button {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 850;
  box-shadow: none;
}

.whatsapp-cta,
.account-button,
.cart-button {
  color: var(--black);
  background: #f7f3ea;
  border: 1px solid rgba(17, 18, 20, 0.1);
}

.quote-cta {
  background: var(--red);
}

.cart-button span {
  display: none;
}

.cart-button strong {
  min-width: 24px;
  height: 24px;
}

.main-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 76px) 11px;
  color: rgba(17, 18, 20, 0.72);
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 850;
}

.nav-primary,
.nav-service {
  gap: 8px;
}

.main-nav a {
  min-height: auto;
  padding: 8px 12px;
  color: rgba(17, 18, 20, 0.78);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav .nav-featured {
  color: var(--black);
  background: var(--yellow-soft);
}

.nav-featured small {
  display: none;
}

.mega-menu {
  top: calc(100% - 4px);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 26px 70px rgba(17, 18, 20, 0.16);
}

.hero {
  min-height: clamp(680px, calc(100vh - 112px), 820px);
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(420px, 0.52fr);
  align-items: center;
  padding: clamp(56px, 6vw, 84px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 12% 26%, rgba(255, 211, 65, 0.24), transparent 26%),
    linear-gradient(90deg, #fff8e6 0%, #fff3d0 42%, #f1e5cf 100%);
  isolation: isolate;
}

.hero::before {
  display: none;
}

.hero::after {
  height: 7px;
  background: linear-gradient(90deg, var(--yellow) 0 46%, var(--red) 46% 62%, var(--black) 62%);
  z-index: 2;
}

.hero-bg,
.hero-bg span,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  overflow: hidden;
}

.hero-bg span {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  animation: hero-bg-fade 18s infinite;
}

.hero-bg span:nth-child(1) {
  background-image: url("assets/digislam/hero-slide-warm-lab-v2.png");
}

.hero-bg span:nth-child(2) {
  background-image: url("assets/digislam/hero-slide-tech-workflow-v2.png");
  animation-delay: 6s;
}

.hero-bg span:nth-child(3) {
  background-image: url("assets/digislam/hero-slide-bright-kit-v2.png");
  animation-delay: 12s;
}

.hero-bg::after {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 249, 235, 0.98) 0%, rgba(255, 249, 235, 0.9) 30%, rgba(255, 249, 235, 0.42) 49%, rgba(255, 249, 235, 0.08) 67%),
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.74) 0 6%, transparent 18%),
    radial-gradient(circle at 24% 58%, rgba(255, 211, 65, 0.26) 0 5%, transparent 19%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.02), rgba(17, 18, 20, 0.06));
  pointer-events: none;
}

.hero-carousel {
  width: min(640px, 100%);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.hero-track {
  display: flex;
  animation: hero-slide 18s infinite;
}

.hero-copy {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(3rem, 4.65vw, 5rem);
  line-height: 0.98;
  font-weight: 850;
}

.hero-text {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(17, 18, 20, 0.72);
  font-size: 1.12rem;
  font-weight: 720;
  line-height: 1.5;
}

.hero-actions {
  gap: 10px;
  margin-top: 28px;
}

.hero .button {
  border-radius: 8px;
  font-weight: 850;
}

.hero-proof {
  gap: 10px;
  margin-top: 22px;
}

.hero-proof div {
  padding: 9px 13px;
  color: rgba(17, 18, 20, 0.78);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-proof div::before {
  content: none;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.hero-dots span {
  display: block;
  width: 38px;
  height: 4px;
  background: rgba(17, 18, 20, 0.18);
  border-radius: 999px;
}

.hero-dots span:nth-child(1) {
  animation: hero-dot-one 18s infinite;
}

.hero-dots span:nth-child(2) {
  animation: hero-dot-two 18s infinite;
}

.hero-dots span:nth-child(3) {
  animation: hero-dot-three 18s infinite;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.9)),
    url("assets/digislam/hero-slide-tech-workflow-v2.png") center / cover;
  border-top: 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--yellow) 0 46%, var(--red) 46% 62%, var(--black) 62%);
}

.footer-main {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 211, 65, 0.12), transparent 22%),
    rgba(17, 18, 20, 0.78);
  backdrop-filter: blur(10px);
}

.footer-brand img {
  width: 218px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  border-left-color: var(--yellow);
}

.footer-links h3,
.footer-newsletter h3,
.footer-badge span {
  font-weight: 900;
  letter-spacing: 0.03em;
}

.footer-social a {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

@keyframes hero-bg-fade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1);
  }

  34%,
  100% {
    opacity: 0;
    transform: scale(1.035);
  }
}

@keyframes hero-slide {
  0%,
  27% {
    transform: translateX(0);
  }

  33%,
  60% {
    transform: translateX(-100%);
  }

  66%,
  94% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hero-dot-one {
  0%,
  30% {
    background: var(--yellow);
  }

  34%,
  100% {
    background: rgba(17, 18, 20, 0.18);
  }
}

@keyframes hero-dot-two {
  0%,
  30%,
  64%,
  100% {
    background: rgba(17, 18, 20, 0.18);
  }

  34%,
  60% {
    background: var(--yellow);
  }
}

@keyframes hero-dot-three {
  0%,
  64%,
  100% {
    background: rgba(17, 18, 20, 0.18);
  }

  68%,
  94% {
    background: var(--yellow);
  }
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 158px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .main-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-service {
    justify-content: flex-start;
  }

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

  .hero-carousel {
    width: min(680px, 78vw);
  }
}

@media (max-width: 760px) {
  .header-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 18px 8px;
  }

  .brand {
    flex: 1 1 132px;
  }

  .brand img {
    width: 132px;
  }

  .site-search {
    order: 3;
    flex: 1 0 100%;
    min-height: 46px;
  }

  .site-search span {
    width: 46px;
    height: 46px;
  }

  .whatsapp-cta,
  .account-button,
  .backoffice-button {
    display: none;
  }

  .quote-cta,
  .cart-button {
    min-height: 38px;
    padding: 0 12px;
  }

  .main-nav {
    display: block;
    padding: 6px 18px 8px;
    overflow-x: auto;
  }

  .nav-primary {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .nav-primary a:nth-child(n+5),
  .nav-service,
  .mega-menu {
    display: none;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 690px;
    padding: 34px 18px 44px;
  }

  .hero-bg span {
    background-position: 58% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 249, 235, 0.98) 0%, rgba(255, 249, 235, 0.88) 38%, rgba(255, 249, 235, 0.28) 72%, rgba(17, 18, 20, 0.16) 100%),
      radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.74) 0 8%, transparent 22%);
  }

  .hero-carousel {
    width: 100%;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    line-height: 1;
  }

  .hero-text {
    max-width: 340px;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 8px;
  }

  .hero .button {
    min-height: 46px;
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .hero-proof {
    max-width: 340px;
  }

  .hero-proof div {
    font-size: 0.78rem;
  }
}

/* Homepage continuity polish */
.category-rail {
  max-width: 1240px;
  margin-top: -34px;
}

.category-rail a {
  min-height: 144px;
  gap: 10px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 18px 44px rgba(70, 45, 10, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-rail a:hover {
  transform: translateY(-3px);
  background: #fffdf6;
  box-shadow: 0 24px 56px rgba(70, 45, 10, 0.14);
}

.category-rail strong {
  color: var(--black);
  font-size: 0.92rem;
  line-height: 1.08;
}

.category-rail span {
  width: 112px;
  height: 74px;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, #fff6c8, #f0dd9d);
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 12px 26px rgba(70, 45, 10, 0.12);
  transform: scale(0.88);
  transform-origin: center;
}

.commerce-strip {
  padding-top: 34px;
  padding-bottom: 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.84), rgba(255, 255, 255, 0.68));
}

.commerce-strip article {
  min-height: 118px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 240, 0.86));
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 14px 34px rgba(70, 45, 10, 0.07);
}

.commerce-strip strong {
  color: var(--black);
}

.strip-icon {
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    var(--yellow);
}

.sales-band {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 211, 65, 0.14), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(201, 24, 40, 0.18), transparent 24%),
    linear-gradient(112deg, #111214 0%, #171719 52%, #271316 100%);
}

.sales-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-copy h2 {
  font-weight: 850;
}

.sales-cards {
  align-content: center;
}

.sales-cards article {
  min-height: 184px;
  grid-template-columns: 156px 1fr;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sales-cards img {
  min-height: 184px;
  filter: saturate(1.05) contrast(1.03);
}

.sales-cards strong {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.catalog-section {
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 38%, #fffaf0 100%);
}

.section-head-row {
  align-items: end;
}

.section-link {
  border-radius: 999px;
}

.solutions-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 211, 65, 0.16), transparent 26%),
    linear-gradient(180deg, #fffaf0, #ffffff);
}

.solutions-section .section-heading {
  max-width: 760px;
}

.solution-grid {
  gap: 20px;
}

.solution-card {
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 20px 54px rgba(70, 45, 10, 0.12);
}

.solution-card img {
  aspect-ratio: 16 / 10;
}

.solution-card > div {
  padding: 24px 24px 2px;
}

.solution-card h3 {
  font-weight: 850;
}

.solution-card p {
  max-width: 360px;
}

.gift-kit {
  background:
    linear-gradient(180deg, #ffffff, #fff8e6);
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.process-intro {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(70, 45, 10, 0.08);
}

.process-intro img {
  border-color: rgba(17, 18, 20, 0.08);
}

.steps {
  counter-reset: process;
}

.steps article {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.9));
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 14px 34px rgba(70, 45, 10, 0.07);
  position: relative;
}

.steps article::after {
  content: "";
  position: absolute;
  left: 66px;
  right: -24px;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 211, 65, 0.74), rgba(201, 24, 40, 0.12));
}

.steps article:last-child::after {
  display: none;
}

.steps span {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(255, 211, 65, 0.24);
}

.business-section,
.showcase-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.business-section h2,
.showcase-section h2 {
  font-weight: 850;
}

.showcase-section {
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 211, 65, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(17, 18, 20, 0.96) 0%, rgba(17, 18, 20, 0.9) 52%, rgba(36, 19, 22, 0.86) 100%),
    url("assets/digislam/hero-slide-bright-kit-v2.png") center / cover;
}

.showcase-board article {
  min-height: 460px;
  border-color: rgba(255, 255, 255, 0.2);
}

.showcase-board img {
  height: 190px;
}

.trust-section {
  background:
    linear-gradient(180deg, #fffaf0, #ffffff);
}

.trust-grid article {
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
  border-color: rgba(17, 18, 20, 0.08);
}

@media (max-width: 1180px) {
  .category-rail {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }

  .category-rail a,
  .category-rail a:first-child,
  .category-rail a:last-child {
    border-radius: 8px;
    border: 1px solid rgba(17, 18, 20, 0.08);
  }

  .commerce-strip,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps article::after {
    display: none;
  }
}

@media (max-width: 760px) {
  #top,
  section[id],
  #contatti {
    scroll-margin-top: 178px;
  }

  .category-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px 18px 10px;
    scroll-snap-type: x mandatory;
  }

  .category-rail a {
    min-width: 138px;
    min-height: 132px;
    scroll-snap-align: start;
  }

  .category-rail span {
    width: 96px;
    height: 66px;
  }

  .commerce-strip,
  .sales-cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .commerce-strip {
    padding-top: 18px;
  }

  .catalog-section,
  .solutions-section,
  .process-section,
  .business-section,
  .showcase-section,
  .sales-band,
  .trust-section,
  .quote-section,
  .track-section,
  .faq-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.02;
  }

  .sales-band {
    padding: 42px 18px;
  }

  .sales-visual {
    min-height: 540px;
  }

  .sales-copy {
    padding: 22px;
  }

  .sales-cards article {
    grid-template-columns: 112px 1fr;
    min-height: 152px;
  }

  .sales-cards img {
    min-height: 152px;
  }

  .process-intro {
    padding: 12px;
  }

  .showcase-board article {
    min-height: auto;
  }
}

/* Catalog and product sheet polish */
.catalog-section {
  position: relative;
}

.catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 211, 65, 0.12), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(201, 24, 40, 0.06), transparent 22%);
}

.catalog-section > * {
  position: relative;
  z-index: 1;
}

.toolbar {
  align-items: end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(70, 45, 10, 0.06);
}

.search-field input {
  min-height: 48px;
  background: #fffdf8;
}

.category-tabs button {
  min-height: 40px;
  padding: 0 14px;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  justify-content: stretch;
  gap: 22px;
}

.product-card {
  width: 100%;
  min-height: 620px;
  grid-template-rows: 246px minmax(374px, 1fr);
  border-color: rgba(17, 18, 20, 0.08);
  box-shadow: 0 16px 42px rgba(70, 45, 10, 0.09);
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: 0 26px 66px rgba(70, 45, 10, 0.16);
}

.product-art {
  min-height: 246px;
  padding: 18px;
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at 58% 58%, rgba(255, 211, 65, 0.26), transparent 38%),
    linear-gradient(155deg, #fffaf0, #f0ddbd);
}

.product-art::after {
  left: 18px;
  top: 18px;
  padding: 7px 11px;
  letter-spacing: 0.03em;
}

.product-photo {
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(70, 45, 10, 0.18);
}

.product-body {
  grid-template-rows: auto auto minmax(58px, 58px) minmax(54px, 54px) minmax(58px, 58px) auto auto;
  gap: 11px;
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.08;
}

.product-category {
  letter-spacing: 0.04em;
}

.product-description {
  min-height: 58px;
  font-size: 0.9rem;
  line-height: 1.42;
}

.product-tags span {
  background: #fff5c7;
}

.product-promise span {
  background:
    linear-gradient(180deg, #fffdf8, #fff8e6);
  border-color: rgba(17, 18, 20, 0.08);
}

.product-meta {
  padding-top: 4px;
  border-top: 1px solid rgba(17, 18, 20, 0.06);
}

.product-meta strong {
  font-size: 1.32rem;
  letter-spacing: 0;
}

.product-meta span {
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 1000;
}

.product-controls select,
.product-controls input {
  min-height: 42px;
  background: #fffdf8;
}

.add-to-cart {
  min-height: 48px;
  border-color: rgba(17, 18, 20, 0.82);
  box-shadow: 0 12px 26px rgba(255, 211, 65, 0.22);
}

.product-config-drawer {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 211, 65, 0.18), transparent 24%),
    rgba(17, 18, 20, 0.72);
  backdrop-filter: blur(10px);
}

.product-config-panel {
  width: min(1180px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.product-config-media {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.68), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(201, 24, 40, 0.12), transparent 32%),
    linear-gradient(145deg, #fffaf0, #efdbb8);
}

.product-config-media img {
  min-height: 450px;
  object-position: center;
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.product-config-form {
  gap: 16px;
}

.product-config-form h2 {
  font-weight: 850;
}

.product-config-description {
  font-weight: 720;
}

.config-flow {
  padding: 10px;
  background: #fffdf8;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 8px;
}

.config-flow span {
  background: #ffffff;
  border-color: rgba(17, 18, 20, 0.08);
}

.config-advice article {
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
  border-color: rgba(17, 18, 20, 0.08);
}

.config-price,
.config-summary {
  border-color: rgba(17, 18, 20, 0.1);
  box-shadow: 0 12px 28px rgba(255, 211, 65, 0.16);
}

.config-summary {
  position: sticky;
  bottom: 0;
  z-index: 2;
}

.config-grid label {
  padding: 10px;
  background: #fffdf8;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 8px;
}

.config-grid input,
.config-grid select,
.config-grid textarea {
  background: #ffffff;
}

.product-config-form > .button.primary {
  min-height: 52px;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(255, 211, 65, 0.24);
}

.cart-panel {
  border-left: 1px solid rgba(17, 18, 20, 0.08);
}

.cart-head h2,
.checkout-form h3 {
  color: var(--black);
  font-weight: 850;
}

.cart-row {
  gap: 14px;
}

.cart-row img {
  box-shadow: 0 10px 22px rgba(70, 45, 10, 0.12);
}

.checkout-summary article {
  background:
    linear-gradient(180deg, #ffffff, #fffaf0);
  border-color: rgba(17, 18, 20, 0.08);
}

.checkout-assurance span {
  background:
    linear-gradient(180deg, var(--yellow-soft), #fff9dd);
}

@media (max-width: 760px) {
  .toolbar {
    padding: 12px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .product-card {
    min-height: auto;
    grid-template-rows: 252px auto;
  }

  .product-body {
    grid-template-rows: auto auto auto auto auto auto auto;
  }

  .product-config-form {
    padding-bottom: 22px;
  }

  .product-config-media {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 18px;
  }

  .product-config-media img {
    min-height: 260px;
    max-height: 320px;
  }

  .config-flow,
  .config-advice,
  .checkout-summary,
  .checkout-assurance {
    grid-template-columns: 1fr;
  }

  .config-summary {
    position: static;
  }
}

.maintenance-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.92), rgba(17, 18, 20, 0.62)),
    url("assets/digislam/hero-premium-full-v1.png") center / cover no-repeat;
  color: #fff;
}

.maintenance-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.maintenance-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  border-radius: 8px;
  border-left: 7px solid var(--yellow);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.maintenance-card img {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 34px;
}

.maintenance-card h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.maintenance-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #4d5058;
  font-size: 1.08rem;
  line-height: 1.6;
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.maintenance-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  font-weight: 850;
}

.maintenance-actions a:first-child {
  background: var(--yellow);
  color: var(--black);
}

.maintenance-card small {
  color: #6a6d73;
  font-weight: 750;
}
