.idwt-home-v2 .idwt-kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.idwt-v2-hero {
  padding: clamp(2.8rem, 6vw, 6rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.idwt-v2-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.idwt-v2-hero-copy h1 {
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.95;
  margin: 0.8rem 0;
}

.idwt-v2-lead {
  max-width: 52ch;
  color: var(--idwt-muted);
  font-size: 1.15rem;
}

.idwt-v2-hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.idwt-v2-hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.24rem 0.7rem;
  font-size: 0.78rem;
}

.idwt-v2-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
}

.idwt-v2-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 220px;
}

.idwt-v2-hero-card-1 {
  grid-row: span 2;
}

.idwt-v2-hero-card-bg,
.idwt-v2-hero-card-overlay {
  position: absolute;
  inset: 0;
}

.idwt-v2-hero-card-bg {
  background-size: cover;
  background-position: center;
}

.idwt-v2-hero-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
}

.idwt-v2-hero-card-name {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 2;
  font-size: 0.92rem;
  line-height: 1.1;
}

.idwt-v2-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.idwt-v2-marquee-track {
  display: flex;
  gap: 2.2rem;
  padding: 0.75rem 0;
  white-space: nowrap;
  animation: idwt-marquee 28s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.idwt-v2-section {
  padding: 3rem 0;
}

.idwt-v2-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.idwt-v2-head {
  margin-bottom: 1rem;
}

.idwt-v2-head h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.idwt-v2-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.idwt-v2-product-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.idwt-v2-product-thumb {
  display: block;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.idwt-v2-product-meta {
  padding: 0.8rem;
}

.idwt-v2-product-meta h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.05;
}

.idwt-v2-product-meta p {
  margin: 0.45rem 0 0;
  color: var(--idwt-muted);
}

.idwt-v2-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.idwt-v2-collection {
  position: relative;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.idwt-v2-collection-bg,
.idwt-v2-collection-overlay {
  position: absolute;
  inset: 0;
}

.idwt-v2-collection-bg {
  background-size: cover;
  background-position: center;
}

.idwt-v2-collection-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
}

.idwt-v2-collection-name {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
}

.idwt-v2-manifesto {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: end;
}

.idwt-v2-manifesto p {
  color: var(--idwt-muted);
}

.idwt-v2-manifesto ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.idwt-v2-manifesto li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.idwt-v2-manifesto strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.idwt-v2-manifesto span {
  color: var(--idwt-muted);
  font-size: 0.86rem;
}

.idwt-v2-lookbook {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 0.8rem;
}

.idwt-v2-lookbook-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.idwt-v2-lookbook-item:nth-child(1) {
  grid-row: span 2;
}

.idwt-v2-newsletter {
  padding-bottom: 4.5rem;
}

.idwt-v2-newsletter-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(130deg, rgba(180, 11, 37, 0.2), rgba(8, 8, 9, 0.2));
}

.search .ct-container,
.error404 .ct-container,
.page .ct-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.idwt-search-item p,
.page .entry-content p {
  color: var(--idwt-muted);
}

@media (max-width: 1100px) {
  .idwt-v2-hero-grid,
  .idwt-v2-manifesto {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .idwt-v2-product-grid,
  .idwt-v2-collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idwt-v2-lookbook {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .idwt-v2-lookbook-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .idwt-v2-product-grid,
  .idwt-v2-collections,
  .idwt-v2-manifesto ul {
    grid-template-columns: 1fr;
  }

  .idwt-v2-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .idwt-v2-hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .idwt-v2-hero-card-1 {
    grid-row: auto;
  }
}

/* --- Studio Polish: Home finish pass --- */
.idwt-v2-section {
  padding: clamp(2.4rem, 5vw, 4.1rem) 0;
}

.idwt-v2-head {
  margin-bottom: 1.35rem;
}

.idwt-v2-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.06em;
}

.idwt-v2-product-card,
.idwt-v2-collection,
.idwt-v2-lookbook-item,
.idwt-v2-hero-card,
.idwt-v2-manifesto li,
.idwt-v2-newsletter-inner {
  border-radius: var(--idwt-radius);
}

.idwt-v2-product-card,
.idwt-v2-manifesto li,
.idwt-v2-newsletter-inner {
  border-color: var(--idwt-line-soft);
  box-shadow: var(--idwt-shadow-1);
}

.idwt-v2-product-meta {
  padding: 1rem;
}

.idwt-v2-product-meta h3 {
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.idwt-v2-product-meta p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.86);
}

