:root {
  --rd-ink: #101c26;
  --rd-muted: #5b6b7a;
  --rd-navy: #0e2233;
  --rd-navy-2: #0a1a29;
  --rd-blue: #049be0;
  --rd-blue-d: #0277ab;
  --rd-blue-soft: #e3f4fd;
  --rd-orange: #f77813;
  --rd-orange-d: #e0690a;
  --rd-bg: #f2f4f6;
  --rd-line: #e2e8ee;
  --rd-ok: #178a4c;
  --rd-ok-soft: #e4f5eb;
}

body {
  background: var(--rd-bg);
  color: var(--rd-ink);
  font-size: 15px;
}
.max-w-7xl { max-width: 1280px !important; }
[x-cloak] { display: none !important; }
.account-dropdown { z-index: 9999 !important; }

.rd-topbar {
  background: var(--rd-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.rd-topbar b { color: #fff; font-weight: 600; }
.rd-topbar-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 7px;
}

.rd-hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--rd-line);
}
.rd-hdr-in {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 12px;
}
.rd-logo { flex: none; display: flex; align-items: center; }
.rd-logo img { display: block; width: 162px; height: 23px; object-fit: contain; }

.rd-hdr .rd-search-zone { flex: 1; max-width: 560px; }
#search.input-group {
  box-shadow: none;
  border: 2px solid #d8e1e9;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s;
}
#search.input-group:focus-within { border-color: var(--rd-blue); }
#search input {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  height: 42px;
  font-size: 14px;
  color: var(--rd-ink);
  background: #fff;
  border-radius: 10px 0 0 10px;
}
#search input::placeholder { color: #93a3b1; }
#search button[type="submit"] {
  height: 42px;
  background: var(--rd-orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 0 10px 10px 0;
  transition: background 0.15s;
}
#search button[type="submit"]:hover { background: var(--rd-orange-d); }
#search .z-20 {
  top: 54px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  width: min(680px, 94vw);
  padding: 0;
}
.rd-sdrop {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(16, 28, 38, 0.18);
  padding: 10px;
  max-height: 70vh;
  overflow-y: auto;
}
.rd-sdrop-head {
  margin: 2px 4px 6px;
  padding: 6px 8px 10px;
  border-bottom: 1px solid var(--rd-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rd-muted);
}
.rd-sitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
}
.rd-sitem:hover { background: var(--rd-bg); }
.rd-sitem-th {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
}
.rd-sitem-th img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rd-sitem-mid { flex: 1; min-width: 0; display: block; }
.rd-sitem-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--rd-ink);
}
.rd-sitem-mid:hover .rd-sitem-name { color: var(--rd-blue-d); }
.rd-sitem-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--rd-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rd-sitem-right { display: flex; align-items: center; gap: 10px; flex: none; }
.rd-sitem-price b {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--rd-ink);
}
.rd-sitem-price s {
  display: block;
  text-align: right;
  font-size: 11.5px;
  color: #a3b0bb;
  white-space: nowrap;
}
.rd-sitem-add {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--rd-orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s;
  flex: none;
}
.rd-sitem-add:hover { background: var(--rd-orange-d); color: #fff; }
.rd-sitem-add--offer { background: var(--rd-blue); }
.rd-sitem-add--offer:hover { background: var(--rd-blue-d); }
.rd-sitem-add svg { width: 17px; height: 17px; }
.rd-sdrop-all {
  display: block;
  text-align: center;
  padding: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--rd-line);
  font-size: 13px;
  font-weight: 700;
  color: var(--rd-blue-d);
}
.rd-sdrop-all:hover { color: var(--rd-blue); }
.rd-sdrop-empty {
  padding: 16px 10px;
  text-align: center;
  font-size: 13.5px;
  color: var(--rd-muted);
}

