/* ─── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --red:        #C41230;
  --red-dark:   #8B0D21;
  --red-light:  #E8142A;
  --black:      #0D0D0D;
  --gray-900:   #1A1A1A;
  --gray-800:   #2A2A2A;
  --gray-500:   #6B6B6B;
  --gray-200:   #E5E5E5;
  --gray-100:   #F5F4F2;
  --white:      #FFFFFF;
  --gold:       #C9A96E;
  --gold-light: #E8D49A;
  --veg-bg:     #161610;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
p  { font-family: 'Lato', sans-serif; }

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem;
  padding: 12px 28px; border-radius: 50px; transition: all var(--transition);
  white-space: nowrap; gap: 6px;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,18,48,.35); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-sm { padding: 8px 20px; font-size: .82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: var(--gray-900); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.logo-white { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.85); letter-spacing: .02em; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn { display: flex; align-items: center; gap: 4px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .08em; padding: 6px 12px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.25); transition: all var(--transition); }
.lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,.6); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--gray-900); padding: 16px 24px 24px; gap: 8px; }
.mobile-menu a { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--white); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, #a01028 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 80px; min-height: 100vh; }
.hero-eyebrow { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.hero-title { color: var(--white); margin-bottom: 20px; text-wrap: balance; }
.hero-title strong { color: var(--white); font-weight: 900; }
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--white); border-radius: 50px; padding: 10px 20px; font-size: .9rem; }
.hero-badge strong { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-wrap { position: relative; width: 340px; height: 360px; }
.meal-card {
  width: 280px; height: 280px; border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px; position: absolute; top: 40px; left: 30px;
  box-shadow: var(--shadow-lg);
}
.meal-card-tag { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); background: rgba(255,255,255,.15); border-radius: 50px; padding: 5px 14px; align-self: flex-start; }
.meal-card-dots { display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-green { background: #4CAF50; }
.dot-yellow { background: #FFC107; }
.dot-red { background: #FF5722; }
.hero-stat-card { position: absolute; background: var(--white); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); text-align: center; }
.hero-stat-card:not(.hero-stat-right) { top: 0; right: 0; }
.hero-stat-right { bottom: 0; left: 0; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: .75rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; display: flex; align-items: flex-start; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: rgba(255,255,255,.6); border-radius: 2px; animation: scrollWheel 1.8s infinite; }
@keyframes scrollWheel { 0%, 100% { opacity: 1; transform: translateY(0); } 50% { opacity: .3; transform: translateY(8px); } }

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 12px auto 0; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.7); }
.section-tag { font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); display: inline-block; margin-bottom: 10px; }
.section-header.light .section-tag { color: var(--gold); }

/* ─── Values ─────────────────────────────────────────────────────────────────── */
.values { padding: 96px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card { padding: 32px 24px; border-radius: var(--radius); border: 1.5px solid var(--gray-200); transition: all var(--transition); }
.value-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(196,18,48,.1); transform: translateY(-4px); }
.value-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--gray-500); font-size: .95rem; }

/* ─── Menu Section ───────────────────────────────────────────────────────────── */
.menu-section { padding: 96px 0; background: var(--gray-900); }
.menu-section .section-tag { color: var(--gold); }
.menu-tabs { display: flex; gap: 8px; margin-bottom: 40px; background: rgba(255,255,255,.06); border-radius: 50px; padding: 6px; width: fit-content; margin-left: auto; margin-right: auto; }
.menu-tab { display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.5); padding: 10px 24px; border-radius: 50px; transition: all var(--transition); }
.menu-tab svg { width: 18px; height: 18px; }
.menu-tab.active { background: var(--red); color: var(--white); }
.menu-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,.08); }