.idwt-v2-hero-tags span,
.idwt-home-v2 .idwt-kicker {
  border-color: var(--idwt-line);
}

.idwt-v2-newsletter-inner {
  padding: 1.4rem;
}

.idwt-v2-manifesto strong {
  letter-spacing: 0.04em;
}

/* --- Art Direction Final: section rhythm --- */
.idwt-v2-section + .idwt-v2-section {
  margin-top: 0.25rem;
}

.idwt-v2-section .idwt-v2-head .idwt-kicker {
  margin-bottom: 0.5rem;
}

.idwt-v2-product-grid,
.idwt-v2-collections {
  gap: 1.15rem;
}

.idwt-v2-product-card,
.idwt-v2-collection,
.idwt-v2-lookbook-item,
.idwt-v2-newsletter-inner,
.idwt-v2-manifesto li {
  border-color: rgba(255, 255, 255, 0.16);
}

.idwt-v2-product-thumb {
  background-position: center top;
}

/* --- Art Direction Final: Header + Hero balance --- */
.ct-sticky-header,
[data-header*="type-1"] .ct-header [data-row] {
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.98), rgba(7, 7, 10, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ct-header [data-id="menu"] > ul > li > a {
  color: rgba(233, 238, 247, 0.9);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.ct-header [data-id="menu"] > ul > li > a:hover,
.ct-header [data-id="menu"] > ul > li.current-menu-item > a {
  color: #ffffff;
}

.site-branding {
  letter-spacing: 0.02em;
}

.idwt-v2-hero {
  position: relative;
  padding: clamp(2rem, 4.8vw, 4.4rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.idwt-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 80% at 68% 45%, rgba(255, 47, 86, 0.12), transparent 65%);
  pointer-events: none;
}

.idwt-v2-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: center;
}

.idwt-v2-hero-copy {
  max-width: 900px;
}

.idwt-v2-hero-copy h1 {
  font-size: clamp(3.2rem, 9.2vw, 8rem);
  margin: 0.55rem 0 0.7rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.idwt-v2-lead {
  max-width: 44ch;
  font-size: clamp(1.04rem, 1.45vw, 1.5rem);
  line-height: 1.38;
  color: rgba(243, 243, 246, 0.8);
  margin-bottom: 1.15rem;
}

.idwt-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.idwt-v2-hero-media {
  grid-template-columns: 1fr 0.92fr;
  gap: 0.62rem;
  max-width: 460px;
  width: min(460px, 100%);
  min-width: 320px;
  margin-left: auto;
  justify-self: end;
}

 .idwt-v2-hero-card {
  display: block;
  width: 100%;
  min-height: 210px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.2);
}

.idwt-v2-hero-card-1 {
  min-height: 438px;
}

.idwt-v2-hero-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.62));
}

.idwt-v2-marquee {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.idwt-v2-marquee-track {
  padding: 0.82rem 0;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

@media (max-width: 1100px) {
  .idwt-v2-hero {
    padding-top: 2.1rem;
  }

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

  .idwt-v2-hero-media {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    justify-self: stretch;
  }

  .idwt-v2-hero-card-1 {
    min-height: 340px;
  }
}

@media (max-width: 782px) {
  .idwt-v2-hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4.4rem);
  }

  .idwt-v2-lead {
    font-size: 1rem;
  }
}


/* --- Art Direction Boost: Hero graphic dominance + larger product visuals --- */
.idwt-v2-hero {
  overflow: hidden;
}

.idwt-v2-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 7, 10, 0.92) 0%, rgba(6, 7, 10, 0.6) 45%, rgba(6, 7, 10, 0.35) 70%, rgba(6, 7, 10, 0.84) 100%),
    var(--idwt-hero-bg-image, url('https://idwtclothing.com/wp-content/uploads/2026/03/idwt-lookbook/couple%20de%20dos%20a%20paris.png'));
  background-size: cover;
  background-position: center center;
  opacity: 0.95;
}

