/* ===== PALETA ROSADOS SUTILES - UX/UI COHERENTE ===== */
:root {
  /* Transición suave de claros a medios (todos rosados) */
  --cream-light: #FEFBFB;
  --cream-warm: #FBF7F8;
  --blush-soft: #FDF4F6;
  --rose-whisper: #F9EBEE;
  --rose-gentle: #F2D8DE;
  --dusty-rose: #E8C4CC;
  --mauve-elegant: #D4A4B0;
  --rose-deep: #C8949C;
  /* Sustitutos sutiles del verde (tono rosa neutro) */
  --sage-soft: #F5EEF0;
  --sage-elegant: #F0E6E9;

  --white: #ffffff;
  --gray-soft: #f5f3f4;
  --gray-medium: #8b8d94;
  /* Texto y elementos: tonos claros para que no se vea oscuro */
  --charcoal-soft: #6b6368;
  --text-soft: #7a7276;

  --gradient-primary: linear-gradient(135deg, var(--sage-elegant) 0%, var(--rose-gentle) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--cream-warm) 0%, var(--blush-soft) 100%);
  --gradient-accent: linear-gradient(135deg, var(--rose-whisper) 0%, var(--dusty-rose) 100%);
  --gradient-hero: linear-gradient(135deg, var(--cream-light) 0%, var(--rose-whisper) 45%, var(--sage-soft) 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
  line-height: 1.6;
    color: var(--text-soft);
  overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-soft);
    border-top: 3px solid var(--dusty-rose);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(232, 196, 204, 0.35);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
  z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--rose-gentle);
    box-shadow: 0 2px 20px rgba(232, 196, 204, 0.12);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
    gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mauve-elegant);
    text-shadow: 0 1px 3px rgba(232, 196, 204, 0.25);
}

.nav-menu {
  display: flex;
    gap: 2rem;
}

.nav-link {
  text-decoration: none;
    color: var(--text-soft);
  font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dusty-rose);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.search-btn,
.cart-btn,
.login-btn,
.mobile-menu-btn {
  background: none;
  border: none;
    font-size: 1.2rem;
    color: var(--text-soft);
  cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
  position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover,
.cart-btn:hover,
.login-btn:hover,
.mobile-menu-btn:hover {
    background: var(--rose-whisper);
    color: var(--dusty-rose);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.25);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
    background: var(--dusty-rose);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
  border-radius: 50%;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

.mobile-menu-btn {
  display: none;
}

/* ===== MENÚ DE USUARIO LOGUEADO ===== */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--charcoal-soft);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-btn:hover {
    background: var(--rose-whisper);
    color: var(--dusty-rose);
    transform: scale(1.05);
}

.user-info {
    position: relative;
}

.user-name {
    display: none; /* Se mostrará solo en desktop */
    font-size: 0.9rem;
    color: var(--dusty-rose);
    font-weight: 500;
    margin-right: 0.5rem;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--rose-gentle);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(232, 196, 204, 0.25);
    min-width: 180px;
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.user-dropdown.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--charcoal-soft);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-soft);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: var(--rose-whisper);
    color: var(--dusty-rose);
}

.logout-link {
    color: #dc2626 !important;
}

.logout-link:hover {
    background: #fef2f2 !important;
    color: #b91c1c !important;
}

/* Responsive para menú de usuario */
@media (min-width: 769px) {
    .user-name {
        display: inline;
    }
}

@media (max-width: 768px) {
    .user-dropdown {
        right: -10px;
        min-width: 160px;
    }
    
    .dropdown-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: var(--text-soft);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.hero-title {
    font-size: 3.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
    color: var(--dusty-rose);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
}

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

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.floating-elements::before {
    content: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.floating-card {
    background: #fff;
    border: 1px solid var(--rose-gentle);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal-soft);
    box-shadow: 0 4px 12px rgba(232, 196, 204, 0.18);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.floating-card:hover::before {
    left: 100%;
}

.floating-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 196, 204, 0.28);
    background: #fff;
    border-color: var(--dusty-rose);
}

.floating-card i {
    font-size: 1rem;
    color: var(--dusty-rose);
    background: var(--rose-whisper);
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.25);
}

