/*
Theme Name:   AlessioB
Theme URI:    https://www.alessio-b.com
Description:  Child theme per AlessioB — Street Artist
Author:       BEsquare
Template:     astra
Version:      1.0.0
Text Domain:  alessiob
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&display=swap');

/* ── VARIABILI ── */
:root {
  --black:  #0a0a0a;
  --white:  #f5f0e8;
  --yellow: #f5c800;
  --red:    #d42b2b;
  --grey:   #1c1c1c;
}

/* ── RESET BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.3;
}

#ab-grain-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* ── NAVBAR ── */
#masthead,
.ast-header-break-point .main-header-bar {
  background: var(--black) !important;
  border-bottom: 2px solid var(--yellow) !important;
}
.ast-primary-menu-container a,
.ast-header-break-point .main-header-menu a {
  color: var(--white) !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}
.ast-primary-menu-container a:hover {
  color: var(--yellow) !important;
}
.site-title a {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2rem !important;
  color: var(--white) !important;
  letter-spacing: 0.1em;
}

/* ── HERO HOMEPAGE ── */
.ab-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #222;
}

.ab-hero__photo {
  position: relative;
  overflow: hidden;
}
.ab-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.1);
  display: block;
  transition: filter 0.6s ease;
  will-change: transform;
}
.ab-hero__photo:hover img {
  filter: grayscale(0%) contrast(1.15);
}
.ab-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent 55%, var(--black) 100%);
  z-index: 1;
}
.ab-hero__photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--yellow);
  z-index: 2;
}

/* Paint drips sulla barra gialla */
.ab-drip-container {
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}
.ab-drip {
  position: absolute;
  left: 0;
  width: 6px;
  background: var(--yellow);
  border-radius: 0 0 3px 3px;
  transform-origin: top center;
  transform: scaleY(0);
  animation: ab-drip-fall var(--dur) var(--delay) cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
@keyframes ab-drip-fall {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.ab-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  position: relative;
  background: var(--black);
  border-left: 1px solid #222;
}
.ab-hero__tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.ab-hero__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.ab-hero__name span {
  color: var(--yellow);
}
.ab-hero__divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1.5rem 0;
}
.ab-hero__sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 2.5rem;
  max-width: 28rem;
  line-height: 1.6;
}
.ab-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero entry animations */
.ab-hero__tag,
.ab-hero__name,
.ab-hero__divider,
.ab-hero__sub,
.ab-hero__actions,
.ab-hero__social {
  opacity: 0;
  transform: translateY(18px);
}
.ab-hero.is-loaded .ab-hero__tag       { animation: ab-fade-up 0.6s ease 0.15s forwards; }
.ab-hero.is-loaded .ab-hero__name      { animation: ab-fade-up 0.6s ease 0.35s forwards; }
.ab-hero.is-loaded .ab-hero__divider   { animation: ab-fade-up 0.6s ease 0.5s forwards; }
.ab-hero.is-loaded .ab-hero__sub       { animation: ab-fade-up 0.6s ease 0.65s forwards; }
.ab-hero.is-loaded .ab-hero__actions   { animation: ab-fade-up 0.6s ease 0.8s forwards; }
.ab-hero.is-loaded .ab-hero__social    { animation: ab-fade-up 0.6s ease 0.95s forwards; }

@keyframes ab-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Social links in hero */
.ab-hero__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ab-hero__social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  border: 1px solid #2a2a2a;
  padding: 0.75rem 1.2rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.ab-hero__social-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  background: var(--yellow);
  transition: width 0.25s ease;
  z-index: 0;
}
.ab-hero__social-link:hover::before { width: 100%; }
.ab-hero__social-link:hover { color: var(--black); border-color: var(--yellow); }
.ab-hero__social-link svg,
.ab-hero__social-link span { position: relative; z-index: 1; }
.ab-hero__social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.ab-hero__social-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.ab-hero__social-handle {
  font-size: 0.8rem;
  margin-left: auto;
  opacity: 0.6;
}

