:root {
  --primary: #1B8A44;
  --primary-hover: #166935;
  --black: #000000;
  --white: #ffffff;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.5;
}

/* ::selection */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.primary-text { color: var(--primary); }
.text-zinc-500 { color: var(--zinc-500); }
.text-zinc-400 { color: var(--zinc-400); }
.text-zinc-300 { color: var(--zinc-300); }

.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-zinc-50 { background-color: var(--zinc-50); }

.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-12 { gap: 3rem; }

/* -------------------
   Navbar 
------------------- */
.navbar {
  background-color: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--zinc-800);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-text {
  font-size: 2.25rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  color: var(--white);
  text-shadow: 2px 2px 0px #404040;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-icons button:hover {
  color: var(--primary);
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  color: var(--white);
}

.cart-btn {
  position: relative;
  color: var(--white);
  transition: color 0.3s;
}

.cart-btn:hover { color: var(--primary); }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 9999px;
}

.mobile-menu {
  display: none !important;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background-color: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.mobile-menu.open {
  display: flex !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu a:hover {
  color: var(--primary);
  transform: scale(1.1) rotate(-1deg);
}

.mobile-menu-icons {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  opacity: 0;
  transition: all 0.5s 0.3s;
}

.mobile-menu.open .mobile-menu-icons {
  opacity: 1;
}

.mobile-menu-icons button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

/* -------------------
   Hero 
------------------- */
.hero {
  position: relative;
  background-color: var(--black);
  height: 95vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000000, rgba(0, 0, 0, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text-block {
  max-width: 42rem;
}

.pill-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(27, 138, 68, 0.2);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(27, 138, 68, 0.3);
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 9vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.9;
  font-weight: 500;
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(27, 138, 68, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 500px; padding: 4rem 0; }
  .hero-desc { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-overlay { background: rgba(0,0,0,0.8); }
}

/* -------------------
   Typography Base
------------------- */
.subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.title-white {
  color: var(--white);
}

.link-w-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  transition: color 0.3s;
}

.link-w-arrow:hover {
  color: var(--primary);
}

.link-w-arrow i {
  transition: transform 0.3s;
}

.link-w-arrow:hover i {
  transform: translateX(4px);
}

/* -------------------
   Catalog Filters Bar
------------------- */
.catalog-filters-bar {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 25px -5px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 30;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-filters-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #4ade80, var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

.catalog-filters-bar:hover {
  box-shadow: 
    0 8px 12px -2px rgba(0, 0, 0, 0.08),
    0 20px 40px -10px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(27, 138, 68, 0.1);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

@media (max-width: 768px) {
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .catalog-filters-bar {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-search {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .filter-search {
    grid-column: span 2;
  }
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--black);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.filter-label i {
  width: 14px;
  height: 14px;
  color: var(--primary);
  transition: transform 0.3s;
}

.filter-group:hover .filter-label i {
  transform: scale(1.15);
}

/* Search Input */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border-radius: 14px;
  border: 2px solid var(--zinc-200);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  color: var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.search-input::placeholder {
  color: var(--zinc-400);
  font-weight: 400;
}

.search-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 
    0 0 0 4px rgba(27, 138, 68, 0.1),
    0 4px 12px rgba(27, 138, 68, 0.15);
  transform: translateY(-1px);
}

.search-icon {
  position: absolute;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--zinc-400);
  pointer-events: none;
  transition: all 0.3s;
}

.search-input:focus ~ .search-icon {
  color: var(--primary);
  transform: scale(1.1);
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  border-radius: 14px;
  border: 2px solid var(--zinc-200);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-select:hover {
  border-color: var(--zinc-300);
  background: var(--zinc-50);
}

.filter-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 
    0 0 0 4px rgba(27, 138, 68, 0.1),
    0 4px 12px rgba(27, 138, 68, 0.15);
  transform: translateY(-1px);
}

.select-icon {
  position: absolute;
  right: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--zinc-400);
  pointer-events: none;
  transition: all 0.3s;
}

.filter-select:focus ~ .select-icon {
  color: var(--primary);
  transform: rotate(180deg);
}

/* Filter Actions */
.filter-actions {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .filter-actions {
    grid-column: 1 / -1;
  }
}

.btn-filter {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--zinc-800) 100%);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 0 0 0 rgba(27, 138, 68, 0);
  position: relative;
  overflow: hidden;
}

.btn-filter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #16a34a 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-filter:hover::before {
  opacity: 1;
}

.btn-filter:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(27, 138, 68, 0.2);
}

.btn-filter:active {
  transform: translateY(0);
}

.btn-filter i {
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  z-index: 1;
}

.btn-filter span {
  position: relative;
  z-index: 1;
}

.btn-reset {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--zinc-200);
  border-radius: 14px;
  color: var(--zinc-500);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.btn-reset:hover {
  border-color: var(--zinc-800);
  background: var(--zinc-800);
  color: var(--white);
  transform: rotate(90deg) scale(1.05);
}

