@charset "utf-8";

/* ============================================================
   Terra Moderna – Bootstrap 5 theme for Terra Magica
   Replaces estilo.css on modernized pages
   ============================================================ */

/* --- Google Fonts ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties ------------------------------------- */
:root {
  --tm-primary:       #FF6B6B;
  --tm-primary-dark:  #E85555;
  --tm-secondary:     #FFD93D;
  --tm-tertiary:      #6C5CE7;
  --tm-bg-page:       #FFF8F5;
  --tm-bg-section:    #FFF0EB;
  --tm-footer:        #2D3436;
  --tm-text:          #2D3436;
  --tm-radius:        0.75rem;
  --tm-shadow:        0 4px 15px rgba(0,0,0,.08);
  --tm-shadow-hover:  0 8px 25px rgba(0,0,0,.15);
  --tm-transition:    .3s ease;
}

/* --- Base -------------------------------------------------- */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--tm-text);
  background-color: var(--tm-bg-page);
  line-height: 1.6;
}

a {
  color: var(--tm-primary);
  text-decoration: none;
  transition: color var(--tm-transition);
}
a:hover {
  color: var(--tm-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Navbar (Bootstrap overrides) -------------------------- */
.navbar-tm {
  background-color: #4A9E95 !important;
  padding: .6rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.navbar-tm .navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff !important;
}
.navbar-tm .navbar-brand img {
  height: 50px;
  width: auto;
}
.navbar-tm .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  border-radius: var(--tm-radius);
  transition: background var(--tm-transition), color var(--tm-transition);
}
.navbar-tm .nav-link:hover,
.navbar-tm .nav-link.active {
  background-color: rgba(255,255,255,.2);
  color: #fff !important;
}
.navbar-tm .navbar-toggler {
  border-color: rgba(255,255,255,.5);
  padding: .25rem .5rem;
}
.navbar-tm .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Alert dias cerrados ----------------------------------- */
.tm-alert-cerrado {
  margin-bottom: 0;
  border-radius: 0;
  font-size: .9rem;
}

/* --- Main wrapper ------------------------------------------ */
.tm-main {
  padding-top: 2rem;
  padding-bottom: 3rem;
  min-height: 60vh;
}

/* --- Section headings -------------------------------------- */
.tm-section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tm-text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .75rem;
  background-color: transparent;
}
.tm-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--tm-primary);
  border-radius: 2px;
}

.tm-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 2rem;
}

/* --- Service Cards (Home) ---------------------------------- */
.tm-service-card {
  border: none;
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
  transition: transform var(--tm-transition), box-shadow var(--tm-transition);
  height: 100%;
}
.tm-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tm-shadow-hover);
}
.tm-service-card .card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 282 / 375;
  object-fit: cover;
}
.tm-service-card .card-body {
  text-align: center;
  padding: 1.25rem;
}
.tm-service-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tm-text);
}
.tm-service-card .card-subtitle {
  font-size: .85rem;
  color: var(--tm-primary);
  font-weight: 500;
}
.tm-service-card .card-text {
  font-size: .88rem;
  color: #636e72;
  line-height: 1.5;
}
.tm-service-card a {
  text-decoration: none;
  color: inherit;
}

/* --- Cumple Cards (Catalog) -------------------------------- */
.tm-cumple-card {
  border: none;
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
  transition: transform var(--tm-transition), box-shadow var(--tm-transition);
  height: 100%;
}
.tm-cumple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tm-shadow-hover);
}
.tm-cumple-card .card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 282 / 375;
  object-fit: cover;
}
.tm-cumple-card .card-body {
  text-align: center;
  padding: .75rem;
}
.tm-cumple-card .card-title {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 0;
}
.tm-cumple-card a {
  text-decoration: none;
  color: inherit;
}

/* --- Picoteo / Adicionales Cards --------------------------- */
.tm-picoteo-card {
  border: none;
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
  transition: transform var(--tm-transition), box-shadow var(--tm-transition);
  height: 100%;
}
.tm-picoteo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-hover);
}
.tm-picoteo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* --- Info badge (calcetines warning etc.) ------------------- */
.tm-info-badge {
  background-color: var(--tm-secondary);
  color: var(--tm-text);
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--tm-radius);
  text-align: center;
  font-size: .95rem;
}

/* --- Contact page ------------------------------------------ */
.tm-contact-info {
  background-color: var(--tm-bg-section);
  border-radius: var(--tm-radius);
  padding: 2rem;
}
.tm-contact-info h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.tm-contact-info .tm-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.tm-contact-item i {
  font-size: 1.3rem;
  color: var(--tm-primary);
  min-width: 28px;
  text-align: center;
}