/* Scroll indicator */
.ab-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  color: rgba(245,240,232,0.4);
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.4s, transform 0.4s;
  padding: 0.5rem;
}
.ab-hero__scroll:hover { color: var(--yellow); }
.ab-hero__scroll.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}
.ab-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: ab-scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes ab-scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.6); opacity: 0.4; }
}
.ab-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ab-btn--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}
.ab-btn--primary:hover {
  background: transparent;
  color: var(--yellow);
}
.ab-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(245,240,232,0.3);
}
.ab-btn--outline:hover {
  border-color: var(--white);
}

.ab-hero__number {
  position: absolute;
  bottom: 2rem;
  right: 5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(245,240,232,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── SEZIONE OPERE ── */
.ab-section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ab-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  padding-bottom: 1.5rem;
}
.ab-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 0;
}
.ab-section__title span { color: var(--yellow); }
.ab-section__link {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
}
.ab-section__link:hover { text-decoration: underline; }

/* ── GRIGLIA PRODOTTI CUSTOM ── */
.ab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ab-card {
  background: var(--grey);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.ab-card:hover { transform: translateY(-4px); }
.ab-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.ab-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ab-card:hover .ab-card__img img { transform: scale(1.05); }
.ab-card__info {
  padding: 1.2rem;
}
.ab-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.ab-card__cat {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ab-card__price {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  margin-top: 0.5rem;
}
.ab-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}

/* ── BIO STRIP ── */
.ab-bio-strip {
  background: var(--grey);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  margin: 2rem 0;
}
.ab-bio-strip__accent {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.ab-bio-strip__accent span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--black);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
}
.ab-bio-strip__text {
  padding: 4rem;
}
.ab-bio-strip__text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.ab-bio-strip__text p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  max-width: 600px;
}

/* ── FORM RICHIESTA ── */
.ab-proof {
  border-top: 1px solid rgba(245,240,232,0.08);
  border-bottom: 1px solid rgba(245,240,232,0.08);
  background: var(--grey);
}
.ab-proof__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.ab-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}
.ab-proof__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  line-height: 1;
}
.ab-proof__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-top: 0.4rem;
}
.ab-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(245,240,232,0.1);
}
.ab-proof__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.2s;
}
.ab-proof__link:hover { opacity: 0.8; }

/* ── SCROLL REVEAL ── */
.ab-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ab-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ab-reveal--delay.is-visible { transition-delay: 0.15s; }

.ab-contact {
  padding: 6rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ab-contact__tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.ab-contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ab-contact h2 span { color: var(--yellow); }
.ab-contact p {
  color: rgba(245,240,232,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

/* ── FOOTER CTA ── */
.ab-footer-cta {
  background: var(--yellow);
  padding: 5rem 4rem;
  text-align: center;
}
.ab-footer-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.ab-footer-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--black);
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  line-height: 0.95;
}
.ab-footer-cta__title span { color: var(--red); }
.ab-footer-cta__sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(10,10,10,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.ab-footer-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ab-footer-cta .ab-btn--primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.ab-footer-cta .ab-btn--primary:hover {
  background: transparent;
  color: var(--black);
}
.ab-footer-cta .ab-btn--outline {
  border-color: var(--black);
  color: var(--black);
}
.ab-footer-cta .ab-btn--outline:hover {
  background: var(--black);
  color: var(--yellow);
}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  background: var(--grey) !important;
  border: 1px solid rgba(245,240,232,0.15) !important;
  color: var(--white) !important;
  padding: 1rem 1.2rem !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.8rem !important;
  border-radius: 0 !important;
  margin-bottom: 1rem;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none !important;
  border-color: var(--yellow) !important;
}
.wpcf7 input[type="submit"] {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  border: none !important;
  transition: background 0.2s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--white) !important;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--grey) !important;
  border-top: 2px solid rgba(245,240,232,0.05);
  padding: 3rem 4rem !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.ast-footer-copyright {
  color: rgba(245,240,232,0.3) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── FOOTER E-COMMERCE (pagamenti, legali, lingue) ── */
.ab-footer-commerce {
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  padding: 1.25rem 2rem 1.5rem;
}
.ab-footer-commerce__row--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ab-footer-commerce__payments {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ab-footer-commerce__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  color: rgba(245, 240, 232, 0.75);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}
.ab-footer-commerce__pay svg {
  width: 40px;
  height: 24px;
}
.ab-footer-commerce__legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ab-footer-commerce__legal-list a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.ab-footer-commerce__legal-list a:hover {
  color: var(--yellow) !important;
}
.ab-lang-switch {
  position: relative;
}
.ab-lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.15);
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  border-radius: 0;
}
.ab-lang-switch__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.35rem);
  min-width: 10rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--grey);
  border: 1px solid rgba(245, 240, 232, 0.12);
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.ab-lang-switch__menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75) !important;
  text-decoration: none;
}
.ab-lang-switch__menu a:hover,
.ab-lang-switch__menu [aria-current="true"] {
  color: var(--yellow) !important;
  background: rgba(255, 255, 255, 0.03);
}
.ab-legal-page__wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.ab-legal h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.ab-legal h2 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--yellow);
}
.ab-legal p,
.ab-legal li {
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}
.ab-legal ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

