:root {
  --bg: #050608;
  --bg-elevated: #0b0d10;
  --bg-soft: #101319;
  --accent: #f5f0e8;
  --accent-soft: rgba(245, 240, 232, 0.08);
  --accent-strong: #f0e3cf;
  --text: #f7f7f7;
  --text-soft: #a2a6b3;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --pill-bg: rgba(245, 240, 232, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --nav-height: 76px;
  --transition-default: 220ms ease-out;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #151822 0, #050608 48%);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.page-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% -10%, rgba(245, 240, 232, 0.08), transparent 55%),
    radial-gradient(circle at 90% 110%, rgba(245, 240, 232, 0.05), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 32px) 20px 72px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 8, 0.92),
    rgba(5, 6, 8, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 140ms ease-out;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f5f0e8, #f0e3cf);
  transition: width 180ms ease-out;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  background: rgba(245, 240, 232, 0.03);
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    background var(--transition-default),
    border-color var(--transition-default),
    transform 140ms ease-out;
}

.nav-cta:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: rgba(245, 240, 232, 0.4);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--accent-strong);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero */
.hero {
  padding-top: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.6rem, 3.2vw + 1.4rem, 3.4rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-highlight {
  background: linear-gradient(135deg, #f5f0e8, #f0e3cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 24px;
  max-width: 420px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background var(--transition-default),
    color var(--transition-default),
    border-color var(--transition-default),
    transform 140ms ease-out,
    box-shadow 140ms ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #f5f0e8, #f0e3cf);
  color: #050608;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover:not(.loading) {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.24);
  color: var(--accent-strong);
}

.btn.ghost:hover {
  background: rgba(245, 240, 232, 0.06);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
}

.meta-item {
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(245, 240, 232, 0.04), transparent 60%);
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.meta-value {
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 340px;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #181b24, #090b10);
  border: 1px solid rgba(245, 240, 232, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero-card.main {
  padding: 22px 22px 24px;
}

.hero-card-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 14px 0 8px;
}

.hero-card-inner p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid rgba(245, 240, 232, 0.24);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 240, 232, 0.16);
  color: var(--text-soft);
}

.floating-card {
  position: absolute;
  right: -6px;
  left: auto;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(9, 11, 17, 0.94);
  border: 1px solid rgba(245, 240, 232, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  max-width: 230px;
}

.floating-card p {
  margin: 0 0 4px;
  font-size: 0.82rem;
}

.floating-card span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.floating-card.one {
  top: -18px;
}

.floating-card.two {
  bottom: -22px;
  right: 28%;
}

/* Sections */
.section {
  padding: 80px 0 16px;
}

.section-header {
  max-width: 620px;
  margin-bottom: 34px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.section-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* Opening Soon Section */
.opening-soon-section {
  padding: 80px 0 16px;
}

.opening-soon-container {
  max-width: 100%;
}

.opening-soon-content {
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at center, rgba(26, 29, 40, 0.6), rgba(6, 7, 11, 0.8));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.opening-soon-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 240, 232, 0.03), transparent 70%);
  pointer-events: none;
  animation: backgroundGlow 8s ease-in-out infinite;
}

.opening-soon-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245, 240, 232, 0.02), transparent 60%);
  pointer-events: none;
  animation: backgroundGlow 10s ease-in-out infinite reverse;
}

.opening-soon-badge-large {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.12), rgba(240, 227, 207, 0.08));
  backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 0 0 rgba(245, 240, 232, 0.5);
  animation: badgePulseLarge 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening-soon-badge-large:hover {
  transform: scale(1.05);
}

.badge-pulse-large {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.4), rgba(240, 227, 207, 0.3));
  animation: pulseRingLarge 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  z-index: -1;
}

.badge-text-large {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  animation: textGlowLarge 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.opening-soon-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--accent-strong) 0%,
    var(--accent) 30%,
    var(--accent-strong) 60%,
    var(--accent) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.opening-soon-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.opening-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.opening-soon-item {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 240, 232, 0.1);
  background: radial-gradient(circle at top left, rgba(245, 240, 232, 0.04), transparent 60%);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  transform: translateY(0);
}

.opening-soon-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.opening-soon-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(245, 240, 232, 0.3);
  background: radial-gradient(circle at top left, rgba(245, 240, 232, 0.1), transparent 60%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(245, 240, 232, 0.15);
}

.opening-soon-item:hover::before {
  opacity: 1;
}

.opening-soon-icon {
  font-size: 2rem;
  color: var(--accent-strong);
  margin-bottom: 16px;
  display: inline-block;
  animation: iconFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease;
}

.opening-soon-item:hover .opening-soon-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--accent);
}

