/* ============================================================
   NOT ORDINARY — Korean Fashion
   Paleta: blanco · #e5cdce (rose) · #666662 (gray) · negro
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #111111;
  --white:      #ffffff;
  --rose:       #e5cdce;
  --rose-light: #f5eeee;
  --rose-dark:  #c9aaab;
  --gray:       #666662;
  --gray-light: #f7f5f4;
  --gray-border: #e8e4e4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #333 !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Logo watermark fijo en toda la página */
.page-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  max-width: 1350px;
  opacity: 0.09;
  filter: blur(1px) grayscale(1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Círculo decorativo rose en el fondo */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text { z-index: 1; }

.hero-badge {
  display: inline-block;
  background: var(--rose-light);
  border: 1px solid var(--rose);
  color: var(--gray);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.6rem;
  font-family: 'Noto Sans KR', sans-serif;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 7vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--rose-dark);
  -webkit-text-stroke: 2px var(--rose-dark);
  color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--gray-border);
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--rose-dark);
  transform: translateY(-2px);
}

/* ── HERO MOSAICO DE FOTOS ── */
.hero-mosaic {
  display: flex;
  gap: 12px;
  height: 520px;
  z-index: 1;
}

.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mosaic-col--left {
  flex: 1.1;
}

.mosaic-col--right {
  flex: 1;
}

.mosaic-col img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--gray-light);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--black);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  padding: 0 2rem;
  flex-shrink: 0;
}

.marquee-track span i {
  font-style: normal;
  color: var(--rose);
}

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

/* ── CATALOG SECTION ── */
.catalog-section {
  padding: 6rem 0;
  background: var(--white);
}

.catalog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.catalog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalog-sub {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--black);
}

/* ── FILTROS ── */
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--white);
  color: var(--gray);
  border: 1.5px solid var(--gray-border);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: var(--rose-dark);
  color: var(--black);
}

.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}

.product-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(229, 205, 206, 0.5);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-light);
}

.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.4s ease;
}

.product-card-img img.active {
  opacity: 1;
}

.product-card:hover .product-card-img img.active {
  transform: scale(1.04);
}

/* Dots indicadores de múltiples fotos */
.card-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.card-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.product-card-category {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--white);
  color: var(--gray);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gray-border);
}

.product-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.product-card-sizes {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.size-chip {
  background: var(--rose-light);
  color: var(--gray);
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--rose);
}

.product-card-colors {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.color-chip {
  background: var(--white);
  color: var(--gray);
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--gray-border);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--black);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  white-space: nowrap;
}

.product-card-cta:hover { background: #333; }

.product-card-cta svg { flex-shrink: 0; }

/* ── ABOUT SECTION ── */
.about-section {
  padding: 6rem 0;
  background: var(--gray-light);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 1.2rem 0 1.5rem;
  max-width: 420px;
}

.about-location {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--rose-light);
  border: 1px solid var(--rose);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  max-width: 380px;
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-location:hover {
  border-color: var(--rose-dark);
  box-shadow: 0 4px 16px rgba(229, 205, 206, 0.5);
}

.about-location svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rose-dark);
}

.about-location strong {
  color: var(--black);
  font-weight: 600;
}

.about-imgs {
  display: flex;
  align-items: center;
}

.about-store-gallery {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  width: 100%;
}

.about-store-img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: var(--gray-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: block;
}

.about-store-img--main {
  aspect-ratio: 16 / 9;
}

.about-store-img--secondary {
  aspect-ratio: 16 / 7;
}

/* ── CTA INSTAGRAM ── */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--white);
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.cta-badge {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.2rem;
}

.cta-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}

.cta-ig-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 0;
  background: var(--gray-light);
  border-top: 1px solid var(--gray-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--black);
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    gap: 3rem;
  }

  .hero-mosaic {
    height: 380px;
  }

  .hero h1 { font-size: 5rem; }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-imgs {
    height: 280px;
    max-width: 440px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-burger { display: flex; }

  .hero-mosaic { display: none; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-imgs { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3.8rem; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; }
}
