/* =========================================================
   Kemeraltı Dijital Menü — Ana Stil Dosyası
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Barlow:wght@300;400;500&display=swap');

/* ── TEMEL SIFIRLAMA ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ates:    #c84b1a;
  --ates-ac: #e05a25;
  --ates-koy:#9a3510;
  --zemin:   #0e0804;
  --zemin2:  #130a04;
  --zemin3:  #1a1008;
  --zemin4:  #2a1508;
  --altin:   #d4a853;
  --krem:    #f5ede0;
  --krem-s:  #c8b89a;
  --kahve:   #a07050;
  --kahve-k: #6a4a28;
  --kahve-kk:#3a2010;
  --font-bas: 'Playfair Display', Georgia, serif;
  --font-gov: 'Barlow', system-ui, sans-serif;
  --r-sm:    10px;
  --r-md:    14px;
  --r-lg:    18px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-gov);
  background: var(--zemin);
  color: var(--krem);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── SAYFA GEÇİŞ ANİMASYONU ── */
.page-fade { animation: pageFade .35s ease forwards; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── KARŞILAMA EKRANI ── */
.welcome-screen {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.welcome-hero {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.welcome-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,8,4,.20) 0%,
    rgba(14,8,4,.20) 35%,
    rgba(14,8,4,.55) 60%,
    rgba(14,8,4,.85) 78%,
    rgba(14,8,4,1.0) 100%
  );
}

.welcome-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 32px 28px 48px;
}

.logo-wrap {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.logo-circle {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 130px;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
}

.logo-circle img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 130px;
  object-fit: contain;
  border-radius: 0;
}

.brand-eyebrow {
  font-family: var(--font-gov);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--ates);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-name {
  font-family: var(--font-bas);
  font-size: 44px;
  font-weight: 700;
  color: var(--krem);
  line-height: 1.05;
}

.brand-sep {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--ates), transparent);
  margin: 16px 0;
}

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.tag {
  font-family: var(--font-gov);
  font-size: 10px;
  font-weight: 400;
  color: var(--kahve);
  letter-spacing: 1px;
  border: 1px solid var(--zemin4);
  padding: 5px 12px;
  border-radius: 16px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: rgba(200,75,26,.14);
  border: 1px solid rgba(200,75,26,.45);
  padding: 16px 24px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--ates);
  text-transform: uppercase;
  transition: background .25s;
}

.cta-btn:active { background: rgba(200,75,26,.25); }

.cta-arrow {
  width: 20px; height: 20px;
  border: 1px solid rgba(200,75,26,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2.2s ease-in-out infinite;
}

.cta-arrow::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--ates);
  border-bottom: 1.5px solid var(--ates);
  transform: rotate(45deg) translateY(-2px);
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ── SAYFA ÜST BARI ── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 18px 14px;
  border-bottom: 1px solid var(--zemin3);
  position: sticky;
  top: 0;
  background: var(--zemin);
  z-index: 50;
}

/* Dikkat çekici geri butonu */
.ic-btn-geri {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ates);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--ates);
  font-size: 22px;
  font-weight: 700;
  background: rgba(200,75,26,.12);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(200,75,26,.3), 0 0 12px rgba(200,75,26,.2);
  -webkit-box-shadow: 0 0 0 1px rgba(200,75,26,.3), 0 0 12px rgba(200,75,26,.2);
}

.ic-btn-geri:active {
  background: rgba(200,75,26,.3);
}

/* Kategori yıldızları */
.cat-stars { display: flex; gap: 2px; margin-top: 4px; }
.cat-star   { font-size: 10px; color: var(--ates); line-height: 1; }
.cat-star.bos { color: rgba(200,75,26,.25); }

.top-bar-logo {
  width: auto;
  height: 38px;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
}

.top-bar-logo img { width: auto; height: 38px; object-fit: contain; border-radius: 0; }

.top-bar-title {
  font-family: var(--font-gov);
  font-size: 13px;
  color: var(--kahve-k);
  letter-spacing: 2px;
}

.ic-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--zemin4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--kahve);
  font-size: 18px;
  transition: border-color .2s;
}

.ic-btn:active { border-color: var(--ates); }

/* ── BÖLÜM BAŞLIĞI ── */
.section-head { padding: 20px 18px 0; }

.sec-eyebrow {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--ates);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sec-title {
  font-family: var(--font-bas);
  font-size: 30px;
  font-weight: 400;
  color: var(--krem);
  line-height: 1.12;
}

.sec-title em { font-style: italic; color: var(--ates); }

/* ── FİLTRE BALONUKLARI ── */
.chips-wrap {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.chips-wrap::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  border: 1.5px solid rgba(200,75,26,.4);
  border-radius: 16px;
  padding: 7px 15px;
  font-size: 10px;
  font-weight: 400;
  color: var(--kahve);
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all .2s;
}

.chip.aktif {
  background: rgba(200,75,26,.15);
  border-color: var(--ates);
  color: var(--ates);
}

