:root {
  --orange: #FF6A00;
  --dark: #0A0A0A;
  --card: #151515;
  --text: #eee;
  --muted: #888;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #060606;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--orange);
  text-decoration: none;
}

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

/* ========================================
   CONTENEDOR GLOBAL
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========================================
   FONDO ANIMADO
   ======================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,106,0,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(255,106,0,0.04) 0%, transparent 50%),
              #060606;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cdefs%3E%3Cpattern id='circuit' x='0' y='0' width='200' height='200' patternUnits='userSpaceOnUse'%3E%3Cg fill='none' stroke='rgba(255,106,0,0.07)' stroke-width='1.2'%3E%3Cpath d='M0 40h80l10-10h30'/%3E%3Cpath d='M120 40h80'/%3E%3Cpath d='M0 80h50l20 20h50l10-10h40'/%3E%3Cpath d='M120 80h30l20 20h50'/%3E%3Cpath d='M60 0v60l10 10v30'/%3E%3Cpath d='M60 120v40l10 10v30'/%3E%3Ccircle cx='60' cy='60' r='3' fill='rgba(255,106,0,0.15)'/%3E%3Ccircle cx='100' cy='60' r='3' fill='rgba(255,106,0,0.15)'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='400' height='400' fill='url(%23circuit)'/%3E%3C/svg%3E");
  animation: circuitMove 60s linear infinite;
  opacity: 0.6;
}

@keyframes circuitMove {
  0% { background-position: 0 0; }
  100% { background-position: 400px 400px; }
}

.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,106,0,0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ========================================
   BARRA SUPERIOR - ANNOUNCEMENTS (MARQUEE)
   ======================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-bottom: 2px solid var(--orange);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.announcement-wrapper {
  display: flex;
  overflow: hidden;
}

.announcement-scroll {
  display: flex;
  gap: 60px;
  animation: scrollAnnouncements 30s linear infinite;
  white-space: nowrap;
}

.announcement-scroll:hover {
  animation-play-state: paused;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.announcement-item .icon {
  color: var(--orange);
  font-size: 16px;
}

@keyframes scrollAnnouncements {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   BARRA PRINCIPAL - HEADER (CORREGIDO)
   ======================================== */
.main-header-bar {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 15px 0;
  border-bottom: 2px solid var(--orange);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 50px;
  width: auto;
  filter: none; /* Sacar el filtro blanco */
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-text .brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
  line-height: 1.2;
}

.header-brand-text .brand-subtitle {
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
}

.header-center {
  flex: 1;
  max-width: 600px;
}

.header-search {
  display: flex;
  width: 100%;
}

.header-search .search-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.header-search .search-input::placeholder {
  color: #888;
}

.header-search .search-btn {
  background: var(--orange);
  border: none;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}

.header-search .search-btn:hover {
  background: #ff8533;
}