.idwt-v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 60% at 20% 45%, rgba(255, 255, 255, 0.04), transparent 65%),
    radial-gradient(45% 60% at 74% 56%, rgba(220, 22, 58, 0.28), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.idwt-v2-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem);
}

.idwt-v2-hero-copy {
  max-width: 800px;
}

.idwt-v2-hero-copy h1 {
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.idwt-v2-lead {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.86);
}

.idwt-v2-hero-media {
  max-width: 560px;
  width: min(560px, 100%);
  min-width: 380px;
  grid-template-columns: 1.05fr 0.95fr;
}

.idwt-v2-hero-card {
  min-height: 245px;
}

.idwt-v2-hero-card-1 {
  min-height: 500px;
}

.idwt-v2-hero-card-bg {
  background-position: center 24%;
}

.idwt-v2-hero-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6));
}

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

.idwt-v2-product-thumb {
  aspect-ratio: 3 / 4;
}

.idwt-v2-product-meta {
  padding: 1.1rem;
}

@media (max-width: 1200px) {
  .idwt-v2-hero-media {
    min-width: 330px;
  }
}

@media (max-width: 980px) {
  .idwt-v2-hero-media {
    width: 100%;
    min-width: 0;
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }

  .idwt-v2-hero-card-1 {
    min-height: 360px;
  }

  .idwt-v2-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Ultra-wide layout refinement (>=1920px) --- */
@media (min-width: 1920px) {
  .idwt-home-v2 .idwt-v2-section > .ct-container {
    width: min(1720px, calc(100% - 2.2rem));
  }

  .idwt-home-v2 .idwt-v2-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

/* --- Fix 1: marquee continuity (no mid-screen jump) --- */
.idwt-v2-marquee {
  position: relative;
}

.idwt-v2-marquee-track {
  width: max-content;
  min-width: 200%;
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: idwt-marquee-smooth 30s linear infinite;
}

.idwt-v2-marquee-track span {
  flex: 0 0 auto;
}

@keyframes idwt-marquee-smooth {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Fix 2: Latest Pieces wider on ultra-wide screens --- */
@media (min-width: 1920px) {
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section > .ct-container {
    width: min(1880px, calc(100% - 1rem));
  }

  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section .idwt-v2-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.45rem;
  }
}

/* --- Latest Pieces full-width correction --- */
@media (min-width: 1600px) {
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section > .ct-container {
    width: calc(100% - 2rem) !important;
    max-width: none !important;
  }

  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section .idwt-v2-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 2200px) {
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section > .ct-container {
    width: calc(100% - 3rem) !important;
  }
}

/* --- Latest Pieces: 4 columns desktop, full-width rhythm --- */
.idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section > .ct-container {
  width: calc(100% - 2vw) !important;
  max-width: none !important;
}

.idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section .idwt-v2-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
}

@media (max-width: 1199px) {
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section .idwt-v2-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section > .ct-container {
    width: calc(100% - 1.6rem) !important;
  }

  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section .idwt-v2-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* --- Hero composition fix: title and visuals closer --- */
.idwt-v2-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr) !important;
  gap: clamp(0.7rem, 1.35vw, 1.1rem) !important;
}

.idwt-v2-hero-copy {
  max-width: none;
}

.idwt-v2-hero-media {
  margin-left: 0 !important;
  justify-self: start !important;
  max-width: none !important;
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 1100px) {
  .idwt-v2-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }
}

/* Marquee bugfix: seamless, full-width track */
.idwt-v2-marquee {
  position: relative;
  overflow: hidden;
}

.idwt-v2-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  padding: 0.75rem 0;
  animation: idwt-marquee-track 22s linear infinite;
}

.idwt-v2-marquee-group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 2.2rem;
  padding-right: 2.2rem;
  min-width: 50%;
}

@keyframes idwt-marquee-track {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Home parallax band: Shop By Type + Manifesto */
.idwt-home-v2 .idwt-v2-parallax-band {
  position: relative;
  background-image: url('/wp-content/uploads/2026/03/idwt-lookbook/tshirtfemmeparisEiffel.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}

.idwt-home-v2 .idwt-v2-parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.82), rgba(8, 8, 10, 0.76));
  z-index: 0;
}