.opening-soon-item:nth-child(2) .opening-soon-icon {
  animation-delay: 0.8s;
}

.opening-soon-item:nth-child(3) .opening-soon-icon {
  animation-delay: 1.6s;
}

.opening-soon-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--text);
}

.opening-soon-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.6;
}

@keyframes badgePulseLarge {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 0 rgba(245, 240, 232, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 12px rgba(245, 240, 232, 0);
    transform: scale(1.01);
  }
}

@keyframes pulseRingLarge {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes textGlowLarge {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5),
                 0 0 0 rgba(245, 240, 232, 0);
  }
  50% {
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5),
                 0 0 24px rgba(245, 240, 232, 0.5),
                 0 0 40px rgba(245, 240, 232, 0.3);
  }
}

@keyframes titleShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-6px) rotate(-2deg);
  }
  66% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes backgroundGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Video Showcase */
.video-showcase {
  padding: 80px 0 16px;
}

.video-container {
  max-width: 100%;
}

.video-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #181b24, #090b10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.video-header {
  padding: 32px 32px 24px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.video-header .section-eyebrow {
  margin-bottom: 12px;
}

.video-header h2 {
  margin-bottom: 12px;
}

.video-header .section-text {
  margin: 0;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding: 0 32px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.new-drop-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.95), rgba(240, 227, 207, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
              0 0 0 0 rgba(245, 240, 232, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-drop-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
              0 0 0 4px rgba(245, 240, 232, 0.3);
}

.badge-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.6), rgba(240, 227, 207, 0.6));
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: -1;
}

