﻿/* â”€â”€ TÃ­tulo de secciÃ³n â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fc-header {
  text-align: center;
  padding: 52px 24px 36px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.fc-header-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #cc0000;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.fc-header-title {
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.fc-header-title span {
  color: #cc0000;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESKTOP: imagen fija + grid de productos
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.featured-section { overflow: hidden; }

.fc-desktop {
  display: grid;
  grid-template-columns: 36% 64%;
  height: 480px;
}

/* Panel izquierdo: imagen fija */
.fc-hero-panel {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.fc-hero-panel:hover img { transform: scale(1.03); }

/* Panel derecho: grid de cards */
.fc-grid-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  height: 100%;
  border-left: 1px solid #efefef;
  overflow: hidden;
}

/* â”€â”€ Card de producto (desktop) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-right: 1px solid #f0f0f0;
  transition: box-shadow 0.2s;
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.fc-card:last-child { border-right: none; }
.fc-card:hover { box-shadow: inset 0 0 0 1px #e0e0e0; }

.fc-card-img {
  flex: 0 0 58%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fc-card-img img {
  max-height: 82%;
  max-width: 72%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
  transition: transform 0.4s ease;
}

.fc-card:hover .fc-card-img img { transform: scale(1.06); }

.fc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px 14px;
  border-top: 1px solid #f0f0f0;
}

.fc-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fc-card-cats {
  font-size: 10px;
  color: #bbb;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fc-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.fc-card-stars-icons { color: #f5a623; font-size: 11px; letter-spacing: 0.5px; }
.fc-card-stars-count { font-size: 10px; color: #ccc; }

.fc-card-price-old {
  font-size: 10px;
  color: #ccc;
  text-decoration: line-through;
  display: block;
}

.fc-card-price {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.fc-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: background 0.2s;
}

.fc-card-btn:hover { background: #333; }

/* â”€â”€ Skeleton desktop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fc-card-skeleton {
  flex: 1;
  height: 100%;
  background: linear-gradient(90deg, #f5f5f5 25%, #ececec 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s infinite;
  border-right: 1px solid #f0f0f0;
}

@keyframes sk-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE: carrusel oculto en desktop
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fc-mobile { display: none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .fc-desktop { display: none; }

  .fc-header { padding: 36px 20px 24px; }
  .fc-header-eyebrow { font-size: 10px; }
  .fc-header-title { font-size: 28px; letter-spacing: -0.5px; }

  .fc-mobile {
    display: block;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 510px;
    overflow: hidden;
    background: #111;
  }

  .fc-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .fc-slide {
    flex-shrink: 0;
    width: 100vw;
    height: 100%;
  }

  /* Slide hero */
  .fc-slide--hero { overflow: hidden; }
  .fc-slide--hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* Slide producto mobile */
  .fc-slide--product {
    display: flex;
    flex-direction: column;
    width: 100vw;
  }

  .fc-m-img {
    flex: 0 0 46%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fc-m-img img {
    max-height: 86%;
    max-width: 65%;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
  }

  .fc-m-info {
    flex: 1;
    background: #fff;
    padding: 12px 20px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
  }

  .fc-m-name { font-size: 15px; font-weight: 800; color: #111; margin: 0 0 2px; }
  .fc-m-cats { font-size: 11px; color: #aaa; margin: 0 0 4px; }
  .fc-m-stars { display: flex; gap: 4px; align-items: center; font-size: 13px; color: #f5a623; margin-bottom: 0; }
  .fc-m-stars span { font-size: 11px; color: #bbb; }
  .fc-m-price { font-size: 20px; font-weight: 900; color: #111; margin: 4px 0 0; }
  .fc-m-price-old { font-size: 11px; color: #ccc; text-decoration: line-through; display: block; }

  .fc-m-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    cursor: pointer;
    margin-top: 8px;
  }

  /* Flechas mobile â€” centradas en la zona oscura */
  .fc-arrow {
    position: absolute;
    top: 23%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
  }

  .fc-arrow--prev { left: 10px; }
  .fc-arrow--next { right: 10px; }

  /* Dots mobile â€” dentro de la zona oscura, no sobre el botÃ³n */
  .fc-dots {
    position: absolute;
    top: calc(46% - 20px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
  }

  .fc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
  }

  .fc-dot.active { background: #fff; transform: scale(1.35); }
}

