/*
 * GIGIWARM storefront presentation layer.
 * Content stays inside Gutenberg blocks; these classes only recreate the
 * approved editorial layout and progressive motion on the public page.
 */

.gigiwarm-page-shell {
  --gigiwarm-bg: #0c0c0c;
  --gigiwarm-panel: #151313;
  --gigiwarm-ink: #f7f3ec;
  --gigiwarm-muted: #b7bcc4;
  --gigiwarm-soft: #d7e2ea;
  --gigiwarm-line: rgba(215, 226, 234, 0.18);
  --gigiwarm-deep-line: rgba(255, 255, 255, 0.09);
  --gigiwarm-accent: #b600a8;
  --gigiwarm-max: 1340px;
  --gigiwarm-ease: cubic-bezier(0.16, 1, 0.3, 1);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: clip;
  color: var(--gigiwarm-ink);
  background: var(--gigiwarm-bg);
  font-family: "Kanit", "Inter", system-ui, sans-serif;
}

.gigiwarm-page-shell *,
.gigiwarm-page-shell *::before,
.gigiwarm-page-shell *::after {
  box-sizing: border-box;
}

.gigiwarm-page-shell :is(h1, h2, h3, p, figure) {
  margin-top: 0;
}

.gigiwarm-page-shell figure {
  margin: 0;
}

.gigiwarm-page-shell img {
  display: block;
  max-width: 100%;
}

.gigiwarm-page-shell a {
  color: inherit;
  text-decoration: none;
}

