﻿.st-pf {
  --accent: #ff8c00;
  --accent-2: #ffb347;
  --accent-deep: #e06d00;
  --ink: #f6f3ee;
  --ink-soft: #a4a4a4;
  --line: rgba(255,255,255,.08);
  --surface: #111111;
  --surface-2: #171717;
  --shadow: 0 18px 44px rgba(0,0,0,.34);
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 18px;
  --r-sm: 14px;
  --font: 'Roboto', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 48px;
  background: #050505;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

.st-pf * {
  box-sizing: border-box;
}

/* â”€â”€ Gallery Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.st-pf-gallery-strip {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,140,0,.12);
  background: #0d0d0d;
}

.st-pf-gallery-strip::before,
.st-pf-gallery-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.st-pf-gallery-strip::before {
  left: 0;
  background: linear-gradient(90deg, #0d0d0d 0%, transparent 100%);
}

.st-pf-gallery-strip::after {
  right: 0;
  background: linear-gradient(270deg, #0d0d0d 0%, transparent 100%);
}

.st-pf-gs-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 14px 14px;
  animation: st-gs-scroll 60s linear infinite;
  will-change: transform;
  width: max-content;
}

.st-pf-gallery-strip:hover .st-pf-gs-track,
.st-pf-gallery-strip:focus-within .st-pf-gs-track {
  animation-play-state: paused;
}

@keyframes st-gs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.st-pf-gs-item {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 220px;
  height: 272px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-decoration: none;
}

.st-pf-gs-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,140,0,.32);
  box-shadow: 0 18px 36px rgba(0,0,0,.4);
}

.st-pf-gs-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.st-pf-gs-item:hover img {
  transform: scale(1.06);
}

.st-pf-gs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.86) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.st-pf-gs-cat {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,140,0,.85);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.st-pf-gs-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.st-pf-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .92fr);
  gap: 28px;
  padding: 34px 36px 30px;
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,140,0,.18);
  background:
    radial-gradient(circle at top right, rgba(255,140,0,.14), transparent 38%),
    linear-gradient(180deg, #0d0d0d 0%, #121212 100%);
  box-shadow: var(--shadow);
}

.st-pf-hero::after {
  content: '';
  position: absolute;
  right: -74px;
  bottom: -74px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,.14), transparent 70%);
  pointer-events: none;
}

.st-pf-hero[style*="--hero-bg"] {
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.78) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.st-pf-hero-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,.10), transparent 66%);
  pointer-events: none;
}

.st-pf-hero-copy,
.st-pf-hero-aside {
  position: relative;
  z-index: 1;
}

.st-pf-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px 30px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.st-pf-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,140,0,.24);
  background: rgba(255,140,0,.12);
  color: #a85c08;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.st-pf-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acc, #ff8c00);
  flex-shrink: 0;
}

.st-pf-hero-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 900;
  color: #18120c;
}

.st-pf-hero-accent {
  color: var(--acc, #ff8c00);
}

.st-pf-hero-divider {
  width: 74px;
  height: 3px;
  margin: 16px 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acc, #ff8c00), var(--accent-2));
}

.st-pf-hero-sub {
  margin: 0 0 22px;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #4d433b;
}

.st-pf-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.st-pf-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24,18,12,.08);
  background: rgba(255,255,255,.78);
  color: #362d26;
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
}

.st-pf-trust-chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--acc, #ff8c00);
  flex-shrink: 0;
}

.st-pf-badge-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,140,0,.34);
  background: #fff7ec;
  color: #9b5106;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}

.st-pf-badge-cta:hover {
  transform: translateY(-1px);
  background: #fff0d8;
  border-color: var(--acc, #ff8c00);
  box-shadow: 0 10px 24px rgba(255,140,0,.2);
}

.st-pf-badge-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.st-pf-badge-arr {
  opacity: .7;
}

.st-pf-cat-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid rgba(224,109,0,.18);
  background: linear-gradient(180deg, #fff9f1 0%, #f4e8d9 100%);
  box-shadow: 0 18px 32px rgba(0,0,0,.18);
  overflow: hidden;
}

.st-pf-cat-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(224,109,0,.12);
  background: rgba(255,255,255,.35);
  color: #7b4305;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.st-pf-cat-preview-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.st-pf-cat-preview-note {
  color: rgba(123,67,5,.62);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.st-pf-cat-preview-line {
  flex: 1;
  max-width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acc, #ff8c00), #f8bf63);
}

.st-pf-cat-preview-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-pf-cpc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 9px;
  width: 100%;
  border: none;
  padding: 16px;
  background: transparent;
  color: #1f1710;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.st-pf-cpc-visuals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.st-pf-cpc:hover {
  background: rgba(224,109,0,.08);
  transform: translateY(-1px);
}

.st-pf-cpc:nth-child(odd) {
  border-right: 1px solid rgba(224,109,0,.12);
}

.st-pf-cpc:nth-child(-n+2) {
  border-bottom: 1px solid rgba(224,109,0,.12);
}

.st-pf-cpc-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.st-pf-cpc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(224,109,0,.10);
  color: #8e4c07;
  font-size: .72rem;
  font-weight: 700;
}

.st-pf-cpc-badge--solid {
  background: #ffedd3;
  color: #8a4700;
  border-color: rgba(224,109,0,.18);
}

.st-pf-cpc-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(224,109,0,.16);
  color: #9d5205;
  flex-shrink: 0;
}

.st-pf-cpc-ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.st-pf-cpc-name {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.18;
  color: #1f1710;
}

.st-pf-cpc-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 2.75em;
  color: rgba(31,23,16,.68);
  font-size: .76rem;
  line-height: 1.38;
}

.st-pf-cpc-previews {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 2px;
  flex: 1 1 auto;
}

.st-pf-cpc-thumb {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.8);
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
  background: #fff;
  flex-shrink: 0;
}

.st-pf-cpc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.st-pf-cpc-thumb--empty {
  background: linear-gradient(135deg, #fff4e2, #f1dcc3);
}

.st-pf-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  margin-bottom: 20px;
  padding: 1px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.44);
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  overflow: hidden;
}

.st-pf-sb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255,255,255,.96);
  transition: background .2s;
}

.st-pf-sb-item:hover {
  background: #fff6ea;
}

.st-pf-sb-item strong {
  flex-shrink: 0;
  color: #17120b;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.st-pf-sb-item span {
  color: #5f554d;
  font-size: .82rem;
  line-height: 1.35;
}

.st-pf-sb-item--cta {
  background: linear-gradient(135deg, #fff1dd, #ffe6c1);
}

.st-pf-sb-item--cta svg {
  width: 20px;
  height: 20px;
  stroke: #ffbc61;
  flex-shrink: 0;
}

.st-pf-sb-item--cta span {
  color: #ffd29d;
  font-weight: 700;
}

.st-pf-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 0 0 16px;
  flex-wrap: wrap;
}

.st-pf-tb-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  transition: border-color .2s, box-shadow .2s;
}

.st-pf-tb-search:focus-within {
  border-color: rgba(255,140,0,.72);
  box-shadow: 0 0 0 5px rgba(255,140,0,.08);
}

.st-pf-tb-search > svg {
  width: 16px;
  height: 16px;
  color: #e39a3f;
  flex-shrink: 0;
}

.st-pf-tb-search input {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  outline: none;
  color: #1d1610;
  font-size: .95rem;
  font-family: var(--font);
}

.st-pf-tb-search input::placeholder {
  color: #8b8177;
}

.st-pf-tb-search button {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s;
}

.st-pf-tb-search button svg {
  width: 14px;
  height: 14px;
  color: #8b8177;
}

.st-pf-tb-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.st-pf-tb-count {
  color: #e8dfd6;
  font-size: .85rem;
  white-space: nowrap;
}

.st-pf-tb-count strong {
  color: #fff;
}

.st-pf-tb-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: #6d6259;
}

.st-pf-tb-sort svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.st-pf-tb-sort select {
  background: none;
  border: none;
  outline: none;
  color: #1d1610;
  font-size: .85rem;
  font-family: var(--font);
  cursor: pointer;
}

.st-pf-layout {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0 0 4rem;
}

.st-pf-sidebar {
  position: sticky;
  top: calc(var(--admin-bar-height, 0px) + 96px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 2px;
}

.st-pf-cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 10px 4px 8px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  color: #7d7369;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.st-pf-cat-tile::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 3px;
  height: 62%;
  border-radius: 999px;
  background: var(--acc, #ff8c00);
  transform: translateY(-50%) scaleY(0);
  transition: transform .2s ease;
}

.st-pf-cat-tile:hover {
  background: #fff5e7;
  color: #3a2f25;
}

.st-pf-cat-tile.active {
  background: #fff1dc;
  color: #2f241b;
}

.st-pf-cat-tile.active::after {
  transform: translateY(-50%) scaleY(1);
}

.st-pf-ct-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  color: currentColor;
  transition: background .18s, color .18s, box-shadow .18s;
}

.st-pf-ct-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.st-pf-cat-tile.active .st-pf-ct-icon {
  background: var(--acc, #ff8c00);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255,140,0,.2);
}

.st-pf-ct-name {
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.st-pf-cat-tile em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,140,0,.10);
  color: #8d4900;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.st-pf-cat-tile.active em {
  background: rgba(255,140,0,.16);
  color: #7a4100;
}

.st-pf-main {
  min-width: 0;
}

/* â”€â”€ GRIGLIA BENTO â€” unica definizione pulita â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Stato "all":  3 colonne, ciclo di 3: grande(2col) + piccola + piccola
   Stato "cat":  3 colonne uniformi, tutte uguali
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.st-pf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.st-pf-item {
  position: relative;
  min-width: 0;
  grid-column: span 1;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

/* Stato ALL: bento alternato â€” 1 grande + 2 piccole */
.st-pf[data-layout-state="all"] .st-pf-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.st-pf[data-layout-state="all"] .st-pf-item:nth-child(3n+1) {
  grid-column: span 2;
  height: 360px;
}
.st-pf[data-layout-state="all"] .st-pf-item:nth-child(3n+2),
.st-pf[data-layout-state="all"] .st-pf-item:nth-child(3n+3) {
  grid-column: span 1;
  height: 360px;
}

/* Stato CATEGORY: 3 colonne uniformi, tutte uguali */
.st-pf[data-layout-state="category"] .st-pf-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.st-pf[data-layout-state="category"] .st-pf-item {
  grid-column: span 1;
  height: 320px;
}

.st-pf-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,140,0,.26);
  box-shadow: 0 24px 42px rgba(0,0,0,.34);
}