.floating-card i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover i {
    background: var(--rose-gentle);
    box-shadow: 0 3px 12px rgba(232, 196, 204, 0.35);
    transform: scale(1.1);
}

.floating-card:hover i::before {
    opacity: 1;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-card:nth-child(1) {
    animation: float 4s ease-in-out infinite, slideInRight 0.8s ease-out 0.2s both;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation: float 4s ease-in-out infinite, slideInRight 0.8s ease-out 0.4s both;
    animation-delay: 1.3s;
}

.floating-card:nth-child(3) {
    animation: float 4s ease-in-out infinite, slideInRight 0.8s ease-out 0.6s both;
    animation-delay: 2.6s;
}

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

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

/* Animaciones elegantes y profesionales */
@keyframes subtleFade {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/* Buttons */
.btn {
    padding: 12px 24px;
  border: none;
    border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
  text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    border: none;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--mauve-elegant) 100%);
  transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 196, 204, 0.4);
}

.btn-secondary {
  background: #fff;
    color: var(--mauve-elegant);
    border: 1px solid var(--rose-gentle);
}

.btn-secondary:hover {
  background: var(--rose-whisper);
    transform: translateY(-2px);
    border-color: var(--dusty-rose);
    box-shadow: 0 3px 12px rgba(232, 196, 204, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--dusty-rose);
    border: 1px solid var(--dusty-rose);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dusty-rose);
    color: white;
    border-color: var(--mauve-elegant);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
  text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dusty-rose);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--charcoal-soft);
    border-radius: 25px;
  cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--dusty-rose);
    background: var(--dusty-rose);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

/* Products Grid */
.products-grid {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
  overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(232, 196, 204, 0.18);
    border: 1px solid var(--rose-gentle);
}

.product-image-container {
  position: relative;
    height: 250px;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dusty-rose);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
  font-weight: 500;
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
  font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-description {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
  font-weight: 700;
    color: var(--dusty-rose);
    margin-bottom: 1rem;
}

.product-actions {
  display: flex;
    gap: 0.5rem;
}

.btn-add-cart {
  flex: 1;
    background: var(--dusty-rose);
    color: white;
  border: none;
    padding: 12px;
    border-radius: 8px;
  cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(232, 196, 204, 0.35);
}

.btn-add-cart:hover {
    background: var(--mauve-elegant);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 196, 204, 0.4);
}

.btn-favorite,
.btn-quickview {
    background: #f3f4f6;
  border: none;
    padding: 10px;
    border-radius: 8px;
  cursor: pointer;
    color: var(--charcoal-soft);
    transition: all 0.3s ease;
}

.btn-favorite:hover,
.btn-quickview:hover {
    background: var(--rose-gentle);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 196, 196, 0.3);
}

/* Load More */
.load-more-container {
  text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.feature {
  display: flex;
  align-items: center;
    gap: 1rem;
    color: var(--charcoal-soft);
}

.feature i {
    color: var(--dusty-rose);
    font-size: 1.2rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
    gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-item i {
  font-size: 1.5rem;
    color: var(--dusty-rose);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #64748b;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
  font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
    border-color: var(--dusty-rose);
    box-shadow: 0 0 0 3px rgba(232, 196, 204, 0.15);
}

/* ===== FORMAS DE PAGO / CUENTAS BANCARIAS ===== */
.bank-accounts-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--cream-light) 0%, var(--rose-whisper) 50%, var(--sage-soft) 100%);
}

/* ----- Formas de pago: diseño nuevo ----- */
.bank-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bank-section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mauve-elegant);
    margin-bottom: 0.5rem;
}

.bank-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal-soft);
    margin-bottom: 0.5rem;
}

.bank-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto;
}

.bank-titular-card {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #fff 0%, var(--blush-soft) 100%);
    border-radius: 20px;
    border: 1px solid var(--rose-gentle);
    box-shadow: 0 8px 32px rgba(232, 196, 204, 0.2);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.bank-titular-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--mauve-elegant) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.bank-titular-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bank-titular-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-medium);
}

.bank-titular-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal-soft);
    line-height: 1.3;
}

.bank-titular-cedula {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    color: var(--text-soft);
}

.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bank-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--rose-gentle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
    position: relative;
}

.bank-card-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 20px 0 0 20px;
}

