/* =============================================
   THREADLINE — Apple-Inspired CSS
   ============================================= */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f5f5f7;
  --gray-100: #ebebeb;
  --gray-200: #d2d2d7;
  --gray-400: #86868b;
  --gray-700: #424245;
  --gray-900: #1d1d1f;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 52px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), border-color var(--transition);
}

#navbar.light {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(0,0,0,0.08);
  color: var(--gray-900);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
#navbar.light .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
#navbar.light .nav-links a:hover { color: var(--gray-900); background: rgba(0,0,0,0.05); }

.nav-actions { display: flex; align-items: center; gap: 4px; }

.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.08); }
#navbar.light .nav-icon-btn:hover { background: rgba(0,0,0,0.05); }

.bag-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--blue);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--transition), transform var(--transition);
}
.bag-count.visible { opacity: 1; transform: scale(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--white); }
.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--nav-height);
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary:hover { background: var(--blue-hover); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 980px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  background: var(--gray-900);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font);
}
.btn-primary-dark:hover { background: var(--gray-700); transform: scale(1.02); }

.btn-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
.btn-link:hover { color: #409cff; }

.btn-link-dark {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
.btn-link-dark:hover { color: #0052a3; }

.chevron { font-style: normal; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee-track .dot { color: rgba(255,255,255,0.25); }

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

/* =============================================
   FEATURE STATEMENT
   ============================================= */
.feature-statement {
  background: var(--black);
  padding: 120px 24px;
  text-align: center;
}

.feature-inner {
  max-width: 800px;
  margin: 0 auto;
}

.feature-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.feature-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.feature-body {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 620px;
  margin: 0 auto;
}

/* =============================================
   PRODUCT SHOWCASE
   ============================================= */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  align-items: center;
}

.showcase-dark { background: var(--gray-900); }
.showcase-light { background: var(--gray-50); color: var(--gray-900); }

.showcase-media {
  overflow: hidden;
  height: 680px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.showcase-media:hover .showcase-img { transform: scale(1.03); }

.showcase-copy {
  padding: 64px 72px;
}

.showcase-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.showcase-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.showcase-light .showcase-title { color: var(--gray-900); }

.showcase-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 12px;
  max-width: 380px;
}
.showcase-light .showcase-desc { color: var(--gray-700); }

.showcase-price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.showcase-light .showcase-price { color: var(--gray-900); }

.showcase-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.showcase-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.badge-dark {
  background: rgba(0,0,0,0.06);
  color: var(--gray-700);
}

@media (max-width: 900px) {
  .product-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .showcase-light .showcase-copy { order: -1; }
  .showcase-media { height: 60vw; min-height: 300px; }
  .showcase-copy { padding: 48px 24px; }
}

/* =============================================
   DETAIL SECTION
   ============================================= */
.detail-section {
  background: var(--black);
  padding: 120px 24px;
}

.detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.detail-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.detail-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.detail-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-400);
}
.detail-list strong { color: var(--white); }

.detail-icon {
  color: var(--blue);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .detail-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   CUSTOMIZE SECTION
   ============================================= */
.customize-section {
  background: var(--gray-900);
  padding: 120px 24px;
}

.customize-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.customize-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.customize-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.customize-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.customize-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .customize-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  background: var(--black);
  padding: 120px 24px;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.process-heading {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--gray-900);
  padding: 40px 32px;
  border-radius: 4px;
  transition: background var(--transition);
  animation-delay: var(--delay);
}
.step-card:hover { background: #2a2a2e; }

.step-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 24px;
  font-family: monospace;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: var(--gray-900);
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}

.stat-plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 600px) { .stat-divider { display: none; } }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--black);
  padding: 120px 24px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.testimonials-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: var(--gray-900);
  padding: 36px;
  border-radius: 4px;
}

.testimonial-stars {
  font-size: 14px;
  color: #FFD60A;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong { font-size: 14px; display: block; }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; gap: 12px; } }

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  background: var(--gray-50);
  color: var(--gray-900);
  padding: 120px 24px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.about-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
.about-grid img:first-child { border-radius: 12px 12px 4px 4px; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--black);
  padding: 120px 24px;
  text-align: center;
}

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

.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.cta-heading {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.cta-input:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.12);
}
.cta-input::placeholder { color: var(--gray-400); }

.cta-sub {
  font-size: 11px;
  color: var(--gray-400);
}

