/* ============================================================
   CAT-OH — Landing Ofertas
   ============================================================ */

#co-ofertas-page {
  font-family: 'Nunito', sans-serif;
  color: #273B42;
}

/* ── HERO ────────────────────────────────────────────────── */
#co-ofertas-page .co-of-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #d7eff1;
  position: relative;
  overflow: hidden;
  border-top: 6px solid #308e95;
}

#co-ofertas-page .co-of-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 24px 24px 0;
}

/* Fotos de mascota — se recortan en el borde inferior del hero,
   como si "salieran" del contenedor */
#co-ofertas-page .co-of-hero__pet {
  flex: 0 1 340px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#co-ofertas-page .co-of-hero__pet img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom;
}
#co-ofertas-page .co-of-hero__pet--cat { justify-content: flex-end; }
#co-ofertas-page .co-of-hero__pet--dog { justify-content: flex-start; }

/* Contenido central */
#co-ofertas-page .co-of-hero__content {
  flex: 0 0 auto;
  text-align: center;
  padding: 20px 10px 30px;
}

#co-ofertas-page .co-of-hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#co-ofertas-page .co-of-hero__logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

#co-ofertas-page .co-of-hero__title {
  margin: 0 0 18px;
  line-height: 1;
}
#co-ofertas-page .co-of-hero__brand {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: #308e95;
  letter-spacing: 0.5px;
}
#co-ofertas-page .co-of-hero__tagline {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 19px;
  color: #C94F17;
  margin: 2px 0;
}
#co-ofertas-page .co-of-hero__promos {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: #273B42;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

#co-ofertas-page .co-of-hero__cta {
  display: inline-block;
  background: #C94F17;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}
#co-ofertas-page .co-of-hero__cta:hover { background: #a83f10; }

@media (max-width: 900px) {
  #co-ofertas-page .co-of-hero__inner {
    flex-wrap: wrap;
    padding-top: 16px;
  }
  #co-ofertas-page .co-of-hero__content { order: 1; flex: 1 1 100%; padding-bottom: 16px; }
  #co-ofertas-page .co-of-hero__pet { order: 2; flex: 1 1 45%; height: 180px; }
  #co-ofertas-page .co-of-hero__brand { font-size: 32px; }
  #co-ofertas-page .co-of-hero__promos { font-size: 34px; }
}

/* ── CARRUSEL DE PROMOS ──────────────────────────────────── */
#co-ofertas-page .co-of-promos {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e8f5f6;
  padding: 24px 0 20px;
}

#co-ofertas-page .co-of-promos__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#co-ofertas-page .co-of-promos__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}
#co-ofertas-page .co-of-promos__track::-webkit-scrollbar { display: none; }

#co-ofertas-page .co-of-promos__item {
  /* 4 visibles en desktop: (100% - 3 gaps de 16px) / 4 */
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
#co-ofertas-page .co-of-promos__item:hover { transform: translateY(-3px); }
#co-ofertas-page .co-of-promos__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Flechas */
#co-ofertas-page .co-of-promos__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cfe4e6;
  background: #fff;
  color: #308e95;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
#co-ofertas-page .co-of-promos__arrow:hover { background: #308e95; color: #fff; }

/* Puntos */
#co-ofertas-page .co-of-promos__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
#co-ofertas-page .co-of-promos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9d9db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#co-ofertas-page .co-of-promos__dot--active {
  background: #308e95;
  transform: scale(1.3);
}

@media (max-width: 900px) {
  #co-ofertas-page .co-of-promos__item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  #co-ofertas-page .co-of-promos__arrow { display: none; } 
  #co-ofertas-page .co-of-promos__item {
    flex: 0 0 46%;
  }
}

/* ── LAYOUT ──────────────────────────────────────────────── */
#co-ofertas-page .co-of-shop {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e8f5f6;
  padding: 32px 24px 60px;
}
#co-ofertas-page .co-of-shop__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
#co-ofertas-page .co-of-shop__sidebar {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
#co-ofertas-page .co-of-shop__sidebar-title {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 14px;
  color: #273B42;
}
#co-ofertas-page .co-of-shop__sidebar-title--sub {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
#co-ofertas-page .co-of-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #273B42;
  padding: 6px 0;
  cursor: pointer;
}
#co-ofertas-page .co-of-filter-item input {
  accent-color: #308e95;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ── TOOLBAR (Ordenar por) ──────────────────────────────── */