.gradient-heading,
.shop-hero-ghost {
  background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-kicker {
  color: var(--gigiwarm-soft);
  font-size: clamp(0.74rem, 1.15vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gradient-pill .wp-block-button__link,
.outline-pill .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms var(--gigiwarm-ease), background-color 180ms var(--gigiwarm-ease), filter 180ms var(--gigiwarm-ease);
}

.gradient-pill .wp-block-button__link {
  background: linear-gradient(123deg, #18011f 7%, #b600a8 37%, #7621b0 72%, #be4c00 100%);
  box-shadow: 0 4px 4px rgba(181, 1, 167, 0.25), 4px 4px 12px #7721b1 inset;
  color: #fff;
}

.outline-pill .wp-block-button__link {
  border: 1px solid var(--gigiwarm-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gigiwarm-soft);
}

.gradient-pill .wp-block-button__link:hover,
.outline-pill .wp-block-button__link:hover {
  transform: translateY(-2px);
}

.gradient-pill .wp-block-button__link:hover {
  filter: brightness(1.08);
}

.outline-pill .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.shop-hero {
  position: relative;
  min-height: max(760px, calc(100svh - 80px));
  overflow: hidden;
  padding: clamp(32px, 5vw, 70px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 18%, transparent 43%),
    radial-gradient(circle at 76% 12%, rgba(182, 0, 168, 0.16) 0%, transparent 31%),
    linear-gradient(90deg, rgba(6, 5, 5, 0.92) 0%, rgba(18, 14, 15, 0.84) 48%, rgba(6, 5, 5, 0.92) 100%);
}

.shop-hero-grain {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.shop-hero-eyebrow {
  position: relative;
  z-index: 20;
  margin: 0;
}

.shop-hero-ghost {
  position: absolute;
  z-index: 1;
  top: 11%;
  left: 50%;
  width: max-content;
  margin: 0;
  transform: translateX(-50%);
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(5.5rem, 27vw, 22rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.95;
}

.shop-hero-stage {
  position: absolute;
  z-index: 10;
  inset: 0;
  pointer-events: none;
}

.shop-hero-model {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: min(42vw, 520px);
  max-height: 84vh;
  margin: 0;
  transform: translate3d(-50%, 0, 0) scale(1);
  transform-origin: bottom center;
  opacity: 0;
  filter: drop-shadow(0 42px 58px rgba(0, 0, 0, 0.52));
  will-change: transform, opacity, filter;
  transition: transform 1200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 1200ms cubic-bezier(0.4, 0, 0.2, 1), filter 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-hero-model img {
  width: 100%;
  height: auto;
  max-height: 84vh;
  object-fit: contain;
  object-position: bottom center;
}

.shop-hero-model.is-center {
  z-index: 25;
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1.12);
}

.shop-hero-model.is-left {
  z-index: 12;
  opacity: 0.82;
  transform: translate3d(calc(-50% - 24vw), -8vh, 0) scale(0.34);
  filter: brightness(0.82) drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.shop-hero-model.is-right {
  z-index: 12;
  opacity: 0.82;
  transform: translate3d(calc(-50% + 24vw), -8vh, 0) scale(0.34);
  filter: brightness(0.82) drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.shop-hero-model.is-back {
  z-index: 6;
  opacity: 0.46;
  transform: translate3d(-50%, -8vh, 0) scale(0.25);
  filter: brightness(0.62) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.4));
}

.shop-hero-copy {
  position: absolute;
  z-index: 30;
  left: clamp(18px, 7vw, 96px);
  bottom: clamp(30px, 9vh, 92px);
  max-width: min(360px, 86vw);
}

.shop-hero-copy > p:not(.shop-kicker) {
  margin: 12px 0 0;
  color: rgba(215, 226, 234, 0.86);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
}

.shop-hero-actions {
  gap: 12px;
  margin-top: 24px;
}

/* Marquees */
.kinetic-marquee,
.image-marquee {
  overflow: hidden;
  background: #0a0a0a;
}

.kinetic-marquee {
  border-block: 1px solid var(--gigiwarm-deep-line);
}

.marquee-track,
.image-marquee-row {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track {
  animation: gigiwarm-scroll-left 34s linear infinite;
}

.marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.marquee-set > p {
  flex: 0 0 auto;
  margin: 0;
  padding: clamp(20px, 3vw, 38px) clamp(16px, 2vw, 32px);
  color: var(--gigiwarm-soft);
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(2.8rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.image-marquee {
  display: grid;
  gap: 14px;
  padding-block: 14px;
  border-bottom: 1px solid var(--gigiwarm-deep-line);
}

.image-marquee-row {
  animation: gigiwarm-scroll-left 52s linear infinite;
}

.image-marquee-row-reverse {
  animation-direction: reverse;
}

.image-marquee-set {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.image-marquee-set .wp-block-image {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 380px);
  height: clamp(150px, 18vw, 270px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gigiwarm-line);
  border-radius: clamp(18px, 3vw, 34px);
  background: #171719;
}

.image-marquee-set img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Story */
.store-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  padding: clamp(82px, 12vw, 160px) clamp(18px, 4vw, 56px);
  background: #0c0c0c;
}

.about-decor {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.about-decor .wp-block-image {
  position: absolute;
  width: clamp(92px, 14vw, 220px);
  margin: 0;
  opacity: 0.27;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.35));
}

.about-decor-1 { top: 5%; left: 2%; transform: rotate(-12deg); }
.about-decor-2 { right: 3%; bottom: 5%; transform: rotate(12deg); }
.about-decor-3 { top: 7%; right: 7%; transform: rotate(8deg); }
.about-decor-4 { bottom: 7%; left: 8%; transform: rotate(-8deg); }

.store-story-copy,
.store-story-text {
  position: relative;
  z-index: 2;
}

.store-story-copy .gradient-heading,
.section-heading .gradient-heading {
  margin: 12px 0 0;
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(3.4rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.store-story-text {
  max-width: 720px;
  margin: 0;
  color: rgba(215, 226, 234, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.55;
}

/* Services */
.services-panel {
  position: relative;
  z-index: 3;
  padding: clamp(76px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(96px, 14vw, 170px);
  border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
  background: #fff;
  color: #0c0c0c;
}

.section-heading {
  max-width: var(--gigiwarm-max);
  margin: 0 auto clamp(42px, 7vw, 90px);
}

.services-panel .section-heading {
  text-align: center;
}

.services-panel .shop-kicker,
.product-edit .shop-kicker {
  color: #6c556a;
}

.services-panel .section-heading h2 {
  margin: 12px 0 0;
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(3.4rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-list {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(12, 12, 12, 0.15);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(100px, 0.35fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}

.service-number {
  margin: 0;
  color: #0c0c0c;
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  line-height: 0.86;
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2.3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-item p:not(.service-number) {
  max-width: 720px;
  margin: 0;
  color: rgba(12, 12, 12, 0.62);
  font-size: clamp(0.92rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
}

/* Lookbook stack */
.lookbook-stack {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 56px);
  border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
  background: #0c0c0c;
}

.lookbook-stack .section-heading {
  color: var(--gigiwarm-ink);
}

.lookbook-stack .section-heading > p:not(.shop-kicker) {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(215, 226, 234, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.55;
}

.lookbook-cards {
  max-width: var(--gigiwarm-max);
  margin: 0 auto;
}

.lookbook-frame {
  position: relative;
  height: 85vh;
  min-height: 720px;
}

.lookbook-frame:nth-child(2) .lookbook-card { --lookbook-top-offset: 28px; }
.lookbook-frame:nth-child(3) .lookbook-card { --lookbook-top-offset: 56px; }

.lookbook-card {
  --lookbook-scale: 1;
  --lookbook-top-offset: 0px;
  position: sticky;
  top: calc(clamp(88px, 10vw, 128px) + var(--lookbook-top-offset));
  display: flex;
  flex-direction: column;
  min-height: min(700px, calc(85vh - 64px));
  overflow: hidden;
  padding: clamp(16px, 3vw, 32px);
  border: 2px solid var(--gigiwarm-soft);
  border-radius: clamp(40px, 4vw, 60px);
  background: #0c0c0c;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
  transform: translate3d(0, 0, 0) scale(var(--lookbook-scale));
  transform-origin: top center;
  will-change: transform;
}

.lookbook-card-top {
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(110px, 0.45fr) minmax(180px, 1fr) auto;
  gap: clamp(14px, 2.4vw, 32px);
  align-items: center;
  min-height: clamp(88px, 10vw, 136px);
}

.lookbook-number {
  margin: 0;
  color: var(--gigiwarm-soft);
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  line-height: 0.86;
}

.lookbook-card-top > p:not(.lookbook-number) {
  margin: 0;
  color: rgba(215, 226, 234, 0.74);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lookbook-card-top h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.lookbook-card-top .wp-block-buttons {
  margin: 0;
}

.lookbook-card .outline-pill .wp-block-button__link {
  min-height: 46px;
  border: 2px solid var(--gigiwarm-soft);
  white-space: nowrap;
}

.lookbook-card-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lookbook-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  grid-template-rows: clamp(130px, 16vw, 230px) clamp(160px, 22vw, 340px);
  flex: 1;
  min-height: 0;
  gap: 14px;
}

.lookbook-media-grid .wp-block-image {
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  place-items: end center;
  border-radius: clamp(40px, 4vw, 60px);
  background:
    radial-gradient(circle at 50% 96%, rgba(255, 255, 255, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.lookbook-media-grid img {
  width: auto;
  height: 112%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.46));
}

.lookbook-media-1 { grid-column: 1; grid-row: 1; }
.lookbook-media-2 { grid-column: 1; grid-row: 2; }
.lookbook-media-3 { grid-column: 2; grid-row: 1 / 3; }

/* Collections */
.collection-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--gigiwarm-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(78px, 10vw, 140px);
  background: #0c0c0c;
}

.collection-card {
  position: relative;
  min-height: clamp(470px, 54vw, 650px);
  overflow: hidden;
  border: 1px solid var(--gigiwarm-line);
  border-radius: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 360ms var(--gigiwarm-ease), border-color 360ms var(--gigiwarm-ease);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 226, 234, 0.42);
}

.collection-number {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  margin: 0;
  color: rgba(215, 226, 234, 0.42);
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.9;
}

.collection-media {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18%;
  width: min(88%, 420px);
  max-height: 76%;
  margin: 0;
  transform: translateX(-50%);
  transition: transform 460ms var(--gigiwarm-ease);
}

.collection-media img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.5));
}

.collection-card:hover .collection-media {
  transform: translateX(-50%) scale(1.04);
}

.collection-content {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.collection-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.collection-content p {
  margin: 8px 0 0;
  color: rgba(215, 226, 234, 0.75);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.45;
}

.collection-card-link {
  position: absolute;
  z-index: 5;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.collection-card-link .wp-block-button,
.collection-card-link .wp-block-button__link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* Commerce and products */
.commerce-essentials {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--gigiwarm-deep-line);
  background:
    radial-gradient(circle at 18% 10%, rgba(182, 0, 168, 0.18), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(190, 76, 0, 0.14), transparent 30%),
    #0c0c0c;
}

.commerce-essentials .section-heading {
  color: var(--gigiwarm-ink);
}

.commerce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--gigiwarm-max);
  margin: 0 auto;
}

.commerce-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(250px, 28vw, 360px);
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 32px);
  border: 1px solid var(--gigiwarm-line);
  border-radius: clamp(24px, 3vw, 42px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)), #111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: transform 280ms var(--gigiwarm-ease), border-color 280ms var(--gigiwarm-ease), background-color 280ms var(--gigiwarm-ease);
}

.commerce-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(215, 226, 234, 0.13), transparent 44%);
  pointer-events: none;
}

.commerce-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 226, 234, 0.48);
  background-color: #151515;
}

.commerce-card-static:hover {
  transform: none;
  border-color: var(--gigiwarm-line);
}

.commerce-number,
.commerce-card h3,
.commerce-card > p {
  position: relative;
  z-index: 1;
}

.commerce-number {
  position: absolute;
  top: 22px;
  left: 22px;
  margin: 0;
  color: rgba(215, 226, 234, 0.38);
  font-family: "Anton", "Kanit", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.9;
}

.commerce-card h3 {
  max-width: 260px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.commerce-card > p {
  margin: 12px 0 0;
  color: rgba(215, 226, 234, 0.72);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.55;
}

.product-edit {
  padding: clamp(72px, 12vw, 160px) clamp(18px, 4vw, 56px);
  border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
  background: #fff;
  color: #0c0c0c;
}

.product-edit .gradient-heading {
  background: none;
  color: #0c0c0c;
  -webkit-text-fill-color: currentColor;
}

.product-edit .section-heading > p:not(.shop-kicker) {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(12, 12, 12, 0.64);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
}

.product-edit .woocommerce ul.products,
.product-edit ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--gigiwarm-max);
  margin: 0 auto;
  padding: 0;
}

.product-edit .woocommerce ul.products li.product,
.product-edit ul.products li.product {
  width: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(12, 12, 12, 0.12);
  border-radius: 28px;
  background: #f7f4ef;
  text-align: left;
  transition: transform 260ms var(--gigiwarm-ease), box-shadow 260ms var(--gigiwarm-ease);
}

.product-edit .woocommerce ul.products li.product:hover,
.product-edit ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 12, 12, 0.1);
}

