/* ============================================
   MKHAA — Optimized Static CSS
   Premium Brand Showcase — Performance First
   ============================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8923F;
  --dark: #1A1A1A;
  --charcoal: #2D2D2D;
  --light: #FAFAFA;
  --cream: #FFF8ED;
  --whatsapp: #25D366;
  --soft-blue: #E8F4F8;
  --white: #FFFFFF;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1280px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #082F6F; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 168, 83, 0.5); }

/* ===== KEYFRAME ANIMATIONS (optimized — only GPU-friendly props) ===== */
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes float-reverse {
  0%, 100% { transform: translate3d(0, -10px, 0); }
  50% { transform: translate3d(0, 4px, 0); }
}

@keyframes float-sticker {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}

/* Removed: float-slow, rotate-gentle, fabric-sway — replaced with simpler float */

@keyframes shimmer-water {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

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

@keyframes scroll-bounce {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 6px, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.gold-gradient-text {
  background:black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #243A53;
  color: white;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius:10px;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}
.btn-gold:hover {
  transform: translate3d(0, -2px, 0) scale(1.04);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius:10px;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}
.btn-whatsapp:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #082F6F;
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
}
.section-badge svg { width: 14px; height: 14px; color: white; }
.section-badge span { color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

.section-title { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--dark); }
.section-title-light { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: white; }
.portfolio{
  color: #082F6F;
}
/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ===== AMBIENT GLOW — OPTIMIZED: replaced blur filter with radial gradient ===== */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  /* No more filter:blur — using radial-gradient background instead */
  background: radial-gradient(circle, var(--glow-color, rgba(212,168,83,0.06)) 0%, transparent 70%);
}

/* ===== DECORATIVE RING — static, no infinite animation ===== */
.deco-ring {
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  /* Removed infinite float animation for performance */
}
.deco-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 50%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  height: var(--nav-height);
  background: #000000;
  /* No backdrop-filter — using solid background instead */
}
.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: #000000;

}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background:#000000;
  color: white;
}
@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } .nav { height: 80px; }  }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }

.nav-logo-icon {
  width: 60px; height: 60px;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  background: url('images/ai/logo.jpeg'); background-size: cover;  /* border: 1px solid white; */
}
.nav.scrolled .nav-logo-icon { background: transparent;  }


.nav-logo-icon span {
  font-size: 0.875rem; font-weight: 900;
  color: white;
  transition: color 0.4s var(--ease-smooth);
}
.nav.scrolled .nav-logo-icon span { color: var(--dark); }

.nav-logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 0.15em;
  color: white;
  transition: color 0.4s var(--ease-smooth);
}
.nav-logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: whitesmoke;
  margin-top: 2px;
  transition: color 0.4s var(--ease-smooth);
}
.nav.scrolled .nav-logo-text { color: white }
.nav.scrolled .nav-logo-subtitle { color: white; }
@media (min-width: 640px) { .nav-logo-icon { width: 70px; height: 70px; } .nav-logo-text { font-size: 1.875rem; } .nav-logo-subtitle { font-size: 0.625rem; margin-top: 3px; } }

.nav-links { display: none; align-items: center; gap: 2rem; color: white; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s var(--ease-smooth);
  color: white;
}
.nav-link a{
  color: white;
}
.nav-link:hover { color: white; }
.nav.scrolled .nav-link { color: white; }
.nav.scrolled .nav-link:hover { color: var(--gold); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s var(--ease-smooth);
  border-radius: 1px;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
  display: block; padding: 0.5rem;
  color: white;
  transition: color 0.3s;
}
.nav.scrolled .nav-toggle { color: var(--dark); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.nav-mobile {
  display: none;
  background-color: rgba(255, 255, 255, 0.97);
  overflow: hidden;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.nav-mobile-inner a {
  color: var(--dark); font-weight: 500;
  padding: 0.5rem 0; font-size: 1.125rem;
  transition: color 0.3s;
}
.nav-mobile-inner a:hover { color: var(--gold); }
.nav-mobile-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; background: var(--whatsapp); color: white;
  font-weight: 600; padding: 0.875rem 1.25rem;
  border-radius: 9999px; margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Contain layout for GPU */
  contain: layout style;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/ai/mahalix bahawalpur, custom water bottle bahawalpur, custom shirts bahawalpur, custom sticker bahawalpur, mahalix custom, business progress, custom sticker,custom t-shirt huddy, custom sticker water bottle.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(26, 26, 26, 0.7) 35%,
    rgba(212, 168, 83, 0.12) 85%,
    rgba(212, 168, 83, 0.08) 100%
  );
}