/* ── POWERED BY DROPCHAIN ── */
.ab-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem 1.75rem;
  background: var(--black);
  border-top: 1px solid rgba(78, 206, 245, 0.12);
}
.ab-powered-by__label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}
.ab-powered-by__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f5f0e8;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(78, 206, 245, 0.2);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.ab-powered-by__brand:hover {
  border-color: rgba(78, 206, 245, 0.55);
  background: linear-gradient(135deg, rgba(10, 31, 60, 0.65) 0%, rgba(21, 101, 192, 0.25) 100%);
  transform: translateY(-1px);
}
.ab-powered-by__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 4px;
}
.ab-powered-by__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  line-height: 1;
  background: linear-gradient(90deg, #4ecef5 0%, #1565c0 55%, #f5f0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ab-powered-by__brand:hover .ab-powered-by__name {
  background: linear-gradient(90deg, #7ddfff 0%, #4ecef5 45%, #f5f0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ab-powered-by__tag {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(78, 206, 245, 0.55);
  border-left: 1px solid rgba(78, 206, 245, 0.25);
  padding-left: 0.65rem;
  margin-left: 0.15rem;
}
@media (max-width: 544px) {
  .ab-powered-by__tag { display: none; }
}

/* ── WooCommerce Override ── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.4rem !important;
  color: var(--white) !important;
}
.woocommerce ul.products li.product {
  background: var(--grey) !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product .price {
  display: none !important;
}
.woocommerce a.button,
.woocommerce button.button {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
}
.woocommerce-page .woocommerce-products-header__title,
.woocommerce .woocommerce-breadcrumb {
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif !important;
}
body.woocommerce,
body.woocommerce-page {
  background: var(--black) !important;
}

/* ── PAGINE INTERNE ── */
.ab-page-hero {
  background: var(--grey);
  border-bottom: 2px solid var(--yellow);
  padding: 5rem 4rem 4rem;
}
.ab-page-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ab-page-hero__tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ab-page-hero__tag::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--yellow);
}
.ab-page-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 1rem;
}
.ab-page-hero__title span { color: var(--yellow); }
.ab-page-hero__sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin: 0;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  max-width: 40rem;
}

.ab-section--narrow { max-width: 900px; }
.ab-prose {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.75);
}
.ab-prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.05em;
}
.ab-prose p { margin: 0 0 1.25rem; }
.ab-prose ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.ab-prose li { margin-bottom: 0.5rem; }
.ab-prose--center { text-align: center; max-width: 640px; margin: 2rem auto 0; }
.ab-page-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}

