
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0c0c;
  color: #fefefe;
}

.apple-carousel {
  padding: 2.5rem 1rem 1.5rem;
  background: radial-gradient(circle at top, #1b1b1b, #0c0c0c 60%);
}

.carousel-header {
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

.carousel-header h2 {
  color: #f97316;
  font-size: 2rem;
  letter-spacing: 1px;
  margin: 0;
}

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track {
  overflow: hidden;
  padding: 0.5rem 0.2rem 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.carousel-card {
  position: relative;
  min-width: 280px;
  max-width: 320px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  scroll-snap-align: center;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.carousel-card a.btn-cta {
  display: inline-flex;
  height: auto;
  color: #fff;
}

.carousel-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.85) 100%);
}

.carousel-card-overlay h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  border: 1px solid #2b2b2b;
  background: #111;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover {
  border-color: #f97316;
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: #f97316;
  border-color: #f97316;
  color: #111;
}

.carousel-price {
  margin: 0 0 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f97316;
}

.product-card.is-hidden {
  display: none;
}

.btn-cta {
  align-self: flex-start;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-cta:hover {
  background: #f97316;
  border-color: #f97316;
  transform: translateY(-2px);
}

.carousel-btn {
  border: none;
  background: #fff;
  color: #111;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
}

.carousel-btn:hover {
  transform: scale(1.06);
}

.carousel-btn .bx {
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .carousel-wrapper {
    align-items: flex-start;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-card {
    min-width: 220px;
  }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 100;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 4px;
  transition: border-bottom 0.3s;
}

.navbar a.active,
.navbar a:hover {
  border-bottom: 2px solid #f97316;
  color: #f97316;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  transition: transform 0.18s ease;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-carrito {
  position: relative;
}

.carrito-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.carrito-link .bx {
  font-size: 1.4rem;
}

.carrito-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #f97316;
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carrito-badge.is-empty {
  display: none;
}

.carrito-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.carrito-overlay.is-open {
  display: flex;
}

.carrito-panel {
  background: #111;
  border-radius: 16px;
  width: min(90vw, 420px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.carrito-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #1f1f1f;
}

.carrito-panel-header h3 {
  margin: 0;
  color: #f97316;
}

.carrito-cerrar {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.carrito-panel-body {
  padding: 1rem 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.carrito-panel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  background: #181818;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
}

.carrito-panel-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.carrito-panel-nombre {
  font-weight: 700;
}

.carrito-panel-precio {
  color: #bcbcbc;
  font-size: 0.95rem;
}

.carrito-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-top: 1px solid #1f1f1f;
}

.carrito-panel-actions {
  padding: 0 1.2rem 1.2rem;
  display: flex;
  justify-content: center;
}

.carrito-panel-actions .carrito-pagar {
  width: min(100%, 260px);
  justify-content: center;
  background: #25D366;
  border-color: #25D366;
  color: #111;
}

.carrito-panel-actions .carrito-pagar:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.carrito-panel-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: #1b1b1b;
  color: #fff;
  border: 1px solid #333;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.qty-btn:hover {
  background: #2a2a2a;
}

.qty-count {
  font-size: 0.9rem;
  color: #cfcfcf;
  min-width: 90px;
  text-align: center;
}

.btn-remove {
  background: transparent;
  color: #f97316;
  border: 1px solid #f97316;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-remove:hover {
  background: #f97316;
  color: #fff;
}

.carrito-panel-vacio {
  color: #a6a6a6;
  background: #151515;
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}

/* HERO */
.hero {
  text-align: center;
  padding: 0.1rem 1rem;
  background-color: #0c0c0c;
}

.hero img {
  display: block;
  margin: 0 auto;
  max-width: 1000px;  
  width: 100%;
  height: auto;
}

/* LOGO GIRATORIO */
.logo-gira {
  animation: voltear 10s linear infinite;
  transform-style: preserve-3d;
}

@keyframes voltear {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* ACERCA */
.acerca {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  text-align: center;
}

.acerca h2 {
  color: #f97316;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.acerca p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* SERVICIOS (lista + carrusel) */
.servicios {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.servicios h2 {
  color: #f97316;
  margin-bottom: 1.5rem;
}

.servicios ul {
  list-style: none;
  padding: 0;
}

.servicios li {
  text-align: left;
  margin: 0.5rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.servicios i {
  color: #f97316;
  font-size: 1.2rem;
}

.servicios-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}

.servicios-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: #f97316;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  font-size: 1rem;
}

.btn-ver-mas:hover {
  background: #d85c00;
  box-shadow: 0 4px 16px rgba(249,115,22,0.14);
  color: #fff;
}

.bx-right-arrow-alt {
  color: #fff !important;
}

/* CARRUSEL DE SERVICIOS */
.carrusel-servicios {
  width: 220px;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: grab;
}

.carrusel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s;
  border-radius: 20px;
  background: #0c0c0c;
}

.carrusel-img.active {
  opacity: 1;
  z-index: 2;
}

/*  PORTAFOLIO */
.portafolio {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #121212;
}

.portafolio h2 {
  color: #f97316;
  margin-bottom: 2rem;
}


.portafolio .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}


.portafolio .card {
  position: relative;
  width: 100%;
  max-width: 300px;      
  aspect-ratio: 16/9;    
  background-color: #1e1e1e;
  border: 2px solid #f97316;
  border-radius: 10px;
  overflow: hidden;

}

.portafolio .card .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.portafolio .card .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlides 12s infinite;
}

.portafolio .card .slide:nth-child(1) {
  animation-delay: 0s;
}
.portafolio .card .slide:nth-child(2) {
  animation-delay: 3s;
}
.portafolio .card .slide:nth-child(3) {
  animation-delay: 6s;
}
.portafolio .card .slide:nth-child(4) {
  animation-delay: 9s;
}

@keyframes fadeSlides {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* TRUST BAR */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem 1rem;
  perspective: 900px;
}

.trust-item {
  min-height: 84px;
  perspective: 900px;
}

.trust-item-inner {
  position: relative;
  height: 100%;
  background: #141414;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid #1f1f1f;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.trust-item-face {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  backface-visibility: hidden;
}

.trust-item-front {
  width: 100%;
}

.trust-item-back {
  position: absolute;
  inset: 0;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  transform: rotateY(180deg);
}

.trust-item i {
  font-size: 1.6rem;
  color: #f97316;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.trust-item span {
  color: #bcbcbc;
  font-size: 0.9rem;
}

.trust-item:hover .trust-item-inner {
  transform: rotateY(180deg);
}

.trust-item.is-flipped .trust-item-inner {
  transform: rotateY(180deg);
}

@media (hover: none) {
  .trust-item:hover .trust-item-inner {
    transform: none;
  }
}

/* COTIZACION WHATSAPP */
.quote-whatsapp {
  max-width: 980px;
  margin: 0 auto 2.5rem auto;
  padding: 2rem 1rem;
  text-align: center;
  background: #101010;
  border-radius: 18px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.quote-whatsapp h2 {
  color: #f97316;
  margin: 0 0 0.8rem 0;
  letter-spacing: 1px;
}

.quote-whatsapp p {
  margin: 0 0 1.4rem 0;
  color: #cfcfcf;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #e6e6e6;
}

.quote-form input,
.quote-form textarea {
  border: none;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  background: #1b1b1b;
  color: #fff;
  border: 1px solid #2a2a2a;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
}

.quote-actions .btn-cta {
  background: #25D366;
  border-color: #25D366;
  color: #111;
}

.quote-actions .btn-cta:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.quote-note {
  color: #a8a8a8;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 2rem 1rem 2.5rem;
  background: #0f0f0f;
  text-align: center;
}

.testimonials h2 {
  color: #f97316;
  margin-bottom: 1.6rem;
  letter-spacing: 1.5px;
}

.testimonials-track {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-inner {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: testimonialScroll 28s linear infinite;
}

.testimonials-track:hover .testimonials-inner {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 260px;
  max-width: 300px;
  background: #171717;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.testimonial-card p {
  margin: 0 0 0.8rem 0;
  color: #e6e6e6;
}

.testimonial-card strong {
  color: #f97316;
  font-size: 0.95rem;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FLOATING ACTIONS */
.cart-float {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: #f97316;
  color: #111;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
  z-index: 2100;
}

.cart-float i {
  font-size: 1.2rem;
}

.cart-float strong {
  background: #111;
  color: #fff;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 2100;
  transition: transform 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float .bx {
  font-size: 1.6rem;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}


/* CONTACTO */
.contacto {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #171717;
  border-radius: 15px;
  text-align: center;
}

.contacto h2 {
  color: #f97316;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contacto input,
.contacto textarea {
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  background: #222;
  color: #fff;
}

.contacto button {
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto button:hover {
  background: #d85c00;
}


.telefono-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.prefijo {
  background: #222;
  color: #fff;
  padding: 0 1rem;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  border: 1px solid #333;
  border-right: none;
  box-sizing: border-box;
  white-space: nowrap;
}

.telefono-group input[type="text"] {
  border: 1px solid #333;
  border-radius: 0 8px 8px 0;
  padding: 0 1rem;
  font-size: 1rem;
  height: 48px;
  width: 100%;
  background: #222;
  color: #fff;
  box-sizing: border-box;
}


.mapa {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.mapa iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* FOOTER Y REDES SOCIALES */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.redes-sociales {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.redes-sociales a {
  font-size: 1.8rem;
  transition: transform 0.3s;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}

.bxl-whatsapp {
  color: #25D366;
}

.bxl-instagram {
  color: #E1306C;
}

.bxl-facebook {
  color: #1877F2;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #181818;
  color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 250px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  border: none;
  background: #f97316;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVIDAD GENERAL */
@media (max-width: 850px) {
  .servicios-row {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero img {
    max-width: 96vw;
  }
  .acerca, .servicios, .contacto {
    padding: 1.3rem 0.2rem;
  }
  .servicios-cards, .contacto, .acerca, .portafolio {
    max-width: 99vw;
  }
  .cards-grid, .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .carrusel-servicios {
    width: 96vw;
    height: 40vw;
    min-height: 150px;
    min-width: 180px;
    max-width: 98vw;
  }
  footer {
    font-size: 0.75rem;
    padding: 0.6rem 0;
  }
}

/* Botón hamburguesa: oculto en desktop, mostrado en móvil */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 1rem;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3.2px;
  background: #fff;
  border-radius: 3px;
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.2s ease;
}

.hamburger span:nth-child(1) {
  width: 22px;
}

.hamburger span:nth-child(2) {
  width: 28px;
}

.hamburger span:nth-child(3) {
  width: 18px;
}

.hamburger.active span {
  width: 28px;
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo:hover {
    transform: translateX(-50%) scale(1.08);
  }

  .hamburger {
    display: flex;
    position: fixed; 
    top: 16px;
    left: 16px;
    background: #181818;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  }


  .navbar ul {
    display: none;
  }

  /* Panel lateral que contendrá los enlaces en móvil */
  .navbar ul.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 70vw;
    height: 100vh;
    background-color: #000;
    padding-top: 4rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }


  .navbar ul.nav-links.active {
    transform: translateX(0);
  }

.nav-links li {
    border-bottom: 1px solid #111;
  }
  .nav-links li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    font-weight: bold;
    font-size: 1.12rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.22s, color 0.22s;
  }
  .nav-links li a .bx {
    font-size: 1.4em;
    color: #f97316;
  }
  .nav-links li a.active,
  .nav-links li a:hover {
    background-color: #f97316;
    color: #fff;
  }
  .nav-links li a.active .bx,
  .nav-links li a:hover .bx {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .cart-float {
    display: inline-flex;
  }
}