/* --- Buttons ----------------------------------------------- */
.btn-tm-primary {
  background-color: var(--tm-primary);
  border-color: var(--tm-primary);
  color: #fff;
  font-weight: 500;
  border-radius: var(--tm-radius);
  padding: .5rem 1.5rem;
  transition: background var(--tm-transition), transform var(--tm-transition);
}
.btn-tm-primary:hover {
  background-color: var(--tm-primary-dark);
  border-color: var(--tm-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-tm-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
  font-weight: 500;
  border-radius: var(--tm-radius);
  padding: .5rem 1.5rem;
}
.btn-tm-whatsapp:hover {
  background-color: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* --- Footer ------------------------------------------------ */
.tm-footer {
  background-color: var(--tm-footer);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.tm-footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.tm-footer a {
  color: rgba(255,255,255,.7);
  transition: color var(--tm-transition);
}
.tm-footer a:hover {
  color: var(--tm-secondary);
}
.tm-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  margin-right: .5rem;
  transition: background var(--tm-transition);
}
.tm-footer-social a:hover {
  background-color: var(--tm-primary);
}
.tm-footer-social i {
  font-size: 1.1rem;
  color: #fff;
}
.tm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* --- Scroll-to-top button ---------------------------------- */
.tm-scroll-top {
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--tm-tertiary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(108,92,231,.4);
  transition: background var(--tm-transition), transform var(--tm-transition);
  border: none;
  font-size: 1.2rem;
}
.tm-scroll-top:hover {
  background-color: #5a4bd1;
  transform: translateY(-3px);
}

/* --- Mobile fixed bottom bar ------------------------------- */
.tm-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 9998;
}
.tm-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--tm-text);
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.tm-mobile-bar a i {
  font-size: 1.2rem;
}
.tm-mobile-bar a:hover {
  color: var(--tm-primary);
}

/* --- Gallery (FancyBox compat) ----------------------------- */
section[id*="instalaciones"] article,
.tm-gallery article {
  display: inline-block;
  margin: 6px;
  vertical-align: top;
}
section[id*="instalaciones"] article img,
.tm-gallery article img {
  width: 100%;
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
  transition: transform var(--tm-transition);
}
section[id*="instalaciones"] article img:hover,
.tm-gallery article img:hover {
  transform: scale(1.03);
}
section[id*="instalaciones"] article video,
.tm-gallery article video {
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
}

/* FancyBox gallery grid */
section[id*="instalaciones"],
.tm-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
section[id*="instalaciones"] article,
.tm-gallery article {
  width: calc(25% - 20px);
}
@media (max-width: 991.98px) {
  section[id*="instalaciones"] article,
  .tm-gallery article {
    width: calc(33.333% - 20px);
  }
}
@media (max-width: 575.98px) {
  section[id*="instalaciones"] article,
  .tm-gallery article {
    width: calc(50% - 16px);
  }
}

/* Canvas hide (video poster generation) */
canvas#myCanvas {
  display: none;
}

/* --- Franquicia link section ------------------------------- */
section#franquicia-link {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  background-color: var(--tm-bg-section);
  border-radius: var(--tm-radius);
}
section#franquicia-link img {
  max-width: 200px;
  border-radius: var(--tm-radius);
  margin-bottom: 1rem;
}
section#franquicia-link p {
  margin-bottom: .5rem;
  font-size: 1rem;
  text-align: center;
}

/* --- Error / Success messages ------------------------------ */
.errorMessage {
  width: 100%;
  background-color: #ffe0e0;
  border-left: 4px solid var(--tm-primary);
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0 var(--tm-radius) var(--tm-radius) 0;
}
.successMessage {
  width: 100%;
  background-color: #d4edda;
  border-left: 4px solid #28a745;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0 var(--tm-radius) var(--tm-radius) 0;
}

