:root {
  --pink-primary: #e91e63;
  --pink-dark: #ad1457;
  --pink-light: #f8bbd0;
  --pink-bg: #fce4ec;
  --text-dark: #2c3e50;
  --text-muted: #666666;
  --white: #ffffff;
  --shadow-lg: 0 15px 35px rgba(233, 30, 99, 0.15);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 90;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--pink-primary);
  font-size: 1.2rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

/* Hero Header */
.hero {
  text-align: center;
  padding: 50px 20px 30px;
}

.hero-container {
  max-width: 650px;
  margin: 0 auto;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin-bottom: 15px;
}

/* Nombre 3D */
.logo-3d {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--pink-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 
    1px 1px 0px #ad1457,
    2px 2px 0px #ad1457,
    3px 3px 0px #880e4f,
    4px 4px 0px #880e4f,
    5px 5px 15px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: 2px;
  margin-top: 5px;
}

.hero-description {
  font-size: 1rem;
  color: #4a4a4a;
  margin-top: 12px;
  line-height: 1.6;
}

/* Contenedor Principal */
.main-container {
  max-width: 1100px;
  margin: 20px auto 50px;
  padding: 0 20px;
  width: 100%;
}

.section-title {
  text-align: center;
  color: var(--pink-dark);
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--pink-primary);
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-btn {
  background: var(--pink-primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.card:hover .card-btn {
  background: var(--pink-dark);
}

/* Modales Pro (Amplios) */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 100;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-large {
  max-width: 750px !important;
  width: 100%;
}

.modal-content {
  background: var(--white);
  padding: 35px;
  border-radius: 24px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: #e0e0e0;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--pink-bg);
  padding-bottom: 15px;
}

.modal-icon {
  font-size: 2.2rem;
  color: var(--pink-primary);
}

.modal-icon.green { color: #25d366; }

.modal-header h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
}

.lead-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Grillas Internas para la Información */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.info-box {
  background: var(--pink-bg);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.info-box i {
  font-size: 2rem;
  color: var(--pink-primary);
  margin-bottom: 10px;
}

.info-box h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 0.85rem;
  color: #666;
}

.image-wrapper {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 15px 0;
}

.modal-img-fit {
  width: 100%;
  height: auto;
  display: block;
}

.bank-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.bank-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.instruction-box {
  background: #fff8e1;
  border-left: 4px solid #ffb300;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.instruction-box i {
  color: #ffb300;
  font-size: 1.3rem;
  margin-top: 2px;
}

.instruction-box p {
  font-size: 0.88rem;
  color: #7f6000;
}

.btn-whatsapp-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 20px;
  transition: background 0.2s;
}

.btn-whatsapp-large:hover {
  background: #1eb954;
}

/* Layout para Productos */
.product-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  align-items: center;
}

.badge-code {
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-title {
  font-size: 1.4rem;
  margin: 10px 0;
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.size-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.size-tag {
  background: #f0f0f0;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer {
  margin-top: auto;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.1);
}/* Tarjetas Digitales de Banco */
.bank-cards-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.bank-card-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bank-card-item:hover {
  transform: translateY(-3px);
}

.bank-card-item.banrural { border-left: 6px solid #00a859; }
.bank-card-item.bi { border-left: 6px solid #0056a6; }
.bank-card-item.gyt { border-left: 6px solid #e91e63; }

.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bank-badge {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.account-type {
  font-size: 0.8rem;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 10px;
  color: #555;
  font-weight: 600;
}

.bank-owner {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bank-number-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px dashed #ccc;
}

.account-number {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.btn-copy {
  background: var(--pink-primary);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-copy:hover {
  background: var(--pink-dark);
}

.margin-top {
  margin-top: 20px;
}/* Pestañas de Categoría para Pedidos Individuales */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--pink-bg);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--pink-bg);
  color: var(--pink-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background: var(--pink-light);
}

.tab-btn.active {
  background: var(--pink-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Visibilidad de los Contenidos de la Pestaña */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}