/* ═══════════════════════════════════════════════
   LOV.ET — Main Stylesheet  |  Pink & Black Theme
   ═══════════════════════════════════════════════ */

/* ── FONTS & RESET ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  /* ── PINK & BLACK PALETTE ── */
  --bg:        #080008;
  --bg2:       #0f000f;
  --card-bg:   rgba(255,255,255,0.04);
  --border:    rgba(254,100,225,0.12);

  --pink:      #fe3adc;
  --pink-light:#fe88ef;
  --rose:      #c310a5;
  --hot-pink:  #e01ac1;
  --gold:      #ffd700;

  --grad:       linear-gradient(135deg, #fe3adc, #e01ac1);
  --grad-soft:  linear-gradient(135deg, #fe88ef, #fe3adc);
  --grad-hover: linear-gradient(135deg, #fe88ef, #c310a5);

  --text:       #fff0f6;
  --text-muted: #c880a0;

  --radius:     16px;
  --radius-lg:  28px;
  --shadow:     0 20px 60px rgba(0,0,0,0.6);
  --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

html { }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

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

/* ═══════════ HEART CURSOR ═══════════ */
.cursor {
  width: 24px; height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fe3adc' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/cover no-repeat;
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: opacity 0.2s, filter 0.2s;
  will-change: transform;
  filter: drop-shadow(0 0 5px rgba(254,58,220,0.8));
}
.cursor.cursor--hover {
  filter: drop-shadow(0 0 10px rgba(254,58,220,1));
}

.cursor-follower {
  width: 44px; height: 44px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fe3adc' stroke-width='1.2' stroke-opacity='0.45' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/cover no-repeat;
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: opacity 0.2s;
  will-change: transform;
}
.cursor-follower.cursor-follower--hover { opacity: 0.8; }
body:hover .cursor-follower { opacity: 1; }

/* ═══════════ LOADER ═══════════ */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  margin-bottom: 1.5rem;
  display: flex; justify-content: center; align-items: center;
}
.loader-logo img {
  height: 120px;
  width: auto;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: var(--grad);
  width: 0%; border-radius: 99px;
  animation: loadProgress 1.8s ease forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 99px; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(8,0,8,0.9);
  backdrop-filter: blur(24px);
  padding: 0.8rem 5%;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center;
}
.logo-img { height: 80px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  position: relative; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--grad); border-radius: 99px;
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--grad); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 20px rgba(254,58,220,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(254,58,220,0.6); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 99px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem;
  padding: 7rem 5% 4rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(254,58,220,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(254,58,220,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(254,58,220,0.06) 0%, transparent 50%),
    var(--bg);
}

.particles-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(254,58,220,0.1); border: 1px solid rgba(254,58,220,0.25);
  padding: 0.4rem 1rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; color: var(--pink);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(254,58,220,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(254,58,220,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 1.2rem;
  color: #fff;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeInUp 0.8s ease 1.1s both;
}
.stat { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff;
}
.stat span { color: var(--pink); }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: -0.2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; animation: fadeInRight 1s ease 0.5s both; }
.hero-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.hero-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(254,58,220,0.1);
  transition: transform 0.6s ease;
}
.hero-img:hover { transform: scale(1.02) rotate(0.5deg); }

.hero-badge-float {
  position: absolute; background: rgba(8,0,8,0.9);
  backdrop-filter: blur(12px); border: 1px solid rgba(254,58,220,0.2);
  padding: 0.6rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem;
  color: var(--text);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.badge-float-1 { top: -1rem; left: -1.5rem; animation: floatBadge1 3s ease-in-out infinite; }
.badge-float-2 { bottom: 2rem; right: -1.5rem; animation: floatBadge2 3.5s ease-in-out infinite; }
.badge-float-3 { top: 50%; right: -2rem; transform: translateY(-50%); animation: floatBadge3 4s ease-in-out infinite; }

@keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatBadge3 { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(8px)} }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; color: var(--text-muted);
  animation: fadeIn 1s ease 2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ═══════════ MARQUEE ═══════════ */
.marquee-section {
  overflow: hidden; background: rgba(254,58,220,0.06);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-weight: 500; font-size: 0.9rem; color: var(--text-muted);
}
.marquee-track .dot { color: var(--pink); font-size: 0.7rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════ SHARED SECTION ═══════════ */
.section { padding: 6rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(254,58,220,0.1); border: 1px solid rgba(254,58,220,0.2);
  color: var(--pink); padding: 0.3rem 1rem; border-radius: 99px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.2; color: #fff;
  margin-bottom: 0.8rem;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* AOS animations */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }
[data-aos="left"] { transform: translateX(-40px); }
[data-aos="left"].visible { transform: translateX(0); }
[data-aos="right"] { transform: translateX(40px); }
[data-aos="right"].visible { transform: translateX(0); }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 24px rgba(254,58,220,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(254,58,220,0.6); transform: translateY(-3px); }

.btn-ghost {
  border: 1.5px solid rgba(254,58,220,0.25); color: var(--text-muted);
  background: rgba(254,58,220,0.04);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--text); background: rgba(254,58,220,0.08); }

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

/* ═══════════ PRODUCTS ═══════════ */
.products-section { background: var(--bg); }

.product-tabs {
  display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.tab-btn {
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: rgba(254,58,220,0.03);
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(254,58,220,0.3);
}

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

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 30px rgba(254,58,220,0.08);
  border-color: rgba(254,58,220,0.3);
}

.card-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--grad); color: #fff;
  padding: 0.3rem 0.75rem; border-radius: 99px;
  font-size: 0.72rem; font-weight: 700;
}
.card-tag.hot  { background: linear-gradient(135deg, #d900b8, #fe3adc); }
.card-tag.new  { background: linear-gradient(135deg, #8e2de2, #fe3adc); }

.card-img-wrap { overflow: hidden; height: 240px; position: relative; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .card-img { transform: scale(1.08); }

.card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .card-overlay { opacity: 1; }
.quick-view-btn {
  background: rgba(254,58,220,0.95); color: #fff;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  transform: translateY(10px); transition: transform var(--transition);
  box-shadow: 0 4px 20px rgba(254,58,220,0.4);
}
.product-card:hover .quick-view-btn { transform: translateY(0); }

.card-body { padding: 1.25rem 1.4rem; }
.card-category { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--pink); text-transform: uppercase; }
.card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin: 0.3rem 0 0.5rem; color: #fff; }
.card-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 1.15rem; font-weight: 700; color: var(--pink); }
.card-btn {
  background: rgba(254,58,220,0.1); color: var(--pink);
  border: 1px solid rgba(254,58,220,0.25);
  padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  transition: all var(--transition);
}
.card-btn:hover { background: var(--grad); color: #fff; border-color: transparent; }

.product-card.hidden { display: none; }
.product-card.show-card { animation: cardIn 0.4s ease; }
@keyframes cardIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }

/* ═══════════ ABOUT ═══════════ */
.about-section {
  background: radial-gradient(ellipse at 80% 50%, rgba(254,58,220,0.07) 0%, transparent 60%), var(--bg2);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-img-wrap { position: relative; border-radius: var(--radius-lg); }
.about-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  position: relative; z-index: 2;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 3;
  background: var(--grad); color: #fff;
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  text-align: center; box-shadow: 0 10px 40px rgba(254,58,220,0.4);
  min-width: 120px;
}
.about-badge-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; line-height: 1;
}
.about-badge span:not(.about-badge-num) { font-size: 0.75rem; font-weight: 500; }

.about-decoration {
  position: absolute; inset: -15px; border-radius: calc(var(--radius-lg) + 10px);
  border: 1px solid rgba(254,58,220,0.15);
  z-index: 1;
}

.about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0 2rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.about-feature:hover { border-color: rgba(254,58,220,0.3); transform: translateX(5px); }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-feature h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
.about-feature p  { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(254,58,220,0.2); }
.testimonial-card.featured { border-color: rgba(254,58,220,0.3); background: rgba(254,58,220,0.04); }

.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-muted); line-height: 1.75; font-size: 0.92rem; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testimonial-author span  { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════ CONTACT ═══════════ */
.contact-section {
  background: radial-gradient(ellipse at 20% 50%, rgba(254,58,220,0.07) 0%, transparent 60%), var(--bg2);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-intro { color: var(--text-muted); line-height: 1.75; margin: 1rem 0 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
.contact-detail span  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem;
}

.form-group { position: relative; margin-bottom: 1.4rem; }
.form-input {
  width: 100%; background: rgba(254,58,220,0.03);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1rem 0.4rem;
  color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus { border-color: var(--pink); }
.form-label {
  position: absolute; left: 1rem; top: 0.8rem;
  font-size: 0.85rem; color: var(--text-muted);
  transition: all 0.25s ease; pointer-events: none;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-select.has-value ~ .form-label,
.form-input.has-value ~ .form-label {
  top: 0.3rem; font-size: 0.7rem; color: var(--pink);
}
.form-textarea { resize: vertical; min-height: 110px; padding-top: 1.4rem; }
.form-select { color: var(--text); }
.form-select option { background: var(--bg); }

.form-success {
  margin-top: 1rem; padding: 0.8rem 1rem;
  background: rgba(254,58,220,0.1); border: 1px solid rgba(254,58,220,0.3);
  border-radius: var(--radius); font-size: 0.85rem; color: var(--pink-light);
  display: none; text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.4s ease; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: #040004; border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 2fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
  padding: 4rem 5%;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 80px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col a, .footer-col span {
  display: block; font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.6rem; transition: color var(--transition);
}
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 1.2rem 5%;
  border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-policies a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-policies a:hover { color: var(--pink); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:none} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: rgba(8,0,8,0.97);
    backdrop-filter: blur(20px); padding: 2rem 5%;
    border-bottom: 1px solid var(--border); gap: 1.5rem; z-index: 999;
  }
  .nav-links.open .nav-cta-mobile {
    display: inline-block; background: var(--grad); color: #fff;
    padding: 0.7rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    text-align: center;
  }

  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .badge-float-2, .badge-float-3 { display: none; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid [data-aos="right"] { order: -1; }
  .about-badge { right: 0.5rem; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}
