/* =====================================================
   Warung Una Una — styles
   Tropical warung look: warm sand, terracotta, ocean blues
   ===================================================== */

:root {
  /* Palette */
  --volcanic: #2B1B17;
  --terracotta: #C84B31;
  --terracotta-soft: #E07A5F;
  --sunset: #F4A261;
  --sand: #F5E8D0;
  --sand-warm: #FBE6C6;
  --coconut: #FFFBF2;
  --ocean-deep: #1B4965;
  --ocean: #5FA8D3;
  --palm: #4A7C59;
  --palm-soft: #87B38D;
  --bark: #5C3A21;
  --ink: #2C2520;
  --muted: #7A6A5C;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Spacing */
  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(43, 27, 23, 0.08), 0 2px 6px rgba(43, 27, 23, 0.04);
  --shadow-lg: 0 24px 60px rgba(43, 27, 23, 0.14);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--coconut);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; color: var(--volcanic); margin: 0 0 0.4em; line-height: 1.1; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin: 0 0 0.8em;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.4em;
}
.section-lead, .lead {
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 60ch;
}
.lead { color: var(--ink); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.4em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.55em 1em; font-size: 0.85rem; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { background: #1ebe5a; }

.btn-ghost {
  background: transparent;
  color: var(--volcanic);
  border: 1.5px solid var(--volcanic);
}
.btn-ghost:hover { background: var(--volcanic); color: var(--coconut); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 242, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(200, 75, 49, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--volcanic);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bark); margin-top: 4px; white-space: nowrap; }

.primary-nav {
  display: flex;
  gap: 1.6rem;
}
.primary-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.2em 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  background: rgba(200, 75, 49, 0.08);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bark);
  padding: 0.4em 0.65em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch button:hover { color: var(--terracotta); }
.lang-switch button.is-active {
  background: var(--terracotta);
  color: #fff;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--volcanic);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid rgba(200, 75, 49, 0.12);
  background: var(--coconut);
}
.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(92, 58, 33, 0.18);
}
.mobile-menu[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0 7rem;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 760px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  line-height: 0.92;
  margin: 0.1em 0 0.4em;
  letter-spacing: -0.035em;
}
.hero-title .line { display: block; }
.hero-title .line-1 { color: var(--volcanic); }
.hero-title .line-2 { color: var(--terracotta); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 52ch;
  color: var(--ink);
  background: rgba(255, 251, 242, 0.6);
  display: inline-block;
  padding: 0.2em 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255, 251, 242, 0.85);
  color: var(--volcanic);
  padding: 0.45em 0.9em;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(43, 27, 23, 0.08);
}
.pill svg { color: var(--terracotta); }
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.05); }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }

.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 1;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }

/* ---------- About ---------- */
.section-about { background: var(--coconut); }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-copy .lead { margin-bottom: 1.2em; }
.value-list {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7em 1.5em;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.95rem;
  color: var(--ink);
}
.vl-ico { font-size: 1.2rem; }

.about-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(200, 75, 49, 0.15);
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(200, 75, 49, 0.25);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.card-stamp {
  width: 90px; height: 90px;
  margin: -60px auto 1rem;
  filter: drop-shadow(0 8px 16px rgba(43, 27, 23, 0.18));
}
.about-card h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0.6em;
}
.about-card p {
  font-size: 0.98rem;
  color: var(--ink);
  text-align: center;
}
.signature {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--terracotta);
  text-align: center;
  margin-top: 0.6em;
}

/* ---------- Menu ---------- */
.section-menu {
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 162, 97, 0.10), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(95, 168, 211, 0.10), transparent 40%),
    var(--sand);
  position: relative;
}
.section-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(92, 58, 33, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.section-menu > .container { position: relative; }

.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 64ch; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .eyebrow { display: inline-block; }
.section-header.center .section-lead { margin: 0 auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 980px) {
  .menu-grid > .menu-card:nth-child(4),
  .menu-grid > .menu-card:nth-child(5) {
    grid-column: span 3;
  }
  .menu-grid { grid-template-columns: repeat(6, 1fr); }
  .menu-grid > .menu-card:nth-child(1),
  .menu-grid > .menu-card:nth-child(2),
  .menu-grid > .menu-card:nth-child(3) { grid-column: span 2; }
}
.menu-card {
  background: var(--coconut);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2vw, 1.8rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 58, 33, 0.08);
  position: relative;
  overflow: hidden;
  container-type: inline-size;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--sunset));
}
.menu-card-head { margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px dashed rgba(92, 58, 33, 0.22); }
.menu-card-head h3 {
  font-size: 1.35rem;
  margin: 0 0 0.2em;
  color: var(--volcanic);
}
.menu-card-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

.dishes { list-style: none; padding: 0; margin: 0; }
.dishes li { padding: 0.55rem 0; min-width: 0; }
.dishes li + li { border-top: 1px dotted rgba(92, 58, 33, 0.12); }

