/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f0e6;
  color: #2e2e2e;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px; /* más espacio vertical */
  background-color: #6b4226;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo { 
  height: 90px;
  display: block; 
}

nav a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color .2s;
}
nav a:hover { color: #f5f0e6; }

/* hero */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 40px 18px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero p { font-size: 1.1rem; margin-bottom: 20px; }

/* hero buttons unify style */
.btn {
  display: inline-block;
  background: #c19c6d;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  margin: 8px;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-3px); background: #a67c52; }

/* sections */
.section {
  max-width: 1200px;
  margin: 36px auto;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #6b4226;
  margin-bottom: 12px;
}

/* products grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 260px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .15s ease;
}
.card:hover { transform: translateY(-6px); }
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card .card-body { padding: 14px; text-align: left; }
.card h3 { margin-bottom: 6px; color: #6b4226; font-size: 1.05rem; font-family: 'Montserrat', sans-serif; }
.card p { color: #555; font-size: .95rem; }

/* product info small text for size oriented phrases */
.size-phrase { font-weight: 600; color: #3d3d3d; margin-top: 8px; }

/* forms */
form {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
form label { display: block; margin-bottom: 6px; color: #6b4226; font-weight: 600; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select, input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  font-size: 1rem;
}
textarea { resize: vertical; }
.row { display: flex; gap: 12px; }
.col { flex: 1; }

/* special small grid for coffee item sizes */
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.size-grid label { font-weight: 600; margin-bottom: 6px; display: block; color: #6b4226; }
.size-grid input { width: 100%; }

.size-grid > div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* promo banner before footer */
.promo-banner {
  max-width: 1200px;
  margin: 36px auto;
  text-align: center;
}
.promo-banner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: block;
}

/* footer */
footer {
  background: #6b4226;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
}
footer a { color: #fff; text-decoration: underline; }

/* contact cards simplified */
.contact-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.contact-card { background: #fff; padding: 12px; border-radius: 8px; width: 220px; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.contact-card p { word-break: break-word; }

/* responsive rules */
@media (max-width: 900px) {
  .card { width: 100%; max-width: 420px; }
  header { flex-direction: column; gap: 12px; padding: 20px 6px; text-align: center; }
  .logo { height: auto; max-height: 90px; max-width: 95%; margin: 0 auto; }
  nav a { margin-left: 4px; font-size: .75rem; white-space: nowrap; }
  .hero { padding: 56px 16px; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-card { width: 100%; max-width: 320px; }
}
@media (max-width: 520px) {
  .size-grid { grid-template-columns: 1fr; }
  .row { flex-direction: column; }
}

p {
  margin-bottom: 18px; /* ajusta según lo que te guste */
}
.section p:last-child {
  margin-bottom: 0; /* evita exceso de espacio al final de la sección */
}

.large-image {
  width: 100%;
  max-width: 800px;
}

.large-image img {
  width: 100%;
  height: auto;
  max-height: none;
}

body {
  text-align: center;
}

.large-contact-card {
  width: 320px;
}

@media (max-width: 900px) {
  .large-contact-card {
    width: 100%;
    max-width: 420px;
  }
}

#address-section, #date-section {
  transition: all 0.25s ease;
}

#menu-sections {
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
#toggle-menu {
  display: inline-block;
  margin-bottom: 1rem;
  cursor: pointer;
}

.explore-header {
  text-align: center;
  cursor: pointer;
  margin-bottom: 1rem;
}

.explore-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.explore-title:hover {
  color: #b87333; /* por ejemplo, tono café */
}

.explore-title .arrow {
  display: inline-block;
  transition: transform 0.4s ease;
}

#menu-sections {
  overflow: hidden;
  transition: max-height 0.6s ease-out;
}

.accordion {
  background-color: #f8f5f2;
  color: #333;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.accordion span {
  font-weight: 400;
  color: #666;
  font-size: 0.9em;
}

.accordion:hover {
  background-color: #e7dfd9;
}

.panel {
  padding: 0 16px;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.menu-grid .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.menu-grid .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-grid .card-body {
  padding: 10px;
}

.menu-grid h3 {
  margin: 8px 0 4px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* --- Centering and layout adjustments for the menu section --- */
.section {
  text-align: center;
}

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.menu-container h2,
.menu-container p {
  text-align: center;
}

.accordion {
  display: inline-block;
  width: 90%;
  text-align: center;
}

.panel {
  text-align: center;
}

.menu-grid {
  justify-content: center;
  text-align: center;
}

.menu-grid .card {
  display: inline-block;
  vertical-align: top;
  margin: 10px;
  text-align: center;
}

/* --- Center cards inside accordion panels --- */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-top: 16px;
}

.menu-grid .card {
  flex: 0 1 220px; /* tamaño flexible y uniforme */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

/* Make all panels visible by default */
.panel {
  display: block;
}
.accordion.active {
  background-color: #e7dfd9;
}

/* --- Center product names fully --- */
.menu-grid .card-body {
  text-align: center;
}

.menu-grid .card-body h3 {
  text-align: center;
  margin: 10px 0 6px;
  font-weight: 600;
  color: #3b2f2f;
}

/* --- Updated accordion (group bar) style with brand color #6b4226 --- */
.accordion {
  background: linear-gradient(90deg, #6b4226, #8a5734);
  color: #fff;
  cursor: pointer;
  padding: 16px;
  width: 90%;
  border: none;
  border-radius: 10px;
  margin: 12px auto;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.accordion:hover {
  background: linear-gradient(90deg, #845130, #a46a44);
  transform: scale(1.01);
}

.accordion.active {
  background: linear-gradient(90deg, #5d371f, #7b4a2b);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.accordion span {
  font-weight: 400;
  font-size: 0.9em;
  opacity: 0.9;
  color: #fff;
}

.panel {
  background-color: #faf7f4;
  border-radius: 10px;
  margin-top: 8px;
  padding: 10px 0 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* --- Cards layout inside each menu group --- */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.menu-grid .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  width: 240px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.menu-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.menu-grid .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.menu-grid .card-body {
  padding: 15px 14px; /* <-- aquí añadimos margen interno */
}

.menu-grid .card-body h3 {
  margin: 8px 0;
  font-size: 17px;
  font-weight: 600;
  color: #3b2f2f;
  text-align: center;
}

.menu-grid .card-body p {
  font-size: 15px;
  line-height: 1.4;
  margin: 4px 0 6px;
  color: #555;
  text-align: center;
}

/* --- Forzar padding interno en las tarjetas del menú (más específico) --- */
.menu-container .menu-grid .card .card-body {
  box-sizing: border-box;
  padding: 16px 18px !important; /* espacio seguro dentro de la caja */
  min-height: 72px;               /* evita que el texto quede demasiado ajustado */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Ajustes finos para título y descripción dentro de la card */
.menu-container .menu-grid .card .card-body h3 {
  margin: 6px 0 8px;
  font-size: 17px;
  line-height: 1.2;
  word-break: keep-all;
}

.menu-container .menu-grid .card .card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #555;
}

/* En pantallas grandes, un poco más de espacio */
@media (min-width: 1000px) {
  .menu-container .menu-grid .card .card-body {
    padding: 18px 20px !important;
    min-height: 80px;
  }

  .menu-container .menu-grid .card {
    width: 260px;
  }
}

/* Custom style for Ground Coffee section header */
h3.ground-coffee {
  font-size: 1.38rem;     
  font-weight: 600; 
  color: #6b4226;       
  margin: 10px 0 5px;   
  letter-spacing: 0.5px; 
  text-align: center;
}

.main-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #f7f3ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 0; /* elimina espacio entre imagen y secciones */
}

/* Imagen lateral */
.side-image {
  flex: 1;
  background: url('../images/casa-macondo-circle.jpg') center/cover no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100%;
}

.side-image {
  flex: 1;
  background: url('../images/casa-macondo-circle.jpg') center/contain no-repeat;
  max-height: 350px; /* 🔹 ajusta este valor a gusto */
  min-height: 350px;
  align-self: center; /* 🔹 centra verticalmente dentro del layout */
}

/* Contenedor de las secciones (lado derecho) */
.content-sections {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px; /* antes 30px — ahora más compacto */
  padding: 30px 40px; /* antes 40px — más ajustado */
}

/* Cada bloque (tarjeta) */
.content-sections .section {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px; /* reduce altura interna */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

/* Título dentro de cada bloque */
.content-sections .section h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* Texto del bloque */
.content-sections .section p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

/* Botones */
.content-sections .section .btn {
  padding: 8px 16px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {

  .main-layout {
    flex-direction: column;     /* la imagen queda arriba */
    max-width: 100%;
    margin: 20px 0;
    border-radius: 0;           /* opcional: elimina bordes redondeados en móvil */
  }

  .side-image {
    width: 100%;
    height: 260px;              /* altura decente para móvil */
    max-height: none;
    min-height: auto;
    background-size: cover;     /* aseguramos que se vea bien */
    border-radius: 0;           /* opcional */
  }

  .content-sections {
    padding: 20px;
    gap: 16px;
    flex: none;
  }

  .content-sections .section {
    width: 100%;
    margin: 0;
  }
}

.half-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px; /* igual que las demás secciones */
  margin: 50px auto;
  background-color: #f7f3ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Imagen lateral (40%) */
.half-image {
  flex: 0.8; /* antes era 1 */
  background: url('../images/casa-macondo-coffee.jpg') center/contain no-repeat;
  background-color: #fff;
  min-height: 340px;
}

/* Texto (60%) */
.half-text {
  flex: 1.2; /* más espacio para texto */
  padding: 50px 50px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.half-text h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: #6b4226;
  font-family: 'Montserrat', sans-serif;
}

.half-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 100%;
  margin: 0 auto 18px auto;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .half-layout {
    flex-direction: column-reverse !important;
  }
  .half-image {
    height: 260px;
    width: 100%;
    background-size: cover;
  }
  .half-text {
    padding: 28px 20px;
    text-align: center;
  }
  .half-text p {
    max-width: 100%;       /* ocupa todo el ancho disponible */
    margin-bottom: 16px;   /* separa párrafos */
  }
}

.half-layout {
  flex-direction: row-reverse;
}

.half-text {
  padding: 40px;
  color: #3e2a1d;
  background-color: #f9f6f2;
}

.half-text h2 {
  font-size: 2rem;
  color: #6b4226;
  margin-bottom: 20px;
  text-align: left;
}

.half-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.coffee-details, .coffee-profile {
  margin-top: 25px;
  background: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.coffee-details h3,
.coffee-profile h3 {
  color: #6b4226;
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #e8ded2;
  padding-bottom: 4px;
}

.coffee-details ul,
.coffee-profile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coffee-details li,
.coffee-profile li {
  margin: 6px 0;
  font-size: 0.95rem;
}

.coffee-details strong,
.coffee-profile strong {
  color: #5a3721;
}

.half-text h2 {
  font-size: 2rem;
  color: #6b4226;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700; /* 🔹 resalta el título */
}

.half-image {
  flex: 1;
  position: relative;
  background: url('../images/casa-macondo-coffee.jpg') center/cover no-repeat;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Capa del degradado (fade más amplio arriba y abajo) */
.half-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(245, 240, 235, 1) 0%, 
    rgba(245, 240, 235, 0) 15%, 
    rgba(245, 240, 235, 0) 85%, 
    rgba(245, 240, 235, 1) 100%);
  pointer-events: none;
}

/* Imagen horizontal centrada en la página Find Us */
.findus-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  Margin-top: 20px;
}

.findus-banner .findus-image {
  max-width: 70%; /* ocupa parte del ancho, pero deja márgenes */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); /* un toque elegante */
  transition: transform 0.3s ease;
}

.findus-banner .findus-image:hover {
  transform: scale(1.03);
}

.qty-input {
  text-align: center;
}

@media (max-width: 900px) {
  .qty-input {
    text-align: center;
  }
}

.card-body h3,
.card-body .size-phrase {
  text-align: center;
}

@media (max-width: 900px) {
  #order_details {
    height: auto;      
    min-height: 120px; 
  }
  #coffee_details {
    height: auto;
    min-height: 100px;
  }
}

@media (max-width: 900px) {
  .hero-inner p:first-of-type a {
    font-size: 0.75rem;
    white-space: normal; 
    display: inline-block; 
    line-height: 1.2; 
  }

  .hero-inner p:first-of-type a .mobile-break {
    display: block; /* fuerza salto de línea solo en móvil */
  }
}

.panel > .menu-grid {
  display: flex;
  flex-direction: column; 
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 0;
}

.menu-grid.types {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 12px 8px;
  box-sizing: border-box;
}

/* cards de tipos: ancho uniforme */
.menu-grid.types .card.no-image {
  flex: 0 0 220px;
  min-width: 160px;
  max-width: 260px;
  box-sizing: border-box;
  margin: 0;
}

.menu-grid-specials {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 240px));
  gap: 20px;
  margin-top: 16px;
  justify-content: center;
  justify-items: center;
}

.menu-grid-specials .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 240px;
}

.menu-grid-specials .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-grid-specials .card-body {
  padding: 10px;
}

/* FIX: igualar color del texto */
.menu-grid-specials h3,
.menu-grid-specials p {
  color: #333; 
}

.menu-grid-specials h3 {
  margin: 8px 0 4px;
}

@media (max-width: 600px) {
  .menu-grid-specials {
    grid-template-columns: 1fr; 
    gap: 24px; 
    padding: 0 12px; 
  }
}

.menu-grid-sweets {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 240px));
  gap: 20px;
  margin-top: 16px;
  justify-content: center;
  justify-items: center;
}

.menu-grid-sweets .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 240px;
}

.menu-grid-sweets .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-grid-sweets .card-body {
  padding: 10px;
}

.menu-grid-sweets h3,
.menu-grid-sweets p {
  color: #333; 
}

.menu-grid-sweets h3 {
  margin: 8px 0 4px;
}

@media (max-width: 600px) {
  .menu-grid-sweets {
    grid-template-columns: 1fr;
    gap: 24px;            
    padding: 0 12px;      
  }
}

.menu-grid-coffee {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 240px));
  gap: 20px;
  margin-top: 16px;
  justify-content: center;
  justify-items: center;
}

