/* Elka Coffee — müşteri dijital menüsü */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --bg: #1e120a;
  --bg-deep: #160c07;
  --bg-soft: #2a1810;
  --surface: #3a2218;
  --surface-2: #442b1e;
  --surface-3: #513224;
  --gold: #c9a96e;
  --gold-2: #ebcd92;
  --terra: #d4724a;
  --terra-2: #e8946a;
  --cream: #f6efdf;
  --cream-2: #e8dcc4;
  --muted: #a68775;
  --muted-2: #765c4f;
  --line: rgba(201, 169, 110, .13);
  --line-strong: rgba(201, 169, 110, .28);
  --green: #32a85a;
  --blue: #2f80ed;
  --radius: 18px;
  --maxw: 1180px;
  --nav-h: 68px;
}

html { min-height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100%;
  background:
    radial-gradient(80% 45% at 50% -15%, rgba(212, 114, 74, .16), transparent 68%),
    var(--bg);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
.app-shell, .m-public-shell, .m-page { min-height: 100dvh; }
.m-public-shell { padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px)); }
.print-root { display: none; }

/* Yükleme */
.m-loading, .m-error {
  min-height: 100dvh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}
.m-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--gold-2);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.m-error { color: var(--terra-2); }

/* Açılış */
#mSplash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(80% 55% at 50% 110%, rgba(212, 114, 74, .2), transparent 64%),
    var(--bg-deep);
  transition: opacity .65s ease, visibility .65s ease;
}
#mSplash.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.sp-logo {
  width: 104px;
  height: 104px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line-strong), 0 24px 70px rgba(0, 0, 0, .38);
  animation: splashPop .75s cubic-bezier(.16, 1, .3, 1);
}
.sp-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-name {
  margin-top: 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  letter-spacing: 8px;
  color: var(--gold-2);
  animation: fadeUp .6s .15s both;
}
.sp-sub {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeUp .6s .25s both;
}
.sp-line {
  width: 1px;
  height: 0;
  margin-top: 28px;
  background: linear-gradient(var(--gold), transparent);
  animation: splashLine .8s .35s forwards;
}
@keyframes splashPop { from { opacity: 0; transform: scale(.8); } }
@keyframes splashLine { to { height: 44px; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Menü üst alanı */
.m-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 24px 42px;
  text-align: center;
  background:
    radial-gradient(55% 150% at 50% -35%, rgba(201, 169, 110, .18), transparent 64%),
    linear-gradient(150deg, #25140b, #3a1f12 58%, #2a160d);
  border-bottom: 1px solid var(--line);
}
.m-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.m-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 19px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  animation: fadeUp .5s .05s both;
}
.m-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-eyebrow {
  margin-bottom: 10px;
  color: var(--terra-2);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeUp .5s .12s both;
}
.m-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 9px;
  color: var(--gold-2);
  animation: fadeUp .5s .2s both;
}
.m-title em { color: var(--terra-2); font-style: italic; }
.m-sub {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeUp .5s .28s both;
}
.m-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 23px;
  animation: fadeUp .5s .35s both;
}
.m-ornament span, .m-footer-deco span { width: 58px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.m-ornament span:last-child, .m-footer-deco span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.m-ornament i, .m-footer-deco i { color: var(--gold); font-size: 10px; font-style: normal; }

/* İçerik */
.m-content { width: min(100%, var(--maxw)); margin: 0 auto; padding: 28px 26px 42px; }
.m-section-label { display: flex; align-items: center; gap: 14px; color: var(--terra-2); }
.m-section-label span, .m-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.m-section-label i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); }
.m-section-help { margin: 8px 0 18px; color: var(--muted); font-size: 12px; }
.m-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

