:root {
  --white: #ffffff;
  --black: #070707;
  --soft: #f7f3ec;
  --line: #e8e2d8;
  --text: #1f2933;
  --muted: #6b7280;
  --gold: #b08a4a;
  --navy: #111827;
  --brown: #8b5e2e;
  --rose: #8b1e3f;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

.premium-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.top-mini-nav {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 0 42px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #333;
}

.main-header-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: 310px 1fr 330px;
  align-items: center;
  gap: 28px;
  padding: 12px 42px;
  border-top: 1px solid #f2f2f2;
}

.brand-logo img {
  height: 92px;
  max-width: 380px;
  object-fit: contain;
}

.search-box {
  height: 54px;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #fff;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  letter-spacing: 1px;
  color: #333;
}

.search-box span {
  font-size: 26px;
  transform: rotate(-20deg);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
  color: #111;
}

.header-actions a {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.category-menu {
  min-height: 56px;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 78px);
  align-items: center;
  border-top: 1px solid #f1f1f1;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.category-menu a {
  padding: 18px 0;
  border-bottom: 2px solid transparent;
  transition: 0.25s;
}

.category-menu a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.page-content {
  width: 100%;
}

.premium-hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(176,138,74,0.12), transparent 38%),
    linear-gradient(180deg, #fbf7ef 0%, #ffffff 74%);
  border-bottom: 1px solid var(--line);
}