/* Grain effect removed for performance */
.hero-grain { display: none; }

/* Hero parallax floating images — optimized */
.hero-float {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  /* Use transform3d for GPU compositing */
  transform: translate3d(0, 0, 0);
}

/* REMOVED: filter:drop-shadow — using box-shadow on wrapper instead */
.hero-float-bottle {
  bottom: 18%; left: 3%; width: 7rem;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-smooth) 0.6s forwards;
}
.hero-float-bottle img {
  animation: float 8s ease-in-out infinite;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-float-hoodie {
  bottom: 12%; right: 2%; width: 9rem;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-smooth) 0.9s forwards;
}
.hero-float-hoodie img {
  animation: float-reverse 9s ease-in-out infinite;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-float-sticker {
  top: 15%; right: 8%; width: 6rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 1.1s forwards;
}
.hero-float-sticker img {
  animation: float-sticker 6s ease-in-out infinite;
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

@media (min-width: 640px) {
  .hero-float-bottle { width: 10rem; left: 6%; }
  .hero-float-hoodie { width: 12rem; right: 5%; }
  .hero-float-sticker { width: 8rem; right: 12%; }
}
@media (min-width: 768px) {
  .hero-float-bottle { width: 13rem; }
  .hero-float-hoodie { width: 15rem; }
  .hero-float-sticker { width: 10rem; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  max-width: 64rem; margin: 0 auto;
  padding: 0 1rem; text-align: center;
  will-change: transform, opacity;
}
@media (min-width: 640px) { .hero-content { padding: 0 1.5rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background:#243A53;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem; margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-smooth) 0.4s forwards;
}
.hero-badge svg { width: 16px; height: 16px; color: white; fill:white; }
.hero-badge span { color: white; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
@media (min-width: 640px) { .hero-badge { margin-bottom: 2rem; } .hero-badge span { font-size: 0.875rem; } }

.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 900;
  color: white; line-height: 0.95;
  margin-bottom: 1.5rem; letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-smooth) forwards;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 5rem; } }

.hero-subtitle {
  color: whitesmoke;
  font-size: 1rem; max-width: 42rem;
  margin: 0 auto 2.5rem; line-height: 1.625;
  opacity: 1;
  animation: fadeInUp 0.7s var(--ease-smooth) 0.6s forwards;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; margin-bottom: 3.5rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.7s var(--ease-smooth) 0.9s forwards;
}
@media (min-width: 640px) { .hero-actions { flex-direction: column; justify-content: center; display: flex; } }

.hero-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7); font-weight: 500; font-size: 0.875rem;
  padding: 1rem 1.5rem; border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  background: var(--whatsapp);
}
.hero-btn-outline:hover {
  color: white; border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 640px) { .hero-btn-outline { font-size: 1rem; } }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; z-index: 10;
  opacity: 0;
  animation: fadeInUp 0.5s var(--ease-smooth) 2s forwards;
}
.hero-scroll span { color: rgba(255, 255, 255, 0.3); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; }
.hero-scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-dot {
  width: 4px; height: 6px;
  background: rgba(212, 168, 83, 0.6);
  border-radius: 9999px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

/* Hero bottom gradient */
.hero-bottom-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--light), transparent);
  z-index: 5;
}

/* ============================================
   MARQUEE DIVIDER
   ============================================ */
.marquee {
  background: var(--light);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 83, 0.05);
  border-bottom: 1px solid rgba(212, 168, 83, 0.05);
  contain: layout style;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-item {
  display: inline-flex; align-items: center;
  gap: 1.5rem; margin: 0 1.5rem;
}
.marquee-item span { font-family: var(--font-display); color: rgba(26, 26, 26, 0.15); font-size: 0.875rem; font-weight: 900; letter-spacing: 0.2em; }
.marquee-item svg { width: 10px; height: 10px; color: rgba(212, 168, 83, 0.2); fill: rgba(212, 168, 83, 0.2); }