/* ── KATEGORİ KARTLARI ── */
.cat-grid { padding: 0 16px 24px; }

.big-cat-card {
  width: 100%;
  height: 160px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 1.5px solid rgba(200,75,26,.35);
  box-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.big-cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.big-cat-card:active .big-cat-img { transform: scale(1.04); }

.big-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,8,4,.08) 0%, rgba(14,8,4,.88) 100%);
}

.big-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ates);
  color: var(--krem);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 8px;
}

.big-cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.big-cat-name {
  font-family: var(--font-bas);
  font-size: 23px;
  font-weight: 400;
  color: var(--krem);
}

.big-cat-count {
  font-size: 10px;
  font-weight: 300;
  color: var(--kahve);
  letter-spacing: 1px;
  margin-top: 2px;
}

.big-cat-arr {
  width: 30px; height: 30px;
  border: 1px solid rgba(200,75,26,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ates);
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.small-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.small-cat-card {
  height: 120px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1.5px solid rgba(200,75,26,.3);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.small-cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.small-cat-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(14,8,4,.87) 100%);
}

.small-cat-label {
  position: absolute;
  bottom: 10px; left: 11px; right: 8px;
}

.small-cat-name {
  font-family: var(--font-bas);
  font-size: 16px;
  color: var(--krem);
  display: block;
}

.small-cat-count {
  font-size: 9px;
  color: var(--kahve);
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* ── KATEGORİ HERO ── */
.cat-hero {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
}

.cat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cat-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,8,4,.55) 0%, rgba(14,8,4,.97) 100%);
}

.cat-hero-content {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
}

/* ── YEMEK LİSTESİ ── */
.feat-section-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--ates);
  text-transform: uppercase;
  padding: 14px 16px 8px;
}

.feat-card {
  margin: 0 16px 14px;
  border: 1px solid var(--zemin4);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.feat-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.feat-card-ov {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(90deg, rgba(14,8,4,.65) 0%, transparent 55%);
}

.feat-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ates);
  color: var(--krem);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 7px;
}

.feat-card-info {
  padding: 12px 14px;
  background: var(--zemin2);
  border-top: 1px solid var(--zemin3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feat-card-name {
  font-family: var(--font-bas);
  font-size: 19px;
  color: var(--krem);
}

.feat-card-price {
  font-family: var(--font-bas);
  font-size: 18px;
  color: var(--ates);
}

/* Yıldız satırı */
.stars { display: flex; gap: 2px; margin-top: 4px; }
.star  { font-size: 10px; color: var(--ates); line-height: 1; }
.star.bos { color: var(--zemin4); }

/* Yemek liste kartı */
.dish-list-section { padding: 0 16px; }

.dish-list-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--kahve-kk);
  text-transform: uppercase;
  padding: 4px 0 10px;
}

.dish-card {
  background: var(--zemin2);
  border: 1px solid var(--zemin3);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  height: 135px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s;
}

.dish-card:active { border-color: var(--zemin4); }

.dish-card-img {
  width: 135px;
  height: 135px;
  object-fit: cover;
  flex-shrink: 0;
}