.hero-logo-wrap {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero-logo-img {
  width: min(720px, 82vw);
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto 26px;
}

.badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 16px;
  border: 1px solid rgba(176,138,74,0.35);
  color: var(--brown);
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.hero h1 {
  color: #111;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 18px;
  color: #444;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: 0.8px;
  border: 1px solid #111;
  transition: 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.primary { background: #111; color: white; }
.secondary { background: white; color: #111; }
.outline { background: transparent; color: #111; }

.premium-services {
  background: #fff;
  color: #111;
  width: min(1500px, calc(100% - 42px));
  margin: 46px auto 80px;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  padding-bottom: 38px;
}

.premium-services div {
  display: grid;
  grid-template-columns: 78px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.premium-services div:last-child {
  border-right: none;
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #050505;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  grid-row: span 2;
}

.premium-services strong {
  font-size: 17px;
  letter-spacing: 1px;
}

.premium-services span:not(.service-icon) {
  color: #444;
  font-size: 15px;
}

.section {
  width: min(1220px, calc(100% - 42px));
  margin: 88px auto;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title p,
.section-label {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.section-title h2,
.about h2,
.cta h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  color: #111;
  margin-top: 8px;
  font-weight: 500;
}

.section-note {
  display: block;
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
}

.category-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.product-card,
.contact-card,
.about-text,
.about-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
  transition: 0.25s;
}

.category-card:hover,
.product-card:hover,
.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-card span {
  font-size: 34px;
}

.category-card h3,
.product-card h3,
.contact-card h3 {
  color: #111;
  margin: 14px 0 8px;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.category-card p,
.product-card p,
.contact-card p,
.about p,
.cta p {
  color: var(--muted);
}

.products-section {
  background: #fafafa;
  padding: 58px;
  border: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid #111;
  background: white;
  color: #111;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 900;
  transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #111;
  color: white;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-image {
  height: 230px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(176,138,74,0.14), transparent 40%),
    linear-gradient(180deg, #fffaf2, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.product-category,
.product-audience {
  display: inline-block;
  border: 1px solid var(--line);
  background: white;
  color: #111;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.small-btn {
  display: inline-flex;
  padding: 10px 14px;
  background: #111;
  color: white;
  font-weight: 900;
  font-size: 13px;
  transition: 0.25s;
  border: 1px solid #111;
}

.small-btn:hover { transform: translateY(-2px); }
.small-btn.light { background: white; color: #111; }

.about {
  width: min(1220px, calc(100% - 42px));
  margin: 90px auto;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 24px;
}

.about p {
  margin-top: 16px;
}

.about-box ul {
  margin-top: 18px;
  list-style: none;
}

.about-box li {
  margin: 12px 0;
  padding-left: 26px;
  position: relative;
  font-weight: 700;
}

.about-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.cta {
  width: min(1080px, calc(100% - 42px));
  margin: 90px auto;
  text-align: center;
  background: #111;
  color: white;
  padding: 58px 32px;
}

.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,0.72); margin: 12px 0 24px; }

.contact {
  width: min(1220px, calc(100% - 42px));
  margin: 90px auto;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 18px;
}

.contact-lines a {
  color: #111;
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: white;
  font-weight: 900;
  padding: 14px 18px;
  border: 1px solid #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.20);
  z-index: 900;
}

.premium-footer {
  background: #070707;
  color: #fff;
  padding: 70px 56px 24px;
  margin-top: 100px;
}

.footer-grid {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1.4fr;
  gap: 48px;
}

.premium-footer h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.premium-footer a {
  display: block;
  color: rgba(255,255,255,0.80);
  margin: 10px 0;
  font-size: 14px;
}

.footer-brand img {
  width: min(330px, 100%);
  filter: invert(1) grayscale(1);
  opacity: 0.92;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-bottom {
  width: min(1420px, 100%);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

.gender-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 18px 24px;
}

.gender-modal.show { display: flex; }

.gender-box {
  width: min(760px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
  padding: 42px;
  text-align: center;
  position: relative;
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gender-close {
  position: absolute;
  right: 22px;
  top: 16px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.gender-mini {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 14px;
  color: var(--gold);
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 1px;
}

.gender-box h2 {
  color: #111;
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
  font-weight: 500;
}

.gender-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gender-choice {
  border: 1px solid #111;
  background: #111;
  color: white;
  padding: 22px 18px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.25s;
  text-transform: uppercase;
}

.gender-choice:nth-child(1) { background: #111; }
.gender-choice:nth-child(2) { background: #fff; color: #111; }

.gender-choice:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.gender-skip {
  margin-top: 18px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

.reveal { opacity: 0; transform: translateY(28px); transition: 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .main-header-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-logo img {
    margin: 0 auto;
  }

  .header-actions {
    justify-content: center;
  }

  .category-menu {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 18px;
    gap: 28px;
  }

  .premium-services,
  .category-grid,
  .product-grid,
  .contact-grid,
  .about,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .top-mini-nav {
    justify-content: center;
    gap: 14px;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-header-row {
    padding: 12px 18px;
  }

  .brand-logo img {
    height: auto;
    max-height: 76px;
    max-width: 250px;
  }

  .search-box {
    height: 48px;
  }

  .header-actions {
    gap: 12px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .premium-hero {
    min-height: 520px;
  }

  .hero-logo-img {
    width: 92vw;
  }

  .premium-services,
  .category-grid,
  .product-grid,
  .contact-grid,
  .about,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .premium-services div {
    grid-template-columns: 64px 1fr;
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .products-section {
    padding: 34px 18px;
  }

  .premium-footer {
    padding: 50px 24px 24px;
  }

  .gender-actions {
    grid-template-columns: 1fr;
  }

  .gender-box {
    padding: 34px 20px;
  }
}


/* V8 - Hero alanını daha dolu premium vitrin haline getirme */
.premium-hero {
  min-height: 560px;
  display: block;
  background:
    radial-gradient(circle at 50% 30%, rgba(176,138,74,0.13), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, #ffffff 78%);
  border-bottom: 1px solid var(--line);
  padding: 54px 0 30px;
}

.hero-layout {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-left .badge {
  margin: 0 0 18px;
}

.hero-left h1 {
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-left .hero-text {
  margin: 0 0 24px;
  max-width: 470px;
}

.hero-left .hero-buttons {
  justify-content: flex-start;
}

.hero-center {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 8px;
}

.hero-logo-img {
  width: min(760px, 100%);
  max-height: 360px;
  object-fit: contain;
  margin: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-showcase {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  padding: 22px;
  transition: 0.25s;
}

.mini-showcase:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow);
}

.mini-showcase span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.mini-showcase h3 {
  color: #111;
  margin: 6px 0;
  font-size: 22px;
  font-weight: 500;
}

.mini-showcase p {
  color: var(--muted);
  font-size: 14px;
}

.hero-strip {
  width: min(1360px, calc(100% - 44px));
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
}

.hero-strip a {
  padding: 16px 28px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.7px;
  color: #111;
  transition: 0.25s;
}

.hero-strip a:first-child {
  border-left: 1px solid var(--line);
}

.hero-strip a:hover {
  background: #111;
  color: white;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left .badge,
  .hero-left .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-left .hero-buttons {
    justify-content: center;
  }

  .hero-center {
    min-height: 260px;
  }

  .hero-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-strip {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-strip a {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .premium-hero {
    padding-top: 34px;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-center {
    min-height: 220px;
    padding: 22px;
  }
}


/* V9 - Logo büyütme ve arka planı logoyla uyumlama */
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img,
.hero-logo-img {
  display: block;
  object-fit: contain;
}

.hero-center {
  position: relative;
}

.hero-center::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle at center, rgba(176, 138, 74, 0.10), transparent 58%);
  z-index: 0;
}

.hero-center .hero-logo-img {
  position: relative;
  z-index: 1;
}

.premium-header {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
}

.main-header-row {
  min-height: 104px;
}

@media (max-width: 720px) {
  .brand-logo img {
    max-width: 300px;
    height: auto;
    max-height: 86px;
  }

  .hero-logo-img {
    width: 96%;
    max-height: 240px;
  }
}


/* V10 - Beymen tarzı tüm kategoriler için büyük kutular */
.category-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  align-items: start;
}

.premium-category-card {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.premium-category-card:hover {
  transform: none;
  box-shadow: none;
}

.category-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 28%),
    linear-gradient(180deg, #f9f6f0 0%, #f0ebe2 100%);
}

.visual-1 {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.4), transparent 24%),
    linear-gradient(180deg, #dbeafe 0%, #f8fafc 55%, #e5e7eb 100%);
}
.visual-2 {
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,0.45), transparent 22%),
    linear-gradient(180deg, #fff7ed 0%, #fef3c7 48%, #f5f5f4 100%);
}
.visual-3 {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 24%),
    linear-gradient(180deg, #fce7f3 0%, #ffe4e6 48%, #faf5ff 100%);
}
.visual-4 {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.55), transparent 24%),
    linear-gradient(180deg, #fff1f2 0%, #ffe4e6 48%, #fefce8 100%);
}
.visual-5 {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 24%),
    linear-gradient(180deg, #ecfeff 0%, #cffafe 48%, #eff6ff 100%);
}
.visual-6 {
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.4), transparent 24%),
    linear-gradient(180deg, #fef3c7 0%, #fde68a 42%, #fff7ed 100%);
}

.category-big-icon {
  font-size: 88px;
  filter: saturate(0.9);
  opacity: 0.95;
}

.category-content {
  text-align: center;
  padding: 18px 10px 0;
}

.category-content h3 {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.category-content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 10px;
}

.category-discover {
  border: none;
  background: transparent;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.category-discover:hover {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-content h3 {
    font-size: 20px;
  }

  .category-content p {
    font-size: 15px;
  }
}


/* V11 - Cinsiyet seçim modalı küçültüldü ve tam ortaya alındı */
.gender-modal {
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
}

.gender-box {
  width: min(780px, calc(100vw - 48px)) !important;
  max-width: 780px !important;
  padding: 28px 28px 24px !important;
  text-align: center;
}

.gender-mini {
  margin: 0 auto 14px !important;
  padding: 6px 14px !important;
  font-size: 14px !important;
}

.gender-box h2 {
  max-width: 700px !important;
  margin: 0 auto 24px !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  line-height: 1.28 !important;
}

.gender-actions {
  gap: 14px !important;
}

.gender-choice {
  padding: 18px 16px !important;
  font-size: 22px !important;
}

.gender-close {
  right: 18px !important;
  top: 10px !important;
  font-size: 30px !important;
}

.gender-skip {
  margin-top: 14px !important;
  font-size: 14px !important;
}

@media (max-width: 720px) {
  .gender-modal {
    padding: 16px !important;
  }

  .gender-box {
    width: min(100vw - 24px, 560px) !important;
    padding: 24px 18px 20px !important;
  }

  .gender-box h2 {
    font-size: clamp(18px, 6vw, 28px) !important;
    margin-bottom: 18px !important;
  }

  .gender-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .gender-choice {
    font-size: 20px !important;
    padding: 16px 12px !important;
  }
}
