/* ============================================
   ARREU BEGUR — styles.css
   Palette derived from logo (#C9B49A sand)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream:   #F0E8DC;
  --sand:    #C9B49A;
  --stone:   #A8907A;
  --earth:   #7A5A38;
  --dark:    #1C1108;
  --green:   #5B7A50;
  --white:   #FDFAF5;
  --red:     #B84040;
  --blue:    #2E6E9E;
  --radius:  4px;
  --nav-h:   64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(28,17,8,0.12);
  display: flex; align-items: center;
  padding: 0 2rem;
  height: var(--nav-h);
  gap: 1.5rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px; width: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav-links {
  display: flex; list-style: none; gap: 0;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.nav-cta {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius);
  opacity: 1;
  margin-left: 0.5rem;
}
.nav-links a.nav-cta:hover { background: var(--earth); }

/* lang switcher */
.lang-switcher {
  display: flex; gap: 4px; flex-shrink: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.05rem; padding: 4px 5px; border-radius: 4px;
  opacity: 0.45; transition: opacity 0.2s, background 0.2s;
  line-height: 1;
}
.lang-btn.active { opacity: 1; background: rgba(28,17,8,0.08); }
.lang-btn:hover { opacity: 0.8; }

/* Senyera flag */
.flag-ca {
  display: inline-block;
  width: 22px; height: 15px;
  background: repeating-linear-gradient(
    180deg,
    #FCDD09 0px, #FCDD09 2.14px,
    #DA121A 2.14px, #DA121A 4.28px
  );
  border-radius: 2px;
  vertical-align: middle;
}

/* hamburger — hidden on desktop */
.hamburger { display: none; }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 560px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,17,8,0.45) 0%, rgba(28,17,8,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 1.5rem;
}
.hero-logo-img {
  width: 140px; height: 140px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.hero-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(253,250,245,0.6);
  z-index: 2;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--sand); color: var(--dark); }
.btn-primary:hover { background: var(--stone); }
.btn-outline { background: transparent; border: 1.5px solid currentColor; color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--sand); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--earth); }
.btn-outline-white { border: 1.5px solid rgba(253,250,245,0.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(253,250,245,0.15); }

/* ── SECTION COMMON ──────────────────────── */
.section-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--dark);
}
.section-desc {
  font-size: 1rem;
  color: var(--stone);
  max-width: 540px;
  line-height: 1.7;
}

/* ── ABOUT / HIGHLIGHT ───────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  margin-top: 0;
}
.about-image {
  position: relative; overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-text {
  background: var(--dark);
  color: var(--white);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  gap: 2rem;
}
.about-tag {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand);
}
.about-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white);
}
.about-desc {
  font-size: 0.95rem; color: rgba(253,250,245,0.75);
  line-height: 1.8; max-width: 400px;
}
.about-stats {
  display: flex; gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253,250,245,0.12);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-size: 1.6rem; font-weight: 700;
  color: var(--sand); line-height: 1;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.55);
}

/* ── MENU PREVIEW ────────────────────────── */
.menu-preview {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.menu-preview .section-tag,
.menu-preview .section-title { margin-bottom: 0.5rem; }
.menu-preview .section-title { margin-bottom: 2.5rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28,17,8,0.1);
  border: 1px solid rgba(28,17,8,0.1);
  margin-bottom: 2.5rem;
}
.menu-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: background 0.2s;
}
.menu-card:hover { background: var(--cream); }
.menu-card-badge {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 2px; margin-bottom: 0.8rem;
  font-weight: 700;
}
.badge-green { background: rgba(91,122,80,0.12); color: var(--green); }
.badge-blue  { background: rgba(46,110,158,0.12); color: var(--blue); }
.badge-red   { background: rgba(184,64,64,0.12);  color: var(--red); }
.badge-earth { background: rgba(122,90,56,0.12);  color: var(--earth); }
.badge-sand  { background: rgba(201,180,154,0.25); color: var(--earth); }
.badge-dark  { background: rgba(28,17,8,0.08);    color: var(--dark); }