@media (max-width: 480px) {
  .cta-form { flex-direction: column; }
  .cta-input { width: 100%; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
  color: var(--gray-400);
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.social-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   BAG TOAST
   ============================================= */
.bag-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.bag-toast.show { opacity: 1; transform: translateY(0); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-content {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,255,255,0.16); }

.modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.modal-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select option { background: var(--gray-900); }

@media (max-width: 540px) {
  .modal-content { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================
   RESPONSIVE MISC
   ============================================= */
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-scroll-hint { display: none; }
}

/* =============================================
   DARK / LIGHT THEME
   ============================================= */
:root {
  --bg: #000000;
  --bg-2: #1d1d1f;
  --bg-3: #f5f5f7;
  --text: #ffffff;
  --text-muted: #86868b;
  --text-strong: #ffffff;
  --border: rgba(255,255,255,0.08);
  --surface: rgba(255,255,255,0.06);
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --bg-2: #ffffff;
  --bg-3: #000000;
  --text: #1d1d1f;
  --text-muted: #424245;
  --text-strong: #000000;
  --border: rgba(0,0,0,0.08);
  --surface: rgba(0,0,0,0.04);
}

[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] #navbar {
  background: rgba(255,255,255,0.82);
  border-bottom-color: rgba(0,0,0,0.08);
  color: var(--gray-900);
}
[data-theme="light"] .nav-links a { color: var(--gray-700); }
[data-theme="light"] .nav-links a:hover { color: var(--gray-900); background: rgba(0,0,0,0.05); }
[data-theme="light"] .nav-icon-btn:hover { background: rgba(0,0,0,0.05); }
[data-theme="light"] .marquee-strip { background: #e8e8ed; }
[data-theme="light"] .marquee-track span { color: rgba(0,0,0,0.45); }
[data-theme="light"] .feature-statement { background: #f5f5f7; }
[data-theme="light"] .feature-heading { color: var(--gray-900); }
[data-theme="light"] .feature-body { color: var(--gray-700); }
[data-theme="light"] .showcase-dark { background: #e8e8ed; color: var(--gray-900); }
[data-theme="light"] .showcase-dark .showcase-title { color: var(--gray-900); }
[data-theme="light"] .showcase-dark .showcase-desc { color: var(--gray-700); }
[data-theme="light"] .showcase-dark .showcase-price { color: var(--gray-900); }
[data-theme="light"] .showcase-dark .badge { background: rgba(0,0,0,0.07); color: var(--gray-700); }
[data-theme="light"] .detail-section { background: #f5f5f7; }
[data-theme="light"] .detail-heading { color: var(--gray-900); }
[data-theme="light"] .detail-body { color: var(--gray-700); }
[data-theme="light"] .detail-list li { color: var(--gray-700); }
[data-theme="light"] .detail-list strong { color: var(--gray-900); }
[data-theme="light"] .process-section { background: #ffffff; }
[data-theme="light"] .process-heading { color: var(--gray-900); }
[data-theme="light"] .step-card { background: #f5f5f7; }
[data-theme="light"] .step-card:hover { background: #ebebeb; }
[data-theme="light"] .step-title { color: var(--gray-900); }
[data-theme="light"] .step-body { color: var(--gray-700); }
[data-theme="light"] .stats-section { background: #ffffff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .stat-number { color: var(--gray-900); }
[data-theme="light"] .stat-label { color: var(--gray-700); }
[data-theme="light"] .stat-divider { background: rgba(0,0,0,0.1); }
[data-theme="light"] .testimonials-section { background: #f5f5f7; }
[data-theme="light"] .testimonials-heading { color: var(--gray-900); }
[data-theme="light"] .testimonial-card { background: #ffffff; }
[data-theme="light"] .testimonial-quote { color: var(--gray-700); }
[data-theme="light"] .testimonial-author strong { color: var(--gray-900); }
[data-theme="light"] .customize-section { background: #e8e8ed; }
[data-theme="light"] .customize-heading { color: var(--gray-900); }
[data-theme="light"] .customize-body { color: var(--gray-700); }
[data-theme="light"] .cta-section { background: #f5f5f7; }
[data-theme="light"] .cta-heading { color: var(--gray-900); }
[data-theme="light"] .cta-body { color: var(--gray-700); }
[data-theme="light"] .cta-input { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); color: var(--gray-900); }
[data-theme="light"] .cta-input::placeholder { color: var(--gray-400); }
[data-theme="light"] .footer { background: #ffffff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .footer-logo { color: var(--gray-900); }
[data-theme="light"] .footer-tagline { color: var(--gray-700); }
[data-theme="light"] .footer-col h4 { color: var(--gray-900); }
[data-theme="light"] .footer-col a { color: var(--gray-700); }
[data-theme="light"] .footer-col a:hover { color: var(--gray-900); }
[data-theme="light"] .footer-bottom { color: var(--gray-700); }
[data-theme="light"] .footer-legal a { color: var(--gray-700); }
[data-theme="light"] .footer-legal a:hover { color: var(--gray-900); }
[data-theme="light"] .social-link { color: var(--gray-700); }
[data-theme="light"] .social-link:hover { color: var(--gray-900); background: rgba(0,0,0,0.06); }
[data-theme="light"] .nav-mobile-menu { background: rgba(255,255,255,0.97); border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .nav-mobile-menu a { color: var(--gray-700); border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .nav-mobile-menu a:hover { color: var(--gray-900); }
[data-theme="light"] .about-section { background: #ffffff; }

/* Active nav link */
.nav-links a[aria-current="page"] { color: var(--white); font-weight: 500; }
#navbar.light .nav-links a[aria-current="page"] { color: var(--gray-900); }

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 1200;
  background: #111113;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  outline: none;
}
.cart-panel.open { transform: translateX(0); }

[data-theme="light"] .cart-panel {
  background: #ffffff;
  border-left-color: rgba(0,0,0,0.08);
  color: var(--gray-900);
}

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
[data-theme="light"] .cart-header { border-bottom-color: rgba(0,0,0,0.06); }

.cart-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

.cart-close-btn {
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  color: inherit; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-close-btn:hover { background: rgba(255,255,255,0.15); }
[data-theme="light"] .cart-close-btn { background: rgba(0,0,0,0.05); }
[data-theme="light"] .cart-close-btn:hover { background: rgba(0,0,0,0.1); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 64px 24px; gap: 12px;
}
.cart-empty-icon { color: rgba(255,255,255,0.2); margin-bottom: 8px; }
[data-theme="light"] .cart-empty-icon { color: rgba(0,0,0,0.15); }
.cart-empty-title { font-size: 17px; font-weight: 600; }
.cart-empty-sub { font-size: 14px; color: var(--gray-400); margin-bottom: 8px; }

.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
[data-theme="light"] .cart-item { border-bottom-color: rgba(0,0,0,0.05); }
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.cart-item-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 10px; }

.cart-item-actions { display: flex; align-items: center; gap: 14px; }

.qty-control {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden;
}
[data-theme="light"] .qty-control { background: rgba(0,0,0,0.05); }

.qty-btn {
  background: none; border: none; cursor: pointer; color: inherit;
  width: 28px; height: 28px; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: rgba(255,255,255,0.1); }
[data-theme="light"] .qty-btn:hover { background: rgba(0,0,0,0.08); }
.qty-val { font-size: 13px; font-weight: 500; min-width: 20px; text-align: center; }

.cart-remove-btn {
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: var(--gray-400);
  text-decoration: underline; text-underline-offset: 2px;
  padding: 0; font-family: var(--font);
  transition: color var(--transition);
}
.cart-remove-btn:hover { color: #ff3b30; }

.cart-item-price { font-size: 14px; font-weight: 600; }

.cart-footer {
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
[data-theme="light"] .cart-footer { border-top-color: rgba(0,0,0,0.06); }

.cart-summary { margin-bottom: 16px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 4px 0;
}
.cart-summary-sub { font-size: 12px; color: var(--gray-400); display: block; }

.cart-checkout-btn { width: 100%; margin-bottom: 10px; font-size: 15px; padding: 13px; }

.btn-ghost-dark {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 400; padding: 10px;
  border-radius: 980px; cursor: pointer; font-family: var(--font);
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
[data-theme="light"] .btn-ghost-dark { border-color: rgba(0,0,0,0.12); color: var(--gray-700); }
[data-theme="light"] .btn-ghost-dark:hover { border-color: rgba(0,0,0,0.3); color: var(--gray-900); }

/* =============================================
   LIGHTBOX
   ============================================= */
#lightbox {
  position: fixed; inset: 0; z-index: 4000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
#lightbox.open { display: flex; }

.lb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
}

#lightbox .lb-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  max-width: 90vw; max-height: 90vh;
  flex-direction: column;
}

.lb-img {
  max-width: 80vw; max-height: 80vh;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  animation: lbIn 0.3s ease;
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.lb-close {
  position: fixed; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 18px; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
  z-index: 5;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 28px; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; backdrop-filter: blur(8px);
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-caption {
  font-size: 13px; color: rgba(255,255,255,0.6);
  text-align: center; margin-top: 8px;
}

/* =============================================
   ACCESSIBILITY — Focus Rings
   ============================================= */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-primary-dark:focus-visible { outline-offset: 2px; border-radius: 980px; }

/* Skip to content link */
.skip-link {
  position: absolute; top: -999px; left: 8px;
  background: var(--blue); color: white;
  padding: 8px 16px; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  z-index: 9999; text-decoration: none;
  transition: top 0s;
}
.skip-link:focus { top: 8px; }

/* =============================================
   EMBROIDERY SVG ANIMATION
   ============================================= */
.stitch-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.4,0,0.2,1);
}
.stitch-path.animating { stroke-dashoffset: 0; }

/* =============================================
   PAGE HERO (sub-pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 24px 80px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .page-hero { background: #f5f5f7; }

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(0,113,227,0.15), transparent);
  pointer-events: none;
}

.page-hero-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  margin-bottom: 20px;
}
[data-theme="light"] .page-hero-title { color: var(--gray-900); }

.page-hero-sub {
  font-size: clamp(16px, 2vw, 20px); line-height: 1.65;
  color: var(--gray-400); max-width: 560px; margin: 0 auto;
}
[data-theme="light"] .page-hero-sub { color: var(--gray-700); }

/* =============================================
   COLLECTION PAGE
   ============================================= */
.collection-controls {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 24px 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
}
[data-theme="light"] .collection-controls { color: var(--gray-900); }

.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  font-size: 13px; font-weight: 400;
  padding: 7px 16px; border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.75);
  cursor: pointer; font-family: var(--font);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); color: white; border-color: var(--blue);
}
[data-theme="light"] .filter-btn { border-color: rgba(0,0,0,0.15); color: var(--gray-700); }
[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

.sort-select {
  font-size: 13px; padding: 7px 30px 7px 14px;
  background: rgba(255,255,255,0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  color: inherit; font-family: var(--font); cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
}
[data-theme="light"] .sort-select { background-color: #fff; border-color: rgba(0,0,0,0.12); }

.collection-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .collection-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative; cursor: pointer;
  background: var(--gray-900);
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
[data-theme="light"] .product-card { background: #ffffff; border-color: rgba(0,0,0,0.06); }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
[data-theme="light"] .product-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.12); }

.product-card-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: #1a1a2e;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body { padding: 20px; }
.product-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.product-card-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
[data-theme="light"] .product-card-name { color: var(--gray-900); }
.product-card-desc { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; line-height: 1.5; }
[data-theme="light"] .product-card-desc { color: var(--gray-700); }

.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price { font-size: 15px; font-weight: 600; }
[data-theme="light"] .product-card-price { color: var(--gray-900); }

.product-card-add {
  background: var(--blue); color: white; border: none; cursor: pointer;
  font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: 980px;
  font-family: var(--font); transition: background var(--transition), transform var(--transition);
}
.product-card-add:hover { background: var(--blue-hover); transform: scale(1.04); }

.product-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--black); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
[data-theme="light"] .product-card-badge { background: var(--gray-900); }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail { max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }

.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; padding-top: calc(var(--nav-height) + 40px);
}
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; gap: 32px; } }

.product-gallery { position: sticky; top: calc(var(--nav-height) + 20px); }

.gallery-main {
  width: 100%; aspect-ratio: 4/5; border-radius: 20px;
  overflow: hidden; margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-main:hover img { transform: scale(1.02); }

.gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-breadcrumb {
  font-size: 12px; color: var(--gray-400); margin-bottom: 24px;
  display: flex; gap: 8px; align-items: center;
}
.product-breadcrumb a { color: var(--blue); text-decoration: none; }
.product-breadcrumb a:hover { text-decoration: underline; }

.product-info-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.product-info-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px;
}
[data-theme="light"] .product-info-title { color: var(--gray-900); }

.product-review-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.product-stars { color: #FFD60A; font-size: 14px; letter-spacing: 2px; }
.product-review-count { font-size: 13px; color: var(--gray-400); }

.product-price {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
[data-theme="light"] .product-price { color: var(--gray-900); }

.product-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 24px 0;
}
[data-theme="light"] .product-divider { background: rgba(0,0,0,0.07); }

.product-option-label {
  font-size: 13px; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.02em;
}
[data-theme="light"] .product-option-label { color: var(--gray-900); }

.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  min-width: 52px; padding: 8px 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: none;
  color: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--font);
  transition: all var(--transition); text-align: center;
}
.size-btn:hover, .size-btn.active {
  background: var(--white); color: var(--black); border-color: var(--white);
}
[data-theme="light"] .size-btn { border-color: rgba(0,0,0,0.15); color: var(--gray-900); }
[data-theme="light"] .size-btn:hover,
[data-theme="light"] .size-btn.active { background: var(--gray-900); color: white; border-color: var(--gray-900); }

.color-grid { display: flex; gap: 10px; margin-bottom: 24px; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
  position: relative;
}
.color-swatch.active::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--blue); border-radius: 50%;
}

.product-atc-row { display: flex; gap: 12px; margin-top: 28px; }
.product-atc-btn { flex: 1; font-size: 16px; padding: 14px; }
.product-wishlist-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); background: none;
  color: inherit; cursor: pointer; font-family: var(--font);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all var(--transition);
}
.product-wishlist-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
[data-theme="light"] .product-wishlist-btn { border-color: rgba(0,0,0,0.12); }

.product-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.product-features li {
  display: flex; gap: 12px; font-size: 14px; line-height: 1.5;
  color: var(--gray-400);
}
[data-theme="light"] .product-features li { color: var(--gray-700); }
.product-features .feat-icon { color: var(--blue); flex-shrink: 0; }

/* =============================================
   CONFIGURATOR PAGE
   ============================================= */
.configurator { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; }

.config-header {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  text-align: center;
}
.config-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 16px;
}
[data-theme="light"] .config-title { color: var(--gray-900); }
.config-sub {
  font-size: 17px; line-height: 1.6; color: var(--gray-400); max-width: 480px; margin: 0 auto;
}
[data-theme="light"] .config-sub { color: var(--gray-700); }

.config-progress {
  display: flex; align-items: center; gap: 0; margin: 40px 0 48px;
  position: relative;
}
.config-step-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1; position: relative; z-index: 1;
}
.config-step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15); background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gray-400);
  transition: all 0.4s;
}
[data-theme="light"] .config-step-dot { background: #f5f5f7; border-color: rgba(0,0,0,0.1); color: var(--gray-700); }

.config-step-indicator.active .config-step-dot,
.config-step-indicator.done .config-step-dot {
  background: var(--blue); border-color: var(--blue); color: white;
}
.config-step-label { font-size: 11px; color: var(--gray-400); white-space: nowrap; }
.config-step-indicator.active .config-step-label { color: var(--blue); font-weight: 500; }

.config-step-line {
  flex: 1; height: 2px; background: rgba(255,255,255,0.1);
  margin-top: -20px; position: relative; z-index: 0; margin-bottom: 28px;
}
[data-theme="light"] .config-step-line { background: rgba(0,0,0,0.1); }
.config-step-line.done { background: var(--blue); }

.config-panel { display: none; animation: fadeSlideIn 0.4s ease; }
.config-panel.active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.config-panel-title {
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
[data-theme="light"] .config-panel-title { color: var(--gray-900); }
.config-panel-sub { font-size: 14px; color: var(--gray-400); margin-bottom: 32px; }

.config-option-grid {
  display: grid; gap: 12px; margin-bottom: 36px;
}
.config-option-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.config-option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) {
  .config-option-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

.config-option {
  padding: 20px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03);
  cursor: pointer; transition: all var(--transition);
}
[data-theme="light"] .config-option { border-color: rgba(0,0,0,0.1); background: rgba(0,0,0,0.02); }
.config-option:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
[data-theme="light"] .config-option:hover { border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.04); }
.config-option.selected { border-color: var(--blue); background: rgba(0,113,227,0.1); }

.config-option-icon { font-size: 28px; margin-bottom: 10px; }
.config-option-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
[data-theme="light"] .config-option-name { color: var(--gray-900); }
.config-option-desc { font-size: 12px; color: var(--gray-400); line-height: 1.4; }

.config-color-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.config-color-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer;
}
.config-color-option input[type="radio"] { display: none; }
.config-color-swatch {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid transparent; transition: border-color var(--transition);
  position: relative;
}
.config-color-option input:checked + .config-color-swatch {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,113,227,0.3);
}
.config-color-name { font-size: 11px; color: var(--gray-400); }