.idwt-home-v2 .idwt-v2-parallax-band > .ct-container {
  position: relative;
  z-index: 1;
}

.idwt-home-v2 .idwt-v2-parallax-band-start {
  border-bottom: 0;
  padding-bottom: 1.2rem;
}

.idwt-home-v2 .idwt-v2-parallax-band-end {
  padding-top: 1.2rem;
}

@media (max-width: 1024px) {
  .idwt-home-v2 .idwt-v2-parallax-band {
    background-attachment: scroll;
    background-position: center 30%;
  }
}

/* Home hero title forced two-line lock */
.idwt-v2-hero-copy h1 span {
  display: block;
}

/* Parallax section refinement for contrast/readability */
.idwt-home-v2 .idwt-v2-parallax-band,
.idwt-home-v2 .idwt-v2-parallax-band.idwt-v2-surface {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.idwt-home-v2 .idwt-v2-parallax-band::before {
  background: linear-gradient(180deg, rgba(2, 2, 3, 0.9), rgba(5, 5, 7, 0.84)) !important;
}

.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-head h2,
.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-manifesto h2 {
  color: #fff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-head .idwt-kicker,
.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-manifesto .idwt-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.38);
}

.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-collection,
.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-manifesto li {
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.idwt-v2-impact-copy {
  margin: 0.6rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
}

.idwt-v2-impact-cta {
  margin-top: 0.9rem;
}

/* --- Fix pass: visual impact grid + parallax visibility --- */
.idwt-v2-lookbook {
  grid-auto-rows: 230px;
}

.idwt-v2-lookbook-item {
  min-height: 230px;
}

.idwt-home-v2 .idwt-v2-parallax-band::before {
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.62), rgba(6, 6, 8, 0.56)) !important;
}

.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-collection,
.idwt-home-v2 .idwt-v2-parallax-band .idwt-v2-manifesto li {
  background: rgba(0, 0, 0, 0.52);
}

@media (max-width: 820px) {
  .idwt-v2-lookbook {
    grid-auto-rows: 220px;
  }

  .idwt-v2-lookbook-item {
    min-height: 220px;
  }
}

/* --- V3 split feature: left content on black, right highlighted parallax photo --- */
.idwt-v2-split-feature {
  padding: clamp(2.2rem, 4.2vw, 4rem) 0;
}

.idwt-v2-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.1rem;
  align-items: stretch;
}

.idwt-v2-split-left {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.6rem);
  display: grid;
  gap: 1.1rem;
}

.idwt-v2-split-left .idwt-v2-collections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.idwt-v2-split-left .idwt-v2-collection {
  min-height: 210px;
  border-color: rgba(255, 255, 255, 0.15);
}

.idwt-v2-split-manifesto p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.idwt-v2-split-manifesto ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.idwt-v2-split-manifesto li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.7rem;
}

.idwt-v2-split-manifesto strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.idwt-v2-split-manifesto span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.idwt-v2-split-right {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0a0a0c;
}