.dish-card-info {
  padding: 11px 13px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.dish-card-name {
  font-family: var(--font-bas);
  font-size: 17px;
  color: var(--krem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dish-card-desc {
  font-size: 10px;
  color: var(--kahve-k);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-card-price {
  font-family: var(--font-bas);
  font-size: 24px;
  color: var(--ates);
}

/* ── YEMEK DETAY ── */
.detail-hero {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,8,4,.3) 0%, rgba(14,8,4,.97) 100%);
}

.detail-hero-back {
  position: absolute;
  top: 54px; left: 18px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--krem);
  font-size: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.detail-body { padding: 0 18px 40px; }

.detail-name {
  font-family: var(--font-bas);
  font-size: 34px;
  font-weight: 700;
  color: var(--krem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 18px;
}

.detail-price {
  font-family: var(--font-bas);
  font-size: 26px;
  color: var(--ates);
}

.detail-time {
  font-size: 11px;
  color: var(--kahve);
  letter-spacing: 1px;
}

.detail-time span { color: var(--krem); }

.detail-sep {
  width: 100%;
  height: 1px;
  background: var(--zemin3);
  margin: 18px 0;
}

.detail-section-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--ates);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-desc {
  font-size: 14px;
  color: var(--krem-s);
  line-height: 1.7;
}

.detail-icerik {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.icerik-tag {
  font-size: 11px;
  color: var(--kahve);
  border: 1px solid var(--zemin4);
  padding: 4px 12px;
  border-radius: 12px;
}

/* Galeri */
.gorsel-galeri {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0 4px;
}

.gorsel-galeri::-webkit-scrollbar { display: none; }

.galeri-item {
  flex-shrink: 0;
  width: 130px;
  height: 100px;
  border-radius: var(--r-sm);
  object-fit: cover;
  border: 1px solid var(--zemin4);
}

/* ── YORUM BÖLÜMÜ ── */
.yorum-form-wrap {
  background: var(--zemin2);
  border: 1px solid var(--zemin3);
  border-radius: var(--r-md);
  padding: 18px;
  margin-bottom: 20px;
}

.yorum-form-title {
  font-family: var(--font-bas);
  font-size: 18px;
  color: var(--krem);
  margin-bottom: 14px;
}

.yildiz-sec {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.yildiz-sec .star-btn {
  font-size: 24px;
  color: var(--zemin4);
  transition: color .15s;
  cursor: pointer;
  padding: 2px;
}

.yildiz-sec .star-btn.aktif { color: var(--ates); }

.form-input, .form-textarea {
  width: 100%;
  background: var(--zemin3);
  border: 1px solid var(--zemin4);
  border-radius: var(--r-sm);
  color: var(--krem);
  font-size: 13px;
  padding: 10px 14px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--kahve-k); }
.form-input:focus, .form-textarea:focus { border-color: rgba(200,75,26,.5); }

.form-textarea {
  resize: none;
  height: 90px;
  line-height: 1.5;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--zemin4);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: var(--kahve-k);
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color .2s;
}

.file-upload-label:hover { border-color: rgba(200,75,26,.4); color: var(--kahve); }

.file-upload-label input[type=file] { display: none; }

.submit-btn {
  width: 100%;
  background: rgba(200,75,26,.15);
  border: 1px solid rgba(200,75,26,.45);
  color: var(--ates);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 24px;
  transition: background .2s;
}

.submit-btn:active { background: rgba(200,75,26,.28); }

/* Mevcut yorumlar */
.yorum-kart {
  background: var(--zemin2);
  border: 1px solid var(--zemin3);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 10px;
}

.yorum-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.yorum-tarih {
  font-size: 10px;
  color: var(--kahve-k);
  letter-spacing: .5px;
}

.yorum-metin {
  font-size: 13px;
  color: var(--krem-s);
  line-height: 1.6;
  margin-bottom: 8px;
}

.yorum-gorsel {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--zemin4);
}

/* ── BİLDİRİM (TOAST) ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--zemin2);
  border: 1px solid var(--zemin4);
  color: var(--krem);
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 24px;
  opacity: 0;
  transition: all .3s;
  white-space: nowrap;
  z-index: 999;
  pointer-events: none;
}

.toast.goster {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.basarili { border-color: rgba(200,75,26,.5); color: var(--ates); }

/* ── YÜKLEME EKRANI ── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--zemin);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
  transition: opacity .4s;
}

.loading-screen.gizle { opacity: 0; pointer-events: none; }

.loading-logo {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 130px;
  border-radius: 0;
  overflow: visible;
  border: none;
  animation: pulse 1.8s ease-in-out infinite;
}

.loading-logo img { width: auto; height: auto; max-width: 180px; max-height: 130px; object-fit: contain; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,75,26,.3); }
  50%      { box-shadow: 0 0 0 12px rgba(200,75,26,0); }
}

.loading-text {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--ates);
  text-transform: uppercase;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,100%{ opacity: .5; }
  50%    { opacity: 1;   }
}

/* ── PLACEHOLDER GÖRSELLER ── */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: var(--zemin3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kahve-k);
  font-size: 28px;
}

/* ── YORUM SAYISI ROZET ── */
.yorum-badge {
  font-size: 10px;
  color: var(--kahve-k);
  letter-spacing: .5px;
  margin-left: 6px;
}

/* ── GÖRÜNÜRLÜK DÜZELTMELERİ ── */

/* İçindekiler etiketleri */
.icerik-tag {
  font-size: 11px !important;
  color: var(--kahve) !important;
  border: 1.5px solid rgba(200,75,26,.45) !important;
  padding: 5px 13px !important;
  border-radius: 12px !important;
  background: rgba(200,75,26,.06) !important;
}

/* Yorum form kutusu */
.yorum-form-wrap {
  background: var(--zemin2) !important;
  border: 1.5px solid rgba(200,75,26,.35) !important;
  border-radius: var(--r-md) !important;
  padding: 18px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.3) !important;
}

/* Yorum yazı alanı */
.form-input, .form-textarea {
  border: 1.5px solid rgba(200,75,26,.3) !important;
  background: rgba(200,75,26,.04) !important;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--ates) !important;
}

/* Fotoğraf ekle butonu */
.file-upload-label {
  border: 1.5px dashed rgba(200,75,26,.45) !important;
  color: var(--kahve) !important;
}
.file-upload-label:hover {
  border-color: var(--ates) !important;
  color: var(--krem) !important;
}

/* Yorum kartları */
.yorum-kart {
  background: var(--zemin2) !important;
  border: 1.5px solid rgba(200,75,26,.3) !important;
  border-radius: var(--r-md) !important;
  padding: 14px !important;
  margin-bottom: 10px !important;
}

/* Kategori hero geri butonu (slayt içinde) */
.slayt-back {
  border: 2px solid var(--ates) !important;
  box-shadow: 0 0 10px rgba(200,75,26,.3) !important;
}