.badge-text {
  color: #050608;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3),
                 0 0 8px rgba(245, 240, 232, 0.5);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 0 rgba(245, 240, 232, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 8px rgba(245, 240, 232, 0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.showcase-video {
  width: 100%;
  max-width: 1000px;
  height: auto;
  min-height: 300px;
  max-height: 80vh;
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.showcase-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.9);
}

.video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(5, 6, 8, 0.1) 100%
  );
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-player-wrapper:hover .video-overlay {
  opacity: 1;
}

/* Video controls styling enhancement */
.showcase-video::-webkit-media-controls-panel {
  background: rgba(5, 6, 8, 0.9);
}

.showcase-video::-webkit-media-controls-play-button,
.showcase-video::-webkit-media-controls-timeline,
.showcase-video::-webkit-media-controls-current-time-display,
.showcase-video::-webkit-media-controls-time-remaining-display {
  color: var(--accent-strong);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #151824, #07090e);
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.about-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Collection */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #171821, #06070b);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.product-media {
  height: 320px;
  background: linear-gradient(135deg, #f5f0e8, #d8cbb7);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media.hoodie-skyline {
  background: radial-gradient(circle at center, #0a0c0f, #050608);
}

/* Product images (front/back swap on hover) */
.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  object-position: center;
  will-change: opacity, transform;
}

.product-image-primary {
  opacity: 1;
}

.product-image-secondary {
  opacity: 0;
}

.product-image-tertiary {
  opacity: 0;
}

.product-image-quaternary {
  opacity: 0;
}

.product-image-quinary {
  opacity: 0;
}

.product-image-senary {
  opacity: 0;
}

.product-image-septenary {
  opacity: 0;
}

.product-image-octonary {
  opacity: 0;
}

.product-image-nonary {
  opacity: 0;
}

.product-card:hover .product-media .product-image-primary {
  opacity: 0;
  transform: scale(1.02);
}

.product-card:hover .product-media .product-image-secondary {
  opacity: 1;
  transform: scale(1.02);
}

.product-card:hover .product-media .product-image-tertiary,
.product-card:hover .product-media .product-image-quaternary,
.product-card:hover .product-media .product-image-quinary,
.product-card:hover .product-media .product-image-senary,
.product-card:hover .product-media .product-image-septenary,
.product-card:hover .product-media .product-image-octonary,
.product-card:hover .product-media .product-image-nonary {
  opacity: 0;
  transform: scale(1.02);
}

/* Smooth image transitions for all product images */
.product-media .product-image {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Riyadh Skyline Hoodie - use real imagery, minimal background */
.product-media.hoodie-skyline {
  background: #ffffff;
}

.product-media.hoodie-skyline .product-image {
  padding: 16px;
  background: #ffffff;
}

/* Ensure all hoodie images are positioned absolutely for animation */
.product-media.hoodie-skyline .product-image-tertiary,
.product-media.hoodie-skyline .product-image-quaternary,
.product-media.hoodie-skyline .product-image-quinary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-media.hoodie-skyline::before,
.product-media.hoodie-skyline::after {
  content: "";
  content: none;
}

.product-media:not(.hoodie-skyline)::before,
.product-media:not(.hoodie-skyline)::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(5, 6, 8, 0.32);
}

.product-media:not(.hoodie-skyline)::before {
  width: 72%;
  height: 230%;
  left: 50%;
  top: -60%;
  transform: translateX(-50%) rotate(18deg);
  background: linear-gradient(145deg, rgba(5, 6, 8, 0.06), transparent);
}

.product-media:not(.hoodie-skyline)::after {
  width: 32%;
  height: 120%;
  right: 10%;
  top: -12%;
  border-color: rgba(5, 6, 8, 0.2);
}

.product-media.alt {
  background: linear-gradient(135deg, #f2e7d7, #c8b69d);
}

.product-media.tshirt {
  background: #ffffff;
  height: 320px;
}

.product-media.tshirt .product-image {
  background: #ffffff;
  padding: 18px 12px;
  object-fit: contain;
  object-position: center;
}

.product-card:hover .product-media.tshirt .product-image-primary {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .product-media.tshirt .product-image-secondary {
  opacity: 1;
  transform: scale(1.05);
}

.product-card:hover .product-media.tshirt .product-image-tertiary,
.product-card:hover .product-media.tshirt .product-image-quaternary {
  opacity: 0;
  transform: scale(1.05);
}

/* Ensure all tshirt images are positioned absolutely for animation */
.product-media.tshirt .product-image-tertiary,
.product-media.tshirt .product-image-quaternary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-media.dark {
  background: radial-gradient(circle at top, #151824, #050608);
}

.product-media.pants {
  background: #ffffff;
  height: 320px;
}

.product-media.pants .product-image {
  background: #ffffff;
  padding: 20px 12px;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.product-card:hover .product-media.pants .product-image-primary {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .product-media.pants .product-image-secondary {
  opacity: 1;
  transform: scale(1.05);
}

.product-card:hover .product-media.pants .product-image-tertiary {
  opacity: 0;
  transform: scale(1.05);
}

/* Ensure all pants images are positioned absolutely for animation */
.product-media.pants .product-image-secondary,
.product-media.pants .product-image-tertiary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Navy Skyline Set */
.product-media.hoodie-navy {
  background: #ffffff;
  height: 320px;
}

.product-media.hoodie-navy .product-image {
  background: #ffffff;
  padding: 20px;
  object-fit: contain;
  object-position: center;
}

.product-card:hover .product-media.hoodie-navy .product-image-primary {
  opacity: 0;
  transform: scale(1.05);
}

.product-card:hover .product-media.hoodie-navy .product-image-secondary {
  opacity: 1;
  transform: scale(1.05);
}

.product-card:hover .product-media.hoodie-navy .product-image-tertiary,
.product-card:hover .product-media.hoodie-navy .product-image-quaternary,
.product-card:hover .product-media.hoodie-navy .product-image-quinary {
  opacity: 0;
  transform: scale(1.05);
}

.product-media.hoodie-navy .product-image-secondary,
.product-media.hoodie-navy .product-image-tertiary,
.product-media.hoodie-navy .product-image-quaternary,
.product-media.hoodie-navy .product-image-quinary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Navy Studio Pant */
.product-media.pants-navy {
  background: #ffffff;
  height: 320px;
}

.product-media.pants-navy .product-image {
  background: #ffffff;
  padding: 20px 12px;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Keep the same image on hover - no transition */
.product-card:hover .product-media.pants-navy .product-image-primary {
  opacity: 1;
  transform: none;
}

/* New Drop Badge on Product Card */
.new-drop-badge-product {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.98), rgba(240, 227, 207, 0.98));
  backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
              0 0 0 0 rgba(245, 240, 232, 0.6);
  animation: badgePulseProduct 2.5s ease-in-out infinite;
  pointer-events: none;
}

.badge-pulse-product {
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.7), rgba(240, 227, 207, 0.7));
  animation: pulseRingProduct 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: -1;
}

.badge-text-product {
  color: #050608;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
  animation: textGlowProduct 2.5s ease-in-out infinite;
}

@keyframes badgePulseProduct {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
                0 0 0 0 rgba(245, 240, 232, 0.6);
  }
  50% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
                0 0 0 6px rgba(245, 240, 232, 0);
  }
}

@keyframes pulseRingProduct {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes textGlowProduct {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
  }
  50% {
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4),
                 0 0 10px rgba(245, 240, 232, 0.6);
  }
}

.product-body {
  padding: 16px 18px 18px;
}

.product-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin: 0 0 4px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.product-desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  font-size: 0.76rem;
  color: var(--text-soft);
}

