*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #FFF8FC, #FFF0F5, #F0F0FF, #F0FFF8, #FFF8F0);
  background-size: 400% 400%;
  animation: bodyBg 15s ease infinite;
}
@keyframes bodyBg {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
:root {
  --pink: #FF4D8D;
  --pink-neon: #FF1493;
  --pink-dark: #e63a7a;
  --purple: #6C63FF;
  --purple-neon: #8B5CF6;
  --purple-dark: #5a52e0;
  --gold: #FFD700;
  --gold-neon: #FFE44D;
  --gold-dark: #e6c200;
  --cyan: #00D4FF;
  --cyan-neon: #00F5FF;
  --cyan-dark: #00b8e6;
  --lime: #39FF14;
  --orange: #FF6B35;
  --orange-neon: #FF4500;
  --pearl: #FFF8FC;
  --charcoal: #1F2937;
  --gray: #6B7280;
  --shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.1);
  --shadow-pink: 0 8px 32px rgba(255,77,141,0.2);
  --shadow-neon-pink: 0 0 30px rgba(255,20,147,0.4);
  --shadow-neon-purple: 0 0 30px rgba(139,92,246,0.4);
  --shadow-neon-gold: 0 0 30px rgba(255,215,0,0.4);
  --shadow-neon-cyan: 0 0 30px rgba(0,245,255,0.4);
  --radius: 16px;
  --radius-lg: 24px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: linear-gradient(180deg, var(--pearl), #f0e6ff); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--pink-neon), var(--purple-neon), var(--gold-neon)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--orange-neon), var(--pink-neon), var(--purple-neon)); }
::selection { background: var(--pink); color: white; }

/* Progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 4px; z-index: 9999;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon), var(--lime), var(--orange-neon), var(--pink-neon));
  background-size: 400% 100%;
  animation: progMove 1.5s linear infinite;
  width: 0; transition: width 0.1s;
  box-shadow: 0 0 12px rgba(255,20,147,0.6), 0 0 24px rgba(139,92,246,0.4);
}
@keyframes progMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 400% 0%; }
}

/* Header */
header {
  position: fixed; top: 4px; left: 0; right: 0;
  background: rgba(255,248,252,0.85);
  backdrop-filter: blur(24px);
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(255,20,147,0.08), rgba(139,92,246,0.08), rgba(255,215,0,0.08), rgba(0,245,255,0.08));
  background-size: 300% 100%;
  animation: headerGlow 4s linear infinite;
  pointer-events: none;
}
@keyframes headerGlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
header.scrolled { padding: 8px 0; border-bottom-color: rgba(255,20,147,0.15); box-shadow: 0 4px 30px rgba(255,77,141,0.15), 0 0 40px rgba(139,92,246,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: logoGrad 3s ease infinite;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-neon-pink);
  animation: logoGrad 3s ease infinite, logoPulse 2s ease-in-out infinite;
}
@keyframes logoGrad {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(3deg); box-shadow: var(--shadow-neon-gold); }
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: logoGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--gold-neon);
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 1s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,215,0,0.8);
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(255,215,0,0.8); }
  50% { opacity: 0.4; transform: scale(1.8); box-shadow: 0 0 25px rgba(255,215,0,1); }
}
nav { display: flex; align-items: center; gap: 36px; }
nav a {
  text-decoration: none; color: var(--charcoal);
  font-weight: 700; font-size: 14px;
  transition: all 0.3s;
  position: relative;
  letter-spacing: 0.5px;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 100%;
  animation: navBar 2s linear infinite;
  transition: width 0.3s;
  border-radius: 3px;
}
@keyframes navBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
nav a:hover { color: var(--pink-neon); text-shadow: 0 0 20px rgba(255,20,147,0.3); }
nav a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon));
  color: white !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: var(--shadow-neon-pink);
  letter-spacing: 0.5px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 40px rgba(255,20,147,0.5), 0 0 60px rgba(139,92,246,0.3); color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 28px; height: 3px; background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon)); border-radius: 3px; transition: all 0.3s; }

