/* Repaired merge of sub-splits */

/* Repaired merge of sub-splits */

/**
 * Zookzy vacation UI — Google clarity + Sri Lanka warmth.
 * Подключается после style.css и zookzy-vacation-tokens.css.
 */

/* ═══════════════════════════════════════════════════════════════
   GLOBAL — typography, canvas, elevation
   ═══════════════════════════════════════════════════════════════ */

body {
  color: var(--z-text-headline) !important;
  background-color: var(--z-surface-page) !important;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--z-text-headline) !important;
}

p,
.category-description {
  color: var(--z-text-body);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — SL ocean primary, Google pill shape
   ═══════════════════════════════════════════════════════════════ */

.btn-primary {
  background: var(--z-action-primary) !important;
  color: var(--z-surface-white) !important;
  border: none;
  border-radius: var(--z-radius-pill);
  box-shadow: var(--z-shadow-card);
}

.btn-primary:hover {
  background: var(--z-action-primary-hover) !important;
  color: var(--z-surface-white) !important;
  transform: none;
  box-shadow: var(--z-shadow-card-hover);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--z-action-focus-ring),
    var(--z-shadow-card);
}

.btn-accent {
  background: var(--z-sl-lotus) !important;
  border-radius: var(--z-radius-pill);
  box-shadow: var(--z-shadow-card);
}

.btn-accent:hover {
  background: var(--z-sl-lotus-dark) !important;
  transform: none;
}

.btn-secondary {
  border-radius: var(--z-radius-pill);
  border: 1px solid var(--z-border-soft);
  color: var(--color-primary);
  background: var(--z-surface-white);
}