.rd-acts { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.rd-act {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rd-ink);
  transition: background 0.15s;
}
.rd-act:hover { background: var(--rd-bg); }
.rd-act svg { width: 24px; height: 24px; }
#cart button { color: var(--rd-ink); }
#cart button:hover { color: var(--rd-blue-d); }
#cart .bg-primary { background: var(--rd-orange) !important; }

.rd-menubar {
  background: #fff;
  border-bottom: 1px solid var(--rd-line);
}
.rd-menubar .tc-nav-link {
  border-radius: 0;
  padding: 13px 13px;
  font-weight: 700;
  color: var(--rd-ink);
  border-bottom: 2px solid transparent;
}
.rd-menubar .tc-nav-link:hover,
.rd-menubar .tc-nav-link--open {
  background: transparent;
  color: var(--rd-blue-d);
  border-bottom-color: var(--rd-blue);
}
.rd-menubar .tc-nav-link--active {
  background: transparent;
  color: var(--rd-blue-d);
  border-bottom-color: var(--rd-blue);
}
.rd-menubar .tc-nav-link--active:hover { background: transparent; color: var(--rd-blue-d); }
.rd-menunote {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--rd-muted);
  white-space: nowrap;
}
.rd-menunote svg { width: 17px; height: 17px; color: var(--rd-blue); }

#home-top > div {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1280px;
  margin-inline: auto;
  padding: 16px 16px 0;
  background: transparent;
}
#home-top section.container {
  max-width: none;
  margin: 0;
  padding: 0;
}
#home-top .rd-garage { height: 100%; }
#home-top .rd-garage #alege_atv { grid-template-columns: 1fr; }
#home-top .rd-promo { height: 100%; min-height: 320px; }
@media (max-width: 1080px) {
  #home-top > div { grid-template-columns: 1fr; }
  #home-top .rd-promo { min-height: 260px; }
}

.rd-cardmeta { font-size: 12px; color: #6b7280; margin-bottom: 4px; }
.rd-cartbtn {
  width: 100%;
  margin-top: 12px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  background: var(--rd-orange);
  color: #fff;
  transition: background 0.15s;
  cursor: pointer;
}
.rd-cartbtn:hover { background: var(--rd-orange-d); color: #fff; }
.rd-cartbtn--offer { background: var(--rd-blue); }
.rd-cartbtn--offer:hover { background: var(--rd-blue-d); }
.rd-cartbtn svg { width: 16px; height: 16px; flex: none; }

.rd-mega {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(16, 28, 38, 0.16);
  padding: 22px 24px 20px;
  width: min(980px, calc(100vw - 48px));
  max-height: 72vh;
  overflow-y: auto;
}
.rd-mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
}
.rd-mega-h {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rd-blue-d);
  margin-bottom: 9px;
}
.rd-mega-h:hover { color: var(--rd-blue); }
.rd-mega-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.rd-mega-col ul a { font-size: 13px; color: #3d4d5c; text-decoration: none; }
.rd-mega-col ul a:hover { color: var(--rd-orange); }
.rd-mega-all {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rd-blue-d);
  text-decoration: none;
}
.rd-mega-all:hover { color: var(--rd-blue); }
.rd-mega-promo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(150deg, #12293d, var(--rd-navy-2));
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
  text-decoration: none;
}
.rd-mega-promo::before,
.rd-mega-promo::after {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  width: 24px;
  transform: skewX(-24deg);
}
.rd-mega-promo::before { right: 26%; background: var(--rd-blue); opacity: 0.85; }
.rd-mega-promo::after { right: 10%; background: var(--rd-orange); opacity: 0.85; }
.rd-mega-promo b { position: relative; font-size: 13.5px; line-height: 1.3; color: #fff; }
.rd-mega-promo span { position: relative; font-size: 12px; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

.rd-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.rd-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 12px;
  padding: 12px 14px;
}
.rd-benefit-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--rd-blue-soft);
  color: var(--rd-blue-d);
  display: grid;
  place-items: center;
  flex: none;
}
.rd-benefit-ic svg { width: 20px; height: 20px; }
.rd-benefit b { display: block; font-size: 13.5px; line-height: 1.25; }
.rd-benefit span {
  display: block;
  font-size: 12px;
  color: var(--rd-muted);
  line-height: 1.3;
  margin-top: 1px;
}
@media (max-width: 1080px) { .rd-benefits { grid-template-columns: repeat(2, 1fr); } }

