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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  /* color: #000000; */
  /* background-color: #FFFFFF; */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

*:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

::-moz-selection {
  background-color: #000000;
  color: #FFFFFF;
}

::selection {
  background-color: #000000;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #A3A3A3;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #737373;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }
}


.btn-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-text .material-symbols-outlined {
  font-size: 20px;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-text:hover {
  background: #F5F5F5;
  color: #000000;
}
.btn-text:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
}

.section-title-group {
  flex: 1;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: #737373;
  font-weight: 400;
}

/* Footer logo */
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.team-selector-section {
  padding: 3rem 0 1rem 0;
  
}
@media (max-width: 768px) {
  .team-selector-section {
    padding: 3rem 0;
  }
}

.teams-slider-wrapper {
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .teams-slider-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .teams-slider-wrapper {
    padding: 0 35px;
  }
}

.teamsSwiper {
  overflow: visible;
  padding: 1.5rem 0;
}
.teamsSwiper .swiper-slide {
  width: auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-card:hover .team-badge {
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.2);
  transform: scale(1.04);
}

.team-badge {
  width: 90px;
  height: 75px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
.team-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .team-badge {
    width: 76px;
    height: 48px;
  }
}
@media (max-width: 640px) {
  .team-badge {
    width: 64px;
    height: 40px;
  }
}

.team-abbr {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .team-abbr {
    font-size: 0.72rem;
  }
}

.team-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #525252;
  text-align: center;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90px;
  line-height: 1.3;
}
.team-card:hover .team-name {
  color: #000000;
}
@media (max-width: 640px) {
  .team-name {
    font-size: 0.7rem;
    max-width: 70px;
  }
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  
  border: 1px solid #D4D4D4;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.slider-nav-btn:hover {
  background: #F5F5F5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border-color: #A3A3A3;
}
.slider-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider-nav-btn .material-symbols-outlined {
  font-size: 24px;
  color: #404040;
}
@media (max-width: 640px) {
  .slider-nav-btn {
    width: 32px;
    height: 32px;
  }
  .slider-nav-btn .material-symbols-outlined {
    font-size: 20px;
  }
}
.slider-nav-btn.slider-prev {
  left: 0;
}
.slider-nav-btn.slider-next {
  right: 0;
}


.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 2rem;
}
@media (max-width: 640px) {
  .teams-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1.5rem;
  }
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  padding: 0;
  
}
@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
    min-height: 500px;
    /* padding: 1rem; */
  }
}
@media (max-width: 640px) {
  .hero-banner {
    height: 60vh;
    min-height: 400px;
  }
}