/* Hero Slider */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,20,147,0.15), transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.15), transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(255,215,0,0.1), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(0,245,255,0.1), transparent 60%);
  animation: heroPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,41,55,0.5), rgba(255,20,147,0.25), rgba(139,92,246,0.2));
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero-shape {
  position: absolute; border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-neon), transparent 70%);
  opacity: 0.2; top: -120px; right: -100px;
}
.hero-shape:nth-child(2) {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--purple-neon), transparent 70%);
  opacity: 0.2; bottom: 40px; left: -80px;
  animation-delay: 2s;
}
.hero-shape:nth-child(3) {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--gold-neon), transparent 70%);
  opacity: 0.15; top: 35%; right: 10%;
  animation-delay: 4s;
}
.hero-shape:nth-child(4) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cyan-neon), transparent 70%);
  opacity: 0.15; top: 15%; left: 10%;
  animation-delay: 6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33% { transform: translateY(-25px) rotate(3deg) scale(1.05); }
  66% { transform: translateY(10px) rotate(-2deg) scale(0.98); }
}
.hero-overlay { position: relative; z-index: 2; width: 100%; }
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: tagGrad 3s ease infinite;
  color: white; padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(255,20,147,0.4), 0 0 40px rgba(139,92,246,0.2);
  animation: tagGrad 3s ease infinite, bounceIn 0.8s ease;
}
@keyframes tagGrad {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px; font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 40px rgba(255,215,0,0.1);
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 .line1 { display: block; animation: neonFlicker 3s ease-in-out infinite; }
.hero h1 .line2 span { display: inline-block; animation: letterDance 2.5s ease-in-out infinite; }
.hero h1 .line2 span:nth-child(1) { color: var(--gold-neon); animation-delay: 0s; text-shadow: 0 0 30px rgba(255,215,0,0.5); }
.hero h1 .line2 span:nth-child(2) { color: white; animation-delay: 0.15s; }
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.8; }
  6% { opacity: 1; }
  7% { opacity: 0.9; }
  8% { opacity: 1; }
  50% { opacity: 1; }
  53% { opacity: 0.85; }
  56% { opacity: 1; }
}
@keyframes letterDance {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.9);
  margin: 24px 0 36px; max-width: 560px;
  animation: fadeUp 0.6s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.6s ease 0.3s both; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  transition: all 0.4s;
  cursor: pointer; border: none;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon));
  color: white;
  box-shadow: 0 8px 40px rgba(255,20,147,0.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 50px rgba(255,20,147,0.5), 0 0 60px rgba(139,92,246,0.3); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-neon), var(--gold-dark));
  color: var(--charcoal);
  box-shadow: 0 8px 40px rgba(255,215,0,0.3);
}
.btn-gold:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 50px rgba(255,215,0,0.4), 0 0 40px rgba(255,215,0,0.2); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: white; color: var(--pink-neon); border-color: white; transform: translateY(-3px); box-shadow: 0 0 30px rgba(255,255,255,0.3); }
.hero-slider-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; z-index: 3;
}
.hero-slider-dots button {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.4s;
}
.hero-slider-dots button.active {
  background: var(--gold-neon);
  border-color: var(--gold-neon);
  width: 44px; border-radius: 7px;
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section { padding: 100px 0; position: relative; overflow: hidden; }
section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon), var(--lime), var(--orange-neon));
  background-size: 400% 100%;
  animation: secBar 4s linear infinite;
}
@keyframes secBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 400% 0%; }
}
.section-tag {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  margin-bottom: 16px; line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px; color: var(--gray);
  max-width: 620px; margin-bottom: 48px; line-height: 1.8;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Collections */
#collections {
  background: radial-gradient(ellipse at top left, #FFE0EC, transparent 50%), radial-gradient(ellipse at top right, #E8E0FF, transparent 50%), radial-gradient(ellipse at bottom left, #FFF8E0, transparent 50%), radial-gradient(ellipse at bottom right, #E0FFF8, transparent 50%), white;
  background-size: 200% 200%;
  animation: collBg 12s ease infinite;
}
@keyframes collBg {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
#collections .section-tag { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); color: white; box-shadow: 0 4px 20px rgba(255,20,147,0.3); }
#collections .section-title {
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes titleGrad {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.col-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border: 2px solid transparent;
  position: relative;
}
.col-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.col-card:hover::before { opacity: 1; }
.col-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255,20,147,0.15), 0 0 40px rgba(139,92,246,0.1);
  border-color: transparent;
}
.col-card .img-wrap {
  width: 100%; height: 230px;
  overflow: hidden;
  position: relative;
}
.col-card .img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(139,92,246,0.1));
  opacity: 0;
  transition: opacity 0.5s;
}
.col-card:hover .img-wrap::after { opacity: 1; }
.col-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.col-card:hover .img-wrap img { transform: scale(1.15); }
.col-card .img-wrap .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.col-card .img-wrap .overlay .icon {
  font-size: 28px; display: block;
}
.col-card .body { padding: 22px 24px 28px; }
.col-card .body h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 8px;
  transition: all 0.3s;
}
.col-card:nth-child(1):hover .body h3 { color: var(--pink-neon); }
.col-card:nth-child(2):hover .body h3 { color: var(--purple-neon); }
.col-card:nth-child(3):hover .body h3 { color: var(--gold-neon); }
.col-card:nth-child(4):hover .body h3 { color: var(--cyan-neon); }
.col-card:nth-child(5):hover .body h3 { color: var(--orange-neon); }
.col-card:nth-child(6):hover .body h3 { color: var(--lime); }
.col-card .body p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* Features */
#features {
  background: radial-gradient(ellipse at top left, #E0F7FF, transparent 50%), radial-gradient(ellipse at bottom right, #FFE0EC, transparent 50%), radial-gradient(ellipse at center, #F0FFF0, transparent 50%), var(--pearl);
  background-size: 200% 200%;
  animation: featBg 10s ease infinite;
}
@keyframes featBg {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
#features .section-tag { background: linear-gradient(135deg, var(--gold-neon), #FFE44D); color: var(--charcoal); box-shadow: 0 4px 20px rgba(255,215,0,0.3); }
#features .section-title {
  background: linear-gradient(135deg, var(--orange-neon), var(--gold-neon), var(--lime));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon), var(--lime));
  background-size: 300% 100%;
  animation: featBar 2s linear infinite;
}
@keyframes featBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,20,147,0.03), rgba(139,92,246,0.03));
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,20,147,0.12), 0 0 30px rgba(139,92,246,0.08);
}
.feature-card .icon { font-size: 48px; margin-bottom: 16px; display: block; transition: all 0.5s; }
.feature-card:nth-child(1):hover .icon { transform: scale(1.3) rotate(-15deg); color: var(--pink-neon); }
.feature-card:nth-child(2):hover .icon { transform: scale(1.3) rotate(15deg); color: var(--gold-neon); }
.feature-card:nth-child(3):hover .icon { transform: scale(1.3) rotate(-15deg); color: var(--cyan-neon); }
.feature-card:nth-child(4):hover .icon { transform: scale(1.3) rotate(15deg); color: var(--purple-neon); }
.feature-card:nth-child(5):hover .icon { transform: scale(1.3) rotate(-15deg); color: var(--orange-neon); }
.feature-card:nth-child(6):hover .icon { transform: scale(1.3) rotate(15deg); color: var(--lime); }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; transition: color 0.3s; }
.feature-card:nth-child(1):hover h3 { color: var(--pink-neon); }
.feature-card:nth-child(2):hover h3 { color: var(--gold-dark); }
.feature-card:nth-child(3):hover h3 { color: var(--cyan-dark); }
.feature-card:nth-child(4):hover h3 { color: var(--purple-neon); }
.feature-card:nth-child(5):hover h3 { color: var(--orange-neon); }
.feature-card:nth-child(6):hover h3 { color: var(--lime); }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* Offers Slider */
#offers {
  background: radial-gradient(ellipse at center, #FFF8E0, transparent 50%), radial-gradient(ellipse at top, #FFE0EC, transparent 50%), radial-gradient(ellipse at bottom, #E0FFF8, transparent 50%), white;
  background-size: 200% 200%;
  animation: offersBg 10s ease infinite;
}
@keyframes offersBg {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
#offers .section-tag { background: linear-gradient(135deg, var(--cyan-neon), var(--purple-neon)); color: white; box-shadow: 0 4px 20px rgba(0,245,255,0.3); }
#offers .section-title {
  background: linear-gradient(135deg, var(--cyan-neon), var(--purple-neon), var(--pink-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.offers-slider-wrap { position: relative; max-width: 1100px; margin: 0 auto; }
.offers-slider { overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 0 30px rgba(255,20,147,0.1); }
.offers-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.offers-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 4px;
}
.offer-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  border: 1px solid #f0f0f0;
  position: relative;
}
.offer-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-neon), var(--pink-neon), var(--cyan-neon));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.offer-card:hover::before { opacity: 1; }
.offer-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(255,20,147,0.12), 0 0 30px rgba(0,245,255,0.08); border-color: transparent; }
.offer-card .img-wrap {
  width: 100%; height: 180px;
  overflow: hidden;
  position: relative;
}
.offer-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.offer-card:hover .img-wrap img { transform: scale(1.15); }
.offer-card .img-wrap .discount {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--pink-neon), var(--gold-neon));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,20,147,0.3);
  animation: discountPulse 2s ease-in-out infinite;
}
@keyframes discountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,20,147,0.5); }
}
.offer-card .body { padding: 18px 20px 22px; }
.offer-card .body h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; transition: color 0.3s; }
.offer-card:nth-child(1):hover .body h3 { color: var(--pink-neon); }
.offer-card:nth-child(2):hover .body h3 { color: var(--purple-neon); }
.offer-card:nth-child(3):hover .body h3 { color: var(--gold-dark); }
.offer-card:nth-child(4):hover .body h3 { color: var(--cyan-dark); }
.offer-card .body p { font-size: 13px; color: var(--gray); }