/* ── GALLERIA STREET ART ── */
.ab-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.ab-gallery__item { margin: 0; }
.ab-gallery__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey);
}
.ab-gallery__img--placeholder {
  background: linear-gradient(135deg, var(--grey) 0%, #2a2a2a 50%, var(--grey) 100%);
  border-left: 3px solid var(--yellow);
}
.ab-gallery__item figcaption {
  padding: 1rem 0 0;
  font-size: 0.8rem;
}
.ab-gallery__cat {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

/* ── TIMELINE MOSTRE ── */
.ab-timeline {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  border-left: 2px solid rgba(245,240,232,0.1);
}
.ab-timeline__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 0 0 2.5rem 2rem;
  position: relative;
}
.ab-timeline__item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}
.ab-timeline__year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.ab-timeline__type {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.ab-timeline__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0.25rem 0;
  letter-spacing: 0.03em;
}
.ab-timeline__place {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  margin: 0;
}

/* ── PRESS GRID ── */
.ab-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.ab-press-card {
  background: var(--grey);
  padding: 1.5rem;
  border-top: 3px solid var(--yellow);
  transition: transform 0.25s ease;
}
.ab-press-card:hover { transform: translateY(-3px); }
.ab-press-card__outlet {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ab-press-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  margin: 0.5rem 0;
  line-height: 1.2;
}
.ab-press-card__title a {
  color: var(--white);
  text-decoration: none;
}
.ab-press-card__title a:hover { color: var(--yellow); }
.ab-press-card__date {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.4);
}
.ab-press-card--featured {
  border-top-color: var(--red);
  background: linear-gradient(135deg, var(--grey) 0%, #252525 100%);
}
.ab-press-card__excerpt {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.55);
  margin: 0.5rem 0 0.75rem;
}
.ab-press-card__type {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}
.ab-press-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.75);
}

/* ── CONTATTI LAYOUT ── */
.ab-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ab-contact-layout__form.ab-contact {
  padding: 0;
  margin: 0;
  text-align: left;
}
.ab-studio {
  font-style: normal;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--grey);
  border-left: 4px solid var(--yellow);
}
.ab-studio h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.ab-studio__line {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.75);
}
.ab-studio__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}
.ab-studio a { color: var(--white); }
.ab-studio a:hover { color: var(--yellow); }
.ab-map-placeholder {
  aspect-ratio: 16/9;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,240,232,0.1);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* ── BLOG ARCHIVE ── */
.ab-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.ab-archive-card {
  background: var(--grey);
  overflow: hidden;
}
.ab-archive-card__img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ab-archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ab-archive-card:hover .ab-archive-card__img img { transform: scale(1.04); }
.ab-archive-card__body { padding: 1.5rem; }
.ab-archive-card__date {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ab-archive-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  line-height: 1.15;
}
.ab-archive-card__title a {
  color: var(--white);
  text-decoration: none;
}
.ab-archive-card__title a:hover { color: var(--yellow); }
.ab-archive-card__excerpt {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin: 0 0 1rem;
}
.ab-pagination {
  margin-top: 3rem;
  text-align: center;
}
.ab-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ab-pagination a,
.ab-pagination span {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grey);
  text-decoration: none;
  border: 1px solid rgba(245,240,232,0.1);
}
.ab-pagination a:hover,
.ab-pagination .current {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ── FOOTER NAV ── */
.ab-footer-nav {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.ab-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
}
.ab-footer-nav__list a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5) !important;
  text-decoration: none;
}
.ab-footer-nav__list a:hover { color: var(--yellow) !important; }

/* ══════════════════════════════════════════
   HOMEPAGE ARTISTICA — alessio-b.com + gallery
══════════════════════════════════════════ */