/* --- Utility classes --------------------------------------- */
.fontWeightBold  { font-weight: bold; }
.fontStyleItalic { font-style: italic; }
.fontSizeLarge   { font-size: 25px; }
.fontColorRed    { color: var(--tm-primary) !important; }
.fontColorBlack  { color: #000; }

/* ============================================================
   BACKWARD-COMPATIBLE STYLES
   For pages NOT yet modernized (campamentos, escuela_de_verano,
   comuniones, landing-page, etc.)
   These rules keep old page layouts working.
   ============================================================ */

/* Old generic section flex layout */
main > section {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

/* Old section headings */
main > section > h1,
section > h1 {
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
  background-color: #FFE0D6;
  text-align: center;
  font-size: 1.6rem;
  border-radius: var(--tm-radius);
}
main > section > h2,
section > h2 {
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
  background-color: #FFF3CD;
  text-align: center;
  font-size: 1.15rem;
  border-radius: var(--tm-radius);
}
main > section > h3,
section > h3 {
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
  text-align: center;
  font-size: 1rem;
}

/* Old section paragraphs */
main > section > p,
section > p {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.6;
}

/* Old articles */
main > section > article,
section > article {
  width: 20%;
  margin: 20px;
  text-align: center;
}
main > section > article img,
section > article > a > img {
  width: 100%;
  border-radius: 5px;
}

/* Old section images */
main > section img,
section img {
  border-radius: 5px;
  max-width: 100%;
}

/* Old section lists */
section ul {
  width: 90%;
  margin: auto;
  padding-left: 1.5rem;
}
section ul li {
  width: 100%;
  font-size: 1rem;
  line-height: 1.6;
}

/* Old form styling (for non-modernized pages) */
main > section > form,
section > form {
  width: 60%;
  margin: 20px auto;
  text-align: center;
  background-color: #f0f0f0;
  border-radius: var(--tm-radius);
  padding: 20px;
}

/* Campamento / Escuela de verano sections */
section#campamento-verano,
section#escuela-de-verano {
  width: 90%;
  margin: 0 auto;
}
section#campamento-verano .contenedor-ul,
section#escuela-de-verano .contenedor-ul {
  width: 70%;
  margin: auto;
  text-align: left;
}
section#campamento-verano ul,
section#escuela-de-verano ul {
  margin: 20px 0;
}
section#campamento-verano li,
section#escuela-de-verano li {
  padding: 5px 0;
  font-size: 1rem;
}
section#campamento-verano p,
section#escuela-de-verano p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Algunas imagenes (shared gallery pattern) */
.algunas-imagenes {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.algunas-imagenes article,
.algunas-imagenes a[data-fancyBox*="gallery"] {
  width: 30%;
  margin: 5px;
}
.algunas-imagenes img {
  width: 100%;
  border-radius: 5px;
}

/* Promociones */
section#promociones {
  width: 100%;
  text-align: center;
}
section#promociones > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 300px;
  margin: 5px;
}

/* Cumple reservar box */
section.cumpleaños-reservar {
  display: block;
  width: auto;
  margin: 20px auto;
  text-align: center;
  padding: 15px;
  border-radius: var(--tm-radius);
  border: 3px solid var(--tm-primary);
  background-color: var(--tm-secondary);
}

/* Contenedor-ul */
.contenedor-ul {
  width: 70%;
  margin: auto;
  text-align: left;
}

/* Video youtube */
section.video-youtube {
  width: 80%;
  margin: 0 auto;
}
section.video-youtube iframe {
  width: 100%;
}

/* p helpers from old CSS */
p.precio { padding: 5px 0; }
p.alerta {
  background-color: var(--tm-secondary);
  padding: 20px 0;
  color: var(--tm-primary);
  font-weight: bold;
}

/* Keep old span>img rule */
span > img {
  width: auto;
}

/* --- Responsive (backward compat) -------------------------- */
@media (max-width: 1024px) {
  main > section > article,
  section > article {
    width: 45%;
    margin: 10px;
  }
  main > section > form,
  section > form {
    width: 90%;
  }
}

@media (max-width: 575.98px) {
  main > section > article,
  section > article {
    width: 90%;
    margin: 10px auto;
  }
  .algunas-imagenes article,
  .algunas-imagenes a[data-fancyBox*="gallery"] {
    width: 48%;
  }
}

/* --- Padding bottom for mobile bar ------------------------- */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 55px;
  }
}

/* --- Override Bootstrap .row width from old estilo.css ------ */
/* Bootstrap .row needs its own width rules, don't force 100% */

/* ============================================================
   Cumple Detalle Page
   ============================================================ */

/* --- Scoped resets for modern detail pages ------------------ */
.tm-detalle section {
  display: block;
  margin: 0 0 2.5rem 0;
}
.tm-detalle section > h2,
.tm-detalle section > h3 {
  background-color: transparent;
  width: auto;
}
.tm-detalle section > p {
  text-align: inherit;
  width: 100%;
}
.tm-detalle section ul {
  width: 100%;
}

/* --- Hero -------------------------------------------------- */
.tm-hero {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}
.tm-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.tm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}
.tm-hero-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  text-align: center;
  margin: 0;
  width: 100%;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 575.98px) {
  .tm-hero, .tm-hero-img { max-height: 260px; height: 260px; }
  .tm-hero-title { font-size: 1.5rem; }
}