.banner-swiper {
  width: 100%;
  height: 100%;
  /* border-radius: 24px; */
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
/* @media (max-width: 640px) {
  .banner-swiper {
    border-radius: 16px;
  }
} */

.mySwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #000000;
}
.mySwiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.8s ease-out;
}
.mySwiper .swiper-slide-active img {
  transform: scale(1.1);
  transition: transform 8s linear;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 2;
}
@media (max-width: 768px) {
  .slide-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  padding: 0 6rem;
  max-width: 700px;
  animation: slideInLeft 0.8s ease-out;
}
@media (max-width: 1024px) {
  .slide-content {
    padding: 0 4rem;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .slide-content {
    padding: 0 3rem;
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .slide-content {
    padding: 0 2rem;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 500px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFFFFF !important;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-pagination {
  bottom: 2rem !important;
}
@media (max-width: 640px) {
  .swiper-pagination {
    bottom: 1.5rem !important;
  }
}

.swiper-pagination-bullet {
  background: #FFFFFF !important;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 9999px;
}

.drivers-section {
  padding: 3rem 0;
  background: #FAFAFA;
}
@media (max-width: 768px) {
  .drivers-section {
    padding: 4rem 0;
  }
}
.drivers-section .section-header {
  margin-bottom: 3rem;
}

.driver-controls {
  display: flex;
  gap: 0.5rem;
}

.slider-control-btn {
  width: 44px;
  height: 44px;
  
  border: 1px solid #D4D4D4;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.slider-control-btn:hover:not(.swiper-button-disabled) {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}
.slider-control-btn:hover:not(.swiper-button-disabled) .material-symbols-outlined {
  color: #FFFFFF;
}
.slider-control-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider-control-btn .material-symbols-outlined {
  font-size: 24px;
  color: #404040;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 640px) {
  .slider-control-btn {
    width: 36px;
    height: 36px;
  }
  .slider-control-btn .material-symbols-outlined {
    font-size: 20px;
  }
}

.driversSwiper {
  overflow: hidden;
  padding: 1.5rem 0;
}

.driver-card {
  display: block;
  text-decoration: none;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.driver-card:hover {
  transform: translateY(-8px);
}
.driver-card:hover .driver-image {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.driver-card:hover .driver-image img {
  transform: scale(1.05);
}
.driver-card:hover .driver-name {
  color: #000000;
}

.driver-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.driver-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  z-index: 1;
  border-radius: 0 0 14px 14px;
}
.driver-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  display: block;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-name {
  font-size: 1rem;
  font-weight: 700;
  color: #404040;
  text-align: center;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 640px) {
  .driver-name {
    font-size: 0.875rem;
  }
}

.promo-banner {
  background: #000000;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
  padding: 0.2rem 0;
  white-space: nowrap;
  border-bottom: 1px solid #1a1a1a;
  height: 40px;
}

.promo-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.promo-item i {
  font-size: 12px;
  /* transform: translateY(1.2px); */
  color: #E10600;
}

.promo-sep {
  color: #444;
  font-size: 1rem;
}



.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
  border-color: #000000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #000000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon .material-symbols-outlined {
  font-size: 24px;
  color: #FFFFFF;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.why-desc {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
}

.bestsellers-section {
  background: linear-gradient(to bottom, #c8001a 0%, #00000000 60%);
}

.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .bs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .bs-grid {
    grid-template-columns: 1fr;
  }
}
.bs-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
        .stretched-link {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
        }
.bs-card:hover {
  transform: translateY(-6px);
}
.bs-card:hover .bs-card__img img {
  transform: scale(1.08);
}
.bs-card:hover .bs-card__actions {
  opacity: 1;
  transform: translateY(0);
}
.bs-card:hover .bs-card__img::after {
  opacity: 1;
}
.bs-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 9/10;
  border-radius: 16px;
  overflow: hidden;
  background: #F5F5F5;
}
.bs-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
      z-index: 1; /* ← AGREGAR ESTO */

  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bs-card__img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
}

.img-principal,
.img-secundaria {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.img-secundaria {
    z-index: 2;
    opacity: 0;
}

.bs-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.bs-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFFFFF;
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
  z-index: 3;
  text-transform: uppercase;
}
.bs-card__badge--sale {
  background: #E10600;
  color: #FFFFFF;
}
.bs-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
}
.bs-card__actions .prod-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
}
.bs-card__actions .prod-action .material-symbols-outlined {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.bs-card__actions .prod-action--quick {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #000000;
}
.bs-card__actions .prod-action--quick:hover {
  background: #fff;
  color: #E10600;
  transform: translateY(-2px);
}
.bs-card__actions .prod-action--quick:hover .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}
.bs-card__actions .prod-action--cart {
  background: #E10600;
  color: #fff;
  box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
}
.bs-card__actions .prod-action--cart:hover {
  background: rgb(194.4, 5.184, 0);
  box-shadow: 0 6px 20px rgba(225, 6, 0, 0.6);
  transform: translateY(-2px);
}
.bs-card__actions .prod-action--cart:hover .material-symbols-outlined {
  transform: scale(1.2) rotate(-10deg);
}
.bs-card__actions .prod-action--cart:hover::before {
  left: 100%;
  transition: 0.5s;
}
.bs-card__actions .prod-action--cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.bs-card__actions .prod-action--cart:active {
  transform: scale(0.97);
}
.bs-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0 0.25rem;
}
.bs-card__team {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin-bottom: 0.25rem;
}
.bs-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
}
.bs-card__stars {
  font-size: 0.8rem;
  color: #f59e0b;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bs-card__stars span {
  color: #999999;
  font-size: 0.75rem;
  font-weight: 400;
}
.bs-card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: right;
}
.bs-card__price s {
  font-weight: 500;
  color: #999999;
  font-size: 0.85rem;
  display: block;
  text-decoration: line-through;
  margin-bottom: -2px;
}
/* El enlace ahora está en la imagen y el nombre */
.img-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

/* El nombre ahora es un enlace */
.bs-card__name-link {
    text-decoration: none;
    color: #FFFFFF;
    display: inline-block;
    transition: color 0.2s ease;
}