body.ab-front-home {
  overflow: hidden;
  background: var(--black) !important;
}
body.ab-front-home #page,
body.ab-front-home .site,
body.ab-front-home .site-content,
body.ab-front-home #content,
body.ab-front-home .ast-plain-container,
body.ab-front-home .ast-separate-container,
body.ab-front-home .entry-content {
  background: var(--black) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.ab-front-home.ast-plain-container,
body.ab-front-home .ast-plain-container {
  background: var(--black) !important;
}
body.ab-front-home header,
body.ab-front-home #masthead,
body.ab-front-home .site-header,
body.ab-front-home .main-header-bar-wrap,
body.ab-front-home #ast-desktop-header,
body.ab-front-home #ast-mobile-header,
body.ab-front-home .ast-mobile-header-wrap,
body.ab-front-home .skip-link,
body.ab-front-home .site-footer,
body.ab-front-home .site-below-footer-wrap,
body.ab-front-home .ast-footer-overlay,
body.ab-front-home .ast-footer-copyright,
body.ab-front-home .ast-scroll-top,
body.ab-front-home .ab-powered-by,
body.ab-front-home .ab-footer-commerce {
  display: none !important;
}
body.ab-front-home .ast-container,
body.ab-front-home .site-main {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.ab-modal-open .site-below-footer-wrap,
body.ab-modal-open .ast-footer-copyright,
body.ab-modal-open footer.site-footer {
  display: none !important;
}

#ab-spray-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.85;
}
body.ab-modal-open #ab-spray-canvas {
  display: none;
}

.ab-home {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.ab-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  height: 100dvh;
  position: relative;
  background: var(--black);
}

/* ── GALLERY SIDE ── */
.ab-scene__gallery {
  position: relative;
  overflow: hidden;
}
.ab-scene__gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--yellow);
  z-index: 4;
}
.ab-scene__gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent 50%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}

.ab-scene__artist {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}
.ab-scene__artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.1) brightness(0.35) blur(2px);
  display: block;
  transform: scale(1.05);
}

.ab-gallery-rotator {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 3rem 4rem;
}

.ab-gallery-slide {
  position: absolute;
  inset: 3rem 2.5rem 4rem 3.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}
.ab-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.ab-gallery-slide:not(.is-active) {
  z-index: 0;
}
.ab-gallery-slide.is-broken {
  display: none !important;
}
.ab-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.65));
  transition: transform 0.4s ease;
}
.ab-gallery-slide.is-active:hover img {
  transform: scale(1.015);
}
.ab-gallery-slide__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.5rem;
  background: linear-gradient(transparent, rgba(10,10,10,0.92));
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ab-gallery-slide.is-active:hover .ab-gallery-slide__label,
.ab-gallery-slide.is-active:focus-visible .ab-gallery-slide__label {
  opacity: 1;
  transform: translateY(0);
}
.ab-gallery-slide__cat {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}
.ab-gallery-slide__title {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.ab-gallery-slide__cta {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}

.ab-gallery-ui {
  position: absolute;
  bottom: 1.5rem;
  left: 3.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ab-gallery-ui__hint {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}
.ab-gallery-ui__dots {
  display: flex;
  gap: 0.35rem;
}
.ab-gallery-dot {
  width: 4px;
  height: 4px;
  background: rgba(245,240,232,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.ab-gallery-dot.is-active {
  background: var(--yellow);
  transform: scale(1.4);
}

/* drips homepage */
.ab-drip-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
}
.ab-drip {
  position: absolute;
  left: 0;
  width: 6px;
  background: var(--yellow);
  border-radius: 0 0 3px 3px;
  transform-origin: top center;
  transform: scaleY(0);
  animation: ab-drip-fall var(--dur) var(--delay) cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
@keyframes ab-drip-fall {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── CONTENT SIDE ── */
.ab-scene__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  position: relative;
  border-left: 1px solid #222;
  z-index: 1;
  background: var(--black);
  min-width: 0;
}

.ab-scene__tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1.4rem;
  opacity: 0;
  transform: translateY(18px);
  animation: ab-fade-up 0.6s ease 0.2s forwards;
}

.ab-scene__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 0.3rem;
  opacity: 0;
  transform: translateY(18px);
  animation: ab-fade-up 0.6s ease 0.4s forwards;
}
.ab-scene__name.is-glitching {
  animation: ab-glitch-shake 0.08s infinite;
}
@keyframes ab-glitch-shake {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2px, 1px); }
  40%  { transform: translate(2px, -1px); }
  60%  { transform: translate(-1px, 2px); }
  80%  { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}
.ab-glitch-slice { position: relative; }
.ab-glitch-slice--accent { color: var(--yellow); }
.ab-scene__name.is-glitching .ab-glitch-slice::before,
.ab-scene__name.is-glitching .ab-glitch-slice::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}
.ab-scene__name.is-glitching .ab-glitch-slice::before {
  color: var(--red);
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
  transform: translate(-3px, 0);
}
.ab-scene__name.is-glitching .ab-glitch-slice::after {
  color: #00eaff;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  transform: translate(3px, 0);
}