/* Offers slider controls */
.offers-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.offers-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon));
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.4s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-neon-pink);
}
.offers-btn:hover { transform: scale(1.15) rotate(-10deg); box-shadow: 0 8px 40px rgba(255,20,147,0.5), 0 0 50px rgba(139,92,246,0.3); }
.offers-btn:active { transform: scale(0.95); }
.offers-dots { display: flex; gap: 10px; }
.offers-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.4s;
  border: none;
}
.offers-dot.active { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); width: 36px; border-radius: 6px; box-shadow: 0 0 15px rgba(255,20,147,0.4); }
.offers-dot:hover { background: var(--pink); transform: scale(1.2); }

/* About */
#about {
  background: linear-gradient(160deg, #E8E0FF, #FFF8FC, #FFE0EC, #E0FFF8, #FFF8E0);
  background-size: 400% 400%;
  animation: aboutBg 8s ease infinite;
}
@keyframes aboutBg {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
#about .section-tag { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); color: white; box-shadow: 0 4px 20px rgba(255,20,147,0.3); }
#about .section-title {
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(255,20,147,0.12), 0 0 40px rgba(139,92,246,0.08);
  position: relative;
}
.about-image::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon));
  background-size: 300% 300%;
  animation: aboutBorder 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes aboutBorder {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s;
}
.about-image:hover img { transform: scale(1.08); }
.about-text p {
  font-size: 16px; color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-sign {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon), var(--gold-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
  margin-top: 24px;
}

/* Contact */
#contact {
  background: linear-gradient(135deg, #0a0a1a, #1a0a2e, #0a1a2e, #1a0a1a);
  background-size: 400% 400%;
  animation: contactBg 8s ease infinite;
  color: white;
}
@keyframes contactBg {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}
#contact .section-tag { background: linear-gradient(135deg, var(--gold-neon), var(--orange-neon)); color: var(--charcoal); box-shadow: 0 4px 20px rgba(255,215,0,0.3); }
#contact .section-title {
  background: linear-gradient(135deg, var(--gold-neon), var(--orange-neon), var(--pink-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
#contact .section-sub { color: rgba(255,255,255,0.6); }
.contact-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-item {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  padding: 20px 32px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all 0.4s;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.contact-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.contact-item:hover::before { transform: translateX(100%); }
.contact-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 0 30px rgba(255,20,147,0.1); }
.contact-item .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item:nth-child(1) .icon { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); }
.contact-item:nth-child(2) .icon { background: linear-gradient(135deg, var(--gold-neon), var(--orange-neon)); }
.contact-item:nth-child(3) .icon { background: linear-gradient(135deg, var(--cyan-neon), var(--purple-neon)); }
.contact-item .label { font-size: 13px; opacity: 0.6; }
.contact-item .value { font-size: 17px; font-weight: 700; }
.contact-item .value a { color: var(--gold-neon); text-decoration: none; }
.contact-item .value a:hover { text-decoration: underline; color: var(--pink-neon); }
.contact-social { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.contact-social a {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all 0.4s;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-social a:nth-child(1):hover { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); color: white; transform: translateY(-4px) scale(1.15); box-shadow: 0 8px 30px rgba(255,20,147,0.4); border-color: transparent; }
.contact-social a:nth-child(2):hover { background: linear-gradient(135deg, var(--cyan-neon), var(--purple-neon)); color: white; transform: translateY(-4px) scale(1.15); box-shadow: 0 8px 30px rgba(0,245,255,0.4); border-color: transparent; }
.contact-social a:nth-child(3):hover { background: linear-gradient(135deg, var(--lime), var(--cyan-neon)); color: white; transform: translateY(-4px) scale(1.15); box-shadow: 0 8px 30px rgba(57,255,20,0.4); border-color: transparent; }
.contact-social a:nth-child(4):hover { background: linear-gradient(135deg, var(--orange-neon), var(--pink-neon)); color: white; transform: translateY(-4px) scale(1.15); box-shadow: 0 8px 30px rgba(255,69,0,0.4); border-color: transparent; }

/* Footer */
footer {
  background: linear-gradient(135deg, #080810, #1a0a2e, #0a0a1a, var(--charcoal));
  background-size: 400% 400%;
  animation: footerBg 10s ease infinite;
  color: rgba(255,255,255,0.4);
  padding: 48px 0 32px;
  text-align: center;
  font-size: 14px;
  position: relative;
}
@keyframes footerBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon), var(--lime), var(--orange-neon));
  background-size: 400% 100%;
  animation: barMove 2s linear infinite;
  box-shadow: 0 0 20px rgba(255,20,147,0.4), 0 0 40px rgba(139,92,246,0.2);
}
@keyframes barMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 400% 0%; }
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink-neon), var(--gold-neon), var(--cyan-neon));
  background-size: 200% 200%;
  animation: titleGrad 3s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