.btn-reset i {
  width: 1.25rem;
  height: 1.25rem;
}

/* -------------------
   Categories Bento Grid
------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

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

.categories-section {
  position: relative;
  z-index: 20;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  z-index: 5;
}

.span-2 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .span-2 { grid-column: span 2; }
}

.height-lg { height: 18rem; }
.height-md { height: 16rem; }

@media (min-width: 768px) {
  .height-lg { height: 20rem; }
}

.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.7s;
}

.bento-card:hover .bento-img {
  opacity: 0.4;
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
}

.bento-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}

.bento-card:hover .bento-arrow {
  opacity: 1;
}

.bento-content {
  position: relative;
  padding: 1.5rem;
  width: 100%;
}

.bento-sub {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.bento-card:hover .bento-sub {
  opacity: 1;
  transform: translateY(0);
}

.bento-title {
  color: var(--white);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

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

.bento-line {
  height: 2px;
  width: 0;
  background-color: var(--primary);
  margin-top: 0.75rem;
  transition: width 0.5s;
}

.bento-card:hover .bento-line {
  width: 100%;
}

/* -------------------
   Featured Products
------------------- */
.divider {
  width: 6rem;
  height: 0.375rem;
  background-color: var(--primary);
  margin: 0 auto;
}

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

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

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

.product-img-wrap {
  position: relative;
  background-color: var(--zinc-100);
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1rem;
}

.badge {
  position: absolute;
  z-index: 10;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
}

.badge-new {
  top: 1rem;
  left: 1rem;
  background-color: var(--black);
}

.badge-custom {
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  padding: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-name a { font-size: 0.85rem; word-break: break-word; }
  .product-price { font-size: 0.95rem; }
  .badge { font-size: 0.55rem; padding: 2px 4px; }
  .btn-add-cart { font-size: 0.65rem; padding: 0.5rem; }
  .product-card { width: 100%; overflow: hidden; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .btn-outline-dark { width: 100%; display: block; padding: 1rem; }
}

.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.star {
  width: 0.75rem;
  height: 0.75rem;
}

.star.filled {
  color: var(--primary);
  fill: var(--primary);
}

.reviews {
  font-size: 0.75rem;
  color: var(--zinc-500);
  margin-left: 0.25rem;
}

.product-name a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1.25;
  transition: color 0.3s;
}

.product-name a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.product-card:hover .product-name a {
  color: var(--primary);
}

.product-brand {
  font-size: 0.875rem;
  color: var(--zinc-500);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--black);
}

.btn-outline-dark {
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background-color: var(--black);
  color: var(--white);
}