.st-pf-item:hover .st-pf-cbg {
  transform: scale(1.06);
}

.st-pf-cbg,
.st-pf-cov,
.st-pf-clink {
  position: absolute;
  inset: 0;
}

.st-pf-cbg {
  background:
    linear-gradient(135deg, rgba(255,140,0,.22), rgba(255,179,71,.10)),
    linear-gradient(180deg, #282828 0%, #181818 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.st-pf-cov {
  background:
    linear-gradient(180deg, rgba(8,8,8,.08) 0%, rgba(8,8,8,.44) 44%, rgba(8,8,8,.92) 100%);
}

.st-pf-card-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.st-pf-card-open span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #7d4300;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transition: opacity .22s ease, transform .22s ease;
}

.st-pf-cbody {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  gap: 12px;
  padding: 22px;
}

.st-pf-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.st-pf-mobile-hint {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  align-self: center;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #8a4700;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
  transform: translate(-50%, calc(-50% + 10px));
  opacity: 0;
  z-index: 3;
}

.st-pf-card-kicker {
  display: block;
  margin-bottom: 4px;
  color: #ffd39a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.st-pf-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: #fff;
  font-size: 1.26rem;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 900;
}

.st-pf-card-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.5;
}

.st-pf-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-pf-card-meta--top {
  justify-content: flex-start;
}