.bs-card__name-link:hover {
    color: #E10600;
}

.bs-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    color: #737373;
    font-size: 18px;
}

.bs-card__favorite:hover {
    transform: scale(1.1);
    background: white;
}

.bs-card__favorite.active {
    color: #E10600;
}

.bs-card__favorite.active i {
    font-weight: 900;
}

.bs-card__colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.color-dot {
    position: relative;
    width: 16px;
    height: 16px;
        z-index: 5; /* ← AGREGAR ESTO */

    border-radius: 50%;
    border: 2px solid #555555;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background-size: cover;
}

.color-dot:hover {
    transform: scale(1.15);
    border-color: #FFFFFF;
}

.color-dot.active {
    border-color: #E10600;
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.3);
}

.color-more {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2A2A2A;
    border: 1px solid #3A3A3A;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CCCCCC;
}

.color-more:hover {
    background: #3A3A3A;
    transform: scale(1.05);
}

/* Ajustes responsive */
@media (max-width: 640px) {
    .bs-card__colors {
        gap: 6px;
    }
    
    .color-dot {
        width: 20px;
        height: 20px;
    }
    
    .color-more {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .bs-card__favorite {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}



.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border-color: #D4D4D4;
  transform: translateY(-4px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 0.9rem;
  color: #525252;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #F5F5F5;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.review-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
}

.review-meta {
  font-size: 0.75rem;
  color: #A3A3A3;
  margin-top: 0.1rem;
}

.footer {
  background: #171717;
  color: #D4D4D4;
  padding: 3rem 0 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.footer-section p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #A3A3A3;
  margin-bottom: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: #A3A3A3;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: #262626;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A3A3A3;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.social-links a:hover {
  
  color: #000000;
  transform: translateY(-2px);
}
.social-links .material-symbols-outlined {
  font-size: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-form input {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #404040;
  background: #262626;
  color: #FFFFFF;
  font-size: 0.875rem;
}
.newsletter-form input::-moz-placeholder {
  color: #737373;
}
.newsletter-form input::placeholder {
  color: #737373;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #FFFFFF;
}
.newsletter-form button {
  padding: 0.5rem 1.5rem;
  
  color: #000000;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter-form button:hover {
  background: #E10600;
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #262626;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #737373;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.legal-links a {
  color: #737373;
  font-size: 0.875rem;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-links a:hover {
  color: #FFFFFF;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 33px) !important;
  left: auto;
      aspect-ratio: 1 / 1;
    width: auto !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 33px) !important;
  right: auto;
      aspect-ratio: 1 / 1;
    width: auto !important;
}/*# sourceMappingURL=styles.css.map */


/* @audit  PRODUCTOS*/

.filtros-sidebar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filtros-titulo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.filtro-grupo {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 1rem;
}

.filtro-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0.75rem 0;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.filtro-contenido {
    display: block;
}

.filtro-lista, .filtro-lista-colores {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filtro-lista li, .filtro-lista-colores li {
    margin-bottom: 0.75rem;
}

.filtro-checkbox, .filtro-checkbox-color {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-2);
    position: relative;
   
}
.filtro-checkbox-color{
  padding-left: 28px;
}

.filtro-checkbox input, .filtro-checkbox-color input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filtro-checkbox input:checked + .checkmark + .filtro-nombre,
.filtro-checkbox input:checked + .filtro-nombre {
    color: var(--accent);
    font-weight: 600;
}

.filtro-checkbox-color {
    cursor: pointer;
    transition: color 0.2s ease;
}

.filtro-checkbox-color input:checked + .color-circle + .filtro-nombre {
    color: #e10600;
    font-weight: 600;
}
.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    transition: all 0.2s ease;
}

.color-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

.filtro-checkbox-color:hover .color-circle,
.filtro-checkbox:hover .checkmark {
    border-color: var(--accent);
}

.filtro-checkbox input:checked ~ .checkmark,
.filtro-checkbox-color input:checked ~ .color-circle {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 3px white;
}

.filtro-nombre {
    flex: 1;
}

.filtro-count {
    font-size: 0.75rem;
    color: var(--text-3);
    background: var(--surface2);
    padding: 0.125rem 0.5rem;
    border-radius: 20px;
}



/* Ordenamiento bar */
.ordenamiento-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.ordenamiento-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dropdown-custom {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

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

.dropdown-menu-custom a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--text-2);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-custom a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}

.resultados-info {
    font-size: 0.8125rem;
    color: var(--text-3);
}

/* Grid de productos - solo grid view */
.productos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Tablet landscape (1024px - 1200px) - 3 columnas */
@media (max-width: 1200px) {
    .productos-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet portrait (768px - 991px) - 2 columnas */
@media (max-width: 991px) {
    .productos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móvil (menos de 576px) - 1 columna */
@media (max-width: 576px) {
    .productos-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Opcional: Para móviles pequeños (menos de 400px) */
@media (max-width: 400px) {
    .productos-container {
        gap: 0.75rem;
    }
}


/* Colores en producto - solo bolitas de 16px */
.bs-card__colors {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.color-dot {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background-size: cover;
}

.color-dot:hover {
    transform: scale(1.15);
    border-color: #000000;
}

.color-dot.active {
    border-color: #E10600;
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.3);
}

.color-tooltip {
    display: none;
}

/* Paginación */
.paginacion-wrapper {
    margin-top: 3rem;
}

.paginacion-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.paginacion-custom li {
    display: inline-block;
}

.paginacion-custom .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.paginacion-custom .page-link:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

.paginacion-custom .active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.paginacion-custom .disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}



 /* detalle */
       .breadcrumb {
            font-size: 0.875rem;
            color: var(--text-3);
        }

        .breadcrumb a {
            color: var(--text-2);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .separator {
            margin: 0 0.5rem;
        }

        .producto-gallery {
            position: sticky;
            top: 100px;
        }

        .gallerySwiper {
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .gallerySwiper .swiper-slide {
            aspect-ratio: 1 / 1;
            background: var(--surface2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .gallerySwiper .swiper-button-prev,
        .gallerySwiper .swiper-button-next {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            backdrop-filter: blur(4px);
        }

        .gallerySwiper .swiper-button-prev::after,
        .gallerySwiper .swiper-button-next::after {
            font-size: 18px;
            font-weight: bold;
            color: var(--text);
        }

        .gallerySwiper .swiper-pagination-bullet {
            background: white;
            opacity: 0.6;
        }

        .gallerySwiper .swiper-pagination-bullet-active {
            background: var(--accent);
            opacity: 1;
        }

        .producto-equipo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .equipo-logo {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .equipo-nombre {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-3);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .producto-titulo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .producto-precio {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .precio-actual {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--accent);
        }

        .precio-old {
            font-size: 1.25rem;
            color: var(--text-3);
            text-decoration: line-through;
        }

        .descuento-badge {
            background: var(--accent);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .producto-stock {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            color: #16a34a;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .selector-colores,
        .selector-tallas,
        .selector-cantidad {
            margin-bottom: 1.5rem;
        }

        .selector-colores label,
        .selector-tallas label,
        .selector-cantidad label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .colores-list {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .color-option-link {
            display: inline-block;
            text-decoration: none;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #d7cfcf;
            cursor: pointer;
            transition: all 0.2s;
        }

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

        .color-option.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(200, 0, 26, 0.3);
        }

        .tallas-list {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .talla-option-link {
            display: inline-block;
            text-decoration: none;
        }

        .talla-option {
            min-width: 48px;
            padding: 0.5rem 0.75rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .talla-option:hover:not(.disabled) {
            border-color: var(--accent);
        }

        .talla-option.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .talla-option.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .cantidad-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: fit-content;
        }

        .cantidad-btn {
            width: 36px;
            height: 36px;
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 1.25rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cantidad-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        #cantidadInput {
            width: 60px;
            height: 36px;
            text-align: center;
            background: none;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 1rem;
        }

        .producto-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-add-to-cart {
            flex: 1;
            padding: 1rem;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-add-to-cart:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .btn-favorite {
            width: 52px;
            height: 52px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .btn-favorite:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-favorite.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .producto-descripcion,
        .producto-caracteristicas {
            margin-bottom: 1.5rem;
        }

        .producto-descripcion h3,
        .producto-caracteristicas h3,
        .producto-especificaciones h3,
        .productos-relacionados h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .producto-descripcion p {
            color: var(--text-2);
            line-height: 1.7;
        }

        .producto-caracteristicas ul {
            list-style: none;
            padding: 0;
        }

        .producto-caracteristicas li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-2);
            font-size: 0.875rem;
        }

        .producto-caracteristicas li i {
            color: var(--accent);
            font-size: 0.875rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            background: var(--surface2);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-soft);
        }

        .spec-label {
            font-weight: 600;
            color: var(--text);
            font-size: 0.875rem;
        }

        .spec-value {
            color: var(--text-2);
            font-size: 0.875rem;
        }

        /* Productos relacionados */
        .relacionados-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 992px) {
            .relacionados-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .producto-titulo {
                font-size: 1.5rem;
            }

            .precio-actual {
                font-size: 1.5rem;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .relacionados-grid {
                grid-template-columns: 1fr;
            }
        }

        .sin-imagen {
            width: 100%;
            height: 100%;
            background: var(--surface2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--text-3);
        }

        .stretched-link {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
    


/* nuevas secciones */
/* =============================================
   EN OFERTA
   ============================================= */

.offers-icon {
    color: #E10600;
    margin-right: 6px;
    font-size: 20px;
}

/* =============================================
   NEWSLETTER STRIP
   ============================================= */
.newsletter-strip {
    background: #111111;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Texto decorativo de fondo */
.newsletter-strip__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 18vw, 220px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* Layout interior */
.newsletter-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .newsletter-strip__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── Lado izquierdo ── */
.newsletter-strip__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c8001a;
    margin-bottom: 1rem;
}

.newsletter-strip__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.newsletter-strip__desc {
    font-size: 1rem;
    color: #a3a3a3;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 400px;
}

.newsletter-strip__perks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.newsletter-strip__perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #d4d4d4;
    font-weight: 500;
}

.newsletter-strip__perks li i {
    color: #c8001a;
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

/* ── Lado derecho: card ── */
.newsletter-strip__form-wrap {
    position: relative;
    z-index: 1;
}

.newsletter-strip__card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 2rem;
}

.newsletter-strip__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.newsletter-strip__card-sub {
    font-size: 0.8rem;
    color: #737373;
    margin-bottom: 1.25rem;
}

/* Avatares */
.newsletter-strip__avatars {
    display: flex;
    margin-bottom: 1.5rem;
}

.nws-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #c8001a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a1a1a;
    margin-left: -8px;
    flex-shrink: 0;
}

.nws-avatar:first-child { margin-left: 0; }

.nws-avatar--more {
    background: #2a2a2a;
    color: #a3a3a3;
    font-size: 9px;
}

/* Formulario */
.newsletter-strip__input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nws-field {
    position: relative;
    display: flex;
    align-items: center;
}

.nws-field__icon {
    position: absolute;
    left: 14px;
    color: #525252;
    font-size: 13px;
    pointer-events: none;
}

.nws-field__input {
    width: 100%;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 12px 14px 12px 38px;
    font-size: 0.875rem;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
}

.nws-field__input::placeholder {
    color: #525252;
}

.nws-field__input:focus {
    border-color: #c8001a;
}

.nws-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #c8001a;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
}

.nws-btn:hover {
    background: #a20015;
    transform: translateY(-1px);
}

.nws-btn:active {
    transform: translateY(0);
}

.nws-legal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #525252;
    margin-top: 1rem;
    margin-bottom: 0;
}

.nws-legal i {
    font-size: 10px;
}

/* Buscar */
/* Navbar principal */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: black;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #2A2A2A;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
        padding: 0 1rem;
    }
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* Links de escritorio */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .navbar-links {
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .navbar-links {
        display: none;
    }
}

/* Menú móvil */
.navbar-links-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 0;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, border 0.1s ease;
    z-index: 999;
    display: none;
}

@media (max-width: 992px) {
    .navbar-links-mobile {
        display: flex;
    }
}

.navbar-links-mobile.active {
    padding: 1rem 1.5rem;
    max-height: 500px;
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-links-mobile .nav-link {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #1E1E1E;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease, padding-left 0.2s ease;
}

.navbar-links-mobile.active .nav-link {
    opacity: 1;
}

.navbar-links-mobile .nav-link:last-child {
    border-bottom: none;
}

.navbar-links-mobile .nav-link::after {
    display: none;
}

.navbar-links-mobile .nav-link:hover {
    padding-left: 0.5rem;
    color: #E10600;
}

/* Nav links estilo base */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #CCCCCC;
    position: relative;
    padding: 0.25rem 0.5rem;
    transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-promo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #E10600;
    font-weight: 600;
}

.nav-link-promo:hover {
    color: #FF1A1A;
}

.promo-icon {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Acciones del navbar */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Botón hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 4px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

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

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #2A2A2A;
  background: #141414;
  border-radius: 12px 12px 0 0;
}

.user-info i {
  font-size: 32px;
  color: #999999;
}

.user-info span {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #CCCCCC;
  font-size: 14px;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #2A2A2A;
  color: #E10600;
}

.dropdown-item i {
  width: 20px;
  font-size: 16px;
}

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

.dropdown-item.logout:hover {
  background: rgba(225, 6, 0, 0.15);
}

.user-dropdown hr {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #2A2A2A;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #E10600;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-count.active {
  opacity: 1;
  transform: scale(1);
}

.cart-count:not(:empty) {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

/* Agrega esto a tu archivo CSS */
.swal2-popup .swal2-loader {
    border-color: #c8001a !important;
    border-right-color: transparent !important;
}

/* O para un loading más personalizado */
.swal2-popup .swal2-loader {
    border-width: 0.25em !important;
    border-style: solid !important;
    border-color: #c8001a !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    width: 3em !important;
    height: 3em !important;
    margin: 1.25em auto 0.5em !important;
    animation: swal2-rotate-loading 1.5s linear infinite !important;
}

/* Tallas */
/* Selector de talla inline */
.talla-selector-wrapper {
    position: relative;
    display: inline-block;
}

.talla-selector-btn {
    background: #c8001a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.talla-selector-btn:hover {
    background: #a20015;
}

.talla-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
    min-width: 200px;
}

.talla-dropdown.show {
    display: block;
}

.tallas-horizontal {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.talla-item {
    padding: 6px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.talla-item:hover {
    border-color: #c8001a;
}

.talla-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.talla-item.selected {
    background: #c8001a;
    color: white;
    border-color: #c8001a;
}
.talla-selector-wrapper {
  width: 100%;
}

.badge-stock {
    font-size: 9px;
    background: #16a34a;
    color: white;
    padding: 2px 5px;
    border-radius: 20px;
    margin-left: 6px;
    display: inline-block;
}

.badge-pedido {
    font-size: 9px;
    background: #f59e0b;
    color: white;
    padding: 2px 5px;
    border-radius: 20px;
    margin-left: 6px;
    display: inline-block;
}

.talla-item.selected .badge-stock,
.talla-item.selected .badge-pedido {
    background: white;
    color: #c8001a;
}

        .favoritos-section {
            padding: 40px 0;
            min-height: 60vh;
        }

        .favoritos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 1200px) {
            .favoritos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .favoritos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .favoritos-grid {
                grid-template-columns: 1fr;
            }
        }

        .favorito-remove-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 5;
            color: #c8001a;
            font-size: 18px;
        }

        .favorito-remove-btn:hover {
            transform: scale(1.1);
            background: #c8001a;
            color: white;
        }

        .sin-imagen {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            color: #a3a3a3;
            font-size: 48px;
        }

        .favoritos-vacio {
            text-align: center;
            padding: 80px 20px;
            background: #f5f5f5;
            border-radius: 16px;
        }

        .favoritos-vacio i {
            font-size: 64px;
            color: #a3a3a3;
            margin-bottom: 20px;
        }

        .favoritos-vacio p {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .favoritos-vacio-sub {
            font-size: 14px;
            color: #737373;
            margin-bottom: 24px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 32px;
            background: #000000;
            color: white;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
        }

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

        /* Estilos para modales */
        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .color-option.active {
            transform: scale(1.15);
            box-shadow: 0 0 0 2px white, 0 0 0 4px #c8001a;
        }

        .talla-option {
            padding: 8px 16px;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            font-weight: 500;
        }

        .talla-option:hover {
            border-color: #c8001a;
        }

        .talla-option.active {
            background: #c8001a;
            color: white;
            border-color: #c8001a;
        }

        .talla-option.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #f5f5f5;
        }

        .quickview-img {
            width: 100%;
            border-radius: 12px;
        }

        /* Estilos para información de stock */
.stock-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stock-disponible {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-disponible i {
    color: #4caf50;
}

.stock-bajo-pedido {
    background: #fff3e0;
    color: #e65100;
}

.stock-bajo-pedido i {
    color: #ff9800;
}

.stock-agotado {
    background: #ffebee;
    color: #c62828;
}

.stock-agotado i {
    color: #ef5350;
}