.product-edit .woocommerce-loop-product__title,
.product-edit .price {
  color: #0c0c0c !important;
}

.product-edit .button {
  border-radius: 999px;
  background: #0c0c0c;
  color: #fff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 700ms var(--gigiwarm-ease), transform 700ms var(--gigiwarm-ease);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes gigiwarm-scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 980px) {
  .shop-hero {
    min-height: max(720px, 100svh);
  }

  .shop-hero-ghost {
    top: 12%;
    font-size: clamp(5.4rem, 28vw, 10rem);
  }

  .shop-hero-model {
    bottom: 25%;
    width: min(82vw, 430px);
  }

  .shop-hero-model.is-center { transform: translate3d(-50%, 0, 0) scale(1.02); }
  .shop-hero-model.is-left { transform: translate3d(calc(-50% - 31vw), -8vh, 0) scale(0.28); }
  .shop-hero-model.is-right { transform: translate3d(calc(-50% + 31vw), -8vh, 0) scale(0.28); }

  .shop-hero-copy {
    right: 18px;
    bottom: 26px;
    left: 18px;
  }

  .store-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lookbook-frame {
    height: auto;
    min-height: 0;
    margin-bottom: 24px;
  }

  .lookbook-card {
    position: relative;
    top: auto;
    min-height: 0;
    transform: none !important;
  }

  .lookbook-card-top {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .lookbook-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(240px, 1fr));
  }

  .lookbook-media-2,
  .lookbook-media-3 {
    grid-column: auto;
    grid-row: auto;
  }

  .collection-showcase,
  .commerce-grid,
  .product-edit .woocommerce ul.products,
  .product-edit ul.products {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .shop-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gradient-pill .wp-block-button__link,
  .outline-pill .wp-block-button__link {
    width: 100%;
  }

  .image-marquee-set .wp-block-image {
    width: 220px;
    height: 150px;
  }

  .collection-card {
    min-height: 480px;
  }

  .commerce-card {
    min-height: 230px;
  }

  .lookbook-media-grid {
    grid-template-rows: repeat(3, 250px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gigiwarm-page-shell *,
  .gigiwarm-page-shell *::before,
  .gigiwarm-page-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep the editable canvas usable without changing front-end geometry. */
.editor-styles-wrapper .gigiwarm-page-shell {
  width: auto;
  margin-inline: 0;
}

.editor-styles-wrapper .shop-hero,
.editor-styles-wrapper .kinetic-marquee,
.editor-styles-wrapper .image-marquee,
.editor-styles-wrapper .store-story,
.editor-styles-wrapper .services-panel,
.editor-styles-wrapper .lookbook-stack,
.editor-styles-wrapper .commerce-essentials,
.editor-styles-wrapper .product-edit {
  min-width: 0;
}