.menu-board { display: grid; grid-template-columns: 1fr; gap: 16px; }
.menu-day-row {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: 0;
  background: rgba(255,255,255,.04); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden; transition: border-color var(--transition);
}
.menu-day-row:hover { border-color: rgba(255,255,255,.18); }
.menu-day-label {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
  background: rgba(196,18,48,.15); border-right: 1px solid rgba(255,255,255,.08);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
}
.menu-day-label.veg { background: rgba(201,169,110,.12); }
.menu-option {
  padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.06);
}
.menu-option:last-child { border-right: none; }
.menu-option-num { font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.menu-option-desc { font-family: 'Lato', sans-serif; font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.55; }
.menu-option-desc.no-service { color: rgba(255,255,255,.35); font-style: italic; }
.menu-side { grid-column: 2 / -1; padding: 10px 28px 20px; display: flex; align-items: baseline; gap: 8px; }
.menu-side-label { font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.menu-side-desc { font-family: 'Lato', sans-serif; font-size: .88rem; color: rgba(255,255,255,.55); }

.menu-loading { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 60px; color: rgba(255,255,255,.4); }
.spinner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--red); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.no-menu { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 80px 24px; text-align: center; color: rgba(255,255,255,.6); }
.no-menu svg { width: 60px; height: 60px; opacity: .5; }
.no-menu h3 { color: var(--white); }
.no-menu p { max-width: 380px; }
.hidden { display: none !important; }

/* ─── Offers Section ─────────────────────────────────────────────────────────── */
.offers-section { padding: 96px 0; background: var(--white); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card {
  padding: 36px 28px; border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.offer-card.offer-highlight { background: var(--red); border-color: var(--red); }
.offer-card.offer-highlight h3,
.offer-card.offer-highlight p { color: var(--white); }
.offer-card.offer-highlight p strong { color: var(--white); }
.offer-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.25); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.offer-icon { font-size: 2.4rem; line-height: 1; }
.offer-card h3 { font-size: 1.25rem; margin: 0; }
.offer-card p { font-size: .95rem; color: var(--gray-500); line-height: 1.6; }
.offer-card p strong { color: var(--gray-900); font-weight: 700; }
.payment-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.payment-chips span { background: var(--gray-100); border-radius: 50px; padding: 5px 14px; font-size: .82rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--gray-900); }

/* ─── How It Works ───────────────────────────────────────────────────────────── */
.how-section { padding: 96px 0; background: var(--gray-100); }
.steps-grid { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: center; gap: 8px; }
.step { text-align: center; padding: 36px 24px; }
.step-num { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--red); opacity: .15; line-height: 1; margin-bottom: 16px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--gray-500); font-size: .95rem; }
.step-arrow { font-size: 1.5rem; color: var(--gray-200); text-align: center; }

/* ─── CTA Band ───────────────────────────────────────────────────────────────── */
.cta-band { background: var(--red); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 10px; font-size: 1rem; }
.cta-band strong { color: var(--white); font-family: 'Poppins', sans-serif; }

/* Beautiful WhatsApp hero button */
.cta-wa-group { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.wa-btn-hero {
  display: flex; align-items: center; gap: 16px;
  background: #25D366;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white); border-radius: 18px;
  padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.2);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; border: 2px solid rgba(255,255,255,.2);
}
.wa-btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37,211,102,.5), 0 4px 16px rgba(0,0,0,.2);
}
.wa-btn-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-btn-icon svg { width: 28px; height: 28px; }
.wa-btn-text { display: flex; flex-direction: column; }
.wa-btn-label { font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; opacity: .85; letter-spacing: .06em; text-transform: uppercase; }
.wa-btn-number { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: .02em; line-height: 1.2; }
.cta-alt-phone { font-family: 'Lato', sans-serif; font-size: .85rem; color: rgba(255,255,255,.6); text-align: center; }
.cta-alt-phone a { color: rgba(255,255,255,.85); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Floating WhatsApp Button ───────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; color: var(--white);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,.6); }
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.wa-float-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid rgba(37,211,102,.5);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float-inner { display: flex; align-items: center; justify-content: center; }
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.18); opacity: 0; }
}
.wa-float-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(8px);
  background: var(--black); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .78rem;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all .25s ease;
}
.wa-float-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -6px; transform: translateY(-50%);
  border: 4px solid transparent; border-left-color: var(--black);
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--black); padding: 72px 0 0; color: rgba(255,255,255,.65); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 14px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-links a svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6); }
.social-links a:hover { background: var(--red); }
.social-links a:hover svg { fill: var(--white); }
.footer-contact h4, .footer-menu h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 20px; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-contact p { margin-bottom: 8px; font-size: .9rem; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--white); }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { font-size: .9rem; transition: color var(--transition); }
.footer-menu a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; font-size: .82rem; }

/* ─── Animations ─────────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeIn .8s ease forwards; }
.fade-in-delay { animation-delay: .2s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .menu-day-row { grid-template-columns: 1fr; }
  .menu-day-label { writing-mode: horizontal-tb; transform: none; padding: 14px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-wa-group { width: 100%; align-items: stretch; }
  .wa-btn-hero { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float-tooltip { display: none; }
}
@media (max-width: 480px) {
  .menu-tab span { display: none; }
  .menu-tabs { width: 100%; }
  .menu-tab { flex: 1; justify-content: center; }
}