.idwt-v2-split-photo {
  min-height: 100%;
  height: 100%;
  background-image: url('/wp-content/uploads/2026/03/idwt-lookbook/tshirtfemmeparisEiffel.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

@media (max-width: 1100px) {
  .idwt-v2-split-layout {
    grid-template-columns: 1fr;
  }

  .idwt-v2-split-photo {
    min-height: 420px;
    background-attachment: scroll;
  }
}

@media (max-width: 782px) {
  .idwt-v2-split-left .idwt-v2-collections,
  .idwt-v2-split-manifesto ul {
    grid-template-columns: 1fr;
  }
}

/* --- Desktop-only: hero background extension behind marquee + first third of latest pieces --- */
@media (min-width: 981px) {
  .idwt-home-v2 {
    position: relative;
    isolation: isolate;
  }

  .idwt-home-v2 .idwt-v2-hero {
    overflow: visible;
  }

  .idwt-home-v2 .idwt-v2-hero::before {
    inset: 0 0 -30vh 0;
    background:
      linear-gradient(180deg,
        rgba(6, 7, 10, 0.9) 0%,
        rgba(6, 7, 10, 0.52) 38%,
        rgba(6, 7, 10, 0.36) 62%,
        rgba(6, 7, 10, 0) 80%,
        rgba(0, 0, 0, 0.82) 100%),
      var(--idwt-hero-bg-image, url('https://idwtclothing.com/wp-content/uploads/2026/03/idwt-lookbook/couple%20de%20dos%20a%20paris.png'));
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .idwt-home-v2 .idwt-v2-marquee,
  .idwt-home-v2 .idwt-v2-marquee + .idwt-v2-section {
    position: relative;
    z-index: 2;
  }
}

/* Admin quick edit links (shown only if markup exists for logged-in admins) */
.idwt-admin-home-edit {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.idwt-admin-inline-edit {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.idwt-admin-inline-edit:hover {
  border-bottom-color: rgba(255, 47, 86, 0.8);
}

/* --- Final pass: hero cards links + mobile carousel (2 visible) --- */
.idwt-home-v2 .idwt-v2-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  grid-template-rows: minmax(160px, 1fr) minmax(160px, 1fr);
  gap: 0.75rem;
}

.idwt-home-v2 .idwt-v2-hero-card {
  min-height: 180px;
}

.idwt-home-v2 .idwt-v2-hero-card-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.idwt-home-v2 .idwt-v2-hero-card-2 {
  grid-column: 3;
  grid-row: 1;
}

.idwt-home-v2 .idwt-v2-hero-card-3 {
  grid-column: 3;
  grid-row: 2;
}

.idwt-home-v2 .idwt-v2-hero-card-4 {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 782px) {
  .idwt-home-v2 .idwt-v2-hero-media {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 0.7rem;
    padding-bottom: 0.2rem;
    -webkit-overflow-scrolling: touch;
  }

  .idwt-home-v2 .idwt-v2-hero-media::-webkit-scrollbar {
    height: 0;
    width: 0;
  }

  .idwt-home-v2 .idwt-v2-hero-card,
  .idwt-home-v2 .idwt-v2-hero-card-1,
  .idwt-home-v2 .idwt-v2-hero-card-2,
  .idwt-home-v2 .idwt-v2-hero-card-3,
  .idwt-home-v2 .idwt-v2-hero-card-4 {
    flex: 0 0 calc((100% - 0.7rem) / 2);
    min-height: clamp(190px, 52vw, 270px);
    scroll-snap-align: start;
    grid-column: auto;
    grid-row: auto;
  }
}

/* --- Hero media fix: remove overlap on desktop (4 cards, no superposition) --- */
@media (min-width: 783px) {
  .idwt-home-v2 .idwt-v2-hero-media {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
    grid-template-rows: repeat(3, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .idwt-home-v2 .idwt-v2-hero-card-1 {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .idwt-home-v2 .idwt-v2-hero-card-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .idwt-home-v2 .idwt-v2-hero-card-3 {
    grid-column: 2;
    grid-row: 2;
  }

  .idwt-home-v2 .idwt-v2-hero-card-4 {
    grid-column: 2;
    grid-row: 3;
  }
}

/* --- TOUR 4: pixel-perfect home polish --- */
.idwt-home-v2 .idwt-v2-hero-copy h1 {
  text-wrap: balance;
  max-width: 9.2ch;
}

.idwt-home-v2 .idwt-v2-lead {
  max-width: 46ch;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.idwt-home-v2 .idwt-v2-hero-tags span {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
}

.idwt-home-v2 .idwt-v2-hero-card {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.idwt-home-v2 .idwt-v2-hero-card:hover {
  transform: translateY(-2px);
}

.idwt-home-v2 .idwt-v2-product-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.idwt-home-v2 .idwt-v2-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.idwt-home-v2 .idwt-v2-product-meta h3 a {
  text-decoration: none;
}

.idwt-home-v2 .idwt-v2-product-meta h3 a:hover {
  color: #fff;
}

.idwt-home-v2 .idwt-v2-lookbook-item {
  transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

.idwt-home-v2 .idwt-v2-lookbook-item:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  border-color: rgba(255, 255, 255, 0.26);
}

@media (max-width: 782px) {
  .idwt-home-v2 .idwt-v2-hero-copy h1 {
    max-width: 8.4ch;
  }

  .idwt-home-v2 .idwt-v2-lead {
    font-size: 1rem;
    line-height: 1.4;
  }
}