/* ========== BOOM MODAS - Design System ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-hover: #1a1a1a;
  --yellow: #FFE500;
  --yellow-dark: #D4AF37;
  --yellow-glow: rgba(255, 229, 0, 0.15);
  --yellow-glow-strong: rgba(255, 229, 0, 0.3);
  --white: #FFFFFF;
  --gray: #AAAAAA;
  --gray-dark: #666666;
  --danger: #ff4757;
  --success: #2ed573;

  --font-heading: 'Outfit', sans-serif;
  --font-cursive: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-yellow: 0 4px 20px rgba(255, 229, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ========== UTILITY ========== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--yellow); }
.section-subtitle {
  font-family: var(--font-cursive);
  font-style: italic;
  color: var(--gray);
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,229,0,0.1);
  transition: var(--transition);
}
.header.scrolled { background: rgba(0,0,0,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.nav-logo { display: flex; align-items: baseline; gap: 4px; }
.nav-logo .boom {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.8rem; color: var(--yellow);
  letter-spacing: -1px;
}
.nav-logo .modas {
  font-family: var(--font-cursive); font-style: italic;
  font-size: 1.1rem; color: var(--white);
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 0.95rem;
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 1.2rem; align-items: center; }
.nav-icon {
  position: relative; background: none; color: var(--white);
  font-size: 1.3rem; transition: var(--transition);
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%;
}
.nav-icon:hover { color: var(--yellow); background: var(--yellow-glow); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--yellow); color: var(--black);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 999;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem;
  opacity: 0; transition: opacity 0.4s ease;
}
.mobile-overlay.active { display: flex; opacity: 1; }
.mobile-overlay a {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 700; transition: var(--transition);
}
.mobile-overlay a:hover { color: var(--yellow); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--yellow-glow) 0%, transparent 60%);
  animation: heroPulse 4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; width: 100%;
}
.hero-text { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-block; padding: 0.5rem 1.2rem;
  background: var(--yellow-glow); border: 1px solid rgba(255,229,0,0.3);
  border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: var(--yellow); margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}
.hero-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .yellow { color: var(--yellow); }
.hero-title .cursive {
  font-family: var(--font-cursive); font-style: italic;
  font-weight: 400; color: var(--gray);
  font-size: 0.6em;
}
.hero-desc {
  color: var(--gray); font-size: 1.1rem;
  margin-bottom: 2rem; max-width: 480px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,229,0,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--yellow); color: var(--yellow);
  transform: translateY(-2px);
}
.hero-image {
  flex: 1; max-width: 500px; position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-image::after {
  content: ''; position: absolute;
  top: -20px; right: -20px; bottom: 20px; left: 20px;
  border: 2px solid var(--yellow); border-radius: var(--radius-lg);
  z-index: -1; opacity: 0.3;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement {
  background: var(--yellow); color: var(--black);
  text-align: center; padding: 0.6rem;
  font-weight: 600; font-size: 0.85rem;
  position: fixed; top: 0; width: 100%; z-index: 1001;
  animation: slideDown 0.5s ease;
}
.header { top: 36px; }
.hero { padding-top: 116px; }

/* ========== CATEGORIES ========== */
.categories { padding: 5rem 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; height: 320px; cursor: pointer;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-8px); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.1); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.cat-card-overlay h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 0.3rem;
}
.cat-card-overlay span { color: var(--yellow); font-size: 0.85rem; font-weight: 500; }

/* ========== PRODUCTS ========== */
.products { padding: 5rem 0; }
.products-filter {
  display: flex; justify-content: center; gap: 0.8rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.6rem 1.5rem; border-radius: 999px;
  background: var(--black-card); color: var(--gray);
  font-weight: 500; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--black-card); border-radius: var(--radius);
  overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,229,0,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.product-img {
  position: relative; height: 300px; overflow: hidden;
  background: #1a1a1a;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--black);
  padding: 0.3rem 0.8rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
}
.product-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(60px); transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.7); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); font-size: 0.9rem;
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--yellow); color: var(--black); }
.product-info { padding: 1.2rem; }
.product-category {
  font-size: 0.75rem; color: var(--yellow);
  text-transform: uppercase; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.05rem; margin-bottom: 0.6rem;
}
.product-price { display: flex; align-items: center; gap: 0.8rem; }
.product-price .current {
  font-weight: 700; font-size: 1.15rem; color: var(--yellow);
}
.product-price .original {
  font-size: 0.9rem; color: var(--gray-dark);
  text-decoration: line-through;
}
.product-sizes {
  display: flex; gap: 0.4rem; margin-top: 0.8rem;
}
.size-tag {
  padding: 0.25rem 0.6rem; border-radius: 4px;
  background: rgba(255,255,255,0.05); color: var(--gray);
  font-size: 0.75rem; font-weight: 500;
}

/* ========== OFFERS BANNER ========== */
.offers {
  padding: 5rem 0; position: relative; overflow: hidden;
}
.offers-banner {
  background: linear-gradient(135deg, var(--black-card) 0%, #1a1600 100%);
  border: 1px solid rgba(255,229,0,0.15);
  border-radius: var(--radius-lg); padding: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; position: relative; overflow: hidden;
}
.offers-banner::before {
  content: '💥'; position: absolute; top: -20px; right: -20px;
  font-size: 8rem; opacity: 0.08;
}
.offers-text h2 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem;
}
.offers-text h2 span { color: var(--yellow); }
.offers-text p { color: var(--gray); font-size: 1.1rem; margin-bottom: 1.5rem; }
.countdown {
  display: flex; gap: 1rem;
}
.countdown-item {
  text-align: center; background: rgba(255,229,0,0.1);
  border: 1px solid rgba(255,229,0,0.2);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  min-width: 70px;
}
.countdown-item .number {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.8rem; color: var(--yellow); display: block;
}
.countdown-item .label {
  font-size: 0.7rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 5rem 0; }