.config-textarea {
  width: 100%; min-height: 120px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
  color: inherit; font-family: var(--font); font-size: 15px;
  padding: 16px; outline: none; resize: vertical;
  transition: border-color var(--transition); margin-bottom: 36px;
}
[data-theme="light"] .config-textarea { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.12); }
.config-textarea:focus { border-color: var(--blue); }

.config-nav-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.config-back-btn {
  background: none; border: none; color: var(--gray-400); font-size: 14px;
  cursor: pointer; font-family: var(--font); display: flex; align-items: center; gap: 6px;
  padding: 0; transition: color var(--transition);
}
.config-back-btn:hover { color: var(--white); }
[data-theme="light"] .config-back-btn:hover { color: var(--gray-900); }

.config-price-summary {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 24px;
}
[data-theme="light"] .config-price-summary { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.07); }
.config-price-summary h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
[data-theme="light"] .config-price-summary h3 { color: var(--gray-900); }
.config-price-row {
  display: flex; justify-content: space-between; font-size: 13px;
  color: var(--gray-400); padding: 4px 0;
}
[data-theme="light"] .config-price-row { color: var(--gray-700); }
.config-price-total {
  display: flex; justify-content: space-between; font-size: 16px;
  font-weight: 700; padding-top: 12px; margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
[data-theme="light"] .config-price-total { border-top-color: rgba(0,0,0,0.07); color: var(--gray-900); }

/* =============================================
   ARTISANS PAGE
   ============================================= */
.artisans-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) { .artisans-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .artisans-grid { grid-template-columns: 1fr; } }