/* -------------------
   Promos Section
------------------- */
.promo-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.pill-badge.style-2 {
  background-color: var(--primary);
  color: var(--white);
  border: none;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

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

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

.promo-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.gradient-1 { background: linear-gradient(to bottom right, #059669, #064e3b); }
.gradient-2 { background: linear-gradient(to bottom right, #15803d, #064e3b); }
.gradient-3 { background: linear-gradient(to bottom right, #0f766e, #14532d); }
.gradient-4 { background: linear-gradient(to bottom right, #000000, #27272a); }

.promo-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 138, 68, 0);
  transition: background-color 0.5s;
}

.promo-card:hover .promo-glow {
  background-color: rgba(27, 138, 68, 0.1);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-lg { width: 2.5rem; height: 2.5rem; }
.icon-sm { width: 1rem; height: 1rem; }

.promo-title {
  color: var(--white);
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

.promo-desc {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.promo-gift {
  background-color: rgba(27, 138, 68, 0.2);
  border: 1px solid rgba(27, 138, 68, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
  margin-top: auto;
}

.promo-gift p {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
}

/* -------------------
   How It Works
------------------- */
.bg-primary-10 { background-color: rgba(27, 138, 68, 0.1); }
.border-primary { border: 1px solid rgba(27, 138, 68, 0.2); }

.steps-connector {
  position: absolute;
  top: 4rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, rgba(27, 138, 68, 0.2), var(--primary), rgba(27, 138, 68, 0.2));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-connector { display: block; }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--zinc-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.step-icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(27, 138, 68, 0.2);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.step-icon-wrap i { width: 1.75rem; height: 1.75rem; }

.step-title {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--zinc-500);
  line-height: 1.625;
  max-width: 20rem;
}

/* -------------------
   WhatsApp CTA
------------------- */
.whatsapp-cta {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  padding: 6rem 0;
}

/* Blobs */
.cta-blob {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.cta-blob-1 {
  top: -8rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background-color: rgba(255, 255, 255, 0.06);
  animation: blob-float 20s infinite linear;
}

.cta-blob-2 {
  bottom: -8rem;
  right: -8rem;
  width: 36rem;
  height: 36rem;
  background-color: rgba(0, 0, 0, 0.12);
  animation: blob-float-reverse 25s infinite linear;
}

.cta-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

@keyframes blob-float {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(90deg); }
}

@keyframes blob-float-reverse {
  0%, 100% { transform: scale(1.15) rotate(90deg); }
  50% { transform: scale(1) rotate(0deg); }
}

/* Inner layout */
.cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Left column */
.cta-left {
  flex: 1;
  max-width: 38rem;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.cta-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.cta-pulse {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--white);
  border-radius: 9999px;
  animation: pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}

@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Big title */
.cta-title {
  font-size: clamp(2.2rem, 8vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  word-break: break-word;
}

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

.cta-title-black {
  color: var(--black);
}

.cta-desc {
  color: #dcfce7;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 36rem;
}

/* Right column */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 26rem;
}

/* WhatsApp Buttons */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.wa-btn:hover {
  transform: translateY(-3px) translateX(3px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.35);
}

.wa-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  background-color: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.wa-btn:hover .wa-icon-wrap {
  transform: scale(1.1);
}

.wa-icon-wrap i {
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
}

.wa-text {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.wa-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zinc-500);
  margin-bottom: 0.2rem;
}

.wa-number {
  display: block;
  font-size: clamp(1rem, 5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  word-break: break-all;
}

.wa-phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--zinc-300);
  flex-shrink: 0;
  transition: color 0.25s;
}

.wa-btn:hover .wa-phone-icon {
  color: var(--primary);
}

.cta-disclaimer {
  font-size: 0.75rem;
  font-weight: 600;
  color: #bbf7d0;
  text-align: center;
  margin-top: 0.25rem;
}

@media (max-width: 480px) {
  .wa-btn {
    padding: 1rem;
    gap: 0.5rem;
  }
  .wa-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }
  .wa-icon-wrap i {
    width: 1.2rem;
    height: 1.2rem;
  }
  .wa-number {
    font-size: 1.15rem;
    letter-spacing: -0.05em;
  }
  .wa-label {
    font-size: 0.55rem;
  }
  .wa-phone-icon {
    width: 1rem;
    height: 1rem;
  }
}


/* -------------------
   Footer
------------------- */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 8rem 0 4rem 0; /* Huge top padding to separate from green */
  border-top: 4px solid var(--primary);
  position: relative;
  z-index: 20;
}

.footer-brand .logo {
  transform: scale(1.1);
  transform-origin: left;
}

.footer-brand p {
  color: var(--zinc-400);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 2rem;
  max-width: 20rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.social-links {
  margin-top: 2.5rem;
}

.social-links .social-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--zinc-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--white);
  font-size: 1.25rem;
  border: 1px solid var(--zinc-800);
}

.social-links .social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(27, 138, 68, 0.3);
  border-color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.25rem;
  border-left: 3px solid var(--primary);
  padding-left: 0.85rem;
  line-height: 1;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--zinc-400);
  font-size: 0.825rem;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--zinc-400);
  font-size: 0.825rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--primary);
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #18181b;
  padding-top: 2.5rem;
  margin-top: 6rem;
}

.footer-bottom p, .footer-bottom a {
  color: var(--zinc-600);
  font-size: 0.75rem;
}

.footer-bottom a:hover {
  color: var(--zinc-400);
}

/* -------------------
   Mobile Responsive Navigation & UI
------------------- */

.cart-btn-mobile {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cart-btn-mobile:active {
    transform: scale(0.9);
    background: var(--primary);
}

.cart-badge-mobile {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(27, 138, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(27, 138, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(27, 138, 68, 0); }
}

.mobile-menu-trigger {
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s;
}

.mobile-menu-trigger:active {
    background: rgba(255,255,255,0.1);
}

.menu-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    opacity: 0.6;
    transition: all 0.3s;
}

.menu-close-btn:hover { opacity: 1; transform: rotate(90deg); }

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-text { font-size: 1.8rem; }
    .hero-title { font-size: clamp(2rem, 10vw, 2.5rem); }
}

/* -------------------
   Utilities
------------------- */

.mobile-only { display: flex; }
.desktop-only { display: none; }

@media (min-width: 768px) {
  .mobile-only { display: none; }
  .desktop-only { display: flex; }
}

/* -------------------
   Premium Reveal Animations 
------------------- */
[class^="reveal-"], [class*=" reveal-"] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

[class^="reveal-"].visible, [class*=" reveal-"].visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) rotate(0) skew(0) !important;
  filter: blur(0) !important;
}

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom-in { transform: scale(0.9); }
.reveal-zoom-out { transform: scale(1.1); }
.reveal-skew { transform: translateY(40px) skewY(2deg); }
.reveal-flip-x { transform: perspective(1000px) rotateX(-20deg) translateY(40px); }
.reveal-blur { filter: blur(10px); transform: translateY(20px); }

/* Stagger transition helper */
.stagger-item { transition-delay: calc(var(--delay, 0s) + 0.1s); }

/* Compatibilidad básica */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-slide-right { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.animate-slide-right.visible { opacity: 1; transform: translateX(0); }
.animate-slide-left { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.animate-slide-left.visible { opacity: 1; transform: translateX(0); }