.st-pf-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.30);
  color: #2a2119;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.2;
}

.st-pf-card-pill--soft {
  color: #9d5408;
  background: #fff1dc;
  border-color: rgba(255,140,0,.18);
}

.st-pf-card-pill span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.st-pf-item:hover .st-pf-cov,
.st-pf-item--armed .st-pf-cov {
  background: linear-gradient(180deg, rgba(7,7,7,.24) 0%, rgba(7,7,7,.62) 44%, rgba(7,7,7,.92) 100%);
}

.st-pf-item:hover .st-pf-card-open span,
.st-pf-item--armed .st-pf-card-open span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.st-pf[data-layout-state="all"] .st-pf-card-meta,
.st-pf[data-layout-state="all"] .st-pf-card-kicker,
.st-pf[data-layout-state="all"] .st-pf-card-desc {
  display: flex;
}

.st-pf[data-layout-state="category"] .st-pf-cbody {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.st-pf-empty,
.st-pf-no-results {
  padding: 48px 24px;
  text-align: center;
  color: #bdbdbd;
  font-size: .95rem;
}

.st-pf-empty a {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,140,0,.24);
  background: rgba(255,140,0,.12);
  color: #ffd29d;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.st-pf-cta {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 44px 36px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,140,0,.16);
  background:
    radial-gradient(circle at bottom left, rgba(255,140,0,.12), transparent 40%),
    linear-gradient(135deg, #0d0d0d 0%, #111111 60%, #0d0d0d 100%);
  box-shadow: var(--shadow);
}

.st-pf-cta::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,.12), transparent 65%);
  pointer-events: none;
}