.header-right {
  display: flex;
  gap: 25px;
  align-items: center;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.header-link:hover {
  transform: translateY(-2px);
  color: var(--orange);
}

.header-link svg {
  width: 22px;
  height: 22px;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Dropdown usuario en header oscuro */
.user-dropdown .user-btn {
  background: rgba(255, 106, 0, 0.15);
  border: 2px solid var(--orange);
}

.user-dropdown .user-btn:hover {
  background: rgba(255, 106, 0, 0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-center {
    width: 100%;
    order: 2;
  }
  
  .header-left {
    order: 1;
  }
  
  .header-right {
    order: 3;
    gap: 20px;
  }
  
  .header-link span:not(.badge) {
    display: none;
  }
}

/* ========================================
   BARRA DE NAVEGACIÓN PRINCIPAL (Links + Botones)
   ======================================== */
.main-nav {
  background: #0a0a0a;
  border-bottom: 2px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.main-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.main-nav-menu li {
  margin: 0;
}

.main-nav-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.main-nav-menu .nav-link:hover {
  color: white;
  background: rgba(255, 106, 0, 0.1);
}

.main-nav-menu .nav-link.active {
  color: white;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border-bottom-color: var(--orange);
}

.nav-icon {
  font-size: 18px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Botón Check IMEI */
.btn-imei-check {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
  font-family: 'Montserrat', sans-serif;
}

.btn-imei-check:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

/* Botón WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   DROPDOWN DE USUARIO (En Header Verde)
   ======================================== */
.user-dropdown {
  position: relative;
}

.user-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  padding: 6px 15px 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.user-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.user-avatar-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  overflow: hidden;
  flex-shrink: 0;
}

.user-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-name {
  font-weight: 600;
  font-size: 13px;
  color: white;
  line-height: 1.2;
}

.user-badge {
  font-size: 10px;
  background: var(--orange);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  opacity: 0.8;
  color: white;
}

.user-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #151515;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 12px;
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.user-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.dropdown-header {
  padding: 8px 18px 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-item.logout {
  color: #ff4444;
}

.dropdown-item.logout:hover {
  background: rgba(255, 68, 68, 0.1);
  color: #ff6666;
}

/* ========================================
   MODAL CHECK IMEI
   ======================================== */
.modal-imei {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-imei.active {
  display: flex;
}

.modal-imei-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  border: 2px solid rgba(255, 106, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 106, 0, 0.2);
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--orange);
  color: white;
  transform: rotate(90deg);
}

.modal-imei-content h2 {
  color: white;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.modal-imei-content > p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 14px;
}

.modal-imei-content .form-group {
  margin-bottom: 20px;
}

.modal-imei-content label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.modal-imei-content input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.modal-imei-content input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
}

.modal-imei-content small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.btn-check-imei {
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border: none;
  padding: 15px;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-check-imei:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

.imei-result {
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.result-success,
.result-error {
  text-align: center;
}

.result-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.result-success h3 {
  color: #4CAF50;
  margin: 0 0 15px;
}

.result-error h3 {
  color: #ff4444;
  margin: 0 0 15px;
}

.result-success p,
.result-error p {
  margin: 10px 0;
  color: #ccc;
}

/* ========================================
   HERO / CARRUSEL
   ======================================== */
.hero {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
  border: 2px solid rgba(255, 106, 0, 0.2);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.8) 100%);
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 50px;
  max-width: 600px;
  z-index: 2;
}

.carousel-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  animation: slideUp 0.8s ease;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.carousel-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 30px;
  line-height: 1.4;
  animation: slideUp 0.8s ease 0.2s both;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.carousel-content .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease 0.4s both;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
  border: 2px solid transparent;
}

.carousel-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Puntos de navegación */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background: var(--orange);
  transform: scale(1.3);
  border-color: white;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 106, 0, 0.2);
  border: 2px solid rgba(255, 106, 0, 0.4);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 106, 0, 0.5);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* ========================================
   SERVICIOS
   ======================================== */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  color: var(--orange);
  margin-bottom: 50px;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(21,21,21,0.9);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,106,0,0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,106,0,0.15);
  border-color: var(--orange);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--orange);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   SECCIÓN CONTACTO
   ======================================== */
.contact-section {
  background: rgba(21,21,21,0.5);
  padding: 80px 20px;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
}

/* ========================================
   PRODUCTOS DESTACADOS
   ======================================== */
.featured-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.view-all-btn {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid var(--orange);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.view-all-btn:hover {
  background: var(--orange);
  color: white;
}

.products-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.product-card-premium {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,106,0,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,106,0,0.15);
  border-color: var(--orange);
}