.rd-garage {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 16px;
  padding: 22px 24px;
}
.rd-garage-head { margin-bottom: 14px; }
.rd-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rd-orange);
}
.rd-garage-head h2 {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rd-garage-head p { margin: 2px 0 0; font-size: 13.5px; color: var(--rd-muted); }
.rd-garage #alege_atv { gap: 12px; }
.rd-garage #alege_atv > div { box-shadow: none; }
.rd-garage select {
  height: 48px;
  padding-block: 0;
  border: 1.5px solid #d8e1e9 !important;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-ink);
  background-color: #fff;
}
.rd-garage select:hover, .rd-garage select:focus { border-color: var(--rd-blue) !important; }
.rd-garage #atv_go {
  height: 48px;
  padding-block: 0;
  border-radius: 11px;
  background: var(--rd-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: none;
  transition: background 0.15s, opacity 0.15s;
}
.rd-garage #atv_go:hover:not(:disabled) { background: var(--rd-orange-d); }
.rd-garage-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--rd-muted);
}
.rd-garage-note svg { width: 15px; height: 15px; color: var(--rd-ok); }

.rd-promo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(700px 340px at 85% -20%, rgba(4, 155, 224, 0.28), transparent 60%),
    radial-gradient(520px 300px at -10% 110%, rgba(247, 120, 19, 0.16), transparent 55%),
    linear-gradient(150deg, #12293d, var(--rd-navy-2));
  color: #fff;
  padding: 38px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rd-promo > * { position: relative; z-index: 1; }
.rd-promo::before,
.rd-promo::after {
  content: '';
  position: absolute;
  top: -40px;
  bottom: -40px;
  width: 64px;
  transform: skewX(-24deg);
  pointer-events: none;
  z-index: 0;
}
.rd-promo::before {
  right: 16%;
  background: linear-gradient(172deg, #2cb4f2, var(--rd-blue) 55%, var(--rd-blue-d));
}
.rd-promo::after {
  right: 5.5%;
  background: linear-gradient(172deg, #ff9439, var(--rd-orange) 55%, var(--rd-orange-d));
}
.rd-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #000;
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: 12.5px;
  font-weight: 700;
}
.rd-promo-chip .tbi {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 10.5px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.rd-promo h2 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 520px;
}
.rd-promo h2 em { font-style: normal; color: #ffb066; }
.rd-promo p {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
}
.rd-promo-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.rd-promo-btn {
  background: #fff;
  color: var(--rd-navy);
  padding: 12px 20px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  transition: transform 0.15s;
}
.rd-promo-btn:hover { transform: translateY(-1px); }
.rd-promo-rate {
  position: absolute;
  right: 34px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}
.rd-promo-rate b { display: block; color: #fff; font-size: 15px; font-weight: 800; }
@media (max-width: 760px) {
  .rd-promo { padding: 26px 24px; }
  .rd-promo h2 { font-size: 26px; }
  .rd-promo::before { right: 6%; width: 36px; opacity: 0.5; }
  .rd-promo::after { right: -3%; width: 36px; opacity: 0.5; }
  .rd-promo-rate { position: static; margin-top: 18px; align-self: flex-start; }
}

.rd-sec-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}
.rd-sec-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rd-sl i { font-style: normal; }
.rd-sl i:first-child { color: var(--rd-blue); }
.rd-sl i:last-child { color: var(--rd-orange); }
.rd-sec-head .rd-rule { flex: 1; height: 1px; background: var(--rd-line); }
.rd-sec-head .rd-quiet {
  font-size: 13px;
  font-weight: 500;
  color: var(--rd-muted);
  white-space: nowrap;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.55) !important;
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
  color: #111827 !important;
  margin-top: -22px !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--rd-blue) !important;
  color: #fff !important;
  border-color: var(--rd-blue) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; font-weight: 800; }
.swiper-button-disabled { opacity: 0 !important; pointer-events: none; }
.swiper-pagination-bullet { background: rgba(0, 0, 0, 0.22); opacity: 1; }
.swiper-pagination-bullet-active {
  background: var(--rd-blue);
  width: 22px;
  border-radius: 9999px;
}

.rd-foot {
  background: var(--rd-navy);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 48px;
}
.rd-foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-block: 40px 32px;
}
.rd-foot h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.rd-foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.rd-foot ul a { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }
.rd-foot ul a:hover { color: #fff; }
.rd-foot-brand p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 300px;
}
.rd-foot-logochip {
  display: inline-grid;
  place-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
}
.rd-foot-logochip img { display: block; width: 162px; height: 23px; }
.rd-wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  background: rgba(37, 190, 90, 0.14);
  border: 1px solid rgba(37, 190, 90, 0.35);
  color: #7fe0a2;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
}
.rd-wa-chip:hover { background: rgba(37, 190, 90, 0.22); }
.rd-foot-contact { font-size: 13.5px; }
.rd-foot-contact b { color: #fff; font-weight: 600; }
.rd-foot-div { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 0; }
.rd-foot-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
  flex-wrap: wrap;
}
.rd-foot-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.rd-foot-badges a {
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  display: grid;
  place-items: center;
}
.rd-foot-badges img { height: 26px; width: auto; object-fit: contain; display: block; }
.rd-foot-pay { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.rd-foot-pay span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 6px 12px;
  display: grid;
  place-items: center;
}
.rd-foot-pay img { height: 24px; width: auto; object-fit: contain; display: block; }
.rd-foot-bot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}
@media (max-width: 1080px) { .rd-foot-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 760px) { .rd-foot-top { grid-template-columns: 1fr 1fr; gap: 24px; } }