.menu-card-title {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--dark);
}
.menu-card-desc {
  font-size: 0.82rem; color: var(--stone);
  line-height: 1.6;
}
.menu-card-link {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--earth); text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── GALLERY STRIP ───────────────────────── */
.gallery-strip {
  padding: 4rem 2rem;
  background: var(--dark);
}
.gallery-strip-header {
  text-align: center; margin-bottom: 2rem;
}
.gallery-strip-header .section-tag { color: var(--sand); }
.gallery-strip-header .section-title { color: var(--white); }

.gallery-scroll {
  display: flex; gap: 8px;
  overflow-x: auto; padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(253,250,245,0.1); }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 2px; }

.gallery-thumb {
  flex: 0 0 280px; height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-thumb img { transition: transform 0.4s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }

.gallery-strip-cta {
  text-align: center; margin-top: 2rem;
}

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: var(--sand);
  padding: 5rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.cta-banner .section-title { color: var(--dark); }
.cta-banner p { color: var(--earth); max-width: 480px; line-height: 1.7; }

/* ── PAGE HEADER ─────────────────────────── */
.page-header {
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid rgba(28,17,8,0.08);
}
.page-header .section-desc {
  margin: 0.6rem auto 0;
}

/* ── CARTA (menu page) ───────────────────── */
.carta-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.carta-section {
  margin-bottom: 3.5rem;
}
.carta-section-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sand);
}
.carta-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark);
}
.carta-section-tag {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 2px;
}
.tag-green { background: rgba(91,122,80,0.15); color: var(--green); }
.tag-blue  { background: rgba(46,110,158,0.15); color: var(--blue); }
.tag-red   { background: rgba(184,64,64,0.15);  color: var(--red); }
.tag-earth { background: rgba(122,90,56,0.15);  color: var(--earth); }
.tag-dark  { background: rgba(28,17,8,0.1);     color: var(--dark); }
.tag-sand  { background: rgba(201,180,154,0.3);  color: var(--earth); }

.carta-items { display: flex; flex-direction: column; gap: 0; }
.carta-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(28,17,8,0.06);
  gap: 1rem;
}
.carta-item:last-child { border-bottom: none; }
.carta-item-left { flex: 1; }
.carta-item-name {
  font-size: 0.95rem; font-weight: 500;
  color: var(--dark); margin-bottom: 0.15rem;
  font-family: 'Inter', sans-serif;
}
.carta-item-desc {
  font-size: 0.8rem; color: var(--stone);
  line-height: 1.5;
}
.carta-item-price {
  font-size: 0.9rem; font-weight: 700;
  color: var(--earth); flex-shrink: 0;
  white-space: nowrap;
}
.carta-note {
  font-size: 0.8rem; color: var(--stone);
  font-style: italic; margin-top: 0.75rem;
}

/* ── GALLERY PAGE ────────────────────────── */
.gallery-masonry {
  columns: 3 280px;
  gap: 6px;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.03); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(28,17,8,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--white); background: none; border: none;
  cursor: pointer; line-height: 1; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ── CONTACTO PAGE ───────────────────────── */
.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.contacto-info-panel {
  padding: 4rem 3rem;
  background: var(--white);
  display: flex; flex-direction: column; gap: 2rem;
}
.contacto-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contacto-label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone);
}
.contacto-value { font-size: 1rem; color: var(--dark); line-height: 1.6; }
.contacto-value a { color: var(--earth); }
.contacto-value a:hover { text-decoration: underline; }

.contacto-social-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(28,17,8,0.08);
}
.contacto-social-link {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--dark);
  transition: all 0.2s;
}
.contacto-social-link:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.contacto-map-panel { position: relative; }
.map-directions-btn { display: inline-block; margin-bottom: 0.75rem; background: var(--dark); color: var(--cream); padding: 0.6rem 1.4rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.contacto-map-panel iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: none; display: block;
}

