:root {
  --orange: #e2892a;
  --orange-hover: #c87911;
  --bg-dark: #000000;
  --bg-white: #ffffff;
  --text-main: #ffffff;
  --text-dim: #a1a1aa;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.295) 0.5px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.295) 0.5px, transparent 1px);
  background-size: 40px 40px;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.btn-orange {
  background-color: var(--orange);
  color: white;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
}

.product-card {
  border: 1px solid var(--orange);
  transition: all 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 8px 8px 0px rgba(35, 35, 35, 0.05);
}

/* Barra de desplazamiento personalizada */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #000;
}

.cart-sidebar {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Carousel Styles */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.view-section {
  display: none;
}

.view-active {
  display: block;
}

.color-dot {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-dot:hover {
  transform: scale(1.1);
}

.color-dot.active {
  border: 2px solid #e5e5e5;
}

/* Hero Carousel */
.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

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

/* Trust Section Refined */
.trust-section {
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(226, 137, 42, 0.05) 0%, transparent 80%);
}

.trust-section h4 {
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.trust-section p {
  color: #a1a1aa;
  font-weight: 500;
}

.trust-section .group:hover h4 {
  color: var(--orange);
  transition: color 0.4s ease;
}

.thumbnail {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
}

.payment-option {
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option.active {
  background-color: #fff;
  color: #000;
}

.payment-option:hover:not(.active) {
  /* background-color: #f8f8f8; */
  background-color: #000;
}

.input-tech {
  border: 1px solid #fff;
  border-radius: 0;
  padding: 12px;
  font-size: 12px;
  width: 100%;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  background: transparent;
}

.input-tech:focus {
  border-bottom: 3px solid var(--orange);
  background: #000;
}

.filter-btn {
  border-bottom: 2px solid transparent;
  opacity: 0.5;
  font-size: 16px;
  padding: 15px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  opacity: 1;
}

.container.catalog {
  margin: 40px;
  background-color: red;
}

/* Animaciones */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange {
  background-color: var(--orange);
  color: white;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-orange:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(75, 83, 32, 0.3);
}

html {
  scroll-behavior: smooth;
}

/* Botón Flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}