/* Açılır kategori kartları */
.m-category-card {
  position: relative;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #25140d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.m-category-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 22px 54px rgba(0, 0, 0, .3); }
.m-category-card[open] {
  grid-column: 1 / -1;
  border-color: rgba(235, 205, 146, .36);
  background: var(--surface-2);
  transform: none;
}
.m-category-card summary {
  position: relative;
  isolation: isolate;
  min-height: 205px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 27px 25px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.m-category-card summary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 8, 4, .06) 5%, rgba(17, 8, 4, .35) 48%, rgba(17, 8, 4, .94) 100%),
    linear-gradient(90deg, rgba(17, 8, 4, .62), transparent 70%);
}
.m-category-card summary::-webkit-details-marker { display: none; }
.m-cat-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(232, 201, 144, .18), transparent 55%),
    #1d1009;
}
.m-cat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.92) contrast(1.04);
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .3s ease;
}
.m-category-card:hover .m-cat-media img { transform: scale(1.045); filter: saturate(1.04) contrast(1.06); }
.m-cat-symbol {
  color: var(--gold-2);
  font-size: 48px;
  filter: saturate(.75);
}
.m-cat-copy { position: relative; z-index: 2; min-width: 0; display: grid; gap: 5px; }
.m-cat-kicker {
  color: var(--terra-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.m-cat-copy strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.08;
  color: #fff8e9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .5);
}
.m-cat-copy small { color: rgba(246, 239, 223, .72); font-size: 11px; }
.m-cat-action { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; }
.m-cat-chip {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(235, 205, 146, .2);
  background: rgba(22, 12, 7, .64);
  color: var(--gold-2);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.m-cat-arrow {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(235, 205, 146, .22);
  border-radius: 50%;
  background: rgba(22, 12, 7, .68);
  color: var(--gold-2);
  backdrop-filter: blur(8px);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.m-cat-arrow::before,
.m-cat-arrow::after {
  content: '';
  position: absolute;
  top: 15px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease;
}
.m-cat-arrow::before { left: 8px; transform: rotate(45deg); }
.m-cat-arrow::after { right: 8px; transform: rotate(-45deg); }
.m-category-card[open] .m-cat-arrow { color: var(--gold-2); background: rgba(22, 12, 7, .82); }
.m-category-card[open] .m-cat-arrow::before { transform: rotate(-45deg); }
.m-category-card[open] .m-cat-arrow::after { transform: rotate(45deg); }
.m-category-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(201, 169, 110, .06), transparent 34%),
    rgba(25, 13, 8, .28);
  animation: accordionIn .25s ease;
}
@keyframes accordionIn { from { opacity: 0; transform: translateY(-5px); } }
.m-prod {
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(48, 27, 18, .94), rgba(29, 15, 9, .92));
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.m-prod-image {
  grid-row: 1 / -1;
  width: 104px;
  height: 104px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.product-visual { position: relative; overflow: hidden; display: grid; place-items: center; }
.product-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-visual-mark { color: var(--gold-2); font-size: 28px; filter: saturate(.72); }
.m-prod-pending { opacity: .82; }
.m-prod-price.muted { color: var(--muted); font-size: 12px; }
.m-prod:hover { border-color: var(--line-strong); background: rgba(45, 25, 16, .98); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 0, 0, .2); }
.m-prod:hover .product-visual img { transform: scale(1.05); }
.m-prod-info { grid-column: 2; min-width: 0; align-self: end; }
.m-prod-name { color: var(--cream); font-size: 15px; font-weight: 600; line-height: 1.3; }
.m-prod-variants { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .7px; text-transform: uppercase; }
.m-prod-price { grid-column: 2; align-self: start; color: var(--gold-2); font-size: 17px; font-weight: 700; white-space: nowrap; }
.m-prod-prices { grid-column: 2; min-width: 0; display: grid; gap: 5px; align-self: start; }
.m-prc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.m-prc-name { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.m-prc-val { color: var(--gold-2); font-size: 14px; font-weight: 700; white-space: nowrap; }

/* Arama ve iletişim başlıkları */
.m-page-head {
  padding: 42px 26px 34px;
  text-align: center;
  background: linear-gradient(150deg, #24130a, #3a2014);
  border-bottom: 1px solid var(--line);
}
.m-page-head > span { color: var(--terra-2); font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; }
.m-page-head h2 { margin-top: 9px; color: var(--gold-2); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 5vw, 42px); font-weight: 500; }
.m-page-head p { margin-top: 7px; color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.m-search-content { max-width: 920px; }
.m-search-box {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--gold);
}
.m-search-box > span { font-size: 25px; line-height: 1; }
.m-search-box input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--cream); font-size: 16px; }
.m-search-box input::placeholder { color: var(--muted-2); }
.m-search-results { display: grid; gap: 10px; margin-top: 18px; }
.m-search-empty { padding: 44px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.m-result-count { color: var(--terra-2); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.m-search-card { display: grid; gap: 5px; }
.m-search-card .m-prod { background: var(--surface); }
.m-search-cat { margin-left: 10px; color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }

/* İletişim */
.m-contact-content { display: grid; gap: 12px; max-width: 1180px; }
.m-contact-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.m-card-title { padding: 14px 16px 10px; color: var(--terra-2); }
.m-rating-card { padding: 26px; text-align: center; }
.m-card-kicker { color: var(--terra-2); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.m-rating-card h3 { margin-top: 7px; font-family: 'Playfair Display', Georgia, serif; color: var(--gold-2); font-size: 24px; font-weight: 500; }
.m-stars { margin: 15px 0 17px; color: var(--gold); font-size: clamp(29px, 5vw, 40px); letter-spacing: 7px; }
.m-review-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.m-contact-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.m-contact-row:hover { background: var(--surface-2); }
.m-contact-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(61, 160, 90, .15); color: #54c875; font-size: 20px; }
.m-contact-icon.whatsapp { color: #25d366; }
.m-contact-row > span:nth-child(2) { display: grid; gap: 2px; }
.m-contact-row strong { color: var(--cream); font-size: 14px; }
.m-contact-row small { color: var(--muted); font-size: 11px; }
.m-contact-row i { color: var(--muted-2); font-size: 24px; font-style: normal; }
.m-social-grid, .m-map-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 0 14px 14px; }
.m-social-grid a {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(30, 18, 10, .34);
  text-decoration: none;
}
.m-social-grid a span { margin-bottom: 5px; color: var(--terra-2); font-size: 24px; font-weight: 700; }
.m-social-grid a strong { font-size: 13px; }
.m-social-grid a small { color: var(--muted); font-size: 10px; }
.m-address { display: grid; gap: 2px; padding: 2px 16px 15px; color: var(--cream-2); font-size: 13px; }
.m-map-grid a { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(30, 18, 10, .34); color: var(--gold-2); font-size: 12px; font-weight: 700; text-decoration: none; }
.m-hours { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 14px 14px; }
.m-hours div { display: flex; justify-content: space-between; gap: 12px; padding: 10px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.m-hours div:nth-last-child(-n+2) { border-bottom: 0; }
.m-hours div.today { border-radius: 10px; background: rgba(201, 169, 110, .09); color: var(--cream); }
.m-hours strong { color: var(--cream-2); white-space: nowrap; }

/* Alt menü */
.m-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 7px max(12px, calc((100vw - 650px) / 2));
  padding-bottom: calc(7px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(22, 12, 7, .95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.m-bottom-nav button {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
}
.m-bottom-nav button > span { font-size: 22px; line-height: 1; }
.m-bottom-nav button small { font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.m-bottom-nav button.active { color: var(--gold-2); }

/* Alt bilgi */
.m-footer { padding: 32px 20px 20px; text-align: center; }
.m-footer-deco { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 15px; }
.m-footer-text { color: var(--muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.m-footer-brand { margin-top: 11px; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 14px; letter-spacing: 2px; }

/* QR bağlantısından gelindiğinde masayı belirgin gösterir; normal girişte oluşmaz. */
.m-table-badge {
  margin-top: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  padding: 9px 16px 9px 12px;
  border: 1px solid rgba(235, 205, 146, .28);
  border-radius: 999px;
  background: rgba(22, 12, 7, .62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  text-align: left;
}
.m-table-pin {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, .14);
  color: var(--terra-2);
  font-size: 9px;
  box-shadow: inset 0 0 0 1px rgba(235, 205, 146, .12);
}
.m-table-badge > span:last-child { display: grid; gap: 1px; }
.m-table-badge small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.m-table-badge strong { color: var(--gold-2); font-family: 'Playfair Display', Georgia, serif; font-size: 15px; letter-spacing: .3px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-h) + 14px);
  z-index: 9998;
  max-width: calc(100vw - 32px);
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--cream);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
  transition: all .25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

@media (max-width: 980px) {
  .m-category-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --radius: 16px; }
  .m-content { padding: 23px 13px 34px; }
  .m-hero { padding: 40px 18px 34px; }
  .m-logo { width: 68px; height: 68px; border-radius: 17px; }
  .m-category-list { grid-template-columns: 1fr; gap: 12px; }
  .m-category-card summary { min-height: 166px; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 20px 17px; }
  .m-cat-copy strong { font-size: clamp(23px, 7vw, 29px); }
  .m-cat-copy small { font-size: 10px; }
  .m-cat-chip { display: none; }
  .m-category-products { grid-template-columns: 1fr; padding: 10px; }
  .m-prod { grid-template-columns: 92px minmax(0, 1fr); min-height: 112px; padding: 9px; }
  .m-prod-image { width: 92px; height: 92px; }
  .m-page-head { padding: 34px 18px 28px; }
  .m-contact-content { padding-inline: 10px; }
  .m-hours { grid-template-columns: 1fr; }
  .m-hours div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .m-hours div:last-child { border-bottom: 0; }
}

@media (max-width: 390px) {
  .m-category-card summary { min-height: 150px; padding: 17px 15px; }
  .m-prod { grid-template-columns: 76px minmax(0, 1fr); gap: 4px 10px; min-height: 96px; padding: 8px; }
  .m-prod-image { width: 76px; height: 76px; }
  .m-prod-name { font-size: 14px; }
  .m-prod-price { font-size: 15px; }
  .m-social-grid, .m-map-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