/* ============================================
   PRODUCT CATALOG SECTION
   ============================================ */
.catalog {
  position: relative;
  background: var(--light);
  overflow: hidden;
  padding: 6rem 0;
  contain: content;
}
@media (min-width: 640px) { .catalog { padding: 8rem 0; } }
@media (min-width: 1024px) { .catalog { padding: 10rem 0; } }

.catalog-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .catalog-header { margin-bottom: 5rem; } }
.catalog-header .section-title { font-size: 1.875rem; }
@media (min-width: 640px) { .catalog-header .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .catalog-header .section-title { font-size: 3.75rem; } }
.catalog-header p { color: rgba(26, 26, 26, 0.5); font-size: 1rem; max-width: 42rem; margin: 1.25rem auto 0; line-height: 1.625; }
@media (min-width: 640px) { .catalog-header p { font-size: 1.125rem; } }

/* Category Tabs */
.catalog-tabs { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .catalog-tabs { gap: 0.75rem; } }

.catalog-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(26, 26, 26, 0.5);
  position: relative;
  border: 1px solid transparent;
  border-radius: 10px;
}
.catalog-tab:hover { color: rgba(26, 26, 26, 0.8); background: white; }
.catalog-tab.active { background:#082F6F; border-color:whitesmoke; color:white; }
.catalog-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background:#082F6F;
  transition: width 0.3s var(--ease-smooth); transform: translateX(-50%); border-radius: 1px;
}
.catalog-tab.active::after { width: 100%; }
.catalog-tab svg { width: 16px; height: 16px; }
.catalog-tab-label { display: none; }
@media (min-width: 640px) { .catalog-tab { padding: 0.75rem 1.5rem; } .catalog-tab-label { display: inline; } }