/* --- Nav pills (internal index) ---------------------------- */
.tm-nav-pills .nav-link {
  background-color: var(--tm-bg-section);
  color: var(--tm-text);
  font-weight: 500;
  font-size: .85rem;
  border-radius: 50rem;
  padding: .4rem 1rem;
  transition: background var(--tm-transition), color var(--tm-transition);
  white-space: nowrap;
}
.tm-nav-pills .nav-link:hover,
.tm-nav-pills .nav-link:focus {
  background-color: var(--tm-primary);
  color: #fff;
}

/* --- Carousel ---------------------------------------------- */
.tm-carousel {
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
  background-color: #f8f9fa;
}
.tm-carousel .carousel-item img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.tm-carousel .carousel-control-prev-icon,
.tm-carousel .carousel-control-next-icon {
  background-color: rgba(0,0,0,.4);
  border-radius: 50%;
  padding: 1rem;
}
.tm-carousel-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-carousel-delete img {
  width: 18px;
  height: 18px;
}

/* --- Price card --------------------------------------------- */
.tm-price-card {
  background-color: var(--tm-secondary);
  border: none;
  border-radius: var(--tm-radius);
  text-align: center;
  padding: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tm-text);
  box-shadow: var(--tm-shadow);
}

/* --- Merienda card ----------------------------------------- */
.tm-merienda-card {
  border: none;
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
}
.tm-merienda-card .card-header {
  background-color: var(--tm-bg-section);
  border-bottom: 2px solid var(--tm-primary);
}
.tm-merienda-card .card-img {
  max-height: 200px;
  object-fit: cover;
}

/* --- CTA button (enhanced) --------------------------------- */
@keyframes tm-pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255,107,107,.3); }
  50% { box-shadow: 0 4px 28px rgba(255,107,107,.55); }
}
@keyframes tm-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.tm-cta-btn {
  padding: 1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50rem;
  background: linear-gradient(135deg, var(--tm-primary) 0%, #FF8E8E 50%, var(--tm-primary) 100%);
  background-size: 200% auto;
  border: none;
  color: #fff;
  animation: tm-pulse-glow 2.5s ease-in-out infinite, tm-shimmer 3s linear infinite;
  transition: transform .3s ease, box-shadow .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.tm-cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px rgba(255,107,107,.5);
  color: #fff;
}
.tm-cta-btn i {
  font-size: 1.3rem;
}

/* --- Admin inline forms (detail pages) --------------------- */
.tm-detalle .tm-admin-form .form-control {
  font-size: .9rem;
}

/* --- Video grid -------------------------------------------- */
.tm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.tm-video-grid video {
  width: 100%;
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
}

/* ============================================================
   Horizontal Scroll Carousel
   ============================================================ */
.tm-hscroll-wrapper {
  position: relative;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
}
.tm-hscroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tm-hscroll::-webkit-scrollbar {
  display: none;
}
.tm-hscroll-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.tm-hscroll-item .card {
  height: 100%;
}
.tm-hscroll-item .card-img-top {
  height: 160px;
  object-fit: cover;
}
.tm-hscroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--tm-transition), transform var(--tm-transition), color var(--tm-transition);
  font-size: 1.1rem;
  color: var(--tm-text);
  padding: 0;
}
.tm-hscroll-btn:hover {
  background: var(--tm-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.tm-hscroll-btn--prev {
  left: -4px;
}
.tm-hscroll-btn--next {
  right: -4px;
}

/* ============================================================
   Modern Picoteo Adultos Card
   ============================================================ */
.tm-picoteo-card-modern {
  border: none;
  border-radius: var(--tm-radius);
  padding: 2rem 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, #FFF0EB 0%, #FFE8F0 50%, #F0E6FF 100%);
  box-shadow: var(--tm-shadow);
  transition: transform var(--tm-transition), box-shadow var(--tm-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.tm-picoteo-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--tm-shadow-hover);
}
.tm-picoteo-card-modern .tm-picoteo-icon {
  font-size: 2.5rem;
  color: var(--tm-primary);
}
.tm-picoteo-card-modern .tm-picoteo-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tm-text);
  margin: 0;
}
.tm-picoteo-card-modern .tm-picoteo-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tm-primary);
  margin: 0;
}

/* --- Responsive adjustments -------------------------------- */
@media (max-width: 575.98px) {
  .tm-hscroll-item {
    flex: 0 0 180px;
  }
  .tm-hscroll-item .card-img-top {
    height: 130px;
  }
  .tm-cta-btn {
    padding: .8rem 2rem;
    font-size: 1rem;
  }
  .tm-picoteo-card-modern {
    padding: 1.5rem 1rem;
  }
  .tm-picoteo-card-modern .tm-picoteo-icon {
    font-size: 2rem;
  }
}