.btn-secondary:hover {
  background: var(--z-sl-ocean-soft);
  border-color: rgba(61, 122, 153, 0.35);
  color: var(--color-primary-dark);
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════════════════════════ */

.logo-text {
  background: none;
  -webkit-text-fill-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-link {
  color: var(--z-text-body);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.section-title::after {
  display: none;
}

/* Z-BIDS — без Web3-neon */
.nav-link--requests {
  font-size: inherit !important;
  font-weight: 600 !important;
  color: var(--z-text-headline) !important;
  background: none !important;
  background-size: unset !important;
  text-shadow: none !important;
  animation: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--z-text-headline) !important;
  padding-right: 0.55rem !important;
  overflow: visible !important;
}

.nav-link--requests::after {
  display: block !important;
  background: var(--color-primary);
}

.nav-link--requests:hover,
.nav-link--requests.active {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
  text-shadow: none !important;
  transform: none;
}

.nav-link--requests .zbids-count {
  position: relative;
  top: -0.68em;
  right: auto;
  margin-left: 2px;
  transform: none;
  vertical-align: baseline;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  padding: 0;
  box-sizing: border-box;
  font-size: max(0.75rem, 12px);
  line-height: 1;
  font-weight: 700;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: var(--z-sl-ocean) !important;
  color: var(--z-surface-white) !important;
  animation: zbids-count-pulse 2s ease-in-out infinite !important;
  box-shadow: 0 1px 6px rgba(61, 122, 153, 0.45) !important;
  pointer-events: none;
  z-index: 30;
}

.zbids-count {
  background: var(--z-sl-ocean) !important;
  color: var(--z-surface-white) !important;
  box-shadow: var(--z-shadow-card) !important;
}

.user-menu {
  background: var(--z-sl-ocean-soft);
  border: 1px solid rgba(61, 122, 153, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY GRID — pastel always-on, SL 4-tone cycle
   ═══════════════════════════════════════════════════════════════ */

.category-grid .category-card {
  background: var(--z-surface-white);
  border: 1px solid var(--z-border-soft);
  border-radius: var(--z-radius-card);
  box-shadow: var(--z-shadow-card);
  min-height: clamp(260px, 18vw, 330px);
  --cat-inner-x: 1.5rem;
  --cat-footer-h: 4rem;
  padding: 1.5rem 0 0;
  padding-bottom: var(--cat-footer-h);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.category-grid .category-icon,
.category-grid .category-title,
.category-grid .category-description {
  padding-left: var(--cat-inner-x);
  padding-right: var(--cat-inner-x);
}

/* Без цветных полосок сверху — единый вид всех карточек */
.category-grid .category-card::before,
.category-grid .category-card:hover::before,
.category-grid .category-card:nth-child(n)::before {
  display: none !important;
  content: none !important;
}

.category-grid .category-card:hover {
  transform: none;
  box-shadow: var(--z-shadow-card-hover);
  border-color: rgba(61, 122, 153, 0.28);
}

.category-grid .category-card:hover .category-icon {
  transform: none;
}

.category-grid .category-card:hover .category-icon img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.category-grid .category-title {
  color: var(--z-text-headline) !important;
}

.category-grid .category-card:hover .category-title {
  color: var(--color-primary) !important;
}

/* Photo cards keep dual-halo white from homepage-category-photo-cards.css (no hover recolor) */
.homepage-categories-section .category-grid .category-card.category-card--photo .category-title,
.homepage-categories-section .category-grid .category-card.category-card--photo .category-description,
.homepage-categories-section .category-grid .category-card.category-card--photo:hover .category-title,
.homepage-categories-section .category-grid .category-card.category-card--photo:hover .category-description {
  color: #fff !important;
}

.category-grid .category-icon {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.category-grid .category-description {
  margin-bottom: 0.75rem;
  flex-grow: 0;
}

/* Единый футер карточки: полоска + блок от левого до правого края карты */
.category-grid .category-count {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  inset: auto 0 0 0;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  max-width: none;
  min-height: var(--cat-footer-h, 4rem);
  padding: 0.32rem 0.75rem 0.72rem;
  background: var(--z-surface-white, #fff);
  border-top: 2px solid var(--z-border-soft, #dadce0);
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0 0 calc(var(--z-radius-card, 20px) - 1px) calc(var(--z-radius-card, 20px) - 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.category-grid .category-count::before {
  display: none;
  content: none;
}

.category-grid .category-count span:first-child {
  font-size: var(--font-size-2xl, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.category-grid .category-count span:last-child {
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: 600;
  color: var(--z-text-secondary, var(--color-gray));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-grid .category-card:hover .category-count {
  /* No background change — keep as-is */
  border-top-color: rgba(61, 122, 153, 0.35);
}

.category-grid .category-card:hover .category-count span:first-child {
  color: var(--z-brand-ocean, #0a7575);
}

/* 4-tone SL cycle — только фон карточки, без полосок */
.category-grid .category-card:nth-child(4n + 1) {
  background: var(--z-cat-1-surface);
}
.category-grid .category-card:nth-child(4n + 2) {
  background: var(--z-cat-2-surface);
}
.category-grid .category-card:nth-child(4n + 3) {
  background: var(--z-cat-3-surface);
}
.category-grid .category-card:nth-child(4n + 4) {
  background: var(--z-cat-4-surface);
}

/* Trains / buses — SL accents, no Google-blue / orange neon */
.category-card--trains {
  background: var(--z-surface-sky) !important;
  border-color: rgba(61, 122, 153, 0.28) !important;
}
.category-card--trains:hover {
  border-color: rgba(61, 122, 153, 0.42) !important;
  box-shadow: var(--z-shadow-card-hover) !important;
}
.category-card__trains-glow {
  display: none;
}
.category-icon--trains {
  filter: none;
  animation: none;
}

.category-card--buses {
  background: var(--z-surface-cream) !important;
  border-color: rgba(214, 157, 48, 0.28) !important;
}
.category-card--buses:hover {
  border-color: rgba(214, 157, 48, 0.42) !important;
  box-shadow: var(--z-shadow-card-hover) !important;
}
.category-card__buses-glow {
  display: none;
}
.category-icon--buses {
  filter: none;
  animation: none;
}

/* Kill per-child rainbow hover glows from style.css */
.category-grid .category-card:nth-child(n):hover {
  border-color: rgba(61, 122, 153, 0.22);
}

/* Photo cards on homepage: no border ring (dark bg looked like black outline) */
.homepage-categories-section .category-grid .category-card.category-card--photo,
.homepage-categories-section .category-grid .category-card.category-card--photo:hover,
.homepage-categories-section .category-grid .category-card.category-card--photo:nth-child(n):hover {
  border: none !important;
  border-color: transparent !important;
}
.category-grid .category-card:nth-child(n):hover .category-icon img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08)) !important;
}

/* Popular categories (главная) — компактнее ~20%, футер full-bleed */
.homepage-categories-section .category-grid .category-card:not(.category-card--photo) {
  min-height: clamp(280px, 18vw, 340px);
  --cat-inner-x: 1rem;
  --cat-footer-h: 6.88rem;
  padding: 1.15rem 0 0 !important;
  padding-bottom: var(--cat-footer-h) !important;
}

.homepage-categories-section .category-grid .category-card:not(.category-card--photo) .category-count {
  min-height: var(--cat-footer-h) !important;
  height: var(--cat-footer-h) !important;
  padding: 0.55rem 0.5rem 1.05rem !important;
  gap: 0.15rem !important;
}

.homepage-categories-section .category-grid .category-count span:first-child {
  font-size: 1.45rem !important;
  line-height: 1.05 !important;
}

.homepage-categories-section .category-grid .category-count span:last-child {
  font-size: 0.82rem !important;
  line-height: 1.1 !important;
}

/* Популярные категории — мобилка */
@media (max-width: 768px) {
  .homepage-categories-section .category-grid {
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .homepage-categories-section .category-grid .category-card:not(.category-card--photo) {
    display: flex !important;
    flex-direction: column !important;
    aspect-ratio: unset !important;
    min-height: clamp(170px, 42vw, 200px) !important;
    height: auto !important;
    --cat-inner-x: 0.65rem;
    --cat-footer-h: 5rem;
    padding: 0.65rem 0 0 !important;
    padding-bottom: var(--cat-footer-h) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .homepage-categories-section .category-grid .category-card::before {
    display: none !important;
    content: none !important;
  }

  .homepage-categories-section .category-grid .category-icon {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: clamp(40px, 11vw, 48px) !important;
    height: clamp(40px, 11vw, 48px) !important;
    margin: 0 auto 0.28rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .homepage-categories-section .category-grid .category-title {
    position: static !important;
    transform: none !important;
    width: auto !important;
    font-size: 0.76rem !important;
    margin: 0 !important;
    padding: 0 var(--cat-inner-x) !important;
    white-space: normal !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .homepage-categories-section .category-grid .category-description {
    display: none !important;
  }

  .homepage-categories-section .category-grid .category-card:not(.category-card--photo) .category-count {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: var(--cat-footer-h) !important;
    height: var(--cat-footer-h) !important;
    padding: 0.45rem 0.4rem 0.8rem !important;
    background: var(--z-surface-white, #fff) !important;
    border-top: 2px solid var(--z-border-soft, #dadce0) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 0 calc(var(--z-radius-card, 20px) - 1px) calc(var(--z-radius-card, 20px) - 1px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.15rem !important;
    box-sizing: border-box !important;
  }

  .homepage-categories-section .category-grid .category-count::before {
    display: none !important;
    content: none !important;
  }

  .homepage-categories-section .category-grid .category-count span:first-child {
    font-size: 1.1rem !important;
    color: var(--color-primary) !important;
    line-height: 1.05 !important;
  }

  .homepage-categories-section .category-grid .category-count span:last-child {
    font-size: 0.68rem !important;
    line-height: 1.1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROMO BANNERS — pastel + dark text (Google editorial)
   ═══════════════════════════════════════════════════════════════ */

.promo-banner-primary {
  background: var(--z-surface-sky) !important;
  border: 1px solid rgba(61, 122, 153, 0.22);
}

.promo-banner-primary::before {
  display: none;
}

.promo-banner-secondary {
  background: var(--z-surface-cream) !important;
  border: 1px solid rgba(214, 157, 48, 0.22);
}

.promo-banner-secondary::before {
  display: none;
}

.promo-banner-primary .promo-banner-title,
.promo-banner-secondary .promo-banner-title {
  color: var(--z-text-headline) !important;
}

.promo-banner-primary .promo-banner-description,
.promo-banner-secondary .promo-banner-description {
  color: var(--z-text-body) !important;
}

.promo-banner--demo,
.promo-banner--stub,
button.promo-banner.promo-banner--demo {
  display: flex !important;
  align-items: center !important;
  text-align: left !important;
}

.promo-banner-primary .promo-banner-content,
.promo-banner-secondary .promo-banner-content,
.promo-banner--demo .promo-banner-content,
.promo-banner--stub .promo-banner-content {
  flex: 1 1 auto;
  min-width: 0;
}

.promo-banner-primary .promo-banner-arrow,
.promo-banner-secondary .promo-banner-arrow,
.promo-banner--demo .promo-banner-arrow,
.promo-banner--stub .promo-banner-arrow {
  color: var(--color-primary) !important;
  background: var(--z-surface-white);
  border-radius: 50%;
  opacity: 1;
  flex: 0 0 auto;
  align-self: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-primary .promo-banner-arrow svg,
.promo-banner-secondary .promo-banner-arrow svg,
.promo-banner--demo .promo-banner-arrow svg,
.promo-banner--stub .promo-banner-arrow svg {
  width: 22px;
  height: 22px;
}

/* ═══════════════════════════════════════════════════════════════
   AI PROMO BLOCK
   ═══════════════════════════════════════════════════════════════ */

.home-ai-promo-section {
  background: transparent !important;
}

.home-ai-promo-section .container {
  width: 100%;
  max-width: var(--container-width, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px, clamp(1rem, 2vw, 2.5rem));
  padding-right: var(--container-px, clamp(1rem, 2vw, 2.5rem));
  box-sizing: border-box;
}

.home-ai-promo-section .home-ai-promo-card {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--z-surface-sky);
  border: 1px solid rgba(91, 168, 212, 0.28);
  border-radius: var(--z-radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--z-shadow-card);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.home-ai-promo-section .home-ai-promo-card::before {
  display: none;
}

.home-ai-promo-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.home-ai-promo-avatar {
  width: clamp(88px, 11vw, 120px);
  height: clamp(88px, 11vw, 120px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--z-surface-white);
  box-shadow: var(--z-shadow-card);
}

.home-ai-promo-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--z-text-headline) !important;
}

.home-ai-promo-lead {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--z-text-headline) !important;
}

.home-ai-promo-body {
  margin: 0 0 1rem;
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  line-height: 1.65;
  color: var(--z-text-body) !important;
  max-width: 52rem;
}

.home-ai-promo-features {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  max-width: 52rem;
}

.home-ai-promo-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--z-text-body);
}

.home-ai-promo-features li > span:first-child {
  flex-shrink: 0;
  line-height: 1.35;
}

.home-ai-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-ai-promo-section .btn-accent {
  background: var(--z-action-primary) !important;
  color: #3a2c00 !important;
}

.home-transport-promo-btn {
  border: 1px solid var(--z-border-soft);
  box-shadow: var(--z-shadow-card);
  color: var(--z-text-headline);
}

.home-transport-promo-btn:hover {
  transform: none;
  box-shadow: var(--z-shadow-card-hover);
}

.home-transport-promo-btn--trains {
  border-color: rgba(61, 122, 153, 0.32);
  background: var(--z-surface-sky);
}

.home-transport-promo-btn--trains:hover {
  border-color: rgba(61, 122, 153, 0.48);
  box-shadow: var(--z-shadow-card-hover);
}

.home-transport-promo-btn--buses {
  border-color: rgba(214, 157, 48, 0.32);
  background: var(--z-surface-cream);
}

.home-transport-promo-btn--buses:hover {
  border-color: rgba(214, 157, 48, 0.48);
  box-shadow: var(--z-shadow-card-hover);
}

@media (max-width: 640px) {
  .home-ai-promo-layout {
    grid-template-columns: 1fr;
  }

  .home-ai-promo-visual {
    display: flex;
    justify-content: center;
  }

  .home-ai-promo-content {
    text-align: center;
  }

  .home-ai-promo-features li {
    justify-content: center;
    text-align: left;
  }

  .home-ai-promo-actions {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE CANVAS
   ═══════════════════════════════════════════════════════════════ */

.homepage-main-canvas {
  background: var(--z-home-canvas, #f8f9fa);
}

.homepage-main-canvas > .section,
.homepage-main-canvas .homepage-categories-section,
.homepage-main-canvas .homepage-featured-section,
.homepage-main-canvas .homepage-compass-section,
.homepage-main-canvas .home-ai-promo-section {
  background: transparent !important;
}

.homepage-main-canvas > .seo-about {
  background: transparent !important;
}

.homepage-featured-section,
.homepage-compass-section,
.homepage-categories-section {
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   CATALOG CARDS — SL accents, not Booking blue
   ═══════════════════════════════════════════════════════════════ */

.services-grid .svc-card-wrapper:hover .svc-card {
  transform: none;
  box-shadow: var(--z-card-outer-ring-hover);
}

.svc-card-title {
  color: var(--z-text-headline);
}

.svc-card-desc,
.svc-card-meta,
.svc-card-location {
  color: var(--z-text-body);
}

.svc-card-price {
  color: var(--z-sl-tea-dark);
}

.svc-card-tag {
  background: var(--z-sl-ocean-soft) !important;
  color: var(--z-sl-ocean-dark) !important;
  font-weight: 600;
}

.svc-card-cta {
  color: var(--color-primary) !important;
}

.svc-card-wrapper:hover .svc-card-cta {
  color: var(--color-primary-dark) !important;
}

.svc-card-arrow {
  background: #e9f6f6 !important;
  color: var(--color-primary) !important;
}

.svc-card-wrapper:hover .svc-card-arrow {
  background: var(--color-primary) !important;
  color: var(--z-surface-white) !important;
}

.subcategory-chip:hover {
  border-color: var(--color-primary);
  background: var(--z-sl-ocean-soft);
  transform: none;
}

.subcategory-chip.active {
  background: var(--color-primary-light);
  border-color: #0a7575;
  color: var(--z-surface-white);
}

.catalog-page-btn.next {
  background: var(--z-sl-tea) !important;
  box-shadow: var(--z-shadow-card) !important;
}

.catalog-page-btn.next:hover {
  background: var(--z-sl-tea-dark) !important;
  box-shadow: var(--z-shadow-card-hover) !important;
}

/* ═══════════════════════════════════════════════════════════════
   AUTH
   ═══════════════════════════════════════════════════════════════ */

.auth-card-header,
.register-header {
  background: var(--z-sl-ocean-soft) !important;
  color: var(--color-primary-dark) !important;
}

.auth-submit,
.register-submit {
  background: var(--z-action-primary) !important;
  border-radius: var(--z-radius-pill);
}

/* Footer — см. static/css/site-footer.css */

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE & COUNTRY — clean Google pill, SL accent
   ═══════════════════════════════════════════════════════════════ */

.language-switcher {
  background: var(--z-surface-white);
  border: 1px solid var(--z-border-soft);
  border-radius: var(--z-radius-pill);
  min-height: 34px;
}

.lang-btn {
  color: var(--z-text-body);
  font-size: 0.72rem;
  padding: 0.35rem 0.5rem;
}

.lang-btn:hover {
  background: var(--z-sl-ocean-soft);
}

.lang-btn.active {
  background: var(--color-primary);
  color: var(--z-surface-white) !important;
  margin: 0;
  padding: 0.35rem 0.55rem;
  box-shadow: none;
}

.lang-expand-btn {
  background: var(--z-sl-ocean-soft);
  border: 1px solid var(--z-border-soft);
  color: var(--color-primary);
}

.lang-expand-btn:hover {
  background: rgba(61, 122, 153, 0.16);
}

.lang-dropdown-menu {
  border: 1px solid var(--z-border-soft);
  box-shadow: var(--z-shadow-card-hover);
}

.country-dropdown-btn {
  border: 1px solid var(--z-border-soft);
  background: var(--z-surface-white);
  border-radius: var(--z-radius-pill);
}

.country-dropdown-btn:hover {
  border-color: rgba(61, 122, 153, 0.35);
  background: var(--z-sl-ocean-soft);
}

.mobile-only-auth > .nav-link {
  background: var(--color-primary) !important;
  border-radius: var(--z-radius-pill) !important;
}