.testimonials-track {
  display: flex; gap: 1.5rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 320px; max-width: 380px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 2rem;
  scroll-snap-align: start; flex-shrink: 0;
}
.testimonial-stars { color: var(--yellow); margin-bottom: 1rem; font-size: 1rem; }
.testimonial-text {
  color: var(--gray); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--black); font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-handle { font-size: 0.8rem; color: var(--gray-dark); }

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 5rem 0;
}
.newsletter-box {
  background: linear-gradient(135deg, rgba(255,229,0,0.08), rgba(255,229,0,0.02));
  border: 1px solid rgba(255,229,0,0.15);
  border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; max-width: 600px; margin: 0 auto;
}
.newsletter-box h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.8rem; margin-bottom: 0.5rem;
}
.newsletter-box p { color: var(--gray); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex; gap: 0.8rem; max-width: 440px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 0.9rem 1.2rem;
  background: var(--black); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form input::placeholder { color: var(--gray-dark); }

/* ========== FOOTER ========== */
.footer {
  padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .boom { font-family: var(--font-heading); font-weight: 900; font-size: 2rem; color: var(--yellow); }
.footer-brand .modas { font-family: var(--font-cursive); font-style: italic; font-size: 1.2rem; }
.footer-brand p { color: var(--gray); margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-heading); font-weight: 700;
  margin-bottom: 1.2rem; font-size: 1rem;
}
.footer ul li { margin-bottom: 0.7rem; }
.footer ul a { color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-bottom {
  text-align: center; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--gray-dark); font-size: 0.85rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: bounceIn 1s ease 2s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px;
  max-width: 90vw; height: 100vh; z-index: 1002;
  background: var(--black-soft); border-left: 1px solid rgba(255,229,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1001; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-header h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; }
.cart-close { background: none; color: var(--gray); font-size: 1.5rem; transition: var(--transition); }
.cart-close:hover { color: var(--yellow); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-item-img {
  width: 70px; height: 70px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0; background: #1a1a1a;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.cart-item-price { color: var(--yellow); font-weight: 700; font-size: 0.95rem; }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black-card); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.qty-btn:hover { background: var(--yellow); color: var(--black); }
.cart-item-remove { background: none; color: var(--gray-dark); font-size: 1.2rem; transition: var(--transition); }
.cart-item-remove:hover { color: var(--danger); }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--gray); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-footer {
  padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart-total span:first-child { color: var(--gray); font-size: 1rem; }
.cart-total span:last-child { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--yellow); }
.btn-checkout {
  width: 100%; padding: 1rem; border-radius: 999px;
  background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
}
.btn-checkout:hover { box-shadow: var(--shadow-yellow); transform: translateY(-2px); }

/* ========== QUICK VIEW MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 1003; display: flex; align-items: center;
  justify-content: center; opacity: 0; visibility: hidden;
  transition: var(--transition); padding: 1rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--black-card); border-radius: var(--radius-lg);
  max-width: 800px; width: 100%; max-height: 90vh;
  overflow-y: auto; display: flex;
  border: 1px solid rgba(255,229,0,0.1);
  transform: scale(0.9); transition: var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-img { flex: 1; min-height: 400px; background: #1a1a1a; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { flex: 1; padding: 2rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.5); color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: var(--transition);
}
.modal-close:hover { background: var(--yellow); color: var(--black); }

/* ========== TOAST ========== */
.toast-container { position: fixed; top: 100px; right: 20px; z-index: 1010; }
.toast {
  background: var(--black-card); border: 1px solid rgba(255,229,0,0.2);
  border-radius: var(--radius-sm); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.5rem; animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow);
}
.toast-icon { font-size: 1.3rem; }
.toast-msg { font-size: 0.9rem; }
.toast.success { border-color: rgba(46,213,115,0.3); }
.toast.success .toast-icon { color: var(--success); }

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 1005; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 15vh;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-box { width: 100%; max-width: 600px; padding: 0 1rem; }
.search-input {
  width: 100%; padding: 1.2rem 1.5rem;
  background: var(--black-card); border: 2px solid rgba(255,229,0,0.3);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 1.2rem;
  outline: none; transition: var(--transition);
}
.search-input:focus { border-color: var(--yellow); }
.search-input::placeholder { color: var(--gray-dark); }
.search-results { margin-top: 1.5rem; }
.search-result-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.search-result-item:hover { background: var(--black-card); }
.search-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; color: var(--gray); font-size: 2rem;
  transition: var(--transition);
}
.search-close:hover { color: var(--yellow); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-image { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offers-banner { flex-direction: column; text-align: center; }
  .modal { flex-direction: column; }
  .modal-img { min-height: 250px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { height: 220px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .countdown { gap: 0.5rem; }
  .countdown-item { min-width: 55px; padding: 0.6rem 0.8rem; }
  .countdown-item .number { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { height: 200px; }
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 3rem; }
  .hero-image { display: none; }
  .hero-title { font-size: 2.2rem; }
  .offers-banner { padding: 2rem 1.5rem; }
  .cart-sidebar { width: 100%; max-width: 100vw; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
}