/* info strip */
.info-strip {
  background: var(--dark);
  padding: 4rem 2rem;
}
.info-strip-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.info-strip-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--sand); margin-bottom: 0.5rem;
}
.info-strip-desc {
  font-size: 0.85rem; color: rgba(253,250,245,0.65);
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(253,250,245,0.65);
  padding: 3.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(253,250,245,0.08);
}
.footer-grid {
  max-width: 1000px; margin: 0 auto 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-text {
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--white);
}
.footer-logo-sub {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand);
}
.footer-desc { font-size: 0.82rem; line-height: 1.7; margin-top: 0.5rem; }
.footer-social a {
  font-size: 0.78rem; color: var(--sand);
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-heading {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-info-item { font-size: 0.82rem; line-height: 1.5; }
.footer-info-item a { color: inherit; }
.footer-info-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1000px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,250,245,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.72rem;
}

/* ── FADE IN ─────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ── MOBILE ──────────────────────────────── */
@media (max-width: 768px) {

  /* Row 1: logo + lang switcher en la misma fila */
  nav {
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    height: auto;
  }
  .nav-logo {
    order: 1;
    padding: 0.6rem 1rem;
    gap: 0.45rem;
    flex-shrink: 0;
  }
  .nav-logo-img { height: 32px; width: 32px; }
  .nav-logo-brand { font-size: 0.95rem; }
  /* Ocultar subtítulo en móvil para que logo y banderas quepan en una fila */
  .nav-logo-sub { display: none; }

  .lang-switcher {
    order: 2;
    margin-left: auto;
    padding: 0.6rem 0.8rem;
    flex-shrink: 0;
    gap: 2px;
    align-items: center;
    display: flex;
  }
  .lang-btn { font-size: 1rem; padding: 3px 4px; }

  .hamburger { display: none; }

  /* Row 2: nav links — fondo oscuro, activo destacado con subrayado arena */
  .nav-links {
    order: 3;
    position: static !important;
    width: 100% !important;
    transform: none !important;
    flex-direction: row !important;
    display: flex !important;
    background: var(--dark) !important;
    border-top: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 !important;
    gap: 0;
    margin: 0;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links li { flex: 0 0 auto; }

  .nav-links a {
    display: block;
    font-size: 0.6rem !important;
    padding: 0.8rem 0.9rem !important;
    color: rgba(253,250,245,0.45) !important;
    opacity: 1 !important;
    white-space: nowrap;
    text-align: center;
    position: relative;
    letter-spacing: 0.07em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: rgba(253,250,245,0.8) !important; }
  .nav-links a.active {
    color: var(--white) !important;
    font-weight: 600;
  }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0.55rem; right: 0.55rem;
    height: 2px;
    background: var(--sand);
    border-radius: 1px;
  }
  .nav-links a.nav-cta {
    margin-left: 0 !important;
    border-radius: 0 !important;
    background: rgba(201,180,154,0.18) !important;
    color: var(--sand) !important;
    opacity: 1 !important;
    border-left: 1px solid rgba(201,180,154,0.2);
  }
  .nav-links a.nav-cta:hover {
    background: rgba(201,180,154,0.32) !important;
    color: var(--white) !important;
  }
  .nav-links a.nav-cta::after { display: none; }

  /* Hero: ajustado a 2 filas de nav (~88px) */
  .hero { padding-top: 88px; height: 92svh; min-height: 520px; }
  .hero-logo-img { width: 110px; height: 110px; }
  .hero-btns { gap: 0.7rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.7rem; }

  /* Separación marcada entre hero y sección about */
  .about {
    grid-template-columns: 1fr;
    border-top: 4px solid var(--sand);
  }
  .about-image { height: 260px; }
  .about-image img { transform: none !important; }
  .about-text { padding: 2.5rem 1.5rem; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery-thumb { flex: 0 0 220px; height: 160px; }

  /* Page header: padding-top suficiente para 2 filas de nav */
  .page-header { padding: 5.5rem 1.5rem 2rem; }

  .carta-layout { padding: 2rem 1.25rem 4rem; }
  .carta-section-header { flex-direction: column; gap: 0.4rem; align-items: flex-start; }

  .contacto-layout { grid-template-columns: 1fr; }
  .contacto-map-panel iframe { min-height: 300px; }
  .contacto-info-panel { padding: 2.5rem 1.5rem; }

  .info-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .gallery-masonry { columns: 2 160px; padding: 1rem; }
  .gallery-masonry-item img { transform: none !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }

  .cta-banner { padding: 3.5rem 1.5rem; }
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