.ab-scene__divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1.8rem 0;
  opacity: 0;
  animation: ab-fade-up 0.6s ease 0.6s forwards;
}

.ab-scene__wip {
  opacity: 0;
  animation: ab-fade-up 0.6s ease 0.8s forwards;
}
.ab-scene__wip-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.ab-bracket { color: var(--yellow); }

.ab-scene__wip-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  margin: 0.8rem 0 0;
  min-height: 1.4em;
  position: relative;
}
.ab-lang-line {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.ab-lang-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ab-lang-line.is-exit {
  opacity: 0;
  transform: translateY(-8px);
}
.ab-lang-flag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-right: 0.5em;
  opacity: 0.8;
}

.ab-scene__social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  opacity: 0;
  animation: ab-fade-up 0.6s ease 1s forwards;
}
.ab-social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  border: 1px solid #2a2a2a;
  padding: 0.9rem 1.4rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.ab-social-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--yellow);
  transition: width 0.25s ease;
  z-index: 0;
}
.ab-social-link:hover::before { width: 100%; }
.ab-social-link:hover { color: var(--black); border-color: var(--yellow); }
.ab-social-link svg,
.ab-social-link span { position: relative; z-index: 1; }
.ab-social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.ab-social-link__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.ab-social-link__handle {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-left: auto;
  opacity: 0.6;
}

.ab-corner-tag {
  position: fixed;
  bottom: 1.5rem;
  right: 1.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #333;
  text-transform: uppercase;
  z-index: 10;
  margin: 0;
}

@keyframes ab-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── MODAL RICHIESTA INFO ── */
html.ab-modal-open,
body.ab-modal-open { overflow: hidden; }

.ab-modal[hidden] { display: none !important; }

.ab-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.ab-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
}
.ab-modal__panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--grey);
  border: 1px solid rgba(245, 200, 0, 0.25);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  animation: ab-modal-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes ab-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ab-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(245,240,232,0.2);
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.ab-modal__close:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.ab-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.ab-modal__visual {
  position: relative;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid rgba(245,240,232,0.08);
}
.ab-modal__visual img {
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
}
.ab-modal__visual-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.ab-modal__body {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.ab-modal__cat {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.5rem;
}
.ab-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.ab-modal__desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin: 0 0 1.5rem;
}
.ab-modal__form-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin: 0 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.ab-modal__form .wpcf7-form { margin: 0; }
.ab-modal__fallback a { color: var(--yellow); }

/* Form richiesta info — modal + contatti */
.ab-inquiry-form .ab-field { margin: 0 0 0.85rem; }
.ab-inquiry-form label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 0.35rem;
}
.ab-inquiry-form .required { color: var(--yellow); }
.ab-inquiry-form .ab-input,
.ab-inquiry-form .ab-textarea,
.ab-modal__form .wpcf7-form input[type="text"],
.ab-modal__form .wpcf7-form input[type="email"],
.ab-modal__form .wpcf7-form textarea {
  width: 100%;
  background: var(--black) !important;
  border: 1px solid rgba(245, 240, 232, 0.15) !important;
  color: var(--white) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.ab-inquiry-form .ab-input:focus,
.ab-inquiry-form .ab-textarea:focus,
.ab-modal__form .wpcf7-form input:focus,
.ab-modal__form .wpcf7-form textarea:focus {
  outline: none !important;
  border-color: var(--yellow) !important;
}
.ab-inquiry-form .ab-submit,
.ab-modal__form .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--yellow) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 0.95rem 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ab-inquiry-form .ab-submit:hover,
.ab-modal__form .wpcf7-form input[type="submit"]:hover {
  background: var(--white) !important;
}
.ab-modal__form .wpcf7-not-valid-tip {
  font-size: 0.7rem;
  color: var(--red);
  margin-top: 0.25rem;
}
.ab-modal__form .wpcf7-response-output {
  margin: 0.75rem 0 0 !important;
  padding: 0.65rem 0.85rem !important;
  border: 1px solid rgba(245, 200, 0, 0.35) !important;
  font-size: 0.8rem !important;
  color: var(--white) !important;
}
.ab-field--hidden { display: none !important; }