.artisan-card {
  background: var(--gray-900); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="light"] .artisan-card { background: #ffffff; border-color: rgba(0,0,0,0.06); }
.artisan-card:hover { transform: translateY(-4px); }

.artisan-img {
  width: 100%; aspect-ratio: 1; overflow: hidden;
}
.artisan-img img, .artisan-img-placeholder {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.artisan-img-placeholder {
  display: flex; align-items: flex-end; justify-content: center;
  font-size: 72px; padding-bottom: 16px;
}

.artisan-body { padding: 24px; }
.artisan-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
[data-theme="light"] .artisan-name { color: var(--gray-900); }
.artisan-role { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.artisan-bio { font-size: 14px; line-height: 1.65; color: var(--gray-400); margin-bottom: 16px; }
[data-theme="light"] .artisan-bio { color: var(--gray-700); }
.artisan-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.artisan-tag {
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
}
[data-theme="light"] .artisan-tag { background: rgba(0,0,0,0.05); color: var(--gray-700); }

.artisans-philosophy {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 768px) { .artisans-philosophy { grid-template-columns: 1fr; } }

.philosophy-img { border-radius: 20px; overflow: hidden; }
.philosophy-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.philosophy-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1;
}
[data-theme="light"] .philosophy-copy h2 { color: var(--gray-900); }
.philosophy-copy p { font-size: 16px; line-height: 1.75; color: var(--gray-400); }
[data-theme="light"] .philosophy-copy p { color: var(--gray-700); }

/* =============================================
   JOURNAL PAGE
   ============================================= */
.journal-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journal-grid { grid-template-columns: 1fr; } }

.journal-card {
  background: var(--gray-900); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; text-decoration: none; display: block; color: inherit;
}
[data-theme="light"] .journal-card { background: #ffffff; border-color: rgba(0,0,0,0.06); }
.journal-card:hover { transform: translateY(-4px); }

.journal-card.featured {
  grid-column: span 2;
}
@media (max-width: 560px) { .journal-card.featured { grid-column: span 1; } }

.journal-card-img {
  width: 100%; overflow: hidden;
  background: #1a1a2e;
}
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }

.journal-card:not(.featured) .journal-card-img { aspect-ratio: 16/10; }
.journal-card.featured .journal-card-img { aspect-ratio: 2/1; }

.journal-card-body { padding: 24px; }
.journal-card-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.journal-card-title { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 8px; }
[data-theme="light"] .journal-card-title { color: var(--gray-900); }
.journal-card-excerpt { font-size: 13px; line-height: 1.6; color: var(--gray-400); margin-bottom: 16px; }
[data-theme="light"] .journal-card-excerpt { color: var(--gray-700); }
.journal-card-meta { font-size: 12px; color: rgba(255,255,255,0.3); }
[data-theme="light"] .journal-card-meta { color: rgba(0,0,0,0.3); }
