/* ========== RESET Y ESTILOS GLOBALES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'NULSHOCK BOLD', 'Arial Black', sans-serif;
  font-weight: 700;
  background-color: #020202;
  color: #ffffff;
  overflow-x: hidden;
}




h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link, .btn, .section-title, .card-title, .price {
  font-family: 'Montserrat', 'NULSHOCK BOLD', 'Arial Black', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ========== NAVBAR ========== */
.navbar {
  background: linear-gradient(135deg, #020202 0%, #1a1a1a 100%);
  padding: 1rem 0;
  border-bottom: 2px solid #c01010;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #face07 !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c01010, #ec859a, #face07);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

/* ========== DROPDOWN MENU ========== */
.dropdown-menu {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid #c01010;
  border-radius: 15px;
  margin-top: 10px;
  padding: 10px 0;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu .dropdown-item {
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #c01010, #ec859a);
  color: #ffffff;
  transform: translateX(5px);
}

.dropdown-menu .dropdown-item img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 8px;
}

.dropdown-divider {
  background-color: #c01010;
  margin: 8px 0;
}

/* ========== BOTÓN CUENTA ========== */
.btn-account {
  background: linear-gradient(135deg, #c01010, #ec859a);
  color: #ffffff !important;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-account:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(192,16,16,0.4);
  background: linear-gradient(135deg, #ec859a, #c01010);
}

/* ========== MODAL CUENTA ========== */
.account-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.account-card {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 25px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.3s ease;
  border: 2px solid #c01010;
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.account-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-header h3 {
  color: #face07;
  margin: 0;
  font-size: 1.3rem;
}

.close-account {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-account:hover {
  transform: rotate(90deg);
  color: #c01010;
}

.account-tabs {
  display: flex;
  border-bottom: 1px solid #333;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 15px;
  color: #aaa;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.tab-btn.active {
  color: #face07;
  background: rgba(192,16,16,0.1);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c01010, #face07);
}

.tab-pane {
  display: none;
  padding: 25px;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #face07;
  font-weight: 600;
  font-size: 0.85rem;
}

.form-control-account {
  width: 100%;
  padding: 12px 15px;
  background: #020202;
  border: 1px solid #454547;
  color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.form-control-account:focus {
  outline: none;
  border-color: #c01010;
  box-shadow: 0 0 10px rgba(192,16,16,0.3);
}

.checkbox-group {
  margin: 15px 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #aaa;
  font-weight: 400;
  font-size: 0.8rem;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-submit {
  background: linear-gradient(135deg, #c01010, #ec859a);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(192,16,16,0.4);
}

.form-footer {
  text-align: center;
  margin-top: 15px;
  color: #aaa;
  font-size: 0.8rem;
}

.form-footer a {
  color: #face07;
  text-decoration: none;
  cursor: pointer;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #020202 100%);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(192,16,16,0.3);
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c01010, #face07, #ec859a, #c01010);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(69,69,71,0.3);
}

.footer-brand {
  text-align: left;
}

.footer-brand-logo {
  max-height: 55px;
  width: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
  transform: scale(1.02);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #aaaaaa;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 15px;
}

.footer-section h5 {
  color: #face07;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #c01010, #ec859a);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list li a i {
  font-size: 0.75rem;
  color: #ec859a;
  transition: all 0.3s ease;
}

.footer-links-list li a:hover {
  color: #face07;
  transform: translateX(5px);
}

.footer-links-list li a:hover i {
  color: #face07;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #c01010;
  color: #ffffff;
}

.social-link.whatsapp:hover {
  background: #25D366;
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.instagram:hover {
  background: radial-gradient(circle at 30% 110%, #ffdb8b, #f46f30, #c13584, #833ab4);
}

.social-link.tiktok:hover {
  background: #010101;
  box-shadow: 0 0 10px #00f2ea;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #cccccc;
  font-weight: 400;
}

.footer-contact-item i {
  width: 30px;
  color: #ec859a;
}

.footer-contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #face07;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(69,69,71,0.3);
}

.footer-copyright {
  font-size: 0.7rem;
  color: #888;
}

.footer-copyright strong {
  color: #face07;
  font-weight: 700;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  padding: 8px 18px;
  border-radius: 50px;
}

.footer-payment span {
  font-size: 0.7rem;
  color: #888;
}

.wompi-logo {
  height: 22px;
  width: auto;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.wompi-logo:hover {
  filter: brightness(1.1);
}

.payment-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 10px;
  border-left: 1px solid rgba(69,69,71,0.5);
}

.payment-badges i {
  font-size: 1.2rem;
  color: #aaa;
  transition: all 0.3s ease;
}

.payment-badges i:hover {
  color: #face07;
  transform: scale(1.1);
}

.footer-credit {
  font-size: 0.7rem;
  color: #888;
}

.footer-credit a {
  color: #ec859a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #face07;
  text-decoration: underline;
}

/* ========== WHATSAPP FLOTANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
  color: white;
}

/* ========== CARRITO ========== */
.cart-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.cart-icon-btn {
  background: linear-gradient(135deg, #c01010, #ec859a);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.cart-icon-btn:hover {
  transform: scale(1.1);
}

.cart-icon-btn i {
  font-size: 24px;
  color: white;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #face07;
  color: #000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info strong {
  color: #face07;
}

.cart-item-info small {
  color: #aaa;
}

.cart-item-actions {
  text-align: right;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #333;
}

.btn-checkout {
  background: linear-gradient(135deg, #c01010, #ec859a);
  color: white;
  border: none;
  border-radius: 60px;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  transition: transform 0.2s;
}

.btn-checkout:hover {
  transform: translateY(-2px);
}

/* ========== NOTIFICACIONES ========== */
.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  animation: slideInNotif 0.3s ease;
}

@keyframes slideInNotif {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-section h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-payment {
    justify-content: center;
  }
}