/* ===========================================
   MI PÁGINA - ESTILO JUICY 🍓
   Fresh, vibrant, modern design
   =========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", "Poppins", sans-serif;
  background: var(--color-fondo, #fff5f7);
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===========================================
   BARRA DE EDICIÓN - Juicy Style
   =========================================== */

.edit-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.edit-toolbar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edit-toolbar-left,
.edit-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-toolbar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-toolbar:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-toolbar.btn-stats {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  border: none;
}

.toolbar-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.toolbar-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.toolbar-title i {
  color: #ffd700;
}

/* ===========================================
   HEADER / HERO - Juicy Style
   =========================================== */

.store-header {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 100%);
  overflow: hidden;
  margin-top: 56px;
}

body:not(.edit-mode) .store-header {
  margin-top: 0;
}

.header-blur-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: floatBg 15s ease-in-out infinite;
}

@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 20px) rotate(10deg);
  }
}

.store-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-banner.default-gradient {
  background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-secundario) 50%, #ffe66d 100%);
}

.store-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 60%, transparent);
  padding: 3.5rem 0 2.5rem;
}

.store-main-info {
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
}

.store-logo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.store-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: white;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logo-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--color-primario), #ffe66d, var(--color-secundario));
  z-index: 1;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  font-size: 2.5rem;
}

.store-details {
  color: white;
  flex: 1;
}

.store-name {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.store-name:focus {
  outline: 3px dashed rgba(255, 255, 255, 0.5);
  outline-offset: 6px;
  border-radius: 8px;
}

.store-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-subtitle {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-top: 0.5rem;
  font-weight: 400;
}

.store-subtitle.placeholder {
  opacity: 0.5;
  font-style: italic;
}

.store-rating {
  margin-top: 0.6rem;
}

.followers-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.95;
  font-weight: 500;
}

.followers-count i {
  color: #ff6b9d;
}

/* Botón editar hero */
.edit-btn-hero {
  position: absolute;
  top: 76px;
  right: 24px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.edit-btn-hero:hover {
  background: var(--color-primario);
  border-color: var(--color-primario);
  transform: scale(1.1) rotate(5deg);
}

/* ===========================================
   NAVEGACIÓN - Juicy Style
   =========================================== */

.store-nav {
  background: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 56px;
  z-index: 100;
}

body:not(.edit-mode) .store-nav {
  top: 0;
}

.store-nav-container {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.store-nav-container::-webkit-scrollbar {
  display: none;
}

.nav-item {
  padding: 0.7rem 1.3rem;
  color: #718096;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.nav-item:hover {
  color: var(--color-primario);
  background: rgba(255, 107, 157, 0.08);
  border-color: rgba(255, 107, 157, 0.2);
}

.nav-item.active {
  color: white;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-item i {
  font-size: 0.95rem;
}

/* ===========================================
   CONTENIDO PRINCIPAL - Juicy Style
   =========================================== */

.store-content {
  padding: 2.5rem 1.25rem;
}

.section {
  margin-bottom: 3.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.title-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-section-action {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-section-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* ===========================================
   PANEL DE PERSONALIZACIÓN - Juicy Style
   =========================================== */

.customize-panel {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.customize-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
}

.customize-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toggle-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.customize-panel.expanded .toggle-icon {
  transform: rotate(180deg);
}

.customize-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.customize-panel.expanded .customize-content {
  padding: 1.75rem;
  max-height: 500px;
}

.customize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1.25rem;
}

.customize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.customize-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primario);
}

.customize-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.customize-card:hover .customize-icon {
  transform: scale(1.1) rotate(5deg);
}

.colors-icon {
  background: linear-gradient(135deg, #ff6b9d, #c44569);
}
.ticket-icon {
  background: linear-gradient(135deg, #ffb347, #ff6b6b);
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  animation: ticketFloat 3s ease-in-out infinite;
}
.sections-icon {
  background: linear-gradient(135deg, #4ecdc4, #2c9b8e);
}
.gallery-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.schedule-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}
.location-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.customize-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  text-align: center;
}

/* ===========================================
   OFERTAS - Juicy Style
   =========================================== */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.offer-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.offer-card.destacada {
  border: 3px solid var(--color-primario);
  position: relative;
}

.offer-card.destacada::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), transparent);
  pointer-events: none;
}

.offer-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.offer-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #2d3748;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.offer-content {
  padding: 1.5rem;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.25);
}

.offer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.offer-description {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.offer-prices {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.price-original {
  text-decoration: line-through;
  color: #a0aec0;
  font-size: 1.05rem;
}

.offer-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-validity {
  color: #718096;
  font-size: 0.85rem;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  width: fit-content;
}

/* ===========================================
   INFO CARDS - Juicy Style
   =========================================== */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 1.75rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.info-card-main {
  grid-column: 1 / -1;
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #2d3748;
  margin-bottom: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card h3 i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.info-card p {
  color: #4a5568;
  line-height: 1.8;
}

.info-card p:focus {
  outline: 3px dashed var(--color-primario);
  outline-offset: 6px;
  border-radius: 6px;
}

.info-card-add {
  border: 3px dashed #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 140px;
  background: #fafafa;
}

.info-card-add:hover {
  border-color: var(--color-primario);
  background: rgba(255, 107, 157, 0.03);
}

.info-card-add i {
  font-size: 2.5rem;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.info-card-add:hover i {
  color: var(--color-primario);
  transform: scale(1.1);
}

.info-card-add span {
  color: #a0aec0;
  font-weight: 600;
}

.btn-edit-inline {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.info-card:hover .btn-edit-inline {
  opacity: 1;
}

.btn-edit-inline:hover {
  transform: scale(1.1);
}

/* Services & Payment Tags */
.services-list,
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-tag,
.payment-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(196, 69, 105, 0.08));
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 157, 0.15);
  transition: all 0.3s ease;
}

.service-tag:hover,
.payment-tag:hover {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(196, 69, 105, 0.15));
  transform: translateY(-2px);
}

.service-tag i,
.payment-tag i {
  color: var(--color-primario);
}

.delivery-card p i {
  color: #10b981;
  margin-right: 0.5rem;
}

/* ===========================================
   GALERÍA - Juicy Style
   =========================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.7), rgba(196, 69, 105, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #2d3748;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* ===========================================
   HORARIOS - Juicy Style
   =========================================== */

.schedule-card {
  background: white;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  transition: all 0.3s ease;
}

.schedule-row:hover {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(196, 69, 105, 0.05));
  transform: translateX(5px);
}

.schedule-row.closed {
  opacity: 0.6;
}

.schedule-day {
  font-weight: 700;
  color: #2d3748;
  min-width: 110px;
  font-size: 0.95rem;
}

.schedule-time {
  color: #4a5568;
  font-weight: 500;
}

.closed-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===========================================
   UBICACIÓN - Juicy Style
   =========================================== */

.location-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-address {
  display: flex;
  gap: 1.25rem;
}

