/* =========================================================
   PELLIZZONNI PRODUCT HERO – FIXED VERSION
   ========================================================= */

/* ---------------------------------------------------------
   HERO ROOT
   --------------------------------------------------------- */

.pellizzonni-hero-raw {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.pellizzonni-hero-raw:after,
.pellizzonni-designer-section:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: .0625rem;
    width: 100%;
    background-image: linear-gradient(to right, #000000 33%, rgba(255, 255, 255, 0) 0);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}


/* ---------------------------------------------------------
   BACKGROUND PANEL (REAL ELEMENT, NOT ::before)
   --------------------------------------------------------- */

.pellizzonni-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #f3f3f3;
  z-index: 0;
}

/* ---------------------------------------------------------
   SCROLLING BACKGROUND TEXT
   --------------------------------------------------------- */

.pellizzonni-hero-marquee {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;

}

.co-strip-band-2 {
  overflow: hidden;
}

.co-strip-band-2__track {
  display: flex;
  width: max-content;
  animation: stripLoop var(--rc-strip-speed, 18s) linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.co-strip-band-2__item {
  flex: 0 0 auto;
  padding-right: 3vw;
}

.co-strip-band-2__text {
  white-space: nowrap;
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes stripLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .co-strip-band-2__track {
    animation: none;
  }
}

/* ---------------------------------------------------------
   HERO IMAGE (CENTER, BOTTOM-ANCHORED)
   --------------------------------------------------------- */

.pellizzonni-hero-image {
    position: absolute;
    left: 50%;
    top: 6rem;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: darken;
}

.pellizzonni-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 95vh;
  
}

/* ---------------------------------------------------------
   HERO TEXT
   --------------------------------------------------------- */

.pellizzonni-hero-text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    pointer-events: none;
    display: flex;
    mix-blend-mode: difference;
    flex-direction: column;
    padding: 50px;
}
.pellizzonni-hero-text:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: .0625rem;
    width: 100%;
    background-image: linear-gradient(to right, #ffffff 33%, rgba(255, 255, 255, 0) 0);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.pellizzonni-hero-text:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: .0625rem;
    width: 100%;
    background-image: linear-gradient(to right, #ffffff 33%, rgba(255, 255, 255, 0) 0);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}



/* ---------------------------------------------------------
   CATEGORY / BREADCRUMB
   --------------------------------------------------------- */

.pellizzonni-primary-cat {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.pellizzonni-primary-cat .cat-parent {
  display: none;
}

.pellizzonni-primary-cat .cat-label {
  font-size: 1.1rem;
  color: white;
  text-decoration: underline;
}

/* ---------------------------------------------------------
   PRODUCT TITLE (FIXED SELECTOR)
   --------------------------------------------------------- */

.pellizzonni-post-title {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9rem);
  font-family: var(--font-stack-heading);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  
}

/* ---------------------------------------------------------
   BRAND LINE
   --------------------------------------------------------- */

.pellizzonni-brand {
  display: block;
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
  mix-blend-mode: difference;
}

/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */
.pellizzonni-logo-image {
    display: block;
    position: absolute;
    bottom: 50px;
    width: 100%;
    max-width: 1920px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.pellizzonni-logo-image svg {
	width:200px}

.pellizzonni-logo-image path {
	fill:black;
}

/*3rd section*/



.vertical-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
	z-index:1;
}


.vertical-text .elementor-heading-title {
  display: inline-block;
  transform: rotate(90deg);
  white-space: nowrap;
	background: #fff;        /* white mask */
  padding: 0px 20px; /* space around text */
  position: relative;
}  


.overview-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;          /* full height of overview-section */
  left: 50%;
  width: .0625rem;

  background-image: linear-gradient(
    to bottom,
    #000 33%,
    rgba(255, 255, 255, 0) 0
  );
  background-size: 1px 3px;
  background-repeat: repeat-y;
}