.discount-badge,
.new-badge,
.stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.discount-badge { background: var(--orange); color: white; }
.new-badge { background: #4CAF50; color: white; }
.stock-badge { background: #ff4444; color: white; }

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

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  padding: 20px;
}

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

.product-info-premium {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-title-premium {
  font-size: 16px;
  color: white;
  margin: 0 0 10px;
  line-height: 1.3;
  min-height: 44px;
  font-weight: 700;
}

.product-rating {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 14px;
}

.rating-count {
  color: var(--muted);
  margin-left: 5px;
  font-size: 12px;
}

.product-price-premium {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.current-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
}

.old-price {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.product-desc-premium {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 40px;
}

.btn-add-cart-premium {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.btn-add-cart-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

/* ========================================
   FOOTER PROFESIONAL
   ======================================== */
.footer-professional {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid rgba(255,106,0,0.2);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.footer-logo {
  height: 70px;
  margin-bottom: 15px;
}

.footer-section > p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-contact p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,106,0,0.1);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.social-link:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255,106,0,0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 14px;
}

/* ========================================
   CARRITO MODAL
   ======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-modal {
  width: 100%;
  max-width: 450px;
  background: #111;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid rgba(255,106,0,0.3);
}

.cart-overlay.open .cart-modal {
  transform: translateX(0);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,106,0,0.05);
}

.cart-header h2 {
  color: var(--orange);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #222;
}

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

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

.cart-item-info h4 {
  margin: 0 0 5px;
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-controls button {
  background: #333;
  border: none;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.cart-controls button:hover {
  background: var(--orange);
}

.cart-controls span {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.btn-remove {
  background: transparent !important;
  color: #ff4444 !important;
  font-size: 16px !important;
  margin-left: auto;
}

.cart-footer {
  padding: 20px;
  background: #0a0a0a;
  border-top: 1px solid #333;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cart-total span:last-child {
  color: var(--orange);
}

.cart-buttons {
  display: flex;
  gap: 10px;
}

.cart-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

/* ========================================
   BOTONES GENERALES
   ======================================== */
.btn {
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,106,0,0.4);
}

.btn-secondary {
  background: #333;
  color: white;
}

.btn-secondary:hover {
  background: #444;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 16px;
}

/* ========================================
   LOADING
   ======================================== */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  grid-column: 1 / -1;
}

.loading-premium {
  text-align: center;
  padding: 60px;
  grid-column: 1 / -1;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,106,0,0.1);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .header-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .header-search {
    max-width: 100%;
    order: 2;
  }
  
  .header-left {
    justify-content: center;
    order: 1;
  }
  
  .header-right {
    justify-content: center;
    gap: 20px;
    order: 3;
  }
  
  .header-link span:not(.badge) {
    display: none;
  }
  
  .main-nav .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav-menu .nav-link {
    padding: 12px 15px;
    font-size: 13px;
  }
  
  .nav-buttons {
    justify-content: center;
  }
  
  .btn-imei-check span:last-child,
  .btn-whatsapp span {
    display: none;
  }
  
  .announcement-scroll {
    animation-duration: 20s;
  }
  
  .hero {
    padding: 20px;
  }
  
  .carousel {
    height: 400px;
  }
  
  .carousel-content {
    padding: 30px;
    max-width: 100%;
    text-align: center;
    left: 0;
    right: 0;
  }
  
  .carousel-content h1 {
    font-size: 1.8rem;
  }
  
  .carousel-content h2 {
    font-size: 1.1rem;
  }
  
  .carousel-content .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .services-grid,
  .products-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .announcement-item {
    font-size: 12px;
  }
  
  .header-search .search-input {
    font-size: 13px;
    padding: 10px 15px;
  }
  
  .header-search .search-btn {
    padding: 10px 15px;
  }
  
  .main-nav-menu {
    flex-direction: column;
  }
  
  .main-nav-menu .nav-link {
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .carousel {
    height: 350px;
    border-radius: 15px;
  }
  
  .carousel-content {
    padding: 20px;
  }
  
  .carousel-content h1 {
    font-size: 1.4rem;
  }
  
  .carousel-content h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .carousel-content .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .carousel-dots {
    bottom: 15px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}
/* ========================================
   PRODUCT IMAGE PLACEHOLDER
   ======================================== */
.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--orange);
  gap: 15px;
}

.product-image-placeholder svg {
  opacity: 0.3;
  transition: all 0.3s ease;
}

.product-card-premium:hover .product-image-placeholder svg {
  opacity: 0.6;
  transform: scale(1.1);
}

.placeholder-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  opacity: 0.5;
}
/* ========================================
   TIENDA PROFESIONAL - ESTILOS
   ======================================== */