.location-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.location-address strong {
  color: #2d3748;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}

.location-reference {
  color: #718096;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.location-city {
  color: #a0aec0;
  font-size: 0.9rem;
}

.location-directions {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
}

.location-directions i {
  color: var(--color-secundario);
  font-size: 1.2rem;
}

.location-directions p {
  color: #4a5568;
  font-size: 0.95rem;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.map-container {
  background: #e2e8f0;
  min-height: 320px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.map-placeholder i {
  font-size: 3.5rem;
  color: #cbd5e0;
}

/* ===========================================
   CONTACTO - Juicy Style
   =========================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primario);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  transform: scale(1.1);
}

.contact-whatsapp .contact-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.contact-whatsapp:hover .contact-icon {
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-weight: 700;
  color: #2d3748;
  font-size: 1.05rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.9rem;
  grid-column: 1 / -1;
  justify-content: center;
  padding: 1.25rem 0;
  flex-wrap: wrap;
}

.social-link {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #0d65d9);
}
.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}
.social-link.tiktok {
  background: linear-gradient(135deg, #000, #25f4ee);
}
.social-link.website {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
}

/* ===========================================
   FOOTER - Juicy Style
   =========================================== */

.store-footer {
  background: white;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.footer-content p {
  color: #718096;
  font-size: 0.95rem;
}

.powered-by {
  margin-top: 0.6rem;
}

.powered-by a {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 700;
}

/* ===========================================
   WHATSAPP FLOTANTE - Juicy Style
   =========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: #25d366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ===========================================
   ESTADOS VACÍOS - Juicy Style
   =========================================== */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.empty-icon.small {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.empty-icon i,
.empty-state > i {
  font-size: 2.5rem;
  color: var(--color-primario);
}

.empty-icon.small i {
  font-size: 1.75rem;
}

.empty-state h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 0.6rem;
}

.empty-state p {
  color: #718096;
  margin-bottom: 1.75rem;
}

.empty-state-small {
  padding: 3rem 1.75rem;
}

.empty-state-small h3 {
  font-size: 1.2rem;
}

/* ===========================================
   LIGHTBOX - Juicy Style
   =========================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--color-primario);
  border-color: var(--color-primario);
}

.lightbox-caption {
  color: white;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ===========================================
   MODALES - Juicy Style
   =========================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-sm {
  max-width: 480px;
}
.modal-md {
  max-width: 640px;
}
.modal-lg {
  max-width: 850px;
}

.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-header h3 i {
  color: var(--color-primario);
}

.modal-header-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.modal-header-success h3 i {
  color: white;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #a0aec0;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.modal-close:hover {
  color: #2d3748;
  background: #f1f5f9;
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
}

.modal-hint {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ===========================================
   FORMULARIOS - Juicy Style
   =========================================== */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primario);
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-hint {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 0.35rem;
}

.form-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 1.75rem 0;
}

/* Input with button */
.input-with-btn {
  display: flex;
  gap: 0.6rem;
}

.input-with-btn .form-input {
  flex: 1;
}

.btn-icon-primary {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-icon-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ===========================================
   BOTONES - Juicy Style
   =========================================== */

.btn-primary {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: #718096;
  border: 2px solid #e2e8f0;
  padding: 0.9rem 1.75rem;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--color-primario);
  color: var(--color-primario);
  background: rgba(255, 107, 157, 0.03);
}

.btn-text {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
}

.btn-text:hover {
  text-decoration: underline;
}

/* ===========================================
   COLOR PICKER - Juicy Style
   =========================================== */

.color-picker-wrapper {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.color-picker {
  width: 56px;
  height: 50px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-text {
  flex: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.color-preview {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.color-preview p {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.preview-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.preview-header {
  height: 48px;
  background: linear-gradient(135deg, var(--preview-primary, #ff6b9d), var(--preview-secondary, #c44569));
}

.preview-content {
  background: var(--preview-bg, #fff5f7);
  padding: 1.25rem;
}

.preview-btn {
  width: 90px;
  height: 36px;
  background: var(--preview-primary, #ff6b9d);
  border-radius: 12px;
}

/* ===========================================
   TOGGLE SWITCH - Juicy Style
   =========================================== */

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.toggle-sm {
  width: 44px;
  height: 24px;
}

.toggle-sm .toggle-slider:before {
  height: 18px;
  width: 18px;
}

.toggle-sm input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* Section Toggles */
.section-toggle-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.section-toggle-item:last-child {
  border-bottom: none;
}

.section-toggle-item span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.section-toggle-item i {
  color: var(--color-primario);
  width: 22px;
}

/* ===========================================
   UPLOAD ZONE - Juicy Style
   =========================================== */

.upload-zone {
  border: 3px dashed #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--color-primario);
  background: rgba(255, 107, 157, 0.03);
}

.upload-zone i {
  font-size: 3rem;
  color: #cbd5e0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.upload-zone:hover i {
  color: var(--color-primario);
  transform: scale(1.1);
}

.upload-zone p {
  color: #4a5568;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.upload-zone span {
  font-size: 0.85rem;
  color: #a0aec0;
}

/* Gallery Manager */
.gallery-manager {
  margin-top: 1.75rem;
}

.gallery-manager h4 {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.gallery-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.85rem;
}

.gallery-manage-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-manage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-manage-item:hover .gallery-item-actions {
  opacity: 1;
}

.gallery-item-actions .btn-icon {
  background: white;
  color: #ef4444;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item-actions .btn-icon:hover {
  transform: scale(1.1);
  background: #fee2e2;
}

.gallery-star {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #2d3748;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.no-images-text {
  color: #a0aec0;
  text-align: center;
  padding: 1.25rem;
}

/* ===========================================
   SCHEDULE EDITOR - Juicy Style
   =========================================== */

.schedule-day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  margin-bottom: 0.6rem;
}

.schedule-day-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.day-name {
  font-weight: 700;
  color: #2d3748;
  min-width: 100px;
}

.schedule-times {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.time-input {
  width: 110px;
  padding: 0.6rem;
  text-align: center;
  border-radius: 10px;
}

.schedule-actions {
  margin-top: 1.25rem;
  text-align: center;
}

/* ===========================================
   PAYMENT OPTIONS - Juicy Style
   =========================================== */

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s;
  background: #fafafa;
}

.payment-option input:checked + .payment-option-content {
  border-color: var(--color-primario);
  background: rgba(255, 107, 157, 0.05);
}

.payment-option-content i {
  color: var(--color-primario);
  font-size: 1.3rem;
}

/* ===========================================
   SERVICES EDITOR - Juicy Style
   =========================================== */

.service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.service-item i {
  color: var(--color-primario);
}

.service-item span {
  flex: 1;
  font-weight: 500;
}

.btn-remove {
  background: transparent;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0.35rem;
  transition: all 0.3s ease;
}

.btn-remove:hover {
  color: #ef4444;
}

.quick-services {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.quick-services > p {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.quick-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quick-service-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  padding: 0.6rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-weight: 600;
}

.quick-service-btn:hover {
  border-color: var(--color-primario);
  color: var(--color-primario);
  background: rgba(255, 107, 157, 0.03);
}

.quick-service-btn i {
  font-size: 0.95rem;
}

/* ===========================================
   STATS MODAL - Juicy Style
   =========================================== */

.stats-grid-modal {
  display: grid;
  gap: 1.1rem;
}

.stat-card-modal {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 18px;
}

.stat-icon-modal {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.stat-info-modal {
  display: flex;
  flex-direction: column;
}

.stat-number-modal {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
}

.stat-label-modal {
  font-size: 0.9rem;
  color: #718096;
}

/* Image Preview Container */
.image-preview-container {
  margin-top: 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-preview-container img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* ===========================================
   BOTÓN SEGUIR COMERCIO - Juicy Style
   =========================================== */

.follow-button-container {
  margin-left: auto;
}

.btn-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
}

.btn-follow:hover {
  background: white;
  color: var(--color-primario);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-follow.following {
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  border-color: transparent;
  color: white;
}

.btn-follow.following:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-follow i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-follow:hover i {
  transform: scale(1.2);
}

.btn-follow.following .fa-heart {
  animation: heartPulse 0.6s ease;
}

@keyframes heartPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

/* ===========================================
   TICKET DIFERENCIAL - Juicy Style
   =========================================== */

.ticket-section {
  margin-bottom: 2.5rem;
}

.ticket-diferencial-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, var(--ticket-color, var(--color-primario)), #ffe66d);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.ticket-confetti {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 230, 109, 0.3), transparent 60%);
  pointer-events: none;
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(
    135deg,
    var(--ticket-color, var(--color-primario)),
    color-mix(in srgb, var(--ticket-color, var(--color-primario)) 70%, #2d3748)
  );
}


@keyframes ticketFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.ticket-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-body {
  padding: 2rem;
  text-align: center;
}

.ticket-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.25rem;
}

.ticket-discount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.discount-value {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--ticket-color, var(--color-primario)), #ffe66d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: discountPop 0.5s ease-out;
}

@keyframes discountPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.discount-label {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #718096;
}

.ticket-applicable {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #059669;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.ticket-description {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.ticket-conditions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #a0aec0;
  font-size: 0.9rem;
  font-style: italic;
}

.ticket-footer {
  padding: 1.75rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-top: 2px dashed #e2e8f0;
}

.ticket-expiry {
  text-align: center;
  padding: 0.85rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Botón Reclamar Ticket */
.btn-claim-ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(
    135deg,
    var(--ticket-color, var(--color-primario)),
    color-mix(in srgb, var(--ticket-color, var(--color-primario)) 60%, #2d3748)
  );
  color: white;
  border: none;
  border-radius: 18px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-claim-ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-claim-ticket:active {
  transform: translateY(-2px);
}

.btn-claim-ticket i {
  font-size: 1.4rem;
  animation: giftShake 2s ease-in-out infinite;
}

@keyframes giftShake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-15deg);
  }
  20%,
  40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Ticket Reclamado */
.ticket-claimed {
  text-align: center;
}

.ticket-code-container {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 3px dashed #10b981;
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.1rem;
}

.ticket-code-label {
  display: block;
  font-size: 0.9rem;
  color: #059669;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.ticket-code {
  font-family: "Courier New", monospace;
  font-size: 2rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: 4px;
}

.ticket-instruction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #4a5568;
  font-size: 0.95rem;
}

.ticket-instruction i {
  color: var(--color-primario);
}

/* Estados: Requiere seguir / Login */
.ticket-follow-required,
.ticket-login-required,
.ticket-unavailable {
  text-align: center;
}

.ticket-follow-required p,
.ticket-login-required p,
.ticket-unavailable p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #718096;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.btn-follow-to-claim,
.btn-login-to-claim {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-follow-to-claim:hover,
.btn-login-to-claim:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* Estadísticas del propietario */
.ticket-stats-owner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.ticket-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 600;
}

.ticket-stat i {
  color: var(--color-primario);
}

.btn-validate-tickets {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-validate-tickets:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* CTA para activar ticket (propietario) */
.ticket-cta-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 3px dashed #f59e0b;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticket-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.ticket-cta-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.ticket-cta-content {
  flex: 1;
}

.ticket-cta-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.35rem;
}

.ticket-cta-content p {
  color: #b45309;
  font-size: 0.95rem;
}

.ticket-cta-arrow {
  color: #f59e0b;
  font-size: 1.6rem;
}

/* ===========================================
   MODAL TICKET DIFERENCIAL - Juicy Style
   =========================================== */

.ticket-info-box {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 18px;
  margin-bottom: 1.75rem;
}

.ticket-info-box i {
  color: #f59e0b;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ticket-info-box p {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ticket-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: #f8fafc;
  border-radius: 14px;
}

.ticket-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #2d3748;
}

.ticket-toggle-label i {
  color: var(--color-primario);
}

/* ===========================================
   MODAL VALIDAR TICKET - Juicy Style
   =========================================== */

#validateTicketCode {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 800;
  font-family: "Courier New", monospace;
}

#validateTicketResult {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 14px;
  text-align: center;
}

#validateTicketResult.success {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #10b981;
}

#validateTicketResult.error {
  background: linear-gradient(135deg, #fef2f2, #fecaca);
  border: 2px solid #ef4444;
}

.validate-success {
  color: #059669;
}

.validate-error {
  color: #dc2626;
}

.validate-ticket-info {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  text-align: left;
}

.validate-ticket-info p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.validate-ticket-info p:last-child {
  margin-bottom: 0;
}

.validate-ticket-info strong {
  color: #2d3748;
}

.btn-marcar-usado {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-marcar-usado:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* ===========================================
   MODAL TICKET RECLAMADO - Juicy Style
   =========================================== */

.claimed-ticket-display {
  padding: 1.25rem;
}

.success-animation {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  animation: successPop 0.5s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-animation i {
  color: white;
  font-size: 2.5rem;
}

.claimed-code {
  font-family: "Courier New", monospace;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 5px;
  padding: 1.25rem;
  background-color: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 3px dashed var(--color-primario);
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

/* ===========================================
   RESPONSIVE - Juicy Style
   =========================================== */

@media (max-width: 992px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .store-header {
    height: 320px;
    margin-top: 0;
  }

  .edit-toolbar {
    position: relative;
  }

  .edit-toolbar-content {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
  }

  .store-nav {
    top: 0;
  }

  .store-name {
    font-size: 1.8rem;
  }

  .store-main-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .store-logo-wrapper {
    margin-bottom: 0;
  }

  .store-logo {
    width: 90px;
    height: 90px;
    border-radius: 20px;
  }

  .logo-ring {
    border-radius: 24px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .title-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .customize-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 0.6rem;
    max-height: 95vh;
    border-radius: 24px;
  }

  .schedule-day-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .schedule-times {
    width: 100%;
    justify-content: space-between;
  }

  .time-input {
    flex: 1;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .ticket-diferencial-card {
    border-radius: 24px;
  }

  .ticket-header {
    flex-direction: column;
    gap: 1.1rem;
    text-align: center;
  }

  .discount-value {
    font-size: 3rem;
  }

  .discount-label {
    font-size: 1.1rem;
  }

  .ticket-stats-owner {
    flex-direction: column;
    gap: 1.1rem;
  }

  .ticket-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .ticket-cta-arrow {
    display: none;
  }

  .follow-button-container {
    margin-left: 0;
    margin-top: 1.1rem;
  }

  .btn-follow {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .store-content {
    padding: 1.25rem 0.85rem;
  }

  .customize-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-toolbar span {
    display: none;
  }

  .btn-toolbar {
    padding: 0.6rem;
  }

  .toolbar-title span {
    display: none;
  }

  .ticket-title {
    font-size: 1.25rem;
  }

  .discount-value {
    font-size: 2.5rem;
  }

  .ticket-code {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .claimed-code {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  #validateTicketCode {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

  .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff6b6b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-buttons {
            display: flex;
            gap: 0.8rem;
            align-items: center;
            flex-wrap: wrap;
        }

         .nav-buttons {
                gap: 0.5rem;
            }

            .nav-buttons .btn-outline:nth-child(2),
            .nav-buttons .btn-primary:nth-child(3),
            .nav-buttons .btn-outline:nth-child(4),
            .nav-buttons .btn-primary:nth-child(5) {
                display: none;
            }

/* ===========================================
   FILTRO DE OFERTAS - ESTILO MERCADOLIBRE
   =========================================== */

.offers-filter-bar {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.offers-search-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.offers-search-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.offers-search-container:focus-within {
    border-color: var(--color-primario);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.offers-search-container i.fa-search {
    color: #adb5bd;
    font-size: 0.95rem;
}

.offers-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.85rem 0.75rem;
    font-size: 0.95rem;
    outline: none;
    color: #333;
}

.offers-search-input::placeholder {
    color: #adb5bd;
}

.offers-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: #dee2e6;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.offers-search-clear:hover {
    background: var(--color-primario);
    color: white;
}

/* Sugerencias de búsqueda */
.offers-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.offers-suggestions.active {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f1f3f4;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
    background: #fff5f7;
}

.suggestion-item i {
    color: #adb5bd;
    font-size: 0.85rem;
}

.suggestion-item span {
    color: #333;
    font-size: 0.9rem;
}

.suggestion-item span strong {
    color: var(--color-primario);
    font-weight: 600;
}

/* Filtros */
.offers-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.offers-filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.offers-filter-select {
    padding: 0.6rem 2rem 0.6rem 0.85rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #333;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.offers-filter-select:hover {
    border-color: #dee2e6;
}

.offers-filter-select:focus {
    outline: none;
    border-color: var(--color-primario);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Info de resultados */
.offers-results-info {
    margin-left: auto;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
}

.offers-results-info span {
    color: var(--color-primario);
    font-weight: 700;
}

/* Sin resultados */
.offers-no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.offers-no-results .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-no-results .empty-icon i {
    font-size: 2rem;
    color: #adb5bd;
}

.offers-no-results h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.offers-no-results p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive filtros */
@media (max-width: 768px) {
    .offers-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .offers-search-wrapper {
        min-width: 100%;
    }
    
    .offers-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .offers-filter-group {
        flex: 1;
        min-width: 45%;
    }
    
    .offers-filter-select {
        width: 100%;
    }
    
    .offers-results-info {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .offers-filter-group {
        flex-direction: column;
        align-items: flex-start;
        min-width: 100%;
    }
    
    .filter-label {
        margin-bottom: 0.25rem;
    }
}

/* ===========================================
   SECCIÓN REDES SOCIALES
   =========================================== */

#redes-sociales {
    padding-top: 2rem;
}

.social-section-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.social-section-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f7, #fef3f5);
    border-radius: 12px;
}

.social-section-intro i {
    color: var(--color-primario);
    margin-right: 0.5rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.social-link-card:hover::before {
    opacity: 1;
}

/* Colores por red social */
.social-link-card.facebook::before { background: #1877f2; }
.social-link-card.facebook:hover { border-color: #1877f2; }
.social-link-card.facebook .social-link-icon { background: linear-gradient(135deg, #1877f2, #0d5fc7); }

.social-link-card.instagram::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link-card.instagram:hover { border-color: #e6683c; }
.social-link-card.instagram .social-link-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-link-card.twitter::before { background: #1da1f2; }
.social-link-card.twitter:hover { border-color: #1da1f2; }
.social-link-card.twitter .social-link-icon { background: linear-gradient(135deg, #1da1f2, #0c85d0); }

.social-link-card.tiktok::before { background: #000; }
.social-link-card.tiktok:hover { border-color: #000; }
.social-link-card.tiktok .social-link-icon { background: linear-gradient(135deg, #000, #333); }

.social-link-card.youtube::before { background: #ff0000; }
.social-link-card.youtube:hover { border-color: #ff0000; }
.social-link-card.youtube .social-link-icon { background: linear-gradient(135deg, #ff0000, #cc0000); }

.social-link-card.linkedin::before { background: #0077b5; }
.social-link-card.linkedin:hover { border-color: #0077b5; }
.social-link-card.linkedin .social-link-icon { background: linear-gradient(135deg, #0077b5, #005885); }

.social-link-card.website::before { background: var(--color-primario); }
.social-link-card.website:hover { border-color: var(--color-primario); }
.social-link-card.website .social-link-icon { background: linear-gradient(135deg, var(--color-primario), var(--color-secundario)); }

.social-link-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-link-icon i {
    font-size: 1.4rem;
    color: white;
}

.social-link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-link-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.social-link-action {
    font-size: 0.85rem;
    color: #888;
}

.social-link-arrow {
    color: #ccc;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link-card:hover .social-link-arrow {
    color: var(--color-primario);
    transform: translateX(4px);
}

/* Responsive redes sociales */
@media (max-width: 768px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .social-section-content {
        padding: 1.5rem;
    }
    
    .social-link-card {
        padding: 1rem 1.25rem;
    }
    
    .social-link-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-link-icon i {
        font-size: 1.2rem;
    }
}

/* Estilos para iconos pequeños de redes en contacto (mantener compatibilidad) */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links .social-link.facebook { background: #1877f2; }
.social-links .social-link.instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-links .social-link.twitter { background: #1da1f2; }
.social-links .social-link.tiktok { background: #000; }
.social-links .social-link.website { background: var(--color-primario); }

.social-links .social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   BADGES DE TIPO DE OFERTA
   =========================================== */

.offer-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.offer-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-type-badge i {
    font-size: 0.65rem;
}

/* Badge GRATIS */
.badge-gratis {
    background: linear-gradient(135deg, #00c853, #69f0ae);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

/* Badge 2x1 */
.badge-2x1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Badge 3x2 */
.badge-3x2 {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

/* Badge CUPÓN */
.badge-cupon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

/* Badge HASTA AGOTAR STOCK */
.badge-stock {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

/* Badge DESCUENTO */
.badge-descuento {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

/* Badge OTRO/OFERTA */
.badge-otro {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* ===========================================
   PRECIOS ESPECIALES
   =========================================== */

.offer-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

/* Precio GRATIS */
.price-free {
    background: linear-gradient(135deg, #00c853, #69f0ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.price-free i {
    -webkit-text-fill-color: #00c853;
    color: #00c853;
    font-size: 1rem;
}

/* Precio promocional (2x1, 3x2) */
.price-promo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.price-promo i {
    -webkit-text-fill-color: #ff6b6b;
    color: #ff6b6b;
    font-size: 0.9rem;
}

/* Precio consultar */
.price-consult {
    color: #666 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.price-consult i {
    color: #999;
    font-size: 0.85rem;
}

/* ===========================================
   BOTÓN FAVORITOS EN OFERTAS
   =========================================== */

.btn-favorite-offer {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
}

.offer-card:hover .btn-favorite-offer,
.btn-favorite-offer.active {
    opacity: 1;
    transform: scale(1);
}

.btn-favorite-offer i {
    font-size: 1rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.btn-favorite-offer:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-favorite-offer:hover i {
    color: #ff6b6b;
}

.btn-favorite-offer.active {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.btn-favorite-offer.active i {
    color: white;
}

.btn-favorite-offer:disabled {
    cursor: wait;
    opacity: 0.7;
}

/* Animación de pulso para favoritos */
.btn-favorite-offer.pulse-animation {
    animation: favoritePulse 0.3s ease;
}

@keyframes favoritePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* En móviles, siempre visible */
@media (max-width: 768px) {
    .btn-favorite-offer {
        opacity: 1;
        transform: scale(1);
        width: 32px;
        height: 32px;
    }
    
    .btn-favorite-offer i {
        font-size: 0.9rem;
    }
}

/* Ajuste para que el botón no tape el badge destacada */
.offer-featured-badge {
    right: auto;
    left: 0.5rem;
}

/* ===========================================
   AJUSTES ADICIONALES PARA OFFER CARD
   =========================================== */

.offer-card .offer-image {
    position: relative;
}

/* Asegurar que los badges no se superpongan */
.offer-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Preview mode - botón favorito visible */
.preview-mode .btn-favorite-offer.preview-only {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   PAGINACIÓN DE OFERTAS
   ============================================================ */

/* Ocultar ofertas paginadas */
.offer-card.paginated-hidden {
    display: none !important;
}

/* Contenedor de paginación */
.offers-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Información de paginación */
.pagination-info {
    font-size: 0.9rem;
    color: #666;
}

.pagination-info span {
    font-weight: 500;
}

/* Controles de paginación */
.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botones de paginación (prev/next) */
.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--color-primario, #FF6B9D);
    border-color: var(--color-primario, #FF6B9D);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn i {
    font-size: 0.85rem;
}

/* Contenedor de números de página */
.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Números de página */
.pagination-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-number:hover:not(.active) {
    background: #f0f0f0;
    border-color: var(--color-primario, #FF6B9D);
    color: var(--color-primario, #FF6B9D);
}

.pagination-number.active {
    background: var(--color-primario, #FF6B9D);
    border-color: var(--color-primario, #FF6B9D);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.35);
}

/* Elipsis (...) */
.pagination-ellipsis {
    padding: 0 0.5rem;
    color: #999;
    font-weight: 600;
    user-select: none;
}

/* ============================================================
   RESPONSIVE - PAGINACIÓN
   ============================================================ */

@media (max-width: 768px) {
    .offers-pagination {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .pagination-controls {
        gap: 0.35rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .pagination-btn span {
        display: none; /* Ocultar texto, solo mostrar iconos en mobile */
    }
    
    .pagination-btn i {
        font-size: 1rem;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pagination-numbers {
        gap: 0.25rem;
    }
    
    .pagination-number {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
    }
}

/* ============================================================
   MEJORA VISUAL - OFFER VALIDITY (hasta agotar stock)
   ============================================================ */

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.offer-validity i {
    font-size: 0.85rem;
    color: var(--color-primario, #FF6B9D);
}

/* Variante para "hasta agotar stock" */
.offer-validity i.fa-box-open {
    color: #FF9800;
}

/* Ajustes para la navbar del componente en contexto de mi_pagina */
.visitor-view .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Ajustar padding-top del body cuando hay navbar fija (visitantes) */
.visitor-view {
    padding-top: 70px;
}

/* Ajustar el header cuando hay navbar fija */
.visitor-view .store-header {
    margin-top: 0;
}

/* Personalización del logo en mi_pagina para mantener consistencia */
.visitor-view .navbar .logo {
    color: var(--color-primario, #ff6b6b);
}

.visitor-view .navbar .logo:hover {
    color: var(--color-secundario, #ee5a5a);
}

/* Botones de la navbar con colores de la tienda */
.visitor-view .navbar .btn-primary {
    background: linear-gradient(135deg, var(--color-primario, #ff6b6b), var(--color-secundario, #ee5a5a));
    border: none;
}

.visitor-view .navbar .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secundario, #ee5a5a), var(--color-primario, #ff6b6b));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.visitor-view .navbar .btn-outline {
    border-color: var(--color-primario, #ff6b6b);
    color: var(--color-primario, #ff6b6b);
}

.visitor-view .navbar .btn-outline:hover {
    background: var(--color-primario, #ff6b6b);
    color: white;
}

/* Hamburger lines con color de la tienda */
.visitor-view .navbar .hamburger-line {
    background-color: var(--color-primario, #ff6b6b);
}

.visitor-view .navbar .nav-toggle.active .hamburger-line {
    background-color: var(--color-primario, #ff6b6b);
}

/* Ajustes responsive para la navbar en mi_pagina */
@media (max-width: 768px) {
    .visitor-view {
        padding-top: 60px;
    }
    
    .visitor-view .navbar {
        padding: 0.75rem 1rem;
    }
    
    /* Menú mobile con estilo de la tienda */
    .visitor-view .navbar .nav-buttons.active {
        background: white;
        border-top: 3px solid var(--color-primario, #ff6b6b);
    }
    
    .visitor-view .navbar .nav-buttons .btn {
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .visitor-view .navbar .nav-buttons .btn:last-child {
        border-bottom: none;
    }
    
    .visitor-view .navbar .nav-buttons .btn-primary {
        background: linear-gradient(135deg, var(--color-primario, #ff6b6b), var(--color-secundario, #ee5a5a));
        margin: 0.5rem 1rem;
        border-radius: 10px;
    }
}

/* Ajustar z-index para que el store-nav quede debajo de la navbar principal */
.visitor-view .store-nav {
    z-index: 900;
}

/* Asegurar que el lightbox esté por encima de todo */
.lightbox {
    z-index: 2000;
}

/* Asegurar que los modales estén por encima de la navbar */
.modal {
    z-index: 1500;
}

/* WhatsApp float por encima de la navbar pero debajo de modales */
.whatsapp-float {
    z-index: 1100;
}

/* Ajustes para el overlay de navegación mobile */
.visitor-view .nav-overlay.active {
    z-index: 999;
}

/* ============================================================
   TICKET DIFERENCIAL - ESTADOS ADICIONALES
   ============================================================ */

.ticket-unavailable {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.ticket-unavailable p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ticket-unavailable i {
    color: #adb5bd;
    font-size: 1.1rem;
}

/* Animación de pulso para el botón de favoritos */
.btn-favorite-offer.pulse-animation {
    animation: pulse-heart 0.3s ease;
}

@keyframes pulse-heart {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Estado de ticket pendiente de usar */
.ticket-pending-use {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.ticket-pending-use p {
    color: #856404;
    font-weight: 500;
    margin: 0;
}

/* ============================================================
   FIX RESPONSIVIDAD COMPLETA - MOBILE FIRST
   Agregar al final de mi_pagina.css
   ============================================================ */

/* ===========================================
   FIXES GENERALES MOBILE
   =========================================== */

/* Prevenir overflow horizontal en toda la página */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===========================================
   HEADER/HERO - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .store-header {
        height: auto;
        min-height: 280px;
        padding-bottom: 0;
    }
    
    .store-info-overlay {
        padding: 2rem 0 1.5rem;
        position: relative;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7) 70%, transparent);
    }
    
    .store-main-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .store-logo-wrapper {
        margin: 0 auto;
    }
    
    .store-logo {
        width: 80px;
        height: 80px;
        border-radius: 18px;
        border-width: 3px;
    }
    
    .logo-ring {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 22px;
    }
    
    .store-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .store-name {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
        word-break: break-word;
    }
    
    .store-category {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .store-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: 0.3rem;
    }
    
    .store-rating {
        margin-top: 0.4rem;
    }
    
    .followers-count {
        font-size: 0.8rem;
    }
    
    .follow-button-container {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0 1rem;
    }
    
    .btn-follow {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .edit-btn-hero {
        top: auto;
        bottom: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1rem;
    }
}

/* ===========================================
   EDIT TOOLBAR - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .edit-toolbar {
        position: sticky;
        top: 0;
    }
    
    .edit-toolbar-content {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .edit-toolbar-left,
    .edit-toolbar-right {
        gap: 0.5rem;
    }
    
    .btn-toolbar {
        padding: 0.5rem;
        border-radius: 10px;
        font-size: 0.8rem;
    }
    
    .btn-toolbar span {
        display: none;
    }
    
    .btn-toolbar i {
        font-size: 1rem;
    }
    
    .btn-toolbar.btn-stats span {
        display: inline;
        font-size: 0.75rem;
    }
    
    .toolbar-divider {
        display: none;
    }
    
    .toolbar-title {
        font-size: 0.8rem;
    }
    
    .toolbar-title span {
        display: none;
    }
}

/* ===========================================
   NAVEGACIÓN STICKY - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .store-nav {
        top: 0;
        padding: 0;
    }
    
    .store-nav-container {
        padding: 0.75rem 0.5rem;
        gap: 0.35rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
        border-radius: 25px;
        flex-shrink: 0;
    }
    
    .nav-item i {
        font-size: 0.85rem;
    }
    
    /* Indicador de scroll horizontal */
    .store-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, white 30%, transparent);
        pointer-events: none;
    }
}

/* ===========================================
   PANEL DE PERSONALIZACIÓN - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .customize-panel {
        border-radius: 18px;
        margin: 0 -0.5rem 1.5rem;
    }
    
    .customize-header {
        padding: 1rem 1.25rem;
    }
    
    .customize-header h3 {
        font-size: 0.9rem;
    }
    
    .customize-panel.expanded .customize-content {
        padding: 1rem;
    }
    
    .customize-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .customize-card {
        padding: 0.85rem 0.5rem;
        border-radius: 14px;
    }
    
    .customize-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .customize-card span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .customize-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   TICKET DIFERENCIAL - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .ticket-diferencial-card {
        border-radius: 20px;
        margin: 0 -0.25rem;
    }
    
    .ticket-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .ticket-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.3rem;
    }
    
    .ticket-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .ticket-body {
        padding: 1.25rem 1rem;
    }
    
    .ticket-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .ticket-discount {
        margin-bottom: 1rem;
        gap: 0.4rem;
    }
    
    .discount-value {
        font-size: 2.5rem;
    }
    
    .discount-label {
        font-size: 0.95rem;
    }
    
    .ticket-applicable {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .ticket-description {
        font-size: 0.9rem;
    }
    
    .ticket-conditions {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .ticket-footer {
        padding: 1.25rem 1rem;
    }
    
    .btn-claim-ticket {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 14px;
    }
    
    .btn-claim-ticket i {
        font-size: 1.2rem;
    }
    
    .ticket-code-container {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .ticket-code {
        font-size: 1.4rem;
        letter-spacing: 2px;
        word-break: break-all;
    }
    
    .ticket-instruction {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .ticket-stats-owner {
        gap: 0.75rem;
    }
    
    .ticket-stat {
        font-size: 0.85rem;
        background: rgba(255,255,255,0.5);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .btn-validate-tickets {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.85rem 1.25rem;
    }
    
    .ticket-expiry {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    /* CTA para activar ticket */
    .ticket-cta-card {
        padding: 1.25rem;
        border-radius: 18px;
        gap: 1rem;
    }
    
    .ticket-cta-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        font-size: 1.4rem;
    }
    
    .ticket-cta-content h3 {
        font-size: 1rem;
    }
    
    .ticket-cta-content p {
        font-size: 0.85rem;
    }
    
    /* Estados de ticket */
    .ticket-follow-required p,
    .ticket-login-required p,
    .ticket-unavailable p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .btn-follow-to-claim,
    .btn-login-to-claim {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }
}

/* ===========================================
   OFERTAS GRID Y FILTROS - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .title-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    
    .btn-section-action {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Filtros de ofertas */
    .offers-filter-bar {
        padding: 1rem;
        border-radius: 14px;
        gap: 0.75rem;
    }
    
    .offers-search-container {
        padding: 0 0.75rem;
        border-radius: 10px;
    }
    
    .offers-search-input {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .offers-filters {
        width: 100%;
        gap: 0.5rem;
    }
    
    .offers-filter-group {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
    }
    
    .offers-filter-select {
        padding: 0.55rem 2rem 0.55rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .offers-results-info {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* Grid de ofertas */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .offer-card {
        border-radius: 18px;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offer-featured-badge {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .btn-favorite-offer {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }
    
    .offer-content {
        padding: 1rem;
    }
    
    .offer-badges-row {
        gap: 0.35rem;
        margin-bottom: 0.5rem;
    }
    
    .offer-type-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .offer-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.45rem;
    }
    
    .offer-title {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }
    
    .offer-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .offer-prices {
        gap: 0.5rem;
    }
    
    .price-original {
        font-size: 0.9rem;
    }
    
    .offer-price {
        font-size: 1.4rem;
    }
    
    .price-free, .price-promo {
        font-size: 1.1rem !important;
    }
    
    .offer-validity {
        font-size: 0.75rem;
        margin-top: 0.65rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Paginación */
    .offers-pagination {
        padding: 1rem;
        border-radius: 14px;
        margin-top: 1.5rem;
    }
    
    .pagination-info {
        font-size: 0.75rem;
    }
    
    .pagination-controls {
        width: 100%;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-number {
        min-width: 34px;
        height: 34px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    /* Sin resultados */
    .offers-no-results {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    
    .offers-no-results .empty-icon {
        width: 60px;
        height: 60px;
    }
    
    .offers-no-results h3 {
        font-size: 1.1rem;
    }
    
    .offers-no-results p {
        font-size: 0.9rem;
    }
}

/* ===========================================
   INFO CARDS - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
        border-radius: 18px;
    }
    
    .info-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    .info-card h3 i {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .services-list,
    .payment-methods {
        gap: 0.5rem;
    }
    
    .service-tag,
    .payment-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }
    
    .info-card-add {
        min-height: 100px;
        padding: 1.25rem;
    }
    
    .info-card-add i {
        font-size: 2rem;
    }
}

/* ===========================================
   GALERÍA - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item {
        border-radius: 14px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    .gallery-featured {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        top: 8px;
        right: 8px;
    }
}

/* ===========================================
   HORARIOS - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .schedule-card {
        padding: 1.25rem;
        border-radius: 18px;
    }
    
    .schedule-row {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    .schedule-day {
        min-width: 80px;
        font-size: 0.85rem;
    }
    
    .schedule-time {
        font-size: 0.85rem;
    }
    
    .closed-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
    }
}

/* ===========================================
   UBICACIÓN - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .location-card {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }
    
    .location-info {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .location-address {
        gap: 1rem;
    }
    
    .location-icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .location-address strong {
        font-size: 1rem;
    }
    
    .location-reference,
    .location-city {
        font-size: 0.85rem;
    }
    
    .location-directions {
        padding: 0.85rem;
        border-radius: 12px;
        gap: 0.65rem;
    }
    
    .location-directions i {
        font-size: 1rem;
    }
    
    .location-directions p {
        font-size: 0.85rem;
    }
    
    .btn-directions {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .map-container {
        min-height: 220px;
        border-radius: 0 0 16px 16px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
}

/* ===========================================
   CONTACTO - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-card {
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.2rem;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
}

/* ===========================================
   REDES SOCIALES - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .social-section-content {
        padding: 1.25rem;
        border-radius: 18px;
    }
    
    .social-section-intro {
        font-size: 0.9rem;
        padding: 0.85rem;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    
    .social-link-card {
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }
    
    .social-link-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .social-link-icon i {
        font-size: 1.2rem;
    }
    
    .social-link-name {
        font-size: 0.95rem;
    }
    
    .social-link-action {
        font-size: 0.8rem;
    }
}

/* ===========================================
   MODALES - FIXES MOBILE COMPLETOS
   =========================================== */

@media (max-width: 576px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        margin: 0;
        animation: modalSlideUp 0.3s ease;
    }
    
    @keyframes modalSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .modal-sm,
    .modal-md,
    .modal-lg {
        max-width: 100%;
        width: 100%;
    }
    
    .modal-header {
        padding: 1.25rem 1rem;
        border-radius: 24px 24px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.05rem;
    }
    
    .modal-close {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .modal-body {
        padding: 1.25rem 1rem;
        max-height: calc(92vh - 140px);
    }
    
    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .modal-footer .btn-outline,
    .modal-footer .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .modal-hint {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Forms en modales */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    
    .form-hint {
        font-size: 0.75rem;
    }
    
    .form-divider {
        margin: 1.25rem 0;
    }
    
    /* Color picker en modal */
    .color-picker-wrapper {
        gap: 0.65rem;
    }
    
    .color-picker {
        width: 48px;
        height: 44px;
        border-radius: 12px;
    }
    
    /* Upload zone */
    .upload-zone {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .upload-zone i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .upload-zone p {
        font-size: 0.9rem;
    }
    
    .upload-zone span {
        font-size: 0.75rem;
    }
    
    /* Gallery manager en modal */
    .gallery-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-manage-item {
        border-radius: 10px;
    }
    
    .gallery-item-actions .btn-icon {
        width: 34px;
        height: 34px;
    }
    
    /* Schedule editor en modal */
    .schedule-day-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .schedule-day-header {
        justify-content: space-between;
    }
    
    .day-name {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .schedule-times {
        justify-content: stretch;
        gap: 0.5rem;
    }
    
    .time-input {
        flex: 1;
        width: auto;
        min-width: 0;
        padding: 0.6rem 0.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .schedule-times span {
        flex-shrink: 0;
    }
    
    /* Sections toggles */
    .section-toggle-item {
        padding: 0.75rem 0;
    }
    
    .section-toggle-item span {
        font-size: 0.9rem;
    }
    
    /* Payment options */
    .payment-options {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    
    .payment-option-content {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    /* Services editor */
    .service-item {
        padding: 0.65rem 0.85rem;
        border-radius: 10px;
    }
    
    .quick-services-grid {
        gap: 0.5rem;
    }
    
    .quick-service-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Stats modal */
    .stats-grid-modal {
        gap: 0.85rem;
    }
    
    .stat-card-modal {
        padding: 1.1rem;
        border-radius: 14px;
    }
    
    .stat-icon-modal {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
    }
    
    .stat-number-modal {
        font-size: 1.6rem;
    }
    
    .stat-label-modal {
        font-size: 0.8rem;
    }
    
    /* Ticket modal */
    .ticket-info-box {
        padding: 1rem;
        border-radius: 14px;
        gap: 0.85rem;
        flex-direction: column;
        text-align: center;
    }
    
    .ticket-info-box i {
        font-size: 1.4rem;
    }
    
    .ticket-info-box p {
        font-size: 0.85rem;
    }
    
    .ticket-toggle-row {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    .ticket-toggle-label {
        font-size: 0.9rem;
    }
    
    /* Validate ticket modal */
    #validateTicketCode {
        font-size: 1.3rem;
        letter-spacing: 3px;
        padding: 0.85rem;
    }
    
    #validateTicketResult {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .validate-ticket-info {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .validate-ticket-info p {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .btn-marcar-usado {
        padding: 0.85rem;
        border-radius: 12px;
    }
    
    /* Image preview */
    .image-preview-container {
        border-radius: 14px;
    }
    
    .image-preview-container img {
        max-height: 180px;
    }
}

/* ===========================================
   LIGHTBOX - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox img {
        max-width: 100%;
        max-height: 75vh;
        border-radius: 14px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.2rem;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        margin-top: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
}

/* ===========================================
   FOOTER - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .store-footer {
        padding: 1.75rem 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
    
    .powered-by {
        margin-top: 0.4rem;
    }
}

/* ===========================================
   WHATSAPP FLOAT - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 1.8rem;
    }
    
    .whatsapp-pulse {
        border-radius: 20px;
    }
}

/* ===========================================
   EMPTY STATES - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .empty-state {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }
    
    .empty-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        margin-bottom: 1rem;
    }
    
    .empty-icon i {
        font-size: 2rem;
    }
    
    .empty-state h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }
    
    .empty-state p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .empty-state-small {
        padding: 2rem 1.25rem;
    }
}

/* ===========================================
   PREVIEW BANNER - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .preview-banner {
        padding: 0.65rem 1rem;
    }
    
    .preview-banner-content {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .preview-banner-content span {
        width: 100%;
    }
    
    .btn-exit-preview {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }
}

/* ===========================================
   CLAIMED TICKET MODAL - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .claimed-ticket-display {
        padding: 0.75rem;
    }
    
    .success-animation {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .success-animation i {
        font-size: 2rem;
    }
    
    .claimed-code {
        font-size: 1.5rem;
        padding: 1rem;
        letter-spacing: 3px;
        border-radius: 14px;
        word-break: break-all;
    }
}

/* ===========================================
   VISITOR VIEW (NAVBAR) - FIXES MOBILE
   =========================================== */

@media (max-width: 576px) {
    .visitor-view {
        padding-top: 60px;
    }
    
    .visitor-view .store-header {
        margin-top: 0;
    }
    
    .visitor-view .store-nav {
        top: 60px;
    }
}

/* ===========================================
   TOUCH IMPROVEMENTS
   =========================================== */

@media (hover: none) and (pointer: coarse) {
    /* Aumentar área táctil en móviles */
    .nav-item {
        min-height: 44px;
    }
    
    .btn-follow,
    .btn-claim-ticket,
    .btn-primary,
    .btn-outline {
        min-height: 48px;
    }
    
    .btn-favorite-offer {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Mejorar feedback visual en touch */
    .offer-card:active {
        transform: scale(0.98);
    }
    
    .contact-card:active,
    .social-link-card:active {
        transform: scale(0.98);
    }
    
    /* Desactivar hover effects que no funcionan bien en touch */
    .customize-card:hover {
        transform: none;
    }
    
    .customize-card:active {
        transform: scale(0.95);
        background: white;
    }
}

/* ===========================================
   SAFE AREAS (NOTCH/HOME INDICATOR)
   =========================================== */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .store-footer {
        padding-bottom: calc(1.75rem + env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .modal-content {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .modal-footer {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
}

/* ===========================================
   LANDSCAPE MOBILE FIXES
   =========================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .store-header {
        height: auto;
        min-height: 200px;
    }
    
    .store-logo {
        width: 60px;
        height: 60px;
    }
    
    .store-name {
        font-size: 1.3rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-body {
        max-height: calc(95vh - 120px);
    }
    
    .ticket-discount {
        margin-bottom: 0.75rem;
    }
    
    .discount-value {
        font-size: 2rem;
    }
}

/* ===========================================
   PWA STANDALONE FIXES
   =========================================== */

@media (display-mode: standalone) {
    .store-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .edit-toolbar {
        padding-top: env(safe-area-inset-top);
    }
    
    .visitor-view .navbar {
        padding-top: env(safe-area-inset-top);
    }
}

/* ===========================================
   DARK MODE SUPPORT (FUTURE)
   =========================================== */

@media (prefers-color-scheme: dark) {
    /* Preparado para futura implementación */
}

/* ===========================================
   REDUCED MOTION (ACCESIBILIDAD)
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-pulse {
        display: none;
    }
    
    .logo-ring {
        animation: none;
    }
}

/* ============================================================
   FIX: BANNER RESPONSIVE - Imagen que no cubre contenedor
   ============================================================ */

/* Forzar que el banner cubra todo el contenedor del header */
.store-header .store-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Fix para el gradiente default cuando no hay imagen */
.store-header .store-banner.default-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* En móviles, asegurar altura mínima fija para el header */
@media (max-width: 576px) {
    .store-header {
        height: 320px;
        min-height: 320px;
    }
    
    .store-header .store-banner {
        object-position: center top;
    }
}

@media (max-width: 380px) {
    .store-header {
        height: 280px;
        min-height: 280px;
    }
}

/* ===========================================
   BOTÓN COMPARTIR EN CARDS DE OFERTAS
   =========================================== */

.offer-card .share-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.75rem;
    width: 100%;
}

.offer-card .share-offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.offer-card .share-offer-btn:active {
    transform: translateY(0);
}

/* ===========================================
   MODAL DE COMPARTIR - MI PÁGINA
   =========================================== */

.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.share-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.share-modal-overlay.active .share-modal {
    transform: scale(1) translateY(0);
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-modal-header h3 i {
    color: #ff6b6b;
}

.share-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.share-modal-close:hover {
    background: #ff6b6b;
    color: white;
}

.share-modal-content {
    padding: 1.5rem;
}

.share-modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.share-modal-store {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.share-modal-store i {
    color: #ff6b6b;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.share-option i {
    font-size: 1.5rem;
}

.share-option:hover {
    transform: translateY(-3px);
}

.share-whatsapp { background: #dcfce7; color: #16a34a; }
.share-whatsapp:hover { background: #25d366; color: white; }

.share-telegram { background: #e0f2fe; color: #0ea5e9; }
.share-telegram:hover { background: #0088cc; color: white; }

.share-facebook { background: #dbeafe; color: #2563eb; }
.share-facebook:hover { background: #1877f2; color: white; }

.share-twitter { background: #f0f9ff; color: #0ea5e9; }
.share-twitter:hover { background: #1da1f2; color: white; }

.share-email { background: #fef3c7; color: #d97706; }
.share-email:hover { background: #f59e0b; color: white; }

.share-copy { background: #f1f5f9; color: #64748b; }
.share-copy:hover { background: #ff6b6b; color: white; }

.share-link-container {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.share-link-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: #475569;
    outline: none;
    min-width: 0;
}

.share-link-copy-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.share-link-copy-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .share-modal {
        max-width: 100%;
        margin: 0 0.5rem;
    }
    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   FIX: OCULTAR SCROLLBAR EN HEADER/BANNER PC
   =========================================== */

.store-header {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.store-header::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.header-blur-bg,
.store-banner,
.store-info-overlay,
.modal-image-container {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.header-blur-bg::-webkit-scrollbar,
.store-banner::-webkit-scrollbar,
.store-info-overlay::-webkit-scrollbar,
.modal-image-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Fix para imagen de banner */
.store-banner.default-gradient,
.store-banner img {
    overflow: hidden;
}

/* ===========================================
   FIX DEFINITIVO: SCROLLBAR EN BANNER PC
   =========================================== */

/* Contenedor principal del header */
.store-header,
.store-header * {
    overflow: hidden !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.store-header::-webkit-scrollbar,
.store-header *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Imagen del banner específicamente */
.store-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden !important;
}

img.store-banner {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

/* Contenedor de info overlay */
.store-info-overlay {
    overflow: hidden !important;
    overflow-y: visible;
}

/* Fix para el wrapper del logo que puede generar scroll */
.store-logo-wrapper,
.store-main-info,
.follow-button-container {
    overflow: visible;
}

/* ===========================================
   FIX 1: Logo sobre hamburguesa desplegada
   El logo tiene z-index: 1003 y el panel z-index: 1002
   Cuando el menú está abierto, el logo debe quedar DEBAJO del panel
   =========================================== */

@media (max-width: 768px) {
    .visitor-view .navbar .logo {
        z-index: 1001;
    }

    .visitor-view .navbar .nav-buttons {
        z-index: 1003;
    }

    .visitor-view .navbar .nav-toggle {
        z-index: 1004;
    }
}

/* ===========================================
   FIX 2: Botón REGISTRARSE descuadrado en
   menú hamburguesa mobile (btn-primary con
   margin y border-radius inconsistentes)
   =========================================== */

@media (max-width: 768px) {
    .visitor-view .navbar .nav-buttons .btn-primary {
        margin: 0;
        border-radius: 12px;
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

    .visitor-view .navbar .nav-buttons .btn-outline {
        border-radius: 12px;
        border: 2px solid var(--color-primario, #ff6b6b);
        margin: 0;
        width: 100%;
    }

    .visitor-view .navbar .nav-buttons .btn {
        border-radius: 12px;
        border-bottom: none;
    }
}

/* ===========================================
   FIX 3: Degradado del hero (store-info-overlay)
   se ve descuadrado en iOS / Safari / algunos
   dispositivos. Se reemplaza el gradiente "to top"
   por uno con -webkit- prefixed y se fuerza
   hardware acceleration con transform/will-change
   para evitar rendering bugs en WebKit/Blink.
   =========================================== */

.store-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.25) 60%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 0 2.5rem;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: visible !important;
}

/* Asegurar que en iOS el overlay cubra TODO el ancho sin gaps */
@supports (-webkit-touch-callout: none) {
    /* iOS-only fix */
    .store-info-overlay {
        top: 0;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0.25) 60%,
            transparent 100%
        );
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Mobile: asegurar el degradado completo sin recortes */
@media (max-width: 768px) {
    .store-info-overlay {
        top: 0;
        padding: 0 0 2rem;
    }
}

@media (max-width: 576px) {
    .store-info-overlay {
        top: 0;
        left: -1px;
        right: -1px;
        bottom: -1px;
        padding: 0 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .visitor-view .navbar .nav-buttons .btn-outline {
        margin: 0.5rem 1rem;
        border-radius: 10px;
        border: 2px solid var(--color-primario, #ff6b6b);
    }
}

/* ============================================
   BOTÓN EDITAR EN INFO CARDS (Formas de Pago)
   ============================================ */
.info-card-editable {
    position: relative;
}

.info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.info-card-header h3 {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.btn-edit-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
    flex-shrink: 0;
}

.btn-edit-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.btn-edit-card:active {
    transform: scale(0.95);
}

.btn-edit-card i {
    font-size: 0.95rem;
}

/* Método de pago personalizado en el modal */
.payment-option-custom {
    border: 1px dashed var(--color-primario) !important;
    background: rgba(255, 107, 157, 0.05) !important;
}

.custom-method-badge {
    font-size: 0.6rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .btn-edit-card {
        width: 36px;
        height: 36px;
    }
    
    .btn-edit-card i {
        font-size: 0.9rem;
    }
}

/* Responsive - Móviles */
@media (max-width: 480px) {
    .info-card-header {
        gap: 0.75rem;
    }
    
    .btn-edit-card {
        width: 34px;
        height: 34px;
    }
    
    .btn-edit-card i {
        font-size: 0.85rem;
    }
    
    .custom-method-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }
}

/* ===========================================
   FIX: PREVIEW BANNER - ESTILOS BASE
   El banner de vista previa no tenía estilos base,
   solo responsive. Esto causaba que a veces no se viera.
   =========================================== */

.preview-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 0.85rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.preview-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
    font-weight: 500;
}

.preview-banner-content i.fa-eye {
    font-size: 1.1rem;
    color: #ffd700;
}

.preview-banner-content span {
    color: rgba(255, 255, 255, 0.9);
}

.btn-exit-preview {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primario, #FF6B9D), var(--color-secundario, #C44569));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
}

.btn-exit-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-exit-preview:active {
    transform: translateY(0);
}

/* ===========================================
   FIX: BOTÓN EDIT-BTN-HERO - Z-INDEX
   El overlay del hero cubría el botón.
   Ahora el botón tiene z-index mayor.
   =========================================== */

.edit-btn-hero {
    z-index: 50 !important;
    pointer-events: auto !important;
}

/* Asegurar que el overlay no bloquee el botón */
.store-info-overlay {
    pointer-events: none;
}

/* Pero sí permitir clicks en el contenido del overlay */
.store-info-overlay .container,
.store-info-overlay .store-main-info,
.store-info-overlay .store-details,
.store-info-overlay .follow-button-container,
.store-info-overlay .btn-follow,
.store-info-overlay .store-name,
.store-info-overlay .store-subtitle {
    pointer-events: auto;
}