/* =========================
   1) Reset & Base
========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(214, 50%, 8%);
  --foreground: hsl(210, 40%, 98%);

  --card: hsl(214, 45%, 12%);
  --card-foreground: hsl(210, 40%, 98%);

  --primary: hsl(168, 100%, 42%);
  --primary-foreground: hsl(214, 50%, 8%);

  --secondary: hsl(214, 40%, 18%);
  --secondary-foreground: hsl(210, 40%, 98%);

  --muted: hsl(214, 35%, 20%);
  --muted-foreground: hsl(215, 20%, 65%);

  --accent: hsl(180, 70%, 45%);
  --border: hsl(214, 30%, 20%);

  --destructive: hsl(0, 84%, 60%);

  --radius: 0.75rem;

  --gradient-primary: linear-gradient(
    135deg,
    hsl(168, 100%, 42%) 0%,
    hsl(180, 70%, 45%) 100%
  );

  --gradient-card: linear-gradient(
    145deg,
    hsl(214, 45%, 14%) 0%,
    hsl(214, 45%, 10%) 100%
  );

  --gradient-hero: linear-gradient(
    135deg,
    hsl(214, 50%, 6%) 0%,
    hsl(214, 50%, 12%) 50%,
    hsl(214, 45%, 8%) 100%
  );

  --shadow-glow: 0 0 40px hsla(168, 100%, 42%, 0.15);
  --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.5);
  --shadow-button: 0 4px 20px hsla(168, 100%, 42%, 0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   2) Animaciones globales
========================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsla(168, 100%, 42%, 0.2); }
  50% { box-shadow: 0 0 40px hsla(168, 100%, 42%, 0.4); }
}

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

.animate-slide-up {
  animation: slide-up 0.6s ease-out forwards;
}

/* =========================
   3) Navbar
========================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  background: hsla(214, 50%, 8%, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(214, 30%, 20%, 0.5);
}

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

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: none;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(210, 40%, 98%, 0.8);
  transition: color 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-actions button,
.navbar-actions a {
  padding: 0.5rem;
  background: none;
  border: none;
  color: hsla(210, 40%, 98%, 0.7);
  cursor: pointer;
  transition: color 0.3s;
  font-size: 1.125rem;
}

.navbar-actions button:hover,
.navbar-actions a:hover {
  color: var(--primary);
}

.navbar-actions .whatsapp:hover {
  color: #25D366;
}

.cart-badge { position: relative; }

.cart-badge span {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile nav menu */
.mobile-nav{
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: hsla(214, 50%, 6%, .97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity .25s ease;
}

.mobile-nav.open{
  display: flex;
  opacity: 1;
}

.mobile-nav a{
  font-size: 1.25rem;
  font-weight: 600;
  color: hsla(210, 40%, 98%, .85);
  transition: color .3s;
  padding: .5rem 1rem;
}

.mobile-nav a:hover,
.mobile-nav a.active{
  color: var(--primary);
}

.mobile-nav-close{
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .mobile-menu { display: none; }
  .mobile-nav { display: none !important; }
}

/* =========================
   4) Buttons 
========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);

  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);

  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(168, 100%, 42%, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);

  background: transparent;
  color: var(--primary);
  border: 1px solid hsla(168, 100%, 42%, 0.5);

  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: hsla(168, 100%, 42%, 0.1);
  border-color: var(--primary);
}

/* =========================
   5) Cards / Helpers
========================= */
.card-glass {
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.card-glass:hover {
  border-color: hsla(168, 100%, 42%, 0.3);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-4px);
}

.badge-sale {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ff4444, #ff6b6b);
  color: #fff;
}

.badge-new {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}

.empty-state,
.success-state {
  text-align: center;
  padding: 8rem 0;
}

.empty-icon,
.state-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon,
.state-icon.empty {
  background: var(--secondary);
}

.state-icon.success {
  background: hsla(168, 100%, 42%, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

.empty-icon i,
.state-icon i {
  font-size: 3rem;
}

.empty-icon i,
.state-icon.empty i {
  color: var(--muted-foreground);
}

.state-icon.success i {
  color: var(--primary);
}

.empty-state h1,
.success-state h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.empty-state p,
.success-state p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   6) Home
========================= */

/* Hero */
.hero {
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, hsla(168, 100%, 42%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { padding: 2.5rem 0 3rem; }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsla(168, 100%, 42%, 0.1);
  border: 1px solid hsla(168, 100%, 42%, 0.3);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-stats .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  display: none;
  position: relative;
}

.hero-image img {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  animation: float 3s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(168, 100%, 42%, 0.2), hsla(180, 70%, 45%, 0.2));
  border-radius: 1.5rem;
  filter: blur(40px);
}

.floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.floating-badge .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(168, 100%, 42%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.floating-badge .text strong {
  display: block;
  font-weight: 600;
}

.floating-badge .text span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Hero visual fallback (when no image uploaded) */
.hero-visual{
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb{
  position: absolute;
  width: 280px;
  height: 280px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    hsla(168, 100%, 42%, 0.3) 0%,
    hsla(180, 70%, 45%, 0.15) 40%,
    hsla(214, 50%, 12%, 0.05) 70%,
    transparent 100%
  );
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-float-icon{
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-card);
  border: 1px solid hsla(168, 100%, 42%, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
  box-shadow: 0 12px 35px -8px rgba(0,0,0,0.5);
  transition: transform .3s, box-shadow .3s;
}

.hero-float-icon:hover{
  transform: translateY(-6px) scale(1.1);
  box-shadow: var(--shadow-glow), 0 15px 40px -10px rgba(0,0,0,0.5);
  border-color: hsla(168, 100%, 42%, 0.5);
}

.hero-float-icon--lg{
  width: 84px;
  height: 84px;
  font-size: 2rem;
  border-radius: 20px;
  background: hsla(168, 100%, 42%, 0.1);
  border-color: hsla(168, 100%, 42%, 0.35);
}

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

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { display: block; }
  .hero h1 { font-size: 3.75rem; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}

.categories {
  padding: 5rem 0;
  background: hsla(214, 45%, 12%, 0.5);
}

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

.category-card {
  text-align: center;
  cursor: pointer;
}

.category-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: hsla(168, 100%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.category-card:hover .icon-wrapper {
  background: hsla(168, 100%, 42%, 0.2);
}

.category-card .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--primary);
}

.category-card h3 {
  font-weight: 500;
  transition: color 0.3s;
}

.category-card:hover h3 { color: var(--primary); }

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

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

.products-section { padding: 5rem 0; }

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.products-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.products-header p { color: var(--muted-foreground); }

.products-grid {
  display: grid;
  gap: 1.5rem;
}

@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-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.product-card:hover {
  border-color: hsla(168, 100%, 42%, 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: hsla(214, 40%, 18%, 0.3);
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: hsla(214, 50%, 8%, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover .overlay-btn { transform: scale(1); }

.overlay-btn.cart {
  background: var(--primary);
  color: var(--primary-foreground);
}

.overlay-btn.whatsapp {
  background: #25D366;
  color: #fff;
  transition-delay: 0.075s;
}

.overlay-btn:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

.product-content { padding: 1rem; }

.product-brand {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-name {
  margin-top: 0.25rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

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

.product-features {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-features span {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  color: var(--muted-foreground);
}

.product-price {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-price .current {
  font-size: 1.125rem;
  font-weight: 700;
}

.product-price .original {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.product-add-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.sale-banner {
  padding: 4rem 0;
  background: linear-gradient(
    90deg,
    hsla(168, 100%, 42%, 0.1),
    hsla(180, 70%, 45%, 0.05),
    hsla(168, 100%, 42%, 0.1)
  );
  border-top: 1px solid hsla(168, 100%, 42%, 0.2);
  border-bottom: 1px solid hsla(168, 100%, 42%, 0.2);
}

.sale-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.sale-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(0, 84%, 60%, 0.2);
  color: var(--destructive);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.sale-banner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sale-banner p { color: var(--muted-foreground); }

@media (min-width: 768px) {
  .sale-banner .container {
    flex-direction: row;
    text-align: left;
  }
}

.features {
  padding: 5rem 0;
  background: hsla(214, 45%, 12%, 0.5);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

.feature-card { text-align: center; }

.feature-card .icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: hsla(168, 100%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.cta { padding: 5rem 0; }

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(
    90deg,
    hsla(168, 100%, 42%, 0.2),
    transparent,
    hsla(180, 70%, 45%, 0.2)
  );
  border: 1px solid hsla(168, 100%, 42%, 0.3);
  padding: 3rem;
  text-align: center;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsla(168, 100%, 42%, 0.1), transparent 70%);
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cta-card h2 { font-size: 2.25rem; }
}

/* =========================
   7) Catálogo 
========================= */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: hsla(214, 45%, 12%, 0.5);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--muted-foreground);
  max-width: 42rem;
}

.filters-bar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 4rem;
  z-index: 40;
  background: hsla(214, 50%, 8%, 0.95);
  backdrop-filter: blur(20px);
}

.filters-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: var(--radius);
  background: hsla(214, 40%, 18%, 0.5);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.3s;
}

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

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(168, 100%, 42%, 0.2);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--secondary);
  color: hsla(210, 40%, 98%, 0.7);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover { color: var(--foreground); }

.filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.filter-btn.sale.active {
  background: var(--destructive);
  color: #fff;
}

.filter-btn.new.active {
  background: var(--accent);
  color: var(--primary-foreground);
}

@media (min-width: 1024px) {
  .filters-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .search-box { width: 20rem; }
}

.results-count {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.results-count span {
  color: var(--foreground);
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  z-index: 50;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { font-size: 1.5rem; }

/* =========================
   8) Carrito
========================= */
.cart-section { padding-bottom: 5rem; }

.cart-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cart-grid { grid-template-columns: 2fr 1fr; align-items: start; }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.cart-item:hover { transform: none; }

.cart-item-image {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--secondary);
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h3 {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-details .category {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-transform: capitalize;
}

.cart-item-price {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-price .current { font-size: 1.125rem; font-weight: 700; }
.cart-item-price .original { font-size: 0.875rem; color: var(--muted-foreground); text-decoration: line-through; }

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.remove-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.remove-btn:hover { color: var(--destructive); }

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.qty-btn:hover { background: var(--primary); color: var(--primary-foreground); }
.qty-btn i { font-size: 0.75rem; }
.quantity-controls span { width: 2rem; text-align: center; font-weight: 600; }

.clear-cart-btn {
  margin-top: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.clear-cart-btn:hover { color: var(--destructive); }

.order-summary {
  position: sticky;
  top: 6rem;
}

.order-summary h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.summary-row .label { color: var(--muted-foreground); }

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.summary-row.total .label { font-weight: 600; color: var(--foreground); }
.summary-row.total .value { font-size: 1.25rem; font-weight: 700; color: var(--primary); }

.free-shipping { color: var(--primary); }

.shipping-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.checkout-btn,
.whatsapp-btn { width: 100%; text-align: center; }

.security-badges {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.whatsapp-option {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.whatsapp-option p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

/* =========================
   9) Checkout 
========================= */
.checkout-section { padding-bottom: 5rem; }

.checkout-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .checkout-grid { grid-template-columns: 2fr 1fr; align-items: start; }
}

.order-summary-col {
  position: sticky;
  top: 6rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.75rem; }

.form-section { margin-bottom: 2rem; }

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.form-grid { display: grid; gap: 1rem; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 640px) {
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: hsla(214, 40%, 18%, 0.5);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(168, 100%, 42%, 0.2);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: none; }

.payment-options {
  display: grid;
  gap: 1rem;
}

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

.payment-option {
  position: relative;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.payment-option:hover {
  border-color: hsla(168, 100%, 42%, 0.5);
}

.payment-option.selected {
  border-color: var(--primary);
  background: hsla(168, 100%, 42%, 0.1);
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-option i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.payment-option .name { font-weight: 500; }
.payment-option .desc { font-size: 0.75rem; color: var(--muted-foreground); }

.order-items {
  margin-bottom: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.order-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.order-item-image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--secondary);
}

.order-item-image img { width: 100%; height: 100%; object-fit: cover; }

.order-item-details { flex: 1; min-width: 0; }

.order-item-details .name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-item-details .qty {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.order-item-details .price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.submit-btn { width: 100%; margin-top: 1.5rem; text-align: center; }

.security-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.success-state .highlight {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.success-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* =========================
   10) Footer 
========================= */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  height: 3rem;
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(210, 40%, 98%, 0.7);
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--primary);
  background: hsla(168, 100%, 42%, 0.1);
}

.social-links a.whatsapp:hover {
  color: #25D366;
  background: hsla(142, 70%, 45%, 0.1);
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.5rem; }

.footer-section a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-section a:hover { color: var(--primary); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact i { color: var(--primary); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.payment-methods {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.payment-methods img {
  height: 1.5rem;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.3s;
}

.payment-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; }
}

/* =========================
   11) Scrollbar 
========================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb {
  background: hsla(168, 100%, 42%, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsla(168, 100%, 42%, 0.5);
}
/* =========================================================
   Footer "Hecho con ❤️ por GesArg" 
   ========================================================= */

.footer-bottom{
  gap: 1rem;
}

.made-by{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.made-heart{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1px);
  filter: drop-shadow(0 0 10px hsla(168, 100%, 42%, .35));
  transition: transform .25s ease, filter .25s ease;
}

.made-link{
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
  text-shadow: 0 0 18px hsla(168, 100%, 42%, .25);
}

.made-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .9;
}

.made-by:hover .made-heart{
  transform: translateY(1px) scale(1.08);
  filter: drop-shadow(0 0 16px hsla(168, 100%, 42%, .55));
}

.made-by:hover .made-link{
  transform: translateY(-1px);
  text-shadow: 0 0 24px hsla(168, 100%, 42%, .45);
}

.made-by:hover .made-link::after{
  transform: scaleX(1);
}

@media (max-width: 520px){
  .made-by{
    flex-wrap: wrap;
    justify-content: center;
  }
}
.navbar-logo { display: flex; align-items: center; }

.logo-wrap{
  height: 40px;             
  width: 160px;             
  overflow: hidden;         
  display: flex;
  align-items: center;
}

.logo-img{
  height: 40px;              
  width: auto;
  transform: scale(3.5);    
  transform-origin: left center;

  translate: -8px 0;         
}
.logo--footer{
  height: 56px;             
  width: 220px;
}

.logo--footer .logo-img{
  transform: scale(2.2);
  translate: -10px 0;
}
/* =========================
   6.x) Brand Ads (entre hero y categorías)
========================= */
.brand-ads{
  padding: 3.5rem 0 0;
  background: transparent;
}

.ads-grid{
  display: grid;
  gap: 1.25rem;
}

/* Cards */
.ad-card{
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  min-height: 220px;
}

.ad-card:hover{
  transform: translateY(-4px);
  border-color: hsla(168, 100%, 42%, 0.35);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* Imágenes */
.ad-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.ad-card:hover .ad-img{
  transform: scale(1.08);
}

/* Overlay */
.ad-overlay{
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .4rem;
  background:
    linear-gradient(
      180deg,
      hsla(214, 50%, 8%, 0.05) 0%,
      hsla(214, 50%, 8%, 0.55) 45%,
      hsla(214, 50%, 8%, 0.82) 100%
    );
}

.ad-overlay--compact{
  padding: 1.1rem;
}

.ad-kicker{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: hsla(168, 100%, 42%, .12);
  border: 1px solid hsla(168, 100%, 42%, .28);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ad-title{
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
}

.ad-desc{
  margin: 0;
  color: var(--muted-foreground);
  font-size: .95rem;
  max-width: 44ch;
}

.ad-cta{
  margin-top: .35rem;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  width: fit-content;
  font-weight: 700;
  color: var(--foreground);
  opacity: .95;
  transition: opacity .25s ease, transform .25s ease;
}

.ad-card:hover .ad-cta{
  opacity: 1;
  transform: translateX(2px);
}

/* Layout responsivo */
@media (min-width: 900px){
  .ads-grid{
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
  }
  .ad-card--wide{ min-height: 260px; }
  .ad-card--square{ min-height: 260px; }
}

@media (min-width: 1200px){
  .ad-card--wide{ min-height: 300px; }
  .ad-card--square{ min-height: 300px; }
}

/* =========================
   6.x) About / Nosotros
========================= */
.about{
  padding: 5rem 0;
  background: transparent;
}

.about-grid{
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.about-card{
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.about-card .about-actions{
  margin-top: auto;
}

.about-title{
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.about-text{
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-text strong{
  color: var(--foreground);
  font-weight: 700;
}

.about-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.about-points{
  display: grid;
  gap: 1rem;
  grid-template-rows: repeat(3, 1fr);
}

.about-point{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.about-point .icon-wrapper{
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(168, 100%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-point .icon-wrapper i{
  font-size: 1.35rem;
  color: var(--primary);
}

.about-point h4{
  margin: 0;
  font-weight: 800;
  letter-spacing: -.01em;
}

.about-point p{
  margin: .2rem 0 0;
  color: var(--muted-foreground);
  font-size: .9rem;
}

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

/* =========================
   12) Toast Notification
========================= */
.toast-container{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}

.toast{
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid hsla(168, 100%, 42%, .35);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,.5), var(--shadow-glow);
  color: var(--foreground);
  font-size: .9rem;
  font-weight: 500;
  transform: translateX(120%);
  opacity: 0;
  animation: toastIn .35s ease forwards;
  max-width: 340px;
}

.toast.out{
  animation: toastOut .3s ease forwards;
}

.toast-icon{
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(168, 100%, 42%, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: .85rem;
}

.toast-text{
  flex: 1;
  min-width: 0;
}

.toast-text strong{
  display: block;
  font-weight: 700;
  font-size: .8rem;
  color: var(--primary);
  margin-bottom: .1rem;
}

.toast-text span{
  font-size: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes toastIn{
  0%{ transform: translateX(120%); opacity: 0; }
  100%{ transform: translateX(0); opacity: 1; }
}

@keyframes toastOut{
  0%{ transform: translateX(0); opacity: 1; }
  100%{ transform: translateX(120%); opacity: 0; }
}

/* Cart badge bounce */
@keyframes cartBounce{
  0%{ transform: scale(1); }
  30%{ transform: scale(1.35); }
  50%{ transform: scale(.9); }
  70%{ transform: scale(1.1); }
  100%{ transform: scale(1); }
}

.cart-badge.bounce span{
  animation: cartBounce .4s ease;
}

/* =========================
   13) Mobile Responsive Extras
========================= */
@media (max-width: 767px){
  /* Navbar */
  .navbar{ padding: .75rem 1rem; }

  /* Hero compact */
  .hero-content{ padding: 1.5rem 0 2rem; }
  .hero h1{ font-size: 1.75rem; }
  .hero p{ font-size: .95rem; margin-bottom: 1.25rem; }
  .hero-buttons{ flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary{ width: 100%; text-align: center; }
  .hero-stats{ gap: 1rem; margin-top: 1.5rem; }
  .hero-stats .stat-value{ font-size: 1.15rem; }

  /* Section headers */
  .section-header h2{ font-size: 1.35rem; }

  /* Products header */
  .products-header{
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.5rem;
  }
  .products-header h2{ font-size: 1.35rem; }

  /* Brand ads */
  .ad-card{ min-height: 180px; }
  .ad-title{ font-size: 1.1rem; }
  .ad-desc{ font-size: .82rem; }

  /* About */
  .about{ padding: 3rem 0; }
  .about-card{ padding: 1.25rem; }
  .about-title{ font-size: 1.2rem; }
  .about-text{ font-size: .9rem; }
  .about-actions{ flex-direction: column; }
  .about-actions .btn-primary,
  .about-actions .btn-secondary{ width: 100%; text-align: center; }

  /* Categories */
  .categories{ padding: 3rem 0; }

  /* Sale banner */
  .sale-banner h2{ font-size: 1.25rem; }

  /* Features */
  .features{ padding: 3rem 0; }

  /* CTA */
  .cta{ padding: 3rem 0; }
  .cta-card{ padding: 1.5rem; }
  .cta-card h2{ font-size: 1.35rem; }

  /* Footer */
  .footer{ padding: 2rem 0; }

  /* Page headers (catalogo, carrito, checkout) */
  .page-header{ padding-top: 5.5rem; padding-bottom: 2rem; }
  .page-header h1{ font-size: 1.75rem; }

  /* Filters bar */
  .filters-bar{ padding: 1rem 0; top: 3.5rem; }
  .filter-buttons{ overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
  .filter-btn{ white-space: nowrap; flex-shrink: 0; font-size: .8rem; padding: .4rem .75rem; }

  /* Cart */
  .cart-item{ flex-wrap: wrap; }
  .cart-item-image{ width: 4.5rem; height: 4.5rem; }
  .cart-item-actions{
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: .5rem;
  }

  /* Checkout */
  .form-grid-2, .form-grid-3{ grid-template-columns: 1fr; }
  .payment-options{ grid-template-columns: 1fr; }

  /* Toast bottom-center on mobile */
  .toast-container{
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
  .toast{ max-width: 100%; }

  /* Checkout result responsive */
  .checkout-result-grid { grid-template-columns: 1fr !important; }
  .transfer-details-card { order: 1; }
  .transfer-steps-card { order: 2; }
}

/* =========================
   14) Checkout Redesign
========================= */

/* Payment option redesign */
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.payment-option-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(168, 100%, 42%, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.payment-option-icon i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0;
}

.payment-option.selected .payment-option-icon {
  background: hsla(168, 100%, 42%, 0.2);
}

.payment-option-info {
  flex: 1;
  min-width: 0;
}

.payment-option-info .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.payment-option-info .desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.recargo-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: hsla(168, 100%, 42%, 0.06);
  border: 1px solid hsla(168, 100%, 42%, 0.15);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recargo-note i {
  color: var(--primary);
}

/* Checkout success states */
.checkout-success {
  padding-top: 7rem;
  padding-bottom: 5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 32rem;
  margin: 0 auto;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.success-icon {
  background: hsla(142, 70%, 45%, 0.15);
  color: #25D366;
}

.success-icon.success {
  background: hsla(168, 100%, 42%, 0.15);
  color: var(--primary);
}

.success-icon.pending {
  background: hsla(45, 100%, 50%, 0.15);
  color: hsl(45, 100%, 50%);
}

.success-icon.error {
  background: hsla(0, 84%, 60%, 0.15);
  color: var(--destructive);
}

.success-icon.empty {
  background: hsla(214, 40%, 18%, 0.5);
  color: var(--muted-foreground);
}

.success-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.success-card .highlight {
  color: var(--primary);
  font-size: 0.875rem;
}

.success-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Transfer details card */
.checkout-result-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.transfer-details-card {
  padding: 2rem;
}

.transfer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.transfer-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(168, 100%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.transfer-header h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.transfer-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transfer-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: hsla(214, 40%, 18%, 0.4);
  border: 1px solid var(--border);
}

.transfer-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  min-width: 4.5rem;
  font-weight: 500;
}

.transfer-value {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
}

.transfer-value.monospace {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

.copy-btn {
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  background: hsla(168, 100%, 42%, 0.1);
  border: 1px solid hsla(168, 100%, 42%, 0.2);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: hsla(168, 100%, 42%, 0.2);
}

.copy-btn.copied {
  background: hsla(168, 100%, 42%, 0.25);
  color: var(--primary);
}

.transfer-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: hsla(168, 100%, 42%, 0.06);
  border: 1px solid hsla(168, 100%, 42%, 0.12);
  font-size: 0.85rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.transfer-note i {
  color: var(--primary);
  margin-top: 0.15rem;
}

.transfer-total {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: hsla(168, 100%, 42%, 0.08);
  border: 1px solid hsla(168, 100%, 42%, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transfer-total span:first-child {
  font-weight: 500;
  color: var(--muted-foreground);
}

.transfer-total-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Steps card */
.transfer-steps-card {
  padding: 2rem;
}

.transfer-steps-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.step-text p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}
