/* ==========================================
   HK GENERALS — CUSTOM CSS
   Premium Product Showcase
   ========================================== */

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

:root {
  --purple: #7340A0;
  --purple-light: #9B6CC6;
  --purple-bg: #F3EEF8;
  --purple-border: #E0D4EC;
  --dark: #2B1B37;
  --muted: #6B5A7A;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 2px 8px rgba(43, 27, 55, 0.06);
  --shadow-md: 0 8px 30px rgba(115, 64, 160, 0.08);
  --shadow-lg: 0 20px 60px rgba(115, 64, 160, 0.12);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--purple-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- SECTION HELPERS ---------- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.75rem; }
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  background: var(--purple);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(115, 64, 160, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--purple-border);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--purple);
  background: rgba(115, 64, 160, 0.04);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.875rem;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.loading-logo span {
  color: var(--purple);
}

.loading-bar-track {
  width: 200px;
  height: 3px;
  background: #f0ecf4;
  border-radius: 3px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--purple);
  border-radius: 3px;
  width: 0%;
  transition: width 0.05s linear;
}

.loading-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  height: 72px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 212, 236, 0.5);
  box-shadow: 0 1px 12px rgba(115, 64, 160, 0.04);
}

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

@media (min-width: 640px) {
  .navbar-inner { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 40px; height: 80px; }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.navbar-links {
  display: none;
  gap: 4px;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(43, 27, 55, 0.7);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--purple);
  background: rgba(115, 64, 160, 0.05);
}

.nav-link.active {
  color: var(--purple);
  background: rgba(115, 64, 160, 0.08);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all var(--transition);
}

.nav-btn:hover {
  background: rgba(115, 64, 160, 0.08);
}

.hamburger { display: flex; }

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.nav-contact-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}

@media (min-width: 640px) {
  .nav-contact-btn { display: inline-flex; }
}

.nav-contact-btn:hover {
  box-shadow: 0 8px 20px rgba(43, 27, 55, 0.25);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--purple-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(43, 27, 55, 0.7);
  transition: all var(--transition);
}

.mobile-link:hover, .mobile-link.active {
  color: var(--purple);
  background: rgba(115, 64, 160, 0.08);
}

.mobile-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  transition: all var(--transition);
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.search-overlay-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 640px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.search-overlay.open .search-overlay-content {
  transform: translateY(0);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--purple-border);
  box-shadow: 0 20px 60px rgba(43, 27, 55, 0.15);
}

.search-box:focus-within {
  border-color: var(--purple);
  box-shadow: 0 20px 60px rgba(115, 64, 160, 0.15), 0 0 0 3px rgba(115, 64, 160, 0.12);
}

.search-icon {
  color: var(--purple);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent;
  font-family: var(--font);
}

.search-box input::placeholder {
  color: var(--muted);
}

.search-clear, .search-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}

.search-clear:hover, .search-close:hover {
  background: var(--purple-bg);
  color: var(--dark);
}

.search-results {
  max-height: 320px;
  overflow-y: auto;
  background: var(--white);
  border-top: 1px solid var(--purple-border);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: -1px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background var(--transition);
  text-align: left;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font);
}

.search-result-item:hover {
  background: var(--purple-bg);
}

.search-result-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: var(--purple-bg);
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.search-result-arrow {
  color: var(--purple);
  flex-shrink: 0;
}

.search-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
}

.search-hint kbd {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--purple-border);
  border-radius: 4px;
  font-size: 0.65rem;
  font-family: var(--font);
}

.search-no-results {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ==========================================
   STICKY SEARCH
   ========================================== */
.sticky-search {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 90%;
  max-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .sticky-search { top: 88px; }
}

.sticky-search.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sticky-search-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--purple-border);
  box-shadow: var(--shadow-md);
  color: var(--muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: var(--font);
}

.sticky-search-btn:hover {
  border-color: var(--purple);
}

.sticky-search-btn svg {
  color: var(--purple);
  flex-shrink: 0;
}