/* ── SHOP CARDS (popup) ── */
.ab-product-card {
  list-style: none !important;
  margin: 0 !important;
}
.ab-product-card__trigger {
  width: 100%;
  border: none;
  background: var(--grey);
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-product-card__trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.ab-product-card__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black);
}
.ab-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.ab-product-card__trigger:hover .ab-product-card__img img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.ab-product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.25rem 0.5rem;
  z-index: 1;
}
.ab-product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ab-product-card__trigger:hover .ab-product-card__overlay { opacity: 1; }
.ab-product-card__overlay-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 0.6rem 1.2rem;
}
.ab-product-card__body { padding: 1rem 1.25rem 1.25rem; }
.ab-product-card__cat {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

/* shortcode opere — card cliccabili */
.ab-card--clickable {
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: var(--grey);
  transition: transform 0.3s ease;
}
.ab-card--clickable:hover { transform: translateY(-4px); }
.ab-card__cta {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.ab-card--clickable:hover .ab-card__cta { color: var(--yellow); }

@media (max-width: 900px) {
  body.ab-front-home { overflow: auto; }
  .ab-home { height: auto; min-height: 100vh; }
  .ab-scene {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    height: auto;
    min-height: 100vh;
  }
  .ab-scene__gallery { min-height: 55vh; }
  .ab-gallery-rotator { padding: 2rem 1.5rem; }
  .ab-gallery-slide { inset: 2rem 1rem 3.5rem 1.5rem; }
  .ab-gallery-ui { left: 1.5rem; bottom: 1rem; }
  .ab-scene__content {
    padding: 2.5rem 1.8rem 4rem;
    border-left: none;
    border-top: 1px solid #222;
  }
  .ab-modal__grid { grid-template-columns: 1fr; }
  .ab-modal__visual { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.08); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .ab-hero__tag, .ab-hero__name, .ab-hero__divider,
  .ab-hero__sub, .ab-hero__actions, .ab-hero__social {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .ab-reveal { opacity: 1; transform: none; transition: none; }
  .ab-hero__scroll-line { animation: none; }
  .ab-drip { animation: none; transform: scaleY(1); }
  #ab-grain-canvas { display: none; }
  #ab-spray-canvas { display: none; }
  .ab-gallery-slide { transition: none; }
  .ab-scene__tag, .ab-scene__name, .ab-scene__divider,
  .ab-scene__wip, .ab-scene__social {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .ab-drip { animation: none; transform: scaleY(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ab-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    height: auto;
    min-height: 100vh;
  }
  .ab-hero__photo { height: 55vh; }
  .ab-hero__content {
    padding: 2.5rem 1.8rem 4rem;
    border-left: none;
    border-top: 1px solid #222;
  }
  .ab-hero__scroll { bottom: 1rem; }
  .ab-hero__number { display: none; }
  .ab-section { padding: 3rem 1.5rem; }
  .ab-bio-strip { grid-template-columns: 1fr; }
  .ab-bio-strip__accent { display: none; }
  .ab-proof__inner { padding: 2.5rem 1.5rem; gap: 1.5rem; }
  .ab-proof__divider { display: none; }
  .ab-proof__item { min-width: 45%; }
  .ab-contact { padding: 4rem 1.5rem; }
  .ab-footer-cta { padding: 4rem 1.5rem; }
  .site-footer { grid-template-columns: 1fr; }
  .ab-page-hero { padding: 3rem 1.5rem 2.5rem; }
  .ab-contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .ab-timeline__item { grid-template-columns: 1fr; gap: 0.5rem; }
  .ab-footer-nav__list { flex-direction: column; align-items: center; gap: 1rem; }
}
