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

:root {
  --bg: #050508;
  --bg-alt: #0a0c12;
  --bg-surface: #0e1118;
  --bg-card: #111520;
  --bg-elevated: #161b28;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #f0f2f5;
  --text-dim: #8891a0;
  --text-muted: #454d5c;
  --accent: #00d4aa;
  --accent-light: #33e8c4;
  --accent-blue: #4ea8f0;
  --accent-gold: #c9a84c;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ===== LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: loaderReveal 1s var(--ease) 0.3s forwards;
}
.loader-sub {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
  opacity: 0;
  animation: loaderReveal 0.8s var(--ease) 0.8s forwards;
}
.loader-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-top: 28px;
  transform: scaleX(0);
  animation: loaderLine 1.5s var(--ease) 0.5s forwards;
}
@keyframes loaderReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLine {
  to { transform: scaleX(1); }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 14px 0;
}
.header.hide { transform: translateY(-100%); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.icon-btn:hover { color: var(--text); border-color: var(--accent); }
.icon-btn .badge {
  position: absolute; top: -2px; right: -2px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent); color: var(--bg); font-size: 0.55rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px; padding: 4px; z-index: 1001;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--text);
  border-radius: 1px; transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0 60px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 212, 170, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 70% 70%, rgba(78, 168, 240, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-label .line {
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: textReveal 1.2s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.7s; }

.hero-title .outline-text {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

@keyframes textReveal {
  to { transform: translateY(0); }
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-desc, .hero-cta { transform: translateY(20px); }

.hero-visual {
  margin-top: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.4s forwards;
  transform: translateY(30px);
}
.hero-visual img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 212, 170, 0.08));
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fadeUp 1s var(--ease) 2s forwards;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.7; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 0;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.25);
}

.btn-outline {
  padding: 16px 36px;
  border: 1px solid var(--border-hover);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }

/* ===== MARQUEE ===== */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  padding: 160px 0;
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.about-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.1;
}
.about-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 40px;
}
.about-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
  transition: transform 0.8s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,8,0.7) 100%);
  pointer-events: none;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 140px 0;
  position: relative;
}
.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.section-header-left {}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

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

.product-card {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 212, 170, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover { z-index: 2; }

.product-card-image {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}
.product-card-image img {
  max-height: 250px;
  width: auto;
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
}
.product-card:hover .product-card-image img {
  transform: translateY(-12px) scale(1.05);
}

.product-card-info {
  padding: 20px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.product-card-info h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-card-info .price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.product-card-info .category-tag {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.product-card-actions {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}
.product-card-actions button {
  width: 36px; height: 36px;
  border: 1px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.product-card-actions button:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ===== STATS SECTION ===== */
.stats-band {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  text-align: center;
}
.stats-item {
  padding: 40px 20px;
}
.stats-item .value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stats-item .value .accent { color: var(--accent); }
.stats-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== FAQ ===== */
.faq {
  padding: 140px 0;
  position: relative;
}
.faq .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left {}
.faq-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.faq-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}
.btn-accent {
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.25);
}

.faq-accordion {}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item.active { border-color: var(--border-hover); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.3s ease;
}
.faq-item.active .faq-question,
.faq-question:hover { color: var(--text); }
.faq-question .icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.4s var(--ease);
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.newsletter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.newsletter p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 440px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.newsletter-visual {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.newsletter-visual img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 212, 170, 0.1));
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-right: none;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand-col .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-col .footer-logo span { color: var(--accent); }
.footer-brand-col .footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-contact svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover { color: var(--accent); }

.footer-ritual {
  text-align: center;
  padding: 60px 0 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-ritual em {
  font-style: normal;
  color: var(--accent);
}

/* ===== SHOP OVERLAY ===== */
.shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
}
.shop-overlay.active { opacity: 1; visibility: visible; }
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(20px);
  z-index: 10;
}
.shop-header h2 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.shop-close-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.shop-close-btn:hover { border-color: var(--accent); color: var(--text); }