footer p { margin-bottom: 4px; }
footer .tagline { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.3); margin-top: 8px; }

/* Mobile */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(255,248,252,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 10px 50px rgba(255,20,147,0.1), 0 0 30px rgba(139,92,246,0.05);
  flex-direction: column; gap: 16px;
  z-index: 999;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--pink-neon), var(--purple-neon), var(--gold-neon), var(--cyan-neon)) 1;
  opacity: 0; transform: translateY(-10px);
  transition: all 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a { text-decoration: none; font-weight: 700; font-size: 16px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; transition: all 0.3s; }
.mobile-menu a:nth-child(1) { color: var(--pink-neon); }
.mobile-menu a:nth-child(2) { color: var(--purple-neon); }
.mobile-menu a:nth-child(3) { color: var(--gold-dark); }
.mobile-menu a:nth-child(4) { color: var(--cyan-dark); }
.mobile-menu a:nth-child(5) { color: var(--orange-neon); }
.mobile-menu a:hover { padding-left: 12px; opacity: 1; }
.mobile-menu a:nth-child(1):hover { color: var(--pink-neon); text-shadow: 0 0 20px rgba(255,20,147,0.3); }
.mobile-menu a:nth-child(2):hover { color: var(--purple-neon); text-shadow: 0 0 20px rgba(139,92,246,0.3); }
.mobile-menu a:nth-child(3):hover { color: var(--gold-dark); text-shadow: 0 0 20px rgba(255,215,0,0.3); }
.mobile-menu a:nth-child(4):hover { color: var(--cyan-dark); text-shadow: 0 0 20px rgba(0,212,255,0.3); }
.mobile-menu a:nth-child(5):hover { color: var(--orange-neon); text-shadow: 0 0 20px rgba(255,107,53,0.3); }
.mobile-menu .nav-cta { background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon)); color: white !important; text-align: center; border-bottom: none; margin-top: 8px; border-radius: 50px; padding: 14px; box-shadow: var(--shadow-neon-pink); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-slide { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 36px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .section-title { font-size: 32px; }
  .collections-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .offers-slide { grid-template-columns: 1fr; gap: 14px; }
  .offers-slide .offer-card .img-wrap { height: 160px; }
  .about-wrap { grid-template-columns: 1fr; text-align: center; }
  section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-tag { font-size: 11px; padding: 6px 16px; }
  .offers-slide { grid-template-columns: 1fr; }
}
