/* Ferhub Norte - Master stylesheet (no edites aquí, edita los módulos) */

@import url("css/kpi.css");
@import url("css/base.css");
@import url("css/components.css");


/*
Theme Name: Organic
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Organic is specially designed product packaged for eCommerce store websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/





/* =========================
   FIX espec��fico para badges
   =========================
   Pegar al FINAL del CSS. S��lo afecta #encabezadoResumen / #badgesRow.
*/

/* Asegura que el contenedor use el row de bootstrap pero sin forzar tama�0�9os */
/* nota: mantenemos gap para separaci��n visual, pero no obligamos min-width */
#encabezadoResumen #badgesRow {
  display: flex;           /* permite que .col-* funcionen como flex items */
  flex-wrap: wrap;
  gap: 0px;            /* espacio entre columnas (aj��stalo si quieres) */
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

/* Forzamos comportamiento exacto de .col-6.col-lg-2 dentro del header
   en >=992px: 16.6667% ancho (6 columnas).
   en <992px, la clase col-6 mantiene 50% por fila. */
#encabezadoResumen #badgesRow > .col-6.col-lg-2 {
  box-sizing: border-box;
  padding-left: 0.375rem;   /* peque�0�9o padding para separarlo de bordes */
  padding-right: 0.375rem;
}

/* En desktop (>=992px) garantizamos 6 en una fila */
@media (min-width: 992px) {
  #encabezadoResumen #badgesRow > .col-6.col-lg-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }
}

/* En m��vil (<=576px) mantenemos 2 por fila (col-6) */
@media (max-width: 575.98px) {
  #encabezadoResumen #badgesRow > .col-6.col-lg-2 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-bottom:10px;
  }
}

/* Crucial: neutralizar reglas conflictivas s��lo dentro del header.
   Permitimos que .badge-card ocupe el 100% de su columna. */
#encabezadoResumen .badge-card {
  min-width: 0 !important;   /* quita el min-width que rompe el grid */
  flex: none !important;     /* evita que la tarjeta imponga su propio flex */
  width: 100% !important;    /* llenar la columna */
  max-width: 100% !important;
  box-sizing: border-box;
}

/* Si el theme tiene reglas globales que vuelven a forzar min-width,
   este selector doble reduce su prioridad sin tocar el resto del sitio. */
#encabezadoResumen #badgesRow .badge-card {
  min-width: 0 !important;
}

/* Ajuste opcional para gutters excesivos: reducir el gutter solo dentro del header */
@media (min-width: 992px) {
  #encabezadoResumen .container, 
  #encabezadoResumen .container-fluid {
    --bs-gutter-x: 0.75rem; /* reduce espacio entre columnas dentro del header */
  }
}







/* ====== Badges: iconos grandes y centrados (safe override) ====== */
#encabezadoResumen #badgesRow .badge-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* contenedor del icono: evita que crezca y centra el icono */
#encabezadoResumen #badgesRow .badge-card .icon {
  width: 56px;                 /* ancho fijo para alinear valores */
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* tama�0�9o por defecto para icons (Bootstrap Icons o FontAwesome) */
#encabezadoResumen #badgesRow .badge-card .icon i,
#encabezadoResumen #badgesRow .badge-card .icon svg {
  font-size: 2.2rem;           /* ajusta aqu�� el tama�0�9o "grande" */
  line-height: 1;
  display: block;
  height: auto;
}

/* si quieres a��n m��s grande en desktop */
@media (min-width: 1200px) {
  #encabezadoResumen #badgesRow .badge-card .icon i,
  #encabezadoResumen #badgesRow .badge-card .icon svg {
    font-size: 2.6rem;
  }
}

/* en m��vil reducirlo para que no rompa l��neas */
@media (max-width: 576px) {
  #encabezadoResumen #badgesRow .badge-card .icon {
    width: 44px;
    min-width: 44px;
  }
  #encabezadoResumen #badgesRow .badge-card .icon i,
  #encabezadoResumen #badgesRow .badge-card .icon svg {
    font-size: 1.8rem;
  }
}

/* Soporte explicito para FontAwesome .fa-3x si prefieres esa clase */
#encabezadoResumen #badgesRow .badge-card .icon .fa-3x { font-size: 2.4rem !important; }





/* --- badges mini denominaciones --- */
#denomBadgesRow { margin-top: 6px; }
.denom-badge {
  height: 25px;
  min-height: 25px;
  max-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 6px;
  border-radius: 6px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}

/* iconito izquierdo */
.denom-badge .icon { display:flex; align-items:center; gap:6px; min-width:20px; }

/* denominaci��n grande */
.denom-badge .denom { font-weight:700; font-size:12px; margin-right:4px; }

/* cantidad */
.denom-badge .qty { font-weight:600; margin-left:4px; margin-right:6px; }