/* Product Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid rgba(26, 26, 26, 0.04);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  contain: layout style;
}
.product-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--light), white);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

/* Product overlay on hover */
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.2), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay p { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; line-height: 1.5; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-overlay .btn-gold { align-self: flex-start; padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* Product tag */
.product-tag { position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.75rem; font-weight: 700; padding: 0.375rem 0.75rem; border-radius: 9999px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.tag-popular, .tag-best-seller { background: rgba(212, 168, 83, 0.9); color: var(--dark); }
.tag-premium { background: rgba(26, 26, 26, 0.85); color: white; }
.tag-new { background: rgba(16, 185, 129, 0.9); color: white; }
.tag-limited { background: rgba(244, 63, 94, 0.9); color: white; }
.tag-eco { background: rgba(5, 150, 105, 0.9); color: white; }

/* Category icon on product */
.product-cat-icon { position: absolute; top: 0.75rem; right: 0.75rem; width: 32px; height: 32px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; }
.product-cat-icon svg { width: 16px; height: 16px; }
.product-cat-icon.bottles { background: rgba(232, 244, 248, 0.3); }
.product-cat-icon.bottles svg { color: #0284C7; }
.product-cat-icon.apparel { background: rgba(26, 26, 26, 0.05); }
.product-cat-icon.apparel svg { color: rgba(26, 26, 26, 0.6); }
.product-cat-icon.stickers { background: rgba(255, 251, 235, 0.5); }
.product-cat-icon.stickers svg { color: #B45309; }

/* Product info */
.product-card-info { padding: 1rem 1.25rem; }
@media (min-width: 640px) { .product-card-info { padding: 1.25rem; } }
.product-subtitle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.product-subtitle.bottles { color: #0369A1; }
.product-subtitle.apparel { color: var(--dark); }
.product-subtitle.stickers { color: #B45309; }
.product-name { font-family: var(--font-display); color: var(--dark); font-weight: 700; font-size: 1rem; line-height: 1.25; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .product-name { font-size: 1.125rem; } }
.product-features { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.product-feature { font-size: 0.625rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }
@media (min-width: 640px) { .product-feature { font-size: 0.75rem; } }
.product-feature.bottles { background: rgba(232, 244, 248, 0.3); color: #0369A1; }
.product-feature.apparel { background: rgba(26, 26, 26, 0.05); color: var(--dark); }
.product-feature.stickers { background: rgba(255, 251, 235, 0.5); color: #B45309; }

/* Catalog bottom CTA */
.catalog-cta { margin-top: 4rem; text-align: center; }
.catalog-cta p { color: rgba(26, 26, 26, 0.4); font-size: 0.875rem; margin-bottom: 1.25rem; }

/* ============================================
   WATER BOTTLE LABELS SECTION
   ============================================ */
.bottle-section {
  position: relative; background: white;
  overflow: hidden; padding: 6rem 0;
  contain: content;
}
.bottle-section .water-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, rgba(232, 244, 248, 0) 0%, rgba(212, 168, 83, 0.25) 50%, rgba(232, 244, 248, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer-water 3.5s ease-in-out infinite;
}
@media (min-width: 640px) { .bottle-section { padding: 8rem 0; } }
@media (min-width: 1024px) { .bottle-section { padding: 10rem 0; } }

.bottle-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .bottle-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

/* Bottle images */
.bottle-images { position: relative; }
.bottle-main { position: relative; z-index: 10; max-width: 24rem; margin: 0 auto; }
@media (min-width: 1024px) { .bottle-main { margin: 0; } }

.bottle-main img {
  animation: float 8s ease-in-out infinite;
  /* Replaced filter:drop-shadow with box-shadow */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.bottle-secondary {
  position: absolute; bottom: -1.5rem; right: -0.5rem; width: 11rem;
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
  border: 4px solid white; z-index: 20;
  overflow: hidden;
  /* Removed rotate-gentle animation for performance */
    width: 250px;
    height: 300px;
    
}
@media (min-width: 640px) { .bottle-secondary { width: 15rem; right: -2rem; } }

.bottle-circle1 {
  position: absolute; top: -2rem; left: -2rem;
  width: 7rem; height: 7rem; border-radius: 9999px;
  background: rgba(232, 244, 248, 0.3); z-index: 0;
}
.bottle-circle2 {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  width: 5rem; height: 5rem; border-radius: 9999px;
  background: rgba(212, 168, 83, 0.08); z-index: 0;
}

/* Bottle features grid */
.bottle-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .bottle-features { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }

.feature-card {
  background: var(--light); border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid rgba(232, 244, 248, 0.5);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
  cursor: default;
}
@media (min-width: 640px) { .feature-card { padding: 1.25rem; } }
.feature-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  border-color: rgba(212, 168, 83, 0.2);
}
.feature-card-icon {
  width: 40px; height: 40px; border-radius: 0.5rem;
  background: rgba(212, 168, 83, 0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-card-icon { background: rgba(212, 168, 83, 0.15); }
.feature-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.feature-card-label { color: var(--dark); font-weight: 700; font-size: 0.875rem; }
.feature-card-desc { color: rgba(26, 26, 26, 0.45); font-size: 0.75rem; margin-top: 0.25rem; line-height: 1.5; }

/* ============================================
   APPAREL SECTION
   ============================================ */
.apparel-section {
  position: relative; background: var(--dark);
  overflow: hidden; padding: 6rem 0;
  contain: content;
}
.apparel-section .apparel-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 640px) { .apparel-section { padding: 8rem 0; } }
@media (min-width: 1024px) { .apparel-section { padding: 10rem 0; } }

.apparel-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .apparel-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.apparel-content { order: 2; }
@media (min-width: 1024px) { .apparel-content { order: 1; } }
.apparel-images { order: 1; position: relative; }
@media (min-width: 1024px) { .apparel-images { order: 2; } }

.apparel-title {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: white; line-height: 0.9;
  margin-bottom: 1.5rem;
  /* Reduced text-shadow blur for performance */
  text-shadow: 0 0 30px rgba(212, 168, 83, 0.2);
}
@media (min-width: 640px) { .apparel-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .apparel-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .apparel-title { font-size: 6rem; } }

.apparel-desc { color: rgba(255, 255, 255, 0.5); font-size: 1rem; line-height: 1.625; margin-bottom: 2.5rem; max-width: 28rem; }
@media (min-width: 640px) { .apparel-desc { font-size: 1.125rem; } }

/* Apparel feature pills */
.apparel-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.apparel-pill {
  display: flex; align-items: center; gap: 0.625rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 9999px; padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.apparel-pill:hover {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.3);
  transform: translate3d(3px, 0, 0);
}
.apparel-pill svg { width: 16px; height: 16px; color: var(--gold); }
.apparel-pill span { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; font-weight: 500; }

/* Apparel main image */
.apparel-main-img {
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  /* Removed fabric-sway animation for performance */
}
.apparel-main-img img { width: 100%; object-fit: cover; transition: transform 0.5s var(--ease-smooth); }
.apparel-main-img:hover img { transform: scale(1.06); }

/* Apparel secondary image */
.apparel-secondary {
  position: absolute; bottom: -2rem; left: -1rem; width: 8rem;
  border-radius: 0.75rem; overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(212, 168, 83, 0.15); z-index: 20;
}
@media (min-width: 640px) { .apparel-secondary { width: 12rem; left: -2.5rem; } }
.apparel-secondary img { width: 100%; transition: transform 0.5s var(--ease-smooth); }
.apparel-secondary:hover img { transform: scale(1.06); }

/* Apparel new drop badge */
.apparel-badge {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 20;
  background: var(--gold); color: var(--dark);
  font-weight: 900; font-size: 0.75rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  box-shadow: 0 6px 16px rgba(212, 168, 83, 0.3);
}
@media (min-width: 640px) { .apparel-badge { font-size: 0.875rem; } }

.apparel-section .section-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.25), transparent);
}

/* ============================================
   STICKER SECTION
   ============================================ */
.sticker-section {
  position: relative; background: var(--cream);
  overflow: hidden; padding: 6rem 0;
  contain: content;
}
@media (min-width: 640px) { .sticker-section { padding: 8rem 0; } }
@media (min-width: 1024px) { .sticker-section { padding: 10rem 0; } }

.sticker-header { text-align: center; margin-bottom: 4rem; }
@media (min-width: 640px) { .sticker-header { margin-bottom: 5rem; } }
.sticker-header .section-title { font-size: 1.875rem; }
@media (min-width: 640px) { .sticker-header .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .sticker-header .section-title { font-size: 3.75rem; } }
.sticker-header p { color: rgba(26, 26, 26, 0.5); font-size: 1rem; max-width: 42rem; margin: 1.25rem auto 0; line-height: 1.625; }
@media (min-width: 640px) { .sticker-header p { font-size: 1.125rem; } }

/* Sticker mockup image */
.sticker-mockup { display: flex; justify-content: center; margin-bottom: 4rem; }
@media (min-width: 640px) { .sticker-mockup { margin-bottom: 5rem; } }
.sticker-mockup img { max-width: 32rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Sticker feature cards grid */
.sticker-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .sticker-cards { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1024px) { .sticker-cards { grid-template-columns: repeat(3, 1fr); } }

/* Sticker card — simplified hover (no 3D transforms for performance) */
.sticker-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
  contain: layout style;
}
.sticker-card:hover {
  transform: translate3d(0, -4px, 0) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Glossy highlight — simplified */
.sticker-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none; z-index: 2; opacity: 0.5;
  transition: opacity 0.3s;
}
.sticker-card:hover::before { opacity: 1; }

/* Peel corner — simplified, no 3D */
.sticker-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 230, 230, 0.9) 100%);
  border-radius: 0 0 8px 0;
  transform: scale(0);
  transition: transform 0.4s var(--ease-bounce);
  z-index: 10;
  box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.08);
  opacity: 0;
}
.sticker-card:hover::after { transform: scale(1); opacity: 1; }
@media (max-width: 640px) { .sticker-card::after { width: 30px; height: 30px; } }

/* Shimmer — removed infinite animation, using static gradient */
.sticker-card-shimmer {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.06) 50%, transparent 55%);
  pointer-events: none; z-index: 3;
  /* Removed shimmer-water animation for performance */
}

.sticker-card-content { position: relative; z-index: 5; }
.sticker-card-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sticker-card-icon svg { width: 24px; height: 24px; }
.sticker-card h3 { font-weight: 700; font-size: 1.125rem; color: var(--dark); margin-bottom: 0.375rem; }
.sticker-card p { color: rgba(26, 26, 26, 0.5); font-size: 0.875rem; line-height: 1.5; }

/* Sticker card color variants */
.sticker-card.amber { background: linear-gradient(135deg, #FEF3C7, #FFFBEB); }
.sticker-card.amber .sticker-card-icon { background: rgba(212, 168, 83, 0.1); }
.sticker-card.amber .sticker-card-icon svg { color: #D4A853; }

.sticker-card.sky { background: linear-gradient(135deg, #E0F2FE, #F0F9FF); }
.sticker-card.sky .sticker-card-icon { background: rgba(56, 189, 248, 0.1); }
.sticker-card.sky .sticker-card-icon svg { color: #38BDF8; }

.sticker-card.rose { background: linear-gradient(135deg, #FFE4E6, #FFF1F2); }
.sticker-card.rose .sticker-card-icon { background: rgba(251, 113, 133, 0.1); }
.sticker-card.rose .sticker-card-icon svg { color: #FB7185; }

.sticker-card.emerald { background: linear-gradient(135deg, #D1FAE5, #ECFDF5); }
.sticker-card.emerald .sticker-card-icon { background: rgba(52, 211, 153, 0.1); }
.sticker-card.emerald .sticker-card-icon svg { color: #34D399; }

.sticker-card.violet { background: linear-gradient(135deg, #EDE9FE, #F5F3FF); }
.sticker-card.violet .sticker-card-icon { background: rgba(167, 139, 250, 0.1); }
.sticker-card.violet .sticker-card-icon svg { color: #A78BFA; }

.sticker-card.orange { background: linear-gradient(135deg, #FFEDD5, #FFF7ED); }
.sticker-card.orange .sticker-card-icon { background: rgba(251, 146, 60, 0.1); }
.sticker-card.orange .sticker-card-icon svg { color: #FB923C; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  position: relative; background: white;
  overflow: hidden; padding: 6rem 0;
  contain: content;
}
@media (min-width: 640px) { .about-section { padding: 8rem 0; } }
.about-section .section-divider {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.25), transparent);
}

.about-header { text-align: center; margin-bottom: 4rem; }
@media (min-width: 640px) { .about-header { margin-bottom: 5rem; } }
.about-header .section-title { font-size: 1.875rem; }
@media (min-width: 640px) { .about-header .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-header .section-title { font-size: 3rem; } }
.about-header p { color: rgba(26, 26, 26, 0.5); font-size: 1rem; max-width: 42rem; margin: 1.5rem auto 0; line-height: 1.625; }
@media (min-width: 640px) { .about-header p { font-size: 1.125rem; } }

.about-cards { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .about-cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.about-card {
  text-align: center; padding: 2rem;
  border-radius: 1rem;
  background: rgba(250, 250, 250, 0.4);
  border: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
@media (min-width: 640px) { .about-card { padding: 2.5rem; } }
.about-card:hover {
  background: rgba(250, 250, 250, 0.8);
  border-color: rgba(212, 168, 83, 0.1);
  box-shadow: 0 8px 20px rgba(212, 168, 83, 0.04);
}
.about-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem; border-radius: 1rem;
  background: rgba(212, 168, 83, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.about-card:hover .about-card-icon { background: rgba(212, 168, 83, 0.15); transform: scale(1.08); }
.about-card-icon svg { width: 28px; height: 28px; color: var(--gold); }
.about-card h3 { font-weight: 700; font-size: 1.125rem; color: var(--dark); margin-bottom: 0.5rem; }
.about-card p { color: rgba(26, 26, 26, 0.45); font-size: 0.875rem; line-height: 1.5; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative; background: var(--dark);
  overflow: hidden; padding: 6rem 0;
  contain: content;
}
@media (min-width: 640px) { .contact-section { padding: 8rem 0; } }

/* OPTIMIZED: replaced filter:blur with radial gradient */
.contact-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner { max-width: 56rem; margin: 0 auto; position: relative; z-index: 10; }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .contact-header { margin-bottom: 4.5rem; } }
.contact-header .section-title-light { font-size: 1.875rem; }
@media (min-width: 640px) { .contact-header .section-title-light { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-header .section-title-light { font-size: 3.75rem; } }
.contact-header p { color: rgba(255, 255, 255, 0.4); font-size: 1rem; max-width: 28rem; margin: 1.25rem auto 0; line-height: 1.625; }
@media (min-width: 640px) { .contact-header p { font-size: 1.125rem; } }

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem; padding: 2rem;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(212, 168, 83, 0.15); }
@media (min-width: 640px) { .contact-card { padding: 3rem; } }

.contact-whatsapp-section { text-align: center; margin-bottom: 2.5rem; }
.contact-whatsapp-section p { color: rgba(255, 255, 255, 0.3); font-size: 0.875rem; margin-bottom: 1.25rem; }
.contact-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--whatsapp); color: white;
  font-weight: 700; font-size: 1.125rem;
  padding: 1.25rem 2.5rem; border-radius: 9999px;
  border: none; cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-green 2.5s ease-in-out infinite;
}
.contact-whatsapp-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }
.contact-whatsapp-btn svg { width: 24px; height: 24px; }
.contact-reply-note { color: rgba(255, 255, 255, 0.25); font-size: 0.75rem; margin-top: 1rem; letter-spacing: 0.025em; }

.contact-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.contact-divider hr { flex: 1; border: none; height: 1px; background: rgba(255, 255, 255, 0.05); }
.contact-divider span { color: rgba(255, 255, 255, 0.2); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }

.contact-links { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 640px) { .contact-links { flex-direction: row; justify-content: center; gap: 3rem; } }
@media (max-width: 640px) { .contact-links { flex-direction: row; justify-content: center; gap: 3rem; }  .contact-whatsapp-btn{
  width: 300px; height: 40px;  font-size: 1rem;
}}
.contact-link { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.4); transition: color 0.3s; }
.contact-link:hover { color: var(--gold); }
.contact-link-icon { width: 40px; height: 40px; border-radius: 9999px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.contact-link:hover .contact-link-icon { background: rgba(212, 168, 83, 0.1); }
.contact-link-icon svg { width: 20px; height: 20px; }
.contact-link span { font-size: 0.875rem; font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem 0;
}
.footer-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-icon { width: 32px; height: 32px; border-radius: 0.5rem; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.footer-logo-icon span { font-size: 0.75rem; font-weight: 900; color: var(--dark); }
.footer-logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.125rem; font-weight: 900; letter-spacing: 0.12em; color: white; }
.footer-logo-subtitle { font-family: var(--font-sans); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(212, 168, 83, 0.7); margin-top: 2px; }
.footer-separator { color: rgba(255, 255, 255, 0.15); font-size: 0.875rem; display: none; }
@media (min-width: 640px) { .footer-separator { display: inline; } .footer-socials  }
.footer-tagline { color: rgba(255, 255, 255, 0.3); font-size: 0.875rem; display: none; }
@media (min-width: 640px) { .footer-tagline { display: inline; } }

.footer-socials { display: flex; align-items: center; gap: 1.25rem; }
.footer-social { color: rgba(255, 255, 255, 0.3); transition: color 0.3s; }
.footer-social:hover { color: var(--gold); }
.footer-social.whatsapp:hover { color: white; }
.footer-social svg { width: 20px; height: 20px; }
.footer-copy { color: rgba(255, 255, 255, 0.2); font-size: 0.75rem; }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 56px; height: 56px;
  background: var(--whatsapp); border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease-smooth);
  animation: pulse-green 2.5s ease-in-out infinite;
  opacity: 0; transform: scale(0);
}
.floating-whatsapp.visible { opacity: 1; transform: scale(1); }
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 28px; height: 28px; color: white; }
@media (min-width: 1024px) { .floating-whatsapp { display: none; } }

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 48px; height: 48px;
  background: rgba(26, 26, 26, 0.9); color: white;
  border-radius: 9999px;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.scroll-top:hover { background: var(--dark); transform: translate3d(0, -2px, 0); }
.scroll-top.visible { display: flex; }
.scroll-top svg { width: 20px; height: 20px; }
@media (max-width: 1023px) { .scroll-top { display: none !important; } }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.page-wrapper main { flex: 1; }


/*================================= Additional CSS*/
.sub-image{
    width: 100%;
    height: 100%;
}