#co-ofertas-page .co-of-shop__toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
#co-ofertas-page .co-of-shop__orderby-label {
  font-size: 13px;
  color: #808A8F;
}
#co-ofertas-page .co-of-shop__orderby {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  background: #fff;
  color: #273B42;
}

/* ── CARGAR MÁS ──────────────────────────────────────────── */
#co-ofertas-page .co-of-shop__load-more-wrap {
  text-align: center;
  margin-top: 30px;
}
#co-ofertas-page .co-of-shop__load-more {
  background: #308e95;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}
#co-ofertas-page .co-of-shop__load-more:hover { background: #266f75; }
#co-ofertas-page .co-of-shop__load-more:disabled { opacity: 0.6; cursor: default; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  #co-ofertas-page .co-of-shop__inner { grid-template-columns: 1fr; }
  #co-ofertas-page .co-of-shop__toolbar { justify-content: space-between; }
  #co-ofertas-page .co-of-recientes__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── TEXTO SEO ───────────────────────────────────────────── */
#co-ofertas-page .co-of-text {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e8f5f6;
  color: #273B42;
  padding: 40px 24px;
}
#co-ofertas-page .co-of-text > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#co-ofertas-page .co-of-text h2 { font-size: 18px; margin-top: 0; margin-bottom: 14px; }
#co-ofertas-page .co-of-text p { margin-top: 0; margin-bottom: 14px; }
#co-ofertas-page .co-of-text ul { margin-top: 0; margin-bottom: 14px; padding-left: 20px; }
#co-ofertas-page .co-of-text li { margin-bottom: 6px; }

/* ── FAQ ─────────────────────────────────────────────────── */
#co-ofertas-page .co-of-faq {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e8f5f6;
  padding: 0 24px 40px;
}
#co-ofertas-page .co-of-faq > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#co-ofertas-page .co-of-faq h2 { font-size: 18px; margin-top: 0; margin-bottom: 18px; }
#co-ofertas-page .co-of-faq__item { margin-bottom: 20px; }
#co-ofertas-page .co-of-faq__q { font-weight: 800; margin-top: 0; margin-bottom: 6px; }
#co-ofertas-page .co-of-faq__a { font-size: 14px; color: #4A5B61; line-height: 1.6; margin: 0; }
#co-ofertas-page .co-of-faq__a a { color: #308e95; font-weight: 700; text-decoration: none; }
#co-ofertas-page .co-of-faq__a a:hover { text-decoration: underline; }

/* ── OFERTAS POR TEMPORADA ───────────────────────────────── */
#co-ofertas-page .co-of-seasonal {
  background: #fff;
  padding: 32px 24px;
}
#co-ofertas-page .co-of-seasonal__inner,
#co-ofertas-page .co-of-seasonal h2,
#co-ofertas-page .co-of-seasonal p {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#co-ofertas-page .co-of-seasonal h2 { font-size: 18px; margin-bottom: 10px; }
#co-ofertas-page .co-of-seasonal p { font-size: 14px; color: #4A5B61; margin-bottom: 18px; }
#co-ofertas-page .co-of-seasonal__buttons {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#co-ofertas-page .co-of-seasonal__btn {
  background: #308e95;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
#co-ofertas-page .co-of-seasonal__btn:hover { background: #266f75; }

/* ── RECIÉN LLEGADOS ─────────────────────────────────────── */
#co-ofertas-page .co-of-recientes {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e8f5f6;
  padding: 30px 24px 50px;
}
#co-ofertas-page .co-of-recientes__title {
  max-width: 1100px;
  margin: 0 auto 20px;
  font-weight: 700;
}
#co-ofertas-page .co-of-recientes .co-product-grid {
  max-width: 1100px;
  margin: 0 auto;
}