/* subtotal en peque�0�9o */
.denom-badge .sub { font-size:10px; color:#333; opacity:0.9; margin-left:6px; min-width:36px; text-align:right; }

/* ajustar tama�0�9o iconos bootstrap */
.denom-badge .bi { font-size:14px; line-height:1; }

/* defensa: evitar que el texto empuje la fila */
#denomBadgesRow .col-6 { padding-left:3px; padding-right:3px; }
#denomBadgesRow .col-lg-1 { padding-left:3px; padding-right:3px; }



.evento-galaxias {
  position: relative;
  background-image: url('images/bgDark.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.evento-galaxias .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7); /* negro al 50% */
  z-index: 1;
}

.evento-galaxias .container {
  z-index: 2;
}

@media (max-width: 768px) {
  .evento-galaxias {
    background-image: url('images/movilEvento.jpg');

    /* Mejor encuadre para vertical */
    background-position: center top;

    /* Un poco menos padding para m��vil */
    padding: 70px 0;
  }
}




/* Fondos oscuros alternados */
.bg-dark-1 { background-color: #000; }
.bg-dark-2 { background-color: #161616; }
.bg-dark-3 { background-color: #1c1c1c; }
.bg-dark-4 { background-color: #222; }


.link-light{
    color:#fff!imporatant;
}

@media (max-width: 768px) {
  .evento-galaxias {
    background-attachment: scroll;
  }
}


#category-sections {
  position: relative;
  z-index: 3;
}



/* =========================
   HERO BASE - DESKTOP
========================= */
.hero {
  background-image: url('images/banner-2.png');
  background-repeat: no-repeat;
  margin-top:-5px!important;
  height: 90vh;
  min-height: 90vh;

  background-size: 115%;
  background-position: center 30%;

  animation: heroZoomDesktop 28s ease-in-out infinite;
}

.hero > * {
  position: relative;
  z-index: 2;
}


/* Degradado oscuro inferior */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}


/* =========================
   BOTONES HERO - M�0�7VIL
========================= */
@media (max-width: 768px) {
  .hero {
    margin-top: 38px;

    /* �9�5 IMAGEN SOLO PARA M�0�7VIL */
    background-image: url('images/movilPortada.jpg');

    height: 100svh;
    min-height: 100svh;

    background-color: #000;

    /* punto base */
    background-size: 150%;
    background-position: center 38%;

    animation: heroZoomMobile 15s ease-in-out infinite;
  }
}


@keyframes heroZoomDesktop {
  0% {
    background-size: 115%;
    background-position: center 30%;
  }
  50% {
    background-size: 130%;
    background-position: center 35%;
  }
  100% {
    background-size: 115%;
    background-position: center 30%;
  }
}

@keyframes heroZoomMobile {
  0% {
    background-size: 150%;
    background-position: center 38%;
  }
  50% {
    background-size: 180%;   /* �9�6 aqu�� se nota m��s */
    background-position: center 43%;
  }
  100% {
    background-size: 150%;
    background-position: center 38%;
  }
}


/* =========================
   CONTACTO - FONDO CON IMAGEN
========================= */
.contacto-bg {
  position: relative;
  background-image: url('images/galaxy-05.jpeg'); /* �9�6 tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay oscuro */
.contacto-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Contenido encima del overlay */
.contacto-bg .container {
  position: relative;
  z-index: 2;
}


/* =========================
   PANEL OSCURO TRANSL�0�3CIDO
========================= */
.bg-panel-dark {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Texto blanco por defecto */
.bg-panel-dark,
.bg-panel-dark h3,
.bg-panel-dark p,
.bg-panel-dark span,
.bg-panel-dark a {
  color: #fff;
}

.bg-panel-dark i {
  color: #fff !important;
}


.bg-panel-dark .form-control,
.bg-panel-dark textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.bg-panel-dark .form-control::placeholder,
.bg-panel-dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.bg-panel-dark .form-control:focus,
.bg-panel-dark textarea:focus {
  background: rgba(0, 0, 0, 0.85);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

#contactForm .btn {
  border-radius: 30px;
}

.bg-panel-dark {
  border: 1px solid rgba(255, 255, 255, 0.35);
}



.hero-links a {
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.25s ease;
}

.hero-links a p {
  margin: 0;
  line-height: 0.93;
}

/* Hover elegante */
.hero-links a:hover {
  color: #000;
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  transform: translateY(-3px);
}





/* MOBILE: mostrar acciones */
.mobile-actions {
  display: flex;
}

/* DESKTOP: esconder iconos m��viles */
@media (min-width: 992px) {
  .mobile-actions {
    display: none;
  }
}




/* ============================
   DROPDOWN USUARIO - MEJORA UX
============================ */

/* Ancho m��nimo c��modo */
#navUserBox .dropdown-menu {
  min-width: 220px;
  padding: 0.5rem 0;
  border-radius: 12px;
}

/* Header con mejor presencia */
#navUserBox .dropdown-header {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

/* Items m��s grandes y t��ctiles */
#navUserBox .dropdown-item {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

/* Hover m��s elegante */
#navUserBox .dropdown-item:hover {
  background-color: #f5f5f5;
}

/* Separador con aire */
#navUserBox .dropdown-divider {
  margin: 0.4rem 0;
}



/* ===============================
   NAVBAR MOBILE FIX
=============================== */
@media (max-width: 991.98px) {

  /* El navbar no debe crecer */
  .navbar {
    align-items: center;
  }

  /* El men�� desplegable */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #212529; /* bg-dark */
    padding: 1rem;
    z-index: 1050;
  }

  /* Que no empuje contenido */
  .navbar-collapse.show {
    display: block;
  }
}

.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.spec-key{ width: 42%; color:#6c757d; }


/* ===== Subheader de producto (arriba) ===== */
.pd-topbar{
  background:#f6f7f9;
  border:1px solid #e9ecef;
  border-radius: 14px;
  padding: 14px 16px;
}

.pd-crumbs{
  font-size: 13px;
  color:#6c757d;
}
.pd-crumbs a{ color:#6c757d; }
.pd-crumbs a:hover{ color:#000; text-decoration: underline; }

.pd-title{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.pd-chip{
  font-size: 13px;
  padding: 6px 10px;
  background:#fff;
  border:1px solid #e9ecef;
  border-radius:999px;
  color:#343a40;
}

.pd-chip-ok{
  border-color:#b7ebc6;
  background:#e9fff0;
  color:#1f7a3a;
}
.pd-chip-info{
  border-color:#cfe2ff;
  background:#eff6ff;
  color:#1d4ed8;
}

/* ===== Rating estrellas ===== */
.rating-stars i{
  color: #f4c150; /* dorado tipo MercadoLibre */
  font-size: 14px;
}

.thumb.placeholder{
  background:#e9ecef;
  border: 1px dashed #ced4da;
  cursor: default;
}
.thumb.placeholder i{
  color:#adb5bd;
  font-size: 18px;
}
.thumb.placeholder img{ display:none; }


/* Thumbs m��s ��Mercado Libre�� */
.thumb{
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.thumb:hover:not(.placeholder){
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border-color: #0d6efd;
}
.thumb.active{
  border-color:#0d6efd;
  box-shadow: 0 8px 22px rgba(13,110,253,.25);
}

/* Modal zoom */
#imgZoomModal .modal-dialog{
  max-width: 980px;
}
.zoom-stage{
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: #111;
  border-radius: 14px;
}
.zoom-img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1);
  transform-origin: center center;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  max-width: none; /* importante para zoom */
}
.zoom-img:active{
  cursor: grabbing;
}
.zoom-hint{
  font-size: 12px;
  color:#adb5bd;
}





.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Responsive */
@media (max-width: 1200px){
  .gallery-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px){
  /*.gallery-grid{grid-template-columns: 1fr;}*/
}






/* ===== Cookies bar ===== */
.cookie-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

.cookie-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
}

.cookie-text strong{ font-weight: 800; }
.cookie-text span{ color: rgba(0,0,0,0.78); }
.cookie-link{
  color: #0b5ed7;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions{ flex: 0 0 auto; }

@media (max-width: 768px){
  .cookie-inner{ flex-direction: column; align-items: flex-start; }
  .cookie-actions{ width: 100%; }
  .cookie-actions .btn{ width: 100%; }
}


/* ===== Promo modal ===== */
.promo-modal{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}
.promo-close{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}
.promo-side{ min-height: 260px; }
.promo-img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px){
  .promo-side{ display:none; }
}


.gal-item{
  border:1px solid #eee;
  border-radius:.75rem;
  padding:.5rem;
}
.gal-thumb{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:.5rem;
}
.gal-main-badge{
  position:absolute;
  top:.35rem;
  left:.35rem;
}

/* =========================================================
   DL NORTE �C LOOK & FEEL tipo "Famous Stars"
   Pega este bloque AL FINAL de tu style.css
========================================================= */

/* Paleta */
:root{
  --mirage:#063680;        /* fondo oscuro principal */
  --blaze:#ff7b22;         /* acento naranja */
  --deep:#0864a4;          /* acento verde profundo */
  --sand:#E4EEF0;          /* claro */
  --arena:#FFFEEB;

  --ink:#0c0f12;
  --muted:#90a0aa;

  /* Mapeo a variables del theme */
  --bs-primary: var(--blaze);
  --bs-primary-rgb: 255, 91, 4;

  --bs-danger: var(--blaze);
  --bs-danger-rgb: 255, 91, 4;

  --bs-secondary: var(--deep);
  --bs-secondary-rgb: 7, 80, 86;
}

/* Base typography (como Famous) */
html,body{ height:100%; }
body{
  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #777;
  overflow-x:hidden;
}
h1,h2,h3,.title{
  font-family:'Barlow Condensed', sans-serif;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.script{ font-family:'Ms Madi', cursive; text-transform:none; }

/* Utilidades */
.upper{ text-transform:uppercase; }
.text-muted{ color: rgba(228,238,240,.75)!important; }

/* Botones */
.btn-pill{
  border-radius:999px;
  padding:.75rem 1.2rem;
  font-weight:800;
  letter-spacing:.2px;
  border:0;
}
.btn.btn-pill{
  background: var(--blaze);
  color:#fff;

  --bs-btn-bg: var(--blaze);
  --bs-btn-color:#fff;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: #e95d0b;
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-border-color: transparent;
}
.btn-olive{
  background: var(--deep);
  color: var(--sand);
}
.btn-olive:hover{ background:#043a3e; color:#fff; }

/* Topbar */
:root{ --topbar-h: 30px; }
.topbar{
  background: rgba(8,100,164,.95);
  color: var(--sand);
  position:fixed;
  top:0; left:0; right:0;
  z-index:1050;
  padding:.35rem 0;
  font-size:.86rem;
  backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.topbar .topbar-link{ color: var(--sand); text-decoration:none; }
.topbar .topbar-link:hover{ text-decoration:underline; }
.topbar .topbar-text{ color: rgba(228,238,240,.9); }
.topbar .topbar-cta{
  display:inline-flex; align-items:center;
  gap:.35rem;
  background: var(--blaze);
  color:#fff;
  text-decoration:none;
  padding:.20rem .8rem;
  border-radius:999px;
  font-weight:800;
}
.topbar .topbar-cta:hover{ filter:brightness(.96); }

/* Navbar debajo del topbar */
.navbar.nav-fs{
  top: var(--topbar-h);
  background: #063680;
  backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 1090;
}
@media (max-width: 991.98px){
  .navbar.nav-fs{ top:0; }
}
.navbar .nav-link{
  color:#fff!important;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.3px;
  font-size:13px;
}

.nav-link-admin{
  color:#000!important;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.3px;
  font-size:13px;
}

.navbar .navbar-brand img{
  height:100px;
  margin-left:10px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* Dropdown submenu (departamentos -> categor��as) */
.fs-dropdown{ min-width: 280px; }
.dropdown-submenu{ position:relative; }
.dropdown-submenu > .dropdown-menu{
  top:0; left:100%;
  margin-left:.2rem;
}

.dropdown-submenu > .dropdown-item.dropdown-toggle::after{
  float:right;
  margin-top:.45rem;
  border-left:.35em solid;
  border-top:.35em solid transparent;
  border-bottom:.35em solid transparent;
  border-right:0;
}


.hero-split-row{ min-height: 640px; }
.hero-left{ background: linear-gradient(180deg, rgba(22,35,42,.95), rgba(22,35,42,.75)); }
.hero-copy{ max-width: 760px; }
.hero-kicker{
  display:inline-block;
  font-weight:800;
  letter-spacing:.35px;
  color: rgba(228,238,240,.75);
  margin-bottom:.5rem;
}
.hero-title{
  font-size: clamp(40px, 5vw, 84px);
  line-height:.95;
  margin:0;
  color: var(--sand);
}
.hero-sub{
  margin-top:1rem;
  font-size: 1.05rem;
  color: rgba(228,238,240,.8);
  max-width: 54ch;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  color: rgba(228,238,240,.85);
  font-size:.92rem;
}
.hero-badges span{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding:.45rem .75rem;
  border-radius:999px;
}
.hero-media{ height:100%; position:relative; }
.hero-media .swiper{ height: 100%; }
.hero-media .slide-media{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(80% 70% at 70% 20%, rgba(255,91,4,.18), transparent 55%),
              linear-gradient(180deg, rgba(22,35,42,.15), rgba(22,35,42,.75));
  pointer-events:none;
}

/* Secciones tipo "Famous" */
.bg-cream{ background: var(--sand)!important; color: var(--mirage)!important; }
.bg-dark-2{ background: #063680!important; color: var(--sand)!important; }

.destacados .title{ font-size: clamp(34px, 5vw, 54px); line-height:.95; margin-bottom:.35rem; }

/* Tarjetas producto (reutiliza tus .product-item actuales) */
.product-item{
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.product-item .product-title,
.product-item .product-title a{
  color: var(--mirage)!important;
  font-weight:800;
}
.product-item .product-price{
  color: var(--blaze)!important;
  font-weight:900;
}

/* Video strip */
.video-strip{
  position:relative;
  min-height: 820px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
}
.video-shade{
  position:absolute;
  inset:0;
  background: radial-gradient(80% 80% at 20% 20%, rgba(255,91,4,.22), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
}
.slogan .super{ font-size: clamp(20px, 3vw, 48px); }
.slogan .big{ font-size: clamp(40px, 6vw, 90px); line-height:.95; }

/* Nosotros cards */
.info-card{
  display:flex;
  gap:14px;
  border-radius:16px;
  padding:14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.info-ico{
  width:100px; height:80px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,91,4,.12);
  color: var(--blaze);
  font-size:40px;
}

/* Promos cards */
.promo-card{
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.promo-media{ height: 210px; background-size:cover; background-position:center; }
.promo-title{ font-weight:900; color:#fff; }
.promo-sub{ font-size:.92rem; color: rgba(228,238,240,.75); }

/* Footer */
.footer-fs{
  background:#0f171c;
  color: var(--sand);
}
.footer-fs a{ color: rgba(228,238,240,.9); text-decoration:none; }
.footer-fs a:hover{ text-decoration:underline; }
.footer-fs .social a{
  display:inline-grid;
  place-items:center;
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  margin-right:8px;
}

/* =====================================================
   DL NORTE �C FIX LAYOUT TOPBAR + NAVBAR + HERO
===================================================== */

/* Altura real combinada */
:root{
  --topbar-h: 36px;
  --navbar-h: 76px;
}

/* Navbar sticky correcto */
body.dlnorte .navbar{
  top: var(--topbar-h);
  z-index: 1030;
}



/* Elimina hacks anteriores */
body.dlnorte section[id],
body.dlnorte footer[id]{
  scroll-margin-top: calc(var(--topbar-h) + var(--navbar-h));
}


/* =========================================
   FALLBACKS cuando faltan im��genes/video
========================================= */

/* Asegura altura del bloque derecho del hero aunque no carguen imgs */
body.dlnorte .hero-right,
body.dlnorte .hero-media,
body.dlnorte .hero-media .swiper,
body.dlnorte .hero-media .swiper-wrapper,
body.dlnorte .hero-media .swiper-slide{
  min-height: 520px;
}

/* Si un <img> no carga, que el slide siga vi��ndose con fondo */
body.dlnorte .hero-media .swiper-slide{
  background:
    radial-gradient(80% 80% at 20% 20%, rgba(255,91,4,.18), transparent 55%),
    linear-gradient(180deg, rgba(22,35,42,.25), rgba(22,35,42,.85));
}

/* Evita que el img roto ��colapse�� raro */
body.dlnorte .hero-media .slide-media{
  min-height: 520px;
}

/* Promos / cards con imagen de fondo */
body.dlnorte .promo-media{
  background-color: rgba(255,255,255,.06);
}


/* =========================================================
   DL NORTE �� FIX TOPBAR + NAVBAR + FLOTANTE (DEPURADO)
   P�0�7GALO AL FINAL DE style.css
========================================================= */

:root{
  --topbar-h: 45px;     /* ajusta si tu topbar es m��s alta */
  --navbar-h: 76px;     /* aprox, solo para offsets/anchors */
}

/* 1) No metas padding-top global al body (eso rompe todo con topbar fixed) */
html, body{ margin:0; padding:0; }

/* 2) TOPBAR fijo arriba */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}



/* 5) Cuando haces scroll: ocultar topbar y subir navbar.
   (Esto requiere que agregues la clase .scrolled al <body> por JS; te dejo el JS abajo) */
body.scrolled .topbar{
  transform: translateY(-110%);
  transition: transform .18s ease;
}
body.scrolled .navbar.nav-fs{
  top: 0 !important;
  transition: top .18s ease;
}

/* 6) Barra flotante SIEMPRE flotante, encima del sitio */
.flotante{
  position: fixed !important;
  left: 10px;
  top: 40%;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 54px;                /* evita que ��empuje�� layout */
  pointer-events: auto;
}

/* Que sus hijos no generen espacios raros */
.flotante .row{ margin:0; }
.flotante a{ display:flex; justify-content:center; align-items:center; }

/* En m��vil: un poco m��s abajo para no tapar UI */
@media (max-width: 991.98px){
  .flotante{
    left: 0px;
    top: calc(40%);
  }
}

/* 7) Fallback: aunque no carguen im��genes del hero, que el bloque derecho mantenga altura */
.hero-right,
.hero-media,
.hero-media .swiper,
.hero-media .swiper-wrapper,
.hero-media .swiper-slide{
  min-height: 520px;
}

/* 8) Anchors: que al dar click en men�� no quede tapado bajo navbar */
section[id], footer[id]{
  scroll-margin-top: calc(var(--topbar-h) + var(--navbar-h) + 10px);
}
@media (max-width: 991.98px){
  section[id], footer[id]{ scroll-margin-top: calc(var(--navbar-h) + 10px); }
}



/* ===== FIX: sin espacio entre navbar y hero ===== */
:root{
  --topbar-h: 45px;   /* ajusta si cambia */
  --navbar-h: 76px;   /* ajusta si cambia */
}

/* Topbar fija */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 1100;
}

/* Navbar fija debajo del topbar (ya NO sticky) */
.navbar.nav-fs{
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  width: 100%;
  z-index: 1090;
}

/* En m��vil NO hay topbar (d-none d-lg-block), navbar se va hasta arriba */
@media (max-width: 991.98px){
  .navbar.nav-fs{
    top: 0;
  }
}

/* Compensaci��n �0�3NICA del layout */
body.dlnorte{
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
}
@media (max-width: 991.98px){
  body.dlnorte{
    padding-top: var(--navbar-h);
  }
}

/* IMPORTANT�0�1SIMO: el hero ya no debe empujarse */
.hero-split{
  padding-top: 0 !important;
}

/* =========================================================
   LOGO ESTILO FAMOUS STARS
   Grande, flotante, sin afectar navbar
========================================================= */

/* Asegura altura fija de navbar */
.navbar.nav-fs{
  min-height: 76px; /* controla el alto REAL del navbar */
  align-items: center;
}

/* Contenedor del logo */
.navbar .brand-float{
  position: relative;
  display: flex;
  align-items: center;
  height: 0;                 /* �9�6 CLAVE: no aporta altura */
  margin-right: 12px;
}

/* Imagen del logo */
.navbar .logo-float{
  position: absolute;
  top: -30px;                /* sobresale hacia arriba */
  left: 0;
  height: 100px;             /* TAMA�0�5O VISUAL */
  width: auto;
  max-width: none;
  z-index: 1200;
  pointer-events: auto;

  /* efecto visual tipo Famous */
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}

/* Ajuste fino desktop grande */
@media (min-width: 1200px){
  .navbar .logo-float{
    height: 80px;
    top: -36px;
  }
}

/* Tablet */
@media (max-width: 991.98px){
  .navbar .logo-float{
    height: 100px;
    top: -28px;
  }
}

/* Mobile */
@media (max-width: 575.98px){
  .navbar .logo-float{
    height: 86px;
    top: -18px;
  }
}


/* =========================================================
   LOS M�0�9S COMPRADOS �� FIX (look tipo Famous Stars)
   Pegar AL FINAL de style.css
========================================================= */


.swiper-prev,
.swiper-next{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  background: var(--deep);
  color: #E4EEF0;
  border: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.swiper-prev:hover,
.swiper-next:hover{
  background: #043a3e;
  color: #fff;
}


.ratio-16x9{
    --bs-aspect-ratio:100%!important;
}

.slogan {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.display-hollow {
    font-size: clamp(2.5rem, 8vw, 8rem);
    line-height: .35;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    font-weight: 900;
    letter-spacing: .5px;
}


.title {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: .5px;
}

.title-underline {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 4px solid currentColor;
  margin-bottom: 4px;
}

.title strong {
  font-weight: 800;
}








/* =========================
   DEPARTAMENTOS �C CAT BAND (FIX REAL)
   Pegar al FINAL del CSS
========================= */
.fs-catband{
  position: relative;
  z-index: 50;          /* por encima de overlays */
  width: 100%;
  display: block;
}

.fs-catband .row{ margin: 0; }
.fs-catband .row > [class*="col-"]{ padding: 0; }

.fs-catband .item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  width:100%;
  min-height: 84px;     /* asegura altura visible */
  padding: 18px 12px;

  color:#fff !important;
  text-decoration:none !important;

  font-weight:800;
  font-size: 16px;
  line-height: 1;
  letter-spacing:.2px;
  text-transform: none;

  transition: transform .18s ease, filter .18s ease;
}

.fs-catband .item .icon{
  font-size: 22px;
  line-height: 1;
  opacity: .95;
}

.fs-catband .item:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.fs-catband .item:focus-visible{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: -3px;
}

/* Colores por bloque (6 departamentos) */
.fs-catband .row > div:nth-child(1) .item{ background:#153c43; }
.fs-catband .row > div:nth-child(2) .item{ background:#0864a4; }
.fs-catband .row > div:nth-child(3) .item{ background:#16b9e8; }
.fs-catband .row > div:nth-child(4) .item{ background:#ff7a00; }
.fs-catband .row > div:nth-child(5) .item{ background:#e55c00; }
.fs-catband .row > div:nth-child(6) .item{ background:#d94a1a; }

@media (max-width: 991.98px){
  .fs-catband .item{ min-height: 76px; padding: 16px 10px; font-size: 15px; }
  .fs-catband .item .icon{ font-size: 20px; }
}
@media (max-width: 575.98px){
  .fs-catband .item{ min-height: 72px; padding: 14px 10px; font-size: 14px; }
}







/* =========================
   FIX: centrar imagen placeholder en cards del swiper
   ========================= */
.topBoughtSwiper img,
.topAddedSwiper img,
#wrap-top-bought img,
#wrap-top-added img{
  display:block;
  margin-left:auto;
  margin-right:auto;
}

/* Si tu slide ��default�� usa .product-card / .product-img (como en tu render) */
.product-card .product-img{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.product-card .product-img img{
  max-width:100%;
  height:auto;
  object-fit:contain;
}


/* =========================
   FIX: botones swiper alineados a la derecha
   ========================= */
.swiper-buttons{
  display:flex;
  gap:10px;
  width:100%;
}
.swiper-buttons.justify-content-end{
  justify-content:flex-end;
}

.text-muted{
    color:#999!important;
}

.tt-black .tooltip-inner{
background:#000 !important;
color:#fff !important;
font-size:12px;
padding:8px 10px;
border-radius:8px;
max-width: 420px;
}
.tt-black.bs-tooltip-top .tooltip-arrow::before{ border-top-color:#000 !important; }
.tt-black.bs-tooltip-bottom .tooltip-arrow::before{ border-bottom-color:#000 !important; }
.tt-black.bs-tooltip-start .tooltip-arrow::before{ border-left-color:#000 !important; }
.tt-black.bs-tooltip-end .tooltip-arrow::before{ border-right-color:#000 !important; }





/* ===== Tabs tipo "Agrowings": activa blanca / inactivas grises ===== */
#modalProveedor .nav-tabs{
  border-bottom: 1px solid #e5e7eb;
  gap: .5rem;
}

#modalProveedor .nav-tabs .nav-link{
  border: 1px solid #e5e7eb !important;
  background: #f3f4f6 !important;   /* gris inactiva */
  color: #374151 !important;
  border-bottom-color: #e5e7eb !important;
  border-radius: 12px 12px 0 0 !important;
  padding: .65rem 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: all .15s ease;
}

#modalProveedor .nav-tabs .nav-link:hover{
  background: #e9ecef !important;
}

#modalProveedor .nav-tabs .nav-link.active{
  background: #fefefe!important;   /* blanca activa */
  color: #111827 !important;
  border-color: #d1d5db !important;
  border-bottom-color: #ffffff !important; /* que "se funda" con el panel */
  box-shadow: 0 -1px 0 #ffffff inset;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color:#000!important;
}

/* el contenedor del contenido para que se vea como tarjeta */
#modalProveedor .tab-content{
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-top: 0;
  border-radius: 0 12px 12px 12px;
  padding: 16px;
}

/* en m��vil: que respiren y se lean */
@media (max-width: 576px){
  #modalProveedor .nav-tabs .nav-link{
    padding: .55rem .8rem;
    font-size: 14px;
  }
}




/* ===========================
   FIX NAVBAR EN M�0�7VIL (DL NORTE)
=========================== */
:root {
  --topbar-h: 36px;
}

@media (max-width: 991.98px) {
  :root {
    --topbar-h: 0px;
  }
}

@media (max-width: 991.98px){
  .hero-right{
    display: none !important;
  }
  .navbar .navbar-brand img{
      height:80px!important;
  }
  .hero-split-row{ min-height: 460px; }
}

/* ===========================
   Dropdown arriba del navbar/brand (m��vil)
=========================== */
.navbar,
.navbar .dropdown,
.navbar .dropdown-menu{
  z-index: 2000 !important;
}



/* ===========================
   HAMBURGUESA: MENU PEGADO AL NAVBAR (M�0�7VIL)
=========================== */
@media (max-width: 991.98px){

  /* Asegura que el navbar tenga referencia de altura */
  .navbar.nav-fs{
    min-height: var(--navbar-h, 76px);
  }

  /* El contenedor colapsable se vuelve "panel" debajo del navbar */
  .navbar.nav-fs .navbar-collapse{
    position: fixed;
    top: var(--navbar-h, 76px);
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 !important;
    padding: 14px 16px 18px;
    background: rgba(15, 22, 26, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 2000;
  }

  /* Quita el padding que a veces mete Bootstrap/tu CSS */
  .navbar.nav-fs .navbar-nav{
    margin-top: 0 !important;
  }
}


@media (max-width: 991.98px){
  body.dlnorte.menu-open{
    overflow: hidden; /* bloquea scroll cuando est�� abierto */
  }
}




/* =========================
   DL NORTE �� NAV MOBILE FIX
   ========================= */

/* Asegura que el offcanvas quede arriba y con buen contraste */
.offcanvas{
  z-index: 2001; /* bootstrap default, pero por si algo lo pisa */
}

@media (max-width: 576px){

  /* Si tu offcanvas del men�� usa clase .offcanvas (normal) */
  .offcanvas .offcanvas-body{
    background: #1f2428;
    padding: .75rem 0;
  }

  /* Links principales del men�� */
  .offcanvas .nav-link,
  .offcanvas .dropdown-toggle{
    color: #ffffff !important;
    padding: .9rem 1rem !important;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: .95rem;
  }

  .offcanvas .nav-link:hover,
  .offcanvas .dropdown-toggle:hover{
    background: rgba(255,255,255,.06);
  }

  /* Flechita del dropdown alineada a la derecha */
  .offcanvas .dropdown-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }
  .offcanvas .dropdown-toggle::after{
    margin-left: auto;
  }

  /* Dropdown dentro del offcanvas sin ��cajita�� blanca */
  .offcanvas .dropdown-menu{
    position: static !important;
    float: none !important;
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    padding: .25rem 0 .5rem 0 !important;
    box-shadow: none !important;
  }

  .offcanvas .dropdown-item{
    color: #d7dde2 !important;
    padding: .75rem 1.75rem !important;
    font-weight: 700;
  }

  .offcanvas .dropdown-item:hover{
    background: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
  }

  /* Separadores visuales entre secciones */
  .offcanvas .nav-item{
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .offcanvas .nav-item:last-child{
    border-bottom: 0;
  }
}


@media (max-width: 576px){
  .nav-offcanvas .offcanvas-body{ background:#1f2428; }
  .nav-offcanvas .nav-link{ color:#fff !important; }
  .navbar .nav-link {color:#fff!important;}
}



/* =========================================================
   DL NORTE �� NAV MOBILE (collapse) submenu inline + indent
   ========================================================= */

@media (max-width: 991.98px){

  /* El panel del men�� (cuando se despliega) */
  #mainNav{
    background: #1f2428;      /* mismo fondo oscuro */
    border-radius: 14px;
    padding: .75rem 0;
    margin-top: .75rem;
  }

  /* Links principales */
  #mainNav .nav-link{
    color: #fff !important;
    padding: .90rem 1rem !important;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
  }
  #mainNav .nav-link:hover{
    background: rgba(255,255,255,.06);
  }

  /* Toggle del dropdown alineado con flecha a la derecha */
  #mainNav .dropdown-toggle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.75rem;
  }
  #mainNav .dropdown-toggle::after{
    margin-left:auto;
  }

  /* Quitar ��caja blanca�� del dropdown-menu */
  #mainNav .dropdown-menu{
    position: static !important;
    float: none !important;
    width: 100%;
    margin: 0 !important;
    padding: .15rem 0 .55rem 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* Items del submenu: mismo fondo + indent */
  #mainNav .dropdown-item{
    background: transparent !important;
    color: rgba(255,255,255,.78) !important;
    padding: .70rem 1rem .70rem 2.35rem !important; /* <<< indent */
    font-weight: 700;
  }
  #mainNav .dropdown-item:hover,
  #mainNav .dropdown-item:focus{
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
  }

  /* Barrita para indicar ��hijo de ���� */
  #mainNav .dropdown-item{
    position: relative;
  }
  #mainNav .dropdown-item::before{
    content:"";
    position:absolute;
    left:1.25rem;
    top:.55rem;
    bottom:.55rem;
    width:3px;
    border-radius:99px;
    background: rgba(255,255,255,.10);
  }

  /* Separadores suaves entre secciones */
  #mainNav .nav-item{
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  #mainNav .nav-item:last-child{
    border-bottom: 0;
  }
}


@media (max-width: 991.98px){

  /* Pegado al navbar (sin ��tarjeta�� flotante) */
  #mainNav{
    background: #1f2428;
    border-radius: 0;
    margin-top: 0;
    padding: .35rem 0 .75rem 0;
  }

  /* Quitar cualquier borde/linea que pueda venir de bootstrap */
  .navbar .navbar-collapse{
    border-top: 0 !important;
  }

  /* Opcional: que el header y el panel se sientan una sola pieza */
  .navbar.navbar-light.bg-white{
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }
}


@media (max-width: 991.98px){
  #app-navbar nav.navbar{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #app-navbar nav.navbar .container-fluid{
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }
}





/* ==========================================
   FIX: Modal debajo de navbar fixed
========================================== */
:root{
  --app-nav-h: 40px; /* ajusta si tu navbar es m��s alto */
}

/* Si tu navbar es fixed-top, esto evita que el contenido quede debajo */
body{
  padding-top: var(--app-nav-h);
}

/* Y esto evita que el modal quede ��arriba sin verse�� */
.modal{
  padding-top: var(--app-nav-h);
}

/* Por si alg��n CSS te dej�� el modal sin margen */
.modal-dialog{
  margin-top: calc(var(--app-nav-h)) !important;
}

#tablaNominas td,
#tablaNominas th{
  white-space: nowrap;
}






body.dlnorte-berel {
      background: #f4f6f8;
    }

    .berel-page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .berel-head {
      background:
        linear-gradient(135deg, rgba(22,35,42,.96), rgba(10,21,30,.96));
      color: #fff;
      padding-top: 15px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .berel-head .brand-box {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .berel-logo-box {
      background: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      box-shadow: 0 10px 24px rgba(0,0,0,.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 64px;
    }

    .berel-logo-box img {
      max-height: 42px;
      width: auto;
      display: block;
    }

    .berel-copy h1 {
      font-size: 1.8rem;
      margin: 0 0 4px;
      font-weight: 800;
    }

    .berel-copy p {
      margin: 0;
      color: rgba(255,255,255,.78);
      font-size: .98rem;
    }

    .berel-tools {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .berel-stage {
      flex: 1;
      background: #e9edf1;
      padding: 0;
    }

    .berel-frame-wrap {
      position: relative;
      width: 100%;
      height: calc(100vh - 160px);
      min-height: 720px;
      background: #fff;
    }

    .berel-frame {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #fff;
    }

    .berel-note {
      background: #fff3cd;
      color: #664d03;
      border-top: 1px solid rgba(0,0,0,.06);
      padding: 12px 18px;
      font-size: .92rem;
    }

    .nav-berel-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px !important;
      background: #fff;
      border-radius: 10px;
      margin-left: 8px;
    }

    .nav-berel-logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    @media (max-width: 991.98px) {
      .berel-tools {
        justify-content: flex-start;
        margin-top: 12px;
      }

      .berel-frame-wrap {
        height: calc(100vh - 210px);
        min-height: 620px;
      }

      .nav-berel-logo {
        margin: 8px 0 0 0;
        width: fit-content;
      }
    }

    @media (max-width: 575.98px) {
      .berel-copy h1 {
        font-size: 1.35rem;
      }

      .berel-copy p {
        font-size: .9rem;
      }

      .berel-frame-wrap {
        min-height: 560px;
      }
    }