.bank-card-v2.rose-1::before { background: linear-gradient(180deg, var(--rose-whisper) 0%, var(--rose-gentle) 100%); }
.bank-card-v2.rose-2::before { background: linear-gradient(180deg, var(--rose-gentle) 0%, var(--dusty-rose) 100%); }
.bank-card-v2.rose-3::before { background: linear-gradient(180deg, var(--dusty-rose) 0%, var(--mauve-elegant) 100%); }
.bank-card-v2.rose-4::before { background: linear-gradient(180deg, var(--mauve-elegant) 0%, var(--rose-deep) 100%); }
.bank-card-v2.rose-5::before { background: linear-gradient(180deg, var(--sage-elegant) 0%, var(--dusty-rose) 100%); }

.bank-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(232, 196, 204, 0.28);
    border-color: var(--dusty-rose);
}

.bank-card-v2-head {
    padding: 1rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--cream-light);
    border-bottom: 1px solid var(--rose-gentle);
}

.bank-card-v2-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--mauve-elegant) 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bank-card-v2-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mauve-elegant);
    background: var(--rose-whisper);
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
}

.bank-card-v2-body {
    padding: 1.35rem 1.35rem 1.25rem;
}

.bank-card-v2-banco {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal-soft);
    margin-bottom: 0.25rem;
}

.bank-card-v2-tipo {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.bank-card-v2-number-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bank-card-v2-number {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal-soft);
    background: var(--gray-soft);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--rose-gentle);
    letter-spacing: 0.5px;
    flex: 1;
    min-width: 0;
}

.bank-card-v2-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rose-whisper) 0%, var(--rose-gentle) 100%);
    color: var(--mauve-elegant);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bank-card-v2-copy:hover {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--mauve-elegant) 100%);
    color: white;
    transform: scale(1.03);
}

.bank-card-v2-copy.copied {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
}

.bank-card-v2-copy i {
    font-size: 0.9rem;
}

.bank-accounts-empty {
    text-align: center;
    padding: 2.5rem;
    background: var(--cream-light);
    border-radius: 20px;
    border: 2px dashed var(--rose-gentle);
    color: var(--text-soft);
}

.bank-accounts-empty i {
    margin-right: 0.5rem;
    color: var(--dusty-rose);
}

@media (max-width: 768px) {
    .bank-cards-grid {
        grid-template-columns: 1fr;
    }
    .bank-titular-card {
        flex-direction: column;
        text-align: center;
    }
    .bank-section-title {
        font-size: 1.85rem;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--dusty-rose);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--dusty-rose);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  width: 40px;
  height: 40px;
    background: var(--mauve-elegant);
    color: white;
  border-radius: 50%;
  text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dusty-rose);
  transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(232, 196, 204, 0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--rose-gentle);
    color: var(--gray-medium);
}

/* Modals */
.search-modal,
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
  align-items: center;
    z-index: 2000;
}

.search-modal.active,
.cart-modal.active {
  display: flex;
}

.search-content,
.cart-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.cart-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#searchInput {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--rose-gentle);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8fafc;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--dusty-rose);
    font-weight: 600;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dusty-rose);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(232, 196, 204, 0.35);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--mauve-elegant);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 196, 204, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
    flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-elements {
        display: none;
    }

    .about-content,
    .contact-content {
    grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .filters {
    justify-content: center;
  }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
  }

  .hero-title {
        font-size: 2rem;
  }

  .section-title {
        font-size: 2rem;
  }

  .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ===== EFECTOS PROFESIONALES Y ELEGANTES ===== */

/* Transiciones suaves para elementos interactivos */
.product-card,
.stat-item,
.contact-item,
.floating-card {
    transition: all 0.3s ease;
}

/* Animación de entrada sutil para productos */
.product-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Sin overlay en hero para que no se vea empañado */
.hero::before {
    content: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Product Images Slider */
.product-images-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image.active {
    opacity: 1;
}

.more-images-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.image-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-soft);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive para el slider */
@media (max-width: 768px) {
    .product-images-slider {
        height: 200px;
    }
    
    .nav-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
  }
} 