.sticky-search-btn kbd {
  margin-left: auto;
  padding: 3px 8px;
  background: var(--purple-bg);
  border: 1px solid var(--purple-border);
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: var(--font);
  color: var(--muted);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple), transparent);
  top: -10%;
  right: -5%;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple-light), transparent);
  bottom: -5%;
  left: -5%;
  animation: float2 25s ease-in-out infinite;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--purple-border), transparent);
  top: 40%;
  left: 30%;
  opacity: 0.2;
  animation: float3 15s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(115, 64, 160, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--purple-border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--dark);
}

@media (min-width: 640px) {
  .hero-title { font-size: 4.5rem; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 5.5rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 6.5rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.scroll-arrow {
  color: var(--purple);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  padding: 96px 0;
}

@media (min-width: 640px) {
  .about-section { padding: 128px 0; }
}

.about-text {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (min-width: 640px) {
  .about-text { font-size: 1.125rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 48px auto 0;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 640px; }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .stat-value { font-size: 2.75rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================
   CATEGORY SECTION
   ========================================== */
.category-section {
  padding: 64px 0 80px;
}

@media (min-width: 640px) {
  .category-section { padding: 80px 0; }
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--purple-border);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.category-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.category-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(115, 64, 160, 0.3);
}

.category-btn svg {
  width: 16px;
  height: 16px;
}

.product-count {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.product-count span {
  font-weight: 600;
  color: var(--purple);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
  position: relative;
}

.product-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
  position: relative;
}

@media (min-width: 640px) {
  .product-section { padding: 80px 0; }
}

.product-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (min-width: 640px) {
  .product-inner { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .product-inner { padding: 0 40px; }
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
    gap: 80px;
  }

  .product-layout.reverse {
    flex-direction: row-reverse;
  }
}

/* Product Image */
.product-image-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-image-col { width: 50%; }
}

.product-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: var(--purple);
  opacity: 0.08;
  filter: blur(40px);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.product-image-wrap:hover::before {
  opacity: 0.14;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  animation: productFloat 5s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-image-wrap:hover img {
  transform: scale(1.04);
}

.product-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 8px 20px rgba(115, 64, 160, 0.3);
  z-index: 2;
}

/* Product Info */
.product-info-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-info-col { width: 50%; }
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--purple-border);
  background: var(--purple-bg);
  width: fit-content;
}

.product-category-tag svg {
  width: 14px;
  height: 14px;
  color: var(--purple);
}

.product-category-tag span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
}

.product-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark);
}

@media (min-width: 640px) {
  .product-title { font-size: 2.75rem; }
}

@media (min-width: 768px) {
  .product-title { font-size: 3.25rem; }
}

.product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (min-width: 640px) {
  .product-description { font-size: 1.125rem; }
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--purple-bg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.product-spec svg {
  width: 16px;
  height: 16px;
  color: var(--purple);
}

.product-features-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
}

.product-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 480px) {
  .product-features { grid-template-columns: 1fr 1fr; }
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.product-feature span {
  font-size: 0.875rem;
  color: var(--dark);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 8px;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(43, 27, 55, 0.25);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

/* Product Separator */
.product-separator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--purple-border);
}

/* No Products */
.no-products {
  text-align: center;
  padding: 96px 24px;
}

.no-products-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--purple-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--purple);
}

.no-products h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.no-products p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 64px 0;
  border-top: 1px solid var(--purple-border);
  background: var(--white);
}

@media (min-width: 640px) {
  .footer { padding: 80px 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--purple-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ==========================================
   WHATSAPP FLOATING
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s ease-in-out infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float.visible {
  display: flex;
}

@media (min-width: 1024px) {
  .whatsapp-float { display: none !important; }
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(5deg); }
  50% { transform: translate(-20px, -80px) rotate(-3deg); }
  75% { transform: translate(40px, -40px) rotate(2deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-40px, 30px) rotate(-5deg); }
  50% { transform: translate(30px, 60px) rotate(3deg); }
  75% { transform: translate(-20px, 30px) rotate(-2deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

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

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   PRODUCT ANIMATION STAGGER
   ========================================== */
.product-section {
  animation: fadeInUp 0.6s ease-out both;
}