.site-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,106,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-top-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  flex-shrink: 0;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  color: white;
  letter-spacing: 2px;
}

.header-search {
  flex: 1;
  max-width: 500px;
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}

.header-search .search-input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
}

.header-search .search-btn {
  padding: 12px 20px;
  background: var(--orange);
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.header-search .search-btn:hover {
  background: #ff8533;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  position: relative;
}

.header-action:hover {
  color: var(--orange);
}

.header-action i {
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-navigation {
  background: rgba(10,10,10,0.95);
}

.main-navigation .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
}

.nav-menu .nav-link {
  display: block;
  padding: 15px 20px;
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Shop Main */
.shop-main {
  padding: 40px 0;
}

.shop-hero {
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(10,10,10,0.9) 100%);
  padding: 50px 40px;
  margin-bottom: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,106,0,0.2);
}

.shop-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.shop-subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.shop-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.shop-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.shop-feature i {
  font-size: 28px;
  color: var(--orange);
}

.shop-feature strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.shop-feature span {
  font-size: 11px;
  color: #888;
}

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-section {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 12px;
  padding: 20px;
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: white;
}

.sidebar-title i {
  color: var(--orange);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 5px;
}

.category-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.3s;
}

.category-list a:hover,
.category-list li.active a {
  background: var(--orange);
  color: white;
}

