/* HRINGR — Anchor Hoodie product page
   Visual system from Aug 20 dark campaign mockup */

:root {
  --bg: #000000;
  --bg-elevated: #0c0c0c;
  --bg-panel: #121212;
  --ink: #ffffff;
  --muted: #888888;
  --muted-2: #5a5a5a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.35);
  --focus: #ffffff;
  --danger: #c45c4a;
  --nav-h: 64px;
  --max: 1280px;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--bg);
}

.skip-link:focus {
  top: 1rem;
}

/* ——— Typography ——— */

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
.h1,
.h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.h1 {
  font-size: clamp(2.4rem, 7vw, 4.75rem);
}

.h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.swatch:focus-visible,
.size-btn:focus-visible,
.thumb:focus-visible,
.hotspot:focus-visible,
.faq-q:focus-visible,
.nav-links a:focus-visible,
.gallery-nav:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.btn-solid {
  background: var(--ink);
  color: var(--bg);
}

.btn-solid:hover {
  background: #e8e8e8;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.15rem;
  transition: opacity 0.2s var(--ease);
}

.text-link:hover {
  opacity: 0.7;
}

/* ——— Nav ——— */

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 48%, transparent 70%);
}

.hero-content .h1,
.hero-content .lead,
.hero-content .eyebrow,
.hero-content .hero-meta {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.hero-media picture,
.gallery-main picture,
.hotspot-stage picture,
.brand-visual picture,
.tile picture,
.set-media picture,
.final-cta-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img,
.gallery-main img,
.hotspot-stage img,
.brand-visual img,
.tile img,
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot-detail {
  display: block;
  margin: 0 0 1.15rem;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
}

.hotspot-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.nav-open {
  overflow: hidden;
}

.nav-bar.is-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  padding: 0.5rem 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--line);
  gap: 0;
}

.nav-bar.is-open .nav-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.mobile-cta {
  z-index: 95;
}

@media (max-width: 959px) {
  .hero {
    min-height: calc(100svh - var(--nav-h));
  }

  .hero-content {
    padding-bottom: 5.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-info {
    padding-bottom: 0.5rem;
  }

  .sizes .size-btn {
    flex: 1 1 calc(20% - 0.5rem);
    min-width: 3rem;
  }

  .hotspot {
    width: 48px;
    height: 48px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
}

.hero-meta {
  margin-top: 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ——— Product stage ——— */

.product-stage {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }

  .gallery-col {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
  }
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-panel);
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.2s var(--ease);
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev {
  left: 0.75rem;
}

.gallery-nav.next {
  right: 0.75rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumb {
  aspect-ratio: 1;
  border: 1px solid transparent;
  padding: 0;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.is-active,
.thumb:hover {
  opacity: 1;
  border-color: var(--line-strong);
}

.product-info .product-kind {
  margin: 0.35rem 0 0;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.product-info .product-pitch {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}

.field-label {
  display: block;
  margin: 1.5rem 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.swatches,
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  position: relative;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.swatch.is-active {
  border-color: var(--ink);
}

.swatch:hover:not(:disabled) {
  transform: scale(1.06);
}

.swatch[data-color="midnight"]:not(.is-active),
.swatch[data-color="bone"]:not(.is-active) {
  opacity: 0.7;
}

.color-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.size-btn {
  min-width: 48px;
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  letter-spacing: 0.08em;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.size-btn:hover {
  border-color: var(--line-strong);
}

.size-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.waitlist-form {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.waitlist-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.waitlist-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.waitlist-form input[type="email"]:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-ok {
  color: #9fbf9a;
}

.form-status.is-error {
  color: var(--danger);
}

.trust-mini {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mobile sticky waitlist bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.mobile-cta.is-visible {
  transform: none;
}

.mobile-cta p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-cta .btn {
  min-height: 44px;
  padding: 0.65rem 1rem;
}

@media (min-width: 960px) {
  .mobile-cta {
    display: none;
  }
}

body.has-mobile-cta {
  padding-bottom: 5rem;
}

@media (min-width: 960px) {
  body.has-mobile-cta {
    padding-bottom: 0;
  }
}

/* ——— Brand ——— */

.brand-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .brand-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.brand-visual {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-panel);
}

.brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-callout {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.logo-callout img {
  width: 96px;
  height: auto;
  background: #f3efe6;
  padding: 0.5rem;
}

/* ——— Hotspots ——— */

.hotspots {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hotspot-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .hotspot-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
  }
}

.hotspot-stage {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hotspot-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.hotspot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.hotspot:hover,
.hotspot.is-active {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.08);
}

.hotspot-panel {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 1.5rem;
  min-height: 280px;
}

.hotspot-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotspot-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hotspot-panel ul {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.hotspot-panel li {
  padding-left: 1rem;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hotspot-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.feature-chip {
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.feature-chip.is-active,
.feature-chip:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

/* ——— Lifestyle ——— */

.lifestyle-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .lifestyle-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .lifestyle-grid .tile:first-child {
    grid-row: 1 / span 2;
  }
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background: var(--bg-panel);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tile:hover img {
  transform: scale(1.03);
}

.tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

/* ——— Materials ——— */

.materials-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.spec-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.spec-list span {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding-top: 0.2rem;
}

.size-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-table th,
.size-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.size-table th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-panel);
}

.size-table tr:last-child td {
  border-bottom: none;
}

.model-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ——— Complete the set ——— */

.set-card {
  display: grid;
  gap: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 1.25rem;
}

@media (min-width: 800px) {
  .set-card {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 1.5rem;
  }
}

.set-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.set-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #0a0a0a;
  border: 1px solid var(--line);
}

.set-copy h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.set-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— FAQ ——— */

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 52rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.faq-q span {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-a {
  display: none;
  padding: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-item.is-open .faq-q span {
  transform: rotate(45deg);
}

/* ——— Final CTA ——— */

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.final-cta .waitlist-form {
  max-width: 28rem;
}

/* ——— Footer ——— */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem 3rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

/* ——— Reduced motion ——— */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .thumb,
  .swatch,
  .size-btn,
  .hotspot,
  .tile img,
  .mobile-cta {
    transition: none;
  }

  .gallery-col {
    position: static;
  }
}