.shop-content {
  padding: 48px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.shop-grid .product-card { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-title { font-size: clamp(2.5rem, 7vw, 5rem); }
  .hero-visual img { max-height: 320px; }
  .about { padding: 100px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 350px; }
  .products { padding: 100px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq { padding: 100px 0; }
  .faq .container { grid-template-columns: 1fr; gap: 48px; }
  .newsletter { padding: 100px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .header { padding: 16px 0; }
  .header.scrolled { padding: 12px 0; }
  .logo { font-size: 1rem; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    padding: 8px 16px;
  }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-title { line-height: 1.0; margin-bottom: 20px; }
  .hero-title .outline-text {
    -webkit-text-stroke: 1px var(--text);
  }
  .hero-desc { font-size: 0.85rem; margin-bottom: 32px; padding: 0 8px; }
  .hero-cta { flex-direction: column; gap: 12px; width: 100%; padding: 0 16px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-visual img { max-height: 260px; }
  .hero-visual::before { width: 200px; height: 200px; }
  .hero-scroll-hint { display: none; }

  /* Marquee */
  .marquee { padding: 20px 0; }
  .marquee-item { font-size: 0.72rem; padding: 0 28px; gap: 28px; }

  /* About */
  .about { padding: 80px 0; }
  .about-inner { gap: 36px; }
  .about-heading { font-size: 2rem; margin-bottom: 20px; }
  .about-text { font-size: 0.85rem; margin-bottom: 28px; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .stat-item .stat-number { font-size: 1.6rem; }
  .about-image img { height: 260px; }

  /* Products */
  .products { padding: 80px 0; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .product-card-image { height: 200px; padding: 20px; }
  .product-card-image img { max-height: 160px; }
  .product-card-info { padding: 14px 16px 16px; }
  .product-card-info h4 { font-size: 0.88rem; }
  .product-card-info .price { font-size: 0.78rem; }
  .product-card-actions {
    opacity: 1; transform: none;
    bottom: 16px; right: 16px;
  }
  .product-card-actions button { width: 32px; height: 32px; }

  /* Stats */
  .stats-band { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-item { padding: 24px 16px; }
  .stats-item .value { font-size: 1.8rem; }
  .stats-item .label { font-size: 0.62rem; letter-spacing: 0.12em; }

  /* FAQ */
  .faq { padding: 80px 0; }
  .faq .container { grid-template-columns: 1fr; gap: 36px; }
  .faq-heading { font-size: 2rem; }
  .faq-question { padding: 20px 0; font-size: 0.85rem; min-height: 48px; }

  /* Newsletter */
  .newsletter { padding: 80px 0; }
  .newsletter-visual img { max-height: 180px; }
  .newsletter h2 { font-size: 1.8rem; }
  .newsletter p { font-size: 0.82rem; padding: 0 8px; margin-bottom: 28px; }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
    padding: 0 8px;
  }
  .newsletter-form input {
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 14px 20px;
    min-height: 48px;
  }
  .newsletter-form button {
    padding: 14px 24px;
    min-height: 48px;
  }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-ritual { padding-top: 40px; font-size: 1rem; }

  /* Shop overlay */
  .shop-header { padding: 16px 20px; }
  .shop-content { padding: 24px 20px; }
  .shop-filters { flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
  .filter-btn { padding: 10px 18px; font-size: 0.68rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-label { font-size: 0.6rem; letter-spacing: 0.25em; }
  .hero-label .line { width: 16px; }

  .btn-primary, .btn-outline {
    padding: 14px 24px;
    font-size: 0.72rem;
  }
  .btn-accent { padding: 14px 28px; font-size: 0.72rem; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 240px; padding: 24px; }
  .product-card-image img { max-height: 200px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .about-stats { gap: 16px; }
  .stat-item .stat-number { font-size: 1.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .shop-grid { grid-template-columns: 1fr; }
  .shop-filters { gap: 4px; }
  .filter-btn { padding: 8px 14px; font-size: 0.65rem; }
}