.category-list a i {
  width: 20px;
  text-align: center;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.price-slider {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
  margin-top: 8px;
}

.btn-filter {
  width: 100%;
  padding: 12px;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.btn-filter:hover {
  background: #ff8533;
}

.sidebar-promo {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  position: relative;
}

.promo-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FFD700;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.sidebar-promo h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.sidebar-promo p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.promo-code {
  background: white;
  color: var(--orange);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

/* Shop Content */
.shop-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 12px;
}

.showing-products {
  font-size: 13px;
  color: #888;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-options label {
  font-size: 13px;
  color: white;
}

.sort-select {
  padding: 8px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 8px;
  color: white;
  font-size: 13px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,106,0,0.2);
  border-color: var(--orange);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.new {
  background: #2196F3;
}

.product-badge.sale {
  background: #ff4444;
}

.product-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
  line-height: 1.4;
  min-height: 40px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.price-current {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.price-old {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
}

.product-rating {
  margin-bottom: 15px;
}

.product-rating .stars {
  color: #FFD700;
  font-size: 14px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-add-cart {
  flex: 1;
  padding: 10px;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.btn-add-cart:hover {
  background: #ff8533;
}

.btn-wishlist {
  padding: 10px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 8px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-wishlist:hover {
  color: #ff4444;
  border-color: #ff4444;
}

/* Shop Benefits */
.shop-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 12px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit i {
  font-size: 28px;
  color: var(--orange);
}

.benefit strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.benefit span {
  font-size: 11px;
  color: #888;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid rgba(255,106,0,0.2);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #888;
  font-size: 13px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--orange);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 13px;
  list-style: none;
}

.contact-info i {
  color: var(--orange);
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 13px;
}

/* Cart Modal */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.cart-modal-overlay.active {
  display: flex;
}

.cart-modal {
  background: #151515;
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-modal-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--orange);
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.05);
}

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

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.cart-item-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}

.cart-modal-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.total-price {
  color: var(--orange);
}

.btn-checkout {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-checkout:hover {
  background: #ff8533;
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .shop-sidebar {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-search {
    width: 100%;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .shop-title {
    font-size: 32px;
  }
  
  .shop-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shop-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-benefits {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   INDEX.HTML - ESTILOS ESPECÍFICOS
   ======================================== */

/* Carrusel Infinito de Anuncios */
.announcement-bar {
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-bottom: 2px solid var(--orange);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.announcement-wrapper {
  display: flex;
  overflow: hidden;
}

.announcement-scroll {
  display: flex;
  gap: 60px;
  animation: scrollAnnouncements 30s linear infinite;
  white-space: nowrap;
}

.announcement-scroll:hover {
  animation-play-state: paused;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.announcement-item i {
  color: var(--orange);
  font-size: 16px;
}

@keyframes scrollAnnouncements {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-hero-primary {
  background: var(--orange);
  color: white;
}

.btn-hero-primary:hover {
  background: #ff8533;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* Home Sections */
.home-section {
  padding: 60px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-title i {
  font-size: 32px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,106,0,0.15);
  border-color: var(--orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,106,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 32px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.service-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 15px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,106,0,0.1);
  line-height: 1;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  position: relative;
}

.benefit-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(10,10,10,0.9) 100%);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.contact-box h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.contact-box p {
  font-size: 16px;
  color: #888;
  margin-bottom: 30px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #25D366;
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.btn-whatsapp-large:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-view-all:hover {
  background: #ff8533;
  transform: translateX(10px);
}

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

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-imei-check,
.btn-whatsapp {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-imei-check {
  background: var(--orange);
}

.btn-imei-check:hover {
  background: #ff8533;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .nav-buttons {
    margin-top: 15px;
    justify-content: center;
  }
  
  .announcement-item {
    font-size: 12px;
  }
}
/* ========================================
   SERVICIO TÉCNICO - ESTILOS
   ======================================== */

.service-hero {
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.9) 100%);
  padding: 80px 0;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.service-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-badge {
  display: inline-block;
  background: rgba(255,106,0,0.2);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-title span {
  color: var(--orange);
}

.service-subtitle {
  font-size: 18px;
  color: #888;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.service-feature i {
  color: var(--orange);
  font-size: 20px;
  width: 24px;
}

.service-buttons {
  display: flex;
  gap: 20px;
}

.btn-service-primary,
.btn-service-secondary {
  padding: 18px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-service-primary {
  background: var(--orange);
  color: white;
}

.btn-service-primary:hover {
  background: #ff8533;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,106,0,0.4);
}

.btn-service-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-service-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.service-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255,106,0,0.3);
}

/* Services Section */
.services-section {
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 16px;
  color: #888;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,106,0,0.15);
  border-color: var(--orange);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,106,0,0.1);
  line-height: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,106,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 32px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.service-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 15px;
}

/* Process Section */
.process-section {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 80px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,106,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 32px;
  color: var(--orange);
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.process-arrow {
  color: var(--orange);
  font-size: 24px;
  opacity: 0.5;
}

/* Why Us Section */
.why-us-section {
  margin-bottom: 80px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-us-item {
  background: rgba(21,21,21,0.9);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.why-us-item:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,106,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 28px;
  color: var(--orange);
}

.why-us-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.why-us-item p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(10,10,10,0.9) 100%);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 20px;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  color: #888;
  margin-bottom: 30px;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #25D366;
  color: white;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.btn-cta-large:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

.cta-small {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
}

.cta-small a {
  color: var(--orange);
  text-decoration: none;
}

.cta-image img {
  width: 100%;
  border-radius: 16px;
}

/* Brands Section */
.brands-section {
  text-align: center;
  margin-bottom: 80px;
}

.brands-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.brand-item {
  font-size: 24px;
  font-weight: 700;
  color: white;
  transition: opacity 0.3s;
}

.brand-item:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-hero .container {
    grid-template-columns: 1fr;
  }
  
  .service-title {
    font-size: 36px;
  }
  
  .cta-section {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 28px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .service-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.brand-logo {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0) invert(1);
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1) invert(0);
  transform: scale(1.1);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brands-grid {
    gap: 30px;
  }
  
  .brand-logo {
    width: 70px;
    height: 35px;
  }
}
/* ========================================
   SECCIÓN DE MARCAS - TEXTO CON ICONOS
   ======================================== */

.brands-section {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 40px;
  background: rgba(21,21,21,0.5);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 20px;
}

.brands-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand-text:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.brand-text i {
  font-size: 48px;
  color: white;
  transition: color 0.3s ease;
}

.brand-text:hover i {
  color: var(--orange);
}

.brand-text span {
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .brands-grid {
    gap: 25px;
  }
  
  .brand-text i {
    font-size: 36px;
  }
  
  .brand-text span {
    font-size: 12px;
  }
  
  .brands-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .brands-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    gap: 20px;
  }
  
  .brand-text i {
    font-size: 28px;
  }
  
  .brand-text span {
    font-size: 10px;
  }
}
/* Botón Iniciar Sesión en Header */
.btn-login-header {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-login-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

/* Dropdown Usuario */
.user-dropdown {
  position: relative;
}

.user-btn {
  background: rgba(255, 106, 0, 0.15);
  border: 2px solid var(--orange);
  border-radius: 25px;
  padding: 6px 15px 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.user-btn:hover {
  background: rgba(255, 106, 0, 0.25);
}

.user-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  overflow: hidden;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-name {
  font-weight: 600;
  font-size: 13px;
  color: white;
  line-height: 1.2;
}

.user-badge {
  font-size: 9px;
  background: var(--orange);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s;
  opacity: 0.8;
  color: white;
}

.user-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #151515;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.user-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
}

.dropdown-item i {
  width: 18px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.dropdown-header {
  padding: 8px 18px 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-item.logout {
  color: #ff4444;
}

.dropdown-item.logout:hover {
  background: rgba(255, 68, 68, 0.1);
}
/* ========================================
   LOGIN PAGE - ESTILOS PROFESIONALES
   ======================================== */

.login-page {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.9) 100%);
}

.login-container {
  width: 100%;
  max-width: 500px;
}

.login-box {
  background: rgba(21,21,21,0.95);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  height: 80px;
  margin-bottom: 20px;
}

.login-header h1 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
}

.login-header p {
  color: #888;
  font-size: 14px;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group label i {
  color: var(--orange);
  margin-right: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.form-group input:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,0.05);
}

/* Buttons */
.btn-block {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.btn-google {
  background: white;
  border: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.btn-google:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Divider */
.divider {
  text-align: center;
  margin: 25px 0;
  color: #888;
  font-size: 14px;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.divider span {
  background: rgba(21,21,21,0.95);
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

/* Login Footer */
.login-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.login-footer p {
  color: #888;
  margin-bottom: 15px;
  font-size: 14px;
}

.login-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.login-footer a:first-child {
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.3);
  color: var(--orange);
}

.login-footer a:last-child {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFD700;
}

.login-footer a:hover {
  transform: translateY(-2px);
}

/* Security Info */
.security-info {
  background: rgba(21,21,21,0.5);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.security-info p {
  color: #888;
  font-size: 13px;
  margin: 0;
}

.security-info i {
  color: var(--orange);
  margin-right: 8px;
}

/* ========================================
   OTP MODAL - CENTRADO Y PROFESIONAL
   ======================================== */

.otp-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.otp-modal-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  border: 2px solid rgba(255,106,0,0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}

.otp-modal-content > div:first-child {
  text-align: center;
  margin-bottom: 30px;
}

.otp-modal-content h2 {
  color: var(--orange);
  margin: 10px 0;
  font-size: 24px;
}

.otp-modal-content p {
  color: #888;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

.otp-modal-content strong {
  color: white;
}

/* OTP Inputs */
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}

.otp-input {
  width: 50px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  outline: none;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.otp-input:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,0.1);
  transform: scale(1.1);
}

/* OTP Error */
#otpError {
  color: #ff4444;
  font-size: 12px;
  margin: 10px 0;
  text-align: center;
  min-height: 18px;
}

/* OTP Warning */
.otp-warning {
  background: rgba(255,68,68,0.1);
  border-left: 3px solid #ff4444;
  padding: 15px;
  margin-top: 20px;
  border-radius: 6px;
}

.otp-warning p {
  color: #ff9999;
  font-size: 11px;
  margin: 0;
  line-height: 1.5;
}

.otp-warning strong {
  color: #ff6666;
}

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

/* Responsive */
@media (max-width: 768px) {
  .login-box {
    padding: 30px 20px;
  }
  
  .login-header h1 {
    font-size: 24px;
  }
  
  .otp-modal-content {
    padding: 30px 20px;
  }
  
  .otp-input {
    width: 40px;
    height: 50px;
    font-size: 20px;
  }
}