/* Story */
.story-inner {
  border-radius: 26px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #1a1d28, #06070b);
  padding: 26px 26px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.story-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(5, 6, 8, 0.75);
}

.badge-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.badge-value {
  font-size: 0.9rem;
}

/* Contact */
.contact-inner {
  border-radius: 26px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.04), rgba(5, 6, 8, 0.96));
  padding: 26px 24px 24px;
}

.contact-form {
  margin-top: 18px;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.email-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-out;
}

.email-input-wrapper:hover {
  transform: translateY(-1px);
}

.email-icon {
  position: absolute;
  left: 15px;
  font-size: 1rem;
  color: var(--accent-strong);
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  animation: emailPulse 2s ease-in-out infinite;
}

@keyframes emailPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.email-input-wrapper:focus-within .email-icon {
  opacity: 1;
  transform: scale(1.15) translateY(-2px);
  animation: none;
}

.input-group input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.28);
  padding: 11px 15px 11px 42px;
  background: rgba(5, 6, 8, 0.9);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s ease-out;
  position: relative;
}

.input-group input::placeholder {
  color: rgba(162, 166, 179, 0.8);
  transition: opacity 0.3s ease;
}

.input-group input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(245, 240, 232, 0.15), 0 4px 12px rgba(245, 240, 232, 0.1);
  background: rgba(5, 6, 8, 0.98);
  transform: translateY(-1px);
}

.input-group input:focus::placeholder {
  opacity: 0.5;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 42px;
  right: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-strong), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.email-input-wrapper:focus-within .input-underline {
  transform: scaleX(1);
}

.form-message {
  margin: 12px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ef5350;
}

.form-message::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.form-message.success::before {
  background: #81c784;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
  animation: successPulse 0.6s ease-out;
}

.form-message.error::before {
  background: #ef5350;
  box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.2);
  animation: errorShake 0.5s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes errorShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.btn-text {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn.loading .btn-text {
  opacity: 0;
  transform: translateX(-10px);
}

.btn.loading .btn-loader {
  opacity: 1;
}

.btn-loader {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(5, 6, 8, 0.2);
  border-top-color: #050608;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn.primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.primary:hover:not(.loading) {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 20px rgba(245, 240, 232, 0.2);
}

.btn.primary:active:not(.loading) {
  transform: translateY(0);
}

.contact-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: opacity 0.3s ease;
}

.contact-form.submitted .contact-note {
  opacity: 0.6;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.04);
  transition:
    background var(--transition-default),
    border-color var(--transition-default),
    transform 140ms ease-out;
}

.contact-link:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.35);
  transform: translateY(-1px);
}

.contact-icon {
  font-size: 1rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px 20px 30px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-logo {
  font-weight: 600;
  margin-right: 8px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-contact a {
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 0.82rem;
  transition: opacity var(--transition-default);
}

.footer-contact a:hover {
  opacity: 0.8;
}

/* Animation: base */
.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

/* Floating motion */
.floating-card.one,
.floating-card.two {
  animation: float 6s ease-in-out infinite;
}

.floating-card.two {
  animation-delay: 1.4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(2px);
  }
}

/* Smooth hover scale for cards */
.about-card,
.product-card,
.badge {
  transition:
    transform 190ms ease-out,
    box-shadow 190ms ease-out,
    border-color 190ms ease-out,
    background 260ms ease-out;
}

.about-card:hover,
.product-card:hover,
.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
  border-color: rgba(245, 240, 232, 0.26);
}

/* Responsive */
@media (max-width: 880px) {
  .nav-inner {
    padding-inline: 16px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  main {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 60px 0 16px;
  }

  .opening-soon-section {
    padding: 60px 0 16px;
  }

  .opening-soon-content {
    padding: 60px 32px;
  }

  .opening-soon-title {
    font-size: 2.4rem;
  }

  .opening-soon-text {
    font-size: 1rem;
    margin-bottom: 48px;
  }

  .opening-soon-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }

  .opening-soon-item {
    padding: 28px 20px;
  }

  .video-showcase {
    padding: 60px 0 16px;
  }

  .video-wrapper {
    border-radius: 20px;
  }

  .video-header {
    padding: 24px 24px 20px;
  }

  .video-header h2 {
    font-size: 1.6rem;
  }

  .video-player-wrapper {
    padding: 0 24px 24px;
  }

  .showcase-video {
    min-height: 280px;
    max-width: 100%;
    max-height: 70vh;
  }

  .new-drop-badge {
    top: 16px;
    right: 16px;
    padding: 8px 16px;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .about-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-media {
    height: 280px;
  }

  .product-image {
    padding: 16px;
  }

  .product-media.hoodie-skyline .product-image {
    padding: 12px;
  }

  .product-media.tshirt .product-image {
    padding: 14px 10px;
  }

  .product-media.pants .product-image {
    padding: 16px 10px;
  }
}

@media (max-width: 640px) {
  .product-media {
    height: 260px;
  }

  .product-image {
    padding: 14px;
  }

  .product-media.hoodie-skyline .product-image {
    padding: 10px;
  }

  .product-media.tshirt .product-image {
    padding: 12px 8px;
  }

  .product-media.pants .product-image {
    padding: 14px 8px;
  }

  .collection-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-media {
    border-radius: 20px 20px 0 0;
  }

  .story-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
  }

  .floating-card.one {
    top: -16px;
    right: 8%;
  }

  .floating-card.two {
    bottom: -16px;
    right: 40%;
  }

  h1 {
    font-size: clamp(2rem, 5vw + 1rem, 2.6rem);
  }
}