.rd-drawer-panel {
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: var(--rd-line) !important;
  box-shadow: 0 24px 60px rgba(16, 28, 38, 0.25) !important;
}
.rd-drawer-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--rd-ink);
}

.rd-crumb { font-size: 12.5px; color: var(--rd-muted); }
.rd-crumb a:hover { color: var(--rd-blue-d); }

.rd-tbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--rd-muted);
  flex-wrap: wrap;
}
.rd-tbar label { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.rd-tbar select {
  height: 36px;
  border: 1.5px solid #d8e1e9;
  border-radius: 9px;
  padding: 0 30px 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rd-ink);
  background-color: #fff;
}
.rd-tbar select:hover { border-color: var(--rd-blue); }

.rd-pagination { display: flex; justify-content: center; margin: 22px 0 10px; }
.rd-pagination .pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.rd-pagination .pagination li a,
.rd-pagination .pagination li span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--rd-line);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rd-ink);
}
.rd-pagination .pagination li a:hover { border-color: var(--rd-blue); color: var(--rd-blue-d); }
.rd-pagination .pagination li.active span {
  background: var(--rd-navy);
  border-color: var(--rd-navy);
  color: #fff;
}

@media (max-width: 900px) {
  .rd-hdr-in { flex-wrap: wrap; gap: 8px; padding-block: 10px; }
  .rd-hdr .rd-search-zone {
    order: 5;
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }
  .rd-logo { margin-inline: auto; }
  .rd-menubar > .container { padding-block: 0; }
}
@media (max-width: 639px) {
  #search input { height: 38px; font-size: 13px; }
  #search button[type="submit"] { height: 38px; font-size: 12px; padding-inline: 14px; }
  #search .z-20 { top: 46px !important; }
}

.title_home { letter-spacing: 0.015em; }

#alege_atv select, #alege_atv button { width: 100%; }