.st-pf-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.st-pf-cta-ey {
  margin: 0 0 8px;
  color: var(--acc, #ff8c00);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.st-pf-cta-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.st-pf-cta-title em {
  font-style: normal;
  color: var(--acc, #ff8c00);
}

.st-pf-cta-sub,
.st-pf-cta-note {
  margin: 0;
  color: #b0b0b0;
  font-size: .9rem;
}

.st-pf-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.st-pf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acc, #ff8c00), var(--accent-2));
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255,140,0,.28);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.st-pf-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255,140,0,.34);
}

.st-pf-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .st-pf[data-layout-state="all"] .st-pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-pf[data-layout-state="all"] .st-pf-item,
  .st-pf[data-layout-state="all"] .st-pf-item:nth-child(n) {
    grid-column: span 1;
    height: 290px;
  }

  .st-pf-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .st-pf-sb-item--cta {
    grid-column: span 3;
  }
}

@media (max-width: 960px) {
  .st-pf-hero {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .st-pf-hero-gallery-col {
    display: none;
  }

  .st-pf-cat-preview {
    height: auto;
  }

  .st-pf-cpc {
    padding: 15px 14px;
  }

  .st-pf-cpc-visuals {
    align-items: flex-start;
  }

  .st-pf-hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .st-pf-layout {
    grid-template-columns: 1fr;
    gap: .9rem;
    padding-bottom: 3rem;
  }

  .st-pf-sidebar {
    position: static;
    flex-direction: row;
    gap: 8px;
    padding: 0 0 8px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .st-pf-sidebar::-webkit-scrollbar {
    display: none;
  }

  .st-pf-cat-tile {
    width: auto;
    min-width: 134px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 12px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.18);
  }

  .st-pf-cat-tile::after {
    display: none;
  }

  .st-pf-ct-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .st-pf-ct-icon svg {
    width: 16px;
    height: 16px;
  }

  .st-pf-ct-name {
    max-width: none;
    white-space: normal;
    text-align: left;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
  }

  .st-pf-cat-tile em {
    margin-left: auto;
  }

  .st-pf[data-layout-state="all"] .st-pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-pf[data-layout-state="all"] .st-pf-item,
  .st-pf[data-layout-state="all"] .st-pf-item:nth-child(n) {
    grid-column: span 1;
    height: 252px;
  }

  .st-pf[data-layout-state="category"] .st-pf-item {
    height: 238px;
  }
}

@media (max-width: 700px) {
  .st-pf-stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-pf-sb-item--cta {
    grid-column: span 2;
  }

  .st-pf-grid {
    gap: 14px;
  }

  .st-pf-item {
    height: 292px;
  }
}

@media (max-width: 640px) {
  .st-pf {
    padding: 16px 14px 36px;
  }

  .st-pf-hero {
    padding: 22px 16px;
    gap: 18px;
  }

  .st-pf-hero-aside {
    display: none;
  }

  /* Gallery strip su mobile: card piÃ¹ alte e portrait */
  .st-pf-gallery-strip {
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .st-pf-gs-track {
    gap: 8px;
    padding: 12px 12px;
    animation-duration: 40s;
  }

  .st-pf-gs-item {
    width: 170px;
    height: 230px;
    border-radius: 14px;
  }

  .st-pf-gs-overlay {
    padding: 28px 10px 10px;
  }

  .st-pf-gs-title {
    font-size: .8rem;
  }

  .st-pf-hero-copy {
    align-items: center;
    text-align: center;
    padding: 24px 18px 22px;
  }

  .st-pf-hero-eyebrow,
  .st-pf-badge-cta {
    align-self: center;
  }

  .st-pf-badge-cta {
    width: 96%;
    justify-content: center;
    border: none;
    box-shadow: none;
  }

  .st-pf-hero-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .st-pf-hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .st-pf-hero-trust {
    justify-content: center;
  }

  .st-pf-toolbar,
  .st-pf-tb-right {
    width: 100%;
  }

  .st-pf-toolbar {
    justify-content: center;
  }

  .st-pf-tb-search {
    min-width: 0;
  }

  .st-pf-tb-right {
    display: none;
  }

  .st-pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .st-pf-item,
  .st-pf[data-layout-state="all"] .st-pf-item:nth-child(n) {
    height: 238px;
    border-radius: 20px;
    grid-column: span 1;
  }

  .st-pf-cbody {
    align-items: center;
    text-align: center;
    padding: 16px 12px 14px;
    gap: 8px;
  }

  .st-pf-mobile-hint {
    display: inline-flex;
  }

  .st-pf-item--armed .st-pf-mobile-hint {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .st-pf-status {
    position: absolute;
    top: 12px;
    right: 12px;
    align-self: auto;
    padding: 4px 7px;
    font-size: .55rem;
  }

  .st-pf-card-title {
    font-size: .96rem;
    -webkit-line-clamp: 2;
  }

  .st-pf-card-desc {
    display: none;
  }

  .st-pf-card-kicker {
    font-size: .62rem;
    margin-bottom: 2px;
  }

  .st-pf-card-meta {
    justify-content: center;
    gap: 5px;
  }

  .st-pf-card-pill {
    padding: 5px 7px;
    font-size: .62rem;
    max-width: calc(50% - 3px);
  }

  .st-pf-card-pill span {
    -webkit-line-clamp: 1;
  }

  .st-pf-stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }

  .st-pf-sb-item {
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
    gap: 8px;
    flex-direction: column;
  }

  .st-pf-sb-item strong {
    font-size: 1.3rem;
  }

  .st-pf-sb-item span {
    font-size: .7rem;
    line-height: 1.25;
  }

  .st-pf-sb-item--cta {
    grid-column: span 2;
    flex-direction: row;
  }

  .st-pf-sidebar {
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 10px;
  }

  .st-pf-cat-tile {
    min-width: 124px;
    padding: 9px 10px;
  }

  .st-pf-ct-name {
    font-size: 10px;
    line-height: 1.15;
  }

  .st-pf-cat-tile em {
    font-size: 9px;
    padding: 2px 6px;
  }

  .st-pf-empty,
  .st-pf-no-results {
    text-align: center;
  }

  .st-pf[data-layout-state="all"] .st-pf-card-meta,
  .st-pf[data-layout-state="all"] .st-pf-card-kicker,
  .st-pf[data-layout-state="all"] .st-pf-card-desc {
    display: none;
  }

  .st-pf[data-layout-state="category"] .st-pf-grid {
    grid-template-columns: 1fr;
  }

  .st-pf[data-layout-state="category"] .st-pf-item {
    grid-column: span 1;
    height: 224px;
  }

  .st-pf[data-layout-state="category"] .st-pf-cbody {
    align-items: flex-start;
    text-align: left;
  }

  .st-pf[data-layout-state="category"] .st-pf-card-desc {
    display: -webkit-box;
  }

  .st-pf-cta {
    padding: 32px 22px;
  }

  .st-pf-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .st-pf-cta-right {
    align-items: center;
    width: 100%;
  }

  .st-pf-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .st-pf-stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-pf-sb-item--cta {
    grid-column: span 2;
  }

  .st-pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-pf-item,
  .st-pf[data-layout-state="all"] .st-pf-item:nth-child(n) {
    height: 224px;
  }

  .st-pf-card-pill {
    max-width: 100%;
  }
}

/* â”€â”€ Colonna galleria verticale nell'hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.st-pf-hero-gallery-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: #0d0d0d;
}

.st-pf-hgc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.st-pf-hgc-header svg {
  width: 13px;
  height: 13px;
  stroke: #ff8c00;
  flex-shrink: 0;
}

.st-pf-hgc-header span {
  flex: 1;
  color: rgba(255,255,255,.7);
}

.st-pf-hgc-header em {
  font-style: normal;
  background: rgba(255,140,0,.15);
  color: #ff8c00;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
}

.st-pf-hgc-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.st-pf-hgc-track-wrap::before,
.st-pf-hgc-track-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.st-pf-hgc-track-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, #0d0d0d 0%, transparent 100%);
}

.st-pf-hgc-track-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, #0d0d0d 0%, transparent 100%);
}

.st-pf-hgc-track {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  animation: st-hgc-scroll 30s linear infinite;
  will-change: transform;
}

.st-pf-hero-gallery-col:hover .st-pf-hgc-track {
  animation-play-state: paused;
}

@keyframes st-hgc-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.st-pf-hgc-item {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}

.st-pf-hgc-item:hover {
  border-color: rgba(255,140,0,.4);
  transform: scale(1.02);
}

.st-pf-hgc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.st-pf-hgc-item:hover img {
  transform: scale(1.06);
}

.st-pf-hgc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 8px 6px;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .2s;
}

.st-pf-hgc-item:hover .st-pf-hgc-overlay {
  opacity: 1;
}

.st-pf-hgc-overlay span {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* â”€â”€ Riga dedicata "Scopri tutti i servizi" â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.st-pf-services-row {
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,140,0,.2);
  background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
  overflow: hidden;
}

.st-pf-services-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  flex-wrap: wrap;
}

.st-pf-services-row-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.st-pf-services-row-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff8c00;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.st-pf-services-row-eyebrow svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.st-pf-services-row-text strong {
  color: #f0ebe4;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.st-pf-services-row-text span {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  line-height: 1.5;
}

.st-pf-services-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(255,140,0,.28);
  transition: transform .2s, box-shadow .2s;
}

.st-pf-services-row-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,140,0,.36);
}

.st-pf-services-row-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .st-pf-services-row-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 14px;
  }
  .st-pf-services-row-btn {
    width: 100%;
    justify-content: center;
  }
}

/* â”€â”€ Navigatori foto nelle card progetto â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.st-pf-gal-slides {
  position: absolute;
  inset: 0;
}

.st-pf-gal-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease;
  transform: scale(1.02);
}

.st-pf-gal-slide.active {
  opacity: 1;
}

.st-pf-item:hover .st-pf-gal-slide.active {
  transform: scale(1.06);
  transition: opacity .5s ease, transform .35s ease;
}

.st-pf-gal-prev,
.st-pf-gal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s, background .2s;
  padding: 0;
}

.st-pf-item:hover .st-pf-gal-prev,
.st-pf-item:hover .st-pf-gal-next {
  opacity: 1;
}

.st-pf-gal-prev:hover,
.st-pf-gal-next:hover {
  background: rgba(255,140,0,.8);
}

.st-pf-gal-prev { left: 8px; }
.st-pf-gal-next { right: 8px; }

.st-pf-gal-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.85);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.st-pf-item:hover .st-pf-gal-counter {
  opacity: 1;
}

.st-pf-gal-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 4px;
  align-items: center;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.st-pf-item:hover .st-pf-gal-dots {
  opacity: 1;
  pointer-events: auto;
}

.st-pf-gal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .2s, transform .2s;
  pointer-events: auto;
}

.st-pf-gal-dot.active {
  background: #fff;
  transform: scale(1.4);
}