@media (max-width: 640px) {
  main {
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 48px;
  }

  .nav-cta {
    display: none;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .section {
    padding: 48px 0 12px;
  }

  .opening-soon-section {
    padding: 48px 0 12px;
  }

  .opening-soon-content {
    padding: 48px 24px;
  }

  .opening-soon-badge-large {
    padding: 10px 24px;
    margin-bottom: 24px;
  }

  .badge-text-large {
    font-size: 0.72rem;
  }

  .opening-soon-title {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }

  .opening-soon-text {
    font-size: 0.94rem;
    margin-bottom: 40px;
  }

  .opening-soon-grid {
    gap: 20px;
  }

  .opening-soon-item {
    padding: 24px 18px;
  }

  .opening-soon-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .opening-soon-item p {
    font-size: 0.88rem;
  }

  .opening-soon-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .video-showcase {
    padding: 48px 0 12px;
  }

  .video-wrapper {
    border-radius: 18px;
  }

  .video-header {
    padding: 20px 16px 16px;
  }

  .video-header .section-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .video-header h2 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .video-header .section-text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .video-player-wrapper {
    padding: 0 16px 16px;
  }

  .showcase-video {
    border-radius: 16px;
    min-height: 250px;
    max-width: 100%;
    width: 100%;
    max-height: 65vh;
  }

  .new-drop-badge {
    top: 12px;
    right: 12px;
    padding: 8px 14px;
  }

  .badge-text {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .video-overlay {
    border-radius: 16px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .section-text {
    font-size: 0.9rem;
  }

  .about-grid,
  .collection-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .product-media {
    height: 300px;
  }

  .new-drop-badge-product {
    top: 12px;
    right: 12px;
    padding: 6px 14px;
  }

  .badge-text-product {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .badge-pulse-product {
    inset: -2px;
  }

  .product-image {
    padding: 14px;
  }

  .product-media.hoodie-skyline .product-image {
    padding: 10px;
  }

  .product-media.tshirt .product-image {
    padding: 12px 8px;
  }

  .product-media.pants .product-image {
    padding: 14px 8px;
  }

  .product-body {
    padding: 14px 16px 16px;
  }

  .product-desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .product-meta {
    gap: 6px;
  }

  .product-meta span {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .story-inner,
  .contact-inner {
    padding: 20px 16px;
  }

  .input-group {
    flex-direction: column;
  }

  .email-input-wrapper {
    width: 100%;
  }

  .input-group input {
    width: 100%;
  }

  .input-group .btn {
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 12px;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 16px 16px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.75rem;
  }

  .footer-right {
    align-items: flex-start;
    width: 100%;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-contact a {
    font-size: 0.8rem;
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.8rem;
    min-height: 44px;
    touch-action: manipulation;
  }
}

/* Extra small devices (phones in portrait, less than 480px) */
@media (max-width: 480px) {
  .video-showcase {
    padding: 40px 0 12px;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .video-header {
    padding: 18px 14px 14px;
  }

  .video-header .section-eyebrow {
    font-size: 0.62rem;
    margin-bottom: 8px;
  }

  .video-header h2 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .video-header .section-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .video-player-wrapper {
    padding: 0 14px 14px;
  }

  .showcase-video {
    border-radius: 14px;
    min-height: 220px;
    max-height: 60vh;
  }

  .new-drop-badge {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
  }

  .badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .new-drop-badge-product {
    top: 10px;
    right: 10px;
    padding: 5px 12px;
  }

  .badge-text-product {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .badge-pulse-product {
    inset: -2px;
  }

  .badge-pulse {
    inset: -3px;
  }

  .video-overlay {
    border-radius: 14px;
  }
}