/* Estilos para checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.checkbox-item:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #667eea;
    cursor: pointer;
}

.checkbox-item span {
    font-size: 0.95rem;
    color: var(--charcoal-soft);
    font-weight: 500;
    user-select: none;
}

.checkbox-item input[type="checkbox"]:checked + span {
    color: #667eea;
    font-weight: 600;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: #667eea;
    border-color: #667eea;
}

/* Responsive para checkboxes */
@media (max-width: 768px) {
    .checkbox-group {
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.4rem;
    }
    
    .checkbox-item span {
        font-size: 0.9rem;
    }
} 

/* ===== ESTILOS PARA EL MODAL DE PRODUCTO ===== */
.product-modal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

.modal-content {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-modal img {
    transition: transform 0.3s ease;
}

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

.product-modal .gallery-thumbnail {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-modal .gallery-thumbnail:hover {
    border-color: var(--dusty-rose);
    transform: scale(1.1);
}

.product-modal .gallery-thumbnail.active {
    border-color: var(--dusty-rose);
    box-shadow: 0 0 0 2px rgba(232, 196, 204, 0.25);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .product-modal > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 95% !important;
        max-height: 95vh !important;
    }
    
    .product-modal h2 {
        font-size: 1.5rem !important;
    }
    
    .product-modal .price {
        font-size: 1.5rem !important;
    }
}

/* ===== CHECKOUT – Método de pago (modal) ===== */
.checkout-payment-option:hover {
    border-color: var(--dusty-rose) !important;
    box-shadow: 0 6px 20px rgba(232, 196, 204, 0.2) !important;
}
.checkout-payment-option:has(input:checked) {
    border-color: var(--mauve-elegant) !important;
    box-shadow: 0 4px 14px rgba(212, 164, 176, 0.2) !important;
}
/* Grid de cuentas: los 5 uno al lado del otro */
.cuentas-transferencia-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
@media (max-width: 700px) {
    .cuentas-transferencia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 400px) {
    .cuentas-transferencia-grid {
        grid-template-columns: 1fr;
    }
}

#transferInfo .cuenta-card-transferencia {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 1rem;
    border: 2px solid #e8e4e0;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
#transferInfo .cuenta-card-transferencia input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
#transferInfo .cuenta-card-transferencia .cuenta-card-name {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--rose-deep, #C8949C);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(200, 148, 156, 0.15);
}
/* Los detalles no se muestran dentro del cuadro; van al bloque de abajo */
#transferInfo .cuenta-card-transferencia .cuenta-card-details {
    display: none !important;
}
#transferInfo .cuenta-card-transferencia .cuenta-detail-row {
    margin-bottom: 0.35rem;
}
#transferInfo .cuenta-card-transferencia .cuenta-detail-label {
    display: block;
    color: var(--gray-medium, #6b7280);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}
#transferInfo .cuenta-card-transferencia .cuenta-detail-num {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}
#transferInfo .cuenta-card-transferencia:hover {
    border-color: var(--dusty-rose) !important;
}
#transferInfo .cuenta-card-transferencia:has(input:checked) {
    border-color: var(--mauve-elegant) !important;
    background: linear-gradient(135deg, #fff 0%, var(--blush-soft) 100%) !important;
    box-shadow: 0 4px 16px rgba(212, 164, 176, 0.2);
}
/* Bloque de abajo: datos de la cuenta seleccionada */
.cuenta-seleccionada-datos {
    margin-top: 1rem;
    padding: 1.25rem;
    background: linear-gradient(160deg, #FEFBFB 0%, #FDF4F6 100%);
    border: 1px solid rgba(212, 164, 176, 0.4);
    border-radius: 14px;
    font-size: 0.9rem;
    color: var(--charcoal-soft, #374151);
    display: none;
    overflow: hidden;
}
.cuenta-seleccionada-datos:not(:empty) {
    display: block;
}
.cuenta-seleccionada-datos.animar-abrir {
    animation: cuentaPanelAbrir 0.4s ease-out forwards;
}
@keyframes cuentaPanelAbrir {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cuenta-seleccionada-datos .cuenta-detail-row {
    margin-bottom: 0.5rem;
}
.cuenta-seleccionada-datos .cuenta-detail-label {
    display: block;
    color: var(--gray-medium, #6b7280);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}
.cuenta-seleccionada-datos .cuenta-detail-num {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}