.dish-head {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  min-width: 0;
  flex-wrap: nowrap;
}
.dish-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--volcanic);
  flex: 0 1 auto;
  min-width: 0;
}
.dots {
  flex: 1 1 1.5rem;
  min-width: 1rem;
  height: 1px;
  align-self: center;
  background-image: radial-gradient(circle, rgba(92, 58, 33, 0.4) 1px, transparent 1.2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 0.2em;
  transform: translateY(0.32em);
}
.dish-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.92rem;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: auto;
}
.dish-desc {
  margin: 0.2em 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.dishes.two-col {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.6rem;
}
.dishes.two-col li { padding: 0.5rem 0; }
.dishes.two-col .dish-name { font-size: 0.96rem; }
.dishes.two-col .dish-price { font-size: 0.88rem; }
.dishes.two-col .dish-head { gap: 0.4em; }
.dishes.two-col .dish-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}
.dishes.two-col .dots { display: none; }
@container (min-width: 440px) {
  .dishes.two-col { grid-template-columns: 1fr 1fr; }
  .dishes.two-col li { border-top: 0 !important; border-bottom: 1px dotted rgba(92, 58, 33, 0.12); }
  .dishes.two-col li:nth-last-child(-n+2) { border-bottom: 0; }
}

.menu-footnote {
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  max-width: 60ch;
}

/* ---------- Hours ---------- */
.section-hours {
  background: var(--ocean-deep);
  color: var(--coconut);
  position: relative;
  overflow: hidden;
}
.section-hours::before, .section-hours::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.section-hours::before { background: var(--ocean); top: -160px; left: -120px; }
.section-hours::after { background: var(--terracotta); bottom: -160px; right: -120px; opacity: 0.3; }

.section-hours .section-title { color: var(--coconut); }
.section-hours .eyebrow { color: var(--sunset); }

.hours-wrap { position: relative; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}
.hours-card {
  background: rgba(255, 251, 242, 0.06);
  border: 1px solid rgba(255, 251, 242, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hours-card:hover { transform: translateY(-3px); background: rgba(255, 251, 242, 0.10); }
.hours-ico { font-size: 2rem; margin-bottom: 0.6rem; }
.hours-card h3 { color: var(--sunset); font-size: 1.2rem; margin: 0 0 0.3em; }
.hours-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--coconut);
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
}
.hours-card p { font-size: 0.92rem; color: rgba(255, 251, 242, 0.78); margin: 0; }

.hours-note {
  text-align: center;
  margin: 2.5rem auto 0;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--sunset);
  max-width: 50ch;
}

/* ---------- Location ---------- */
.section-location { background: var(--coconut); }
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.getting-block { margin-top: 1.5rem; }
.getting-block h3 { font-size: 1.25rem; margin-bottom: 0.6em; }
.getting-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 1.2rem;
}
.getting-list li {
  counter-increment: step;
  padding: 0.9rem 0 0.9rem 3rem;
  position: relative;
  border-bottom: 1px dashed rgba(92, 58, 33, 0.2);
}
.getting-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0.9rem;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--coconut);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.getting-list li strong {
  display: block;
  color: var(--volcanic);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.getting-list li span { font-size: 0.95rem; color: var(--muted); }
.getting-tip {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--terracotta);
  margin-top: 1rem;
}

.location-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 75, 49, 0.15);
}
.island-illu {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 1rem;
}
.location-meta p { font-size: 0.95rem; color: var(--ink); margin: 0; }
.location-meta strong { font-family: var(--font-display); color: var(--terracotta); }

/* ---------- Contact ---------- */
.section-contact {
  background:
    linear-gradient(180deg, var(--sand) 0%, var(--sand-warm) 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--coconut);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 58, 33, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}
.contact-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.contact-card > div { min-width: 0; flex: 1 1 auto; }
.contact-ico {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.contact-card h3 {
  font-size: 1rem;
  margin: 0 0 0.15em;
  color: var(--volcanic);
  line-height: 1.25;
}
.contact-card h3 span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-block;
}
.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--volcanic);
  color: rgba(255, 251, 242, 0.78);
  padding: 2.6rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { background: var(--coconut); border-radius: 50%; padding: 4px; }
.f-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--coconut);
  margin: 0;
}
.f-tagline { font-size: 0.85rem; margin: 0.2em 0 0; color: rgba(255, 251, 242, 0.6); }
.footer-meta p, .footer-legal p { margin: 0.15em 0; font-size: 0.85rem; }
.footer-legal { text-align: right; }
.footer-legal a { color: var(--sunset); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .lang-switch button { padding: 0.35em 0.5em; font-size: 0.68rem; }
  .header-tools .btn-whatsapp { display: none; }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; gap: 1rem; }
  .footer-legal { text-align: left; }
}

@media (max-width: 600px) {
  .hero { min-height: 78vh; padding-top: 2.5rem; }
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
  .value-list { grid-template-columns: 1fr; }
  .lang-switch button { padding: 0.32em 0.45em; font-size: 0.66rem; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
  .header-inner { height: 64px; gap: 0.5rem; }
  .header-tools { gap: 0.4rem; }
  .menu-card { padding: 1.2rem; }
  .dish-name { font-size: 0.98rem; }
  .dish-head { flex-wrap: wrap; }
  .dots { min-width: 1.5rem; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 0.98rem; }
  .brand-mark { width: 36px; height: 36px; }
  .lang-switch { padding: 2px; }
  .lang-switch button { padding: 0.3em 0.4em; font-size: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}