.menu-grid-coffee .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 240px;
}

.menu-grid-coffee .card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu-grid-coffee .card-body {
  padding: 10px;
}

/* FIX: igualar color del texto */
.menu-grid-coffee h3,
.menu-grid-coffee p {
  color: #333; 
}

.menu-grid-coffee h3 {
  margin: 8px 0 4px;
}

@media (max-width: 600px) {
  .menu-grid-coffee {
    grid-template-columns: 1fr;
    gap: 24px;   
    padding: 0 12px;    
  }
}

.lang-switch {
  position: absolute;
  top: 12px;
  right: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 999;
}

.lang-switch a {
  color: #333;
  text-decoration: none;
  margin-left: 8px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: 0.2s;
}

.lang-switch a:hover {
  background: rgba(0,0,0,0.08);
}

.lang-switch .active-lang {
  background: #333;
  color: #fff !important;
}

/* Móvil */
@media (max-width: 600px) {
  .lang-switch {
    top: 8px;
    right: 12px;
    font-size: 0.8rem;
  }

  .lang-switch a {
    padding: 3px 5px;
    margin-left: 4px;
  }

  nav a {
    font-size: 0.75rem;  
    margin-left: 4px;
    margin-right: 4px;
    padding: 2px 0;    
    white-space: nowrap;
  }
}