:root {
  --home-red: #db2f2b;
  --home-red-600: #b8231f;
  --home-red-soft: #fbeceb;
  --home-ink: #121212;
  --home-ink-2: #17181d;
  --home-steel: #97a8ce;
  --home-steel-soft: #eef1f8;
  --home-muted: #5f6672;
  --home-line: #e9ebef;
  --home-bg-soft: #f6f7fa;
  --home-radius: 18px;
  --home-radius-sm: 12px;
  --home-shadow-sm: 0 6px 20px rgba(18, 18, 24, .06);
  --home-shadow-lg: 0 24px 60px rgba(18, 18, 24, .14);
}

.container-k {
  margin-inline: auto;
  max-width: 1380px;
  padding-inline: 24px;
}

.container-k--wide {
  max-width: 1600px;
}

.home-kit {
  color: var(--home-ink);
  padding-bottom: 0;
  background: #fff;
}

.home-section {
  padding-top: clamp(48px, 6vw, 80px);
}

.home-section--light {
  border-top: 1px solid var(--home-line);
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(48px, 6vw, 80px);
}

/* ===== HERO ===== */
.home-hero {
  margin-inline: auto;
  max-width: 1600px;
  padding-inline: 24px;
  padding-top: 22px;
}

.banner-placeholder {
  align-items: center;
  background-color: var(--home-bg-soft);
  background-image: linear-gradient(135deg, rgba(151,168,206,.18) 25%, transparent 25%, transparent 50%, rgba(151,168,206,.18) 50%, rgba(151,168,206,.18) 75%, transparent 75%, transparent);
  background-size: 34px 34px;
  border: 1.5px dashed rgba(18,18,18,.2);
  color: var(--home-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
  position: relative;
  text-align: center;
}

.banner-placeholder::before {
  content: "";
  border: 1px solid rgba(219, 47, 43, .28);
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.banner-placeholder__eyebrow {
  align-items: center;
  background: var(--home-red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 18px;
}

.banner-placeholder strong {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
}

.banner-placeholder small {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.9;
  margin-top: 8px;
  max-width: 460px;
}

.banner-placeholder--hero {
  aspect-ratio: 36 / 14;
  border-radius: 22px;
  min-height: 320px;
}

.banner-placeholder--campaign {
  aspect-ratio: 760 / 360;
  border-radius: 16px;
  min-height: 250px;
}

.banner-placeholder--wide {
  aspect-ratio: 1600 / 420;
  border-radius: 22px;
  min-height: 260px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  border-bottom: 1px solid var(--home-line);
  margin-top: 26px;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 0;
}

.trust-item {
  align-items: center;
  border-left: 1px solid var(--home-line);
  display: flex;
  gap: 14px;
  padding: 6px 20px;
}

.trust-item:last-child {
  border-left: 0;
}

.trust-item svg {
  color: var(--home-red);
  flex: 0 0 42px;
  height: 42px;
  padding: 9px;
  background: var(--home-red-soft);
  border-radius: 12px;
}

.trust-item div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.trust-item strong {
  font-size: 13px;
  font-weight: 700;
}

.trust-item small {
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.6;
}

/* ===== SECTION HEADINGS ===== */
.section-head {
  align-items: flex-end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head__tag {
  color: var(--home-red);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 8px;
}

.section-head__tag::before {
  background: linear-gradient(90deg, var(--home-red), var(--home-steel));
  border-radius: 999px;
  content: "";
  height: 3px;
  margin-left: 10px;
  margin-top: 8px;
  width: 26px;
}

.section-head h2 {
  color: var(--home-ink);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.section-head__link {
  align-items: center;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  color: var(--home-ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  padding: 10px 16px;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}

.section-head__link:hover {
  background: var(--home-red);
  border-color: var(--home-red);
  color: #fff;
}

.section-head--light .section-head__tag {
  color: #ffb3ae;
}

.section-head--light .section-head__tag::before {
  background: linear-gradient(90deg, var(--home-red), var(--home-steel));
}

.section-head--light h2 {
  color: #fff;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head--center .section-head__tag::before {
  display: none;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-tile {
  display: block;
  text-align: center;
}

.category-tile__media {
  aspect-ratio: 1 / 1;
  background: var(--home-steel-soft);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: var(--home-shadow-sm);
  display: block;
  margin: 0 auto;
  max-width: 105px;
  overflow: hidden;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  width: 100%;
}

.category-tile:hover .category-tile__media {
  border-color: var(--home-red);
  box-shadow: 0 14px 30px rgba(18, 18, 24, .18);
  transform: translateY(-3px);
}

.category-tile__media img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
  width: 100%;
}

.category-tile:hover .category-tile__media img {
  transform: scale(1.06);
}

.category-tile__empty {
  align-items: center;
  color: var(--home-steel);
  display: flex;
  font-size: 22px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.category-tile__name {
  color: var(--home-ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 14px;
  text-align: center;
}

.category-tile:hover .category-tile__name {
  color: var(--home-red);
}

/* ===== PRODUCT GRID (shared) ===== */
.home-kit .product-grid {
  display: grid;
  gap: 22px 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-kit .product-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 18px;
  text-align: right;
  transition: box-shadow .3s, transform .3s;
}

.home-kit .product-card:hover {
  box-shadow: var(--home-shadow-sm);
  transform: translateY(-4px);
}

.home-kit .product-card-image {
  background: var(--home-bg-soft);
  display: block;
  overflow: hidden;
  position: relative;
}

.home-kit .product-card-image img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}

.home-kit .product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.home-kit .product-card .image-placeholder {
  align-items: center;
  aspect-ratio: 1 / 1;
  color: var(--home-muted);
  display: flex;
  font-size: 13px;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.home-kit .product-badge {
  align-items: center;
  background: var(--home-red);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  left: auto;
  padding: 0 12px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: auto;
  z-index: 2;
}

.home-kit .wishlist-btn {
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(18,18,24,.1);
  color: #8b909a;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 36px;
  justify-content: center;
  left: 12px;
  opacity: 1;
  position: absolute;
  top: 12px;
  transition: color .2s, transform .2s;
  width: 36px;
  z-index: 3;
}

.home-kit .wishlist-btn:hover {
  color: var(--home-red);
  transform: scale(1.08);
}

.home-kit .wishlist-btn.favorited {
  color: var(--home-red);
}

.home-kit .product-card-info {
  padding: 14px 16px 0;
}

.home-kit .product-card-info h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 8px;
}

.home-kit .product-card-info h3 a {
  color: var(--home-ink);
}

.home-kit .product-card-info h3 a:hover {
  color: var(--home-red);
}

.home-kit .product-price {
  align-items: baseline;
  color: var(--home-red-600);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  justify-content: flex-start;
}

.home-kit .product-price del {
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 400;
}

.home-kit .prod-attributes {
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.7;
  margin: 8px 0 0;
}

/* ===== OFFER SECTION (dark) ===== */
.offer-section {
  background: linear-gradient(165deg, var(--home-ink) 0%, var(--home-ink-2) 60%, #23262f 100%);
  margin-top: clamp(48px, 6vw, 80px);
  overflow: hidden;
  padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 96px);
  position: relative;
}

.offer-section::before {
  background: radial-gradient(circle at 85% 10%, rgba(219,33,43,.22) 0%, transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(151,168,206,.16) 0%, transparent 40%);
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
}

.offer-section > .container-k {
  position: relative;
  z-index: 1;
}

.offer-timer {
  align-items: center;
  display: flex;
  gap: 8px;
}

.offer-timer__label {
  color: #ffb3ae;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

.offer-timer__cell {
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  display: grid;
  gap: 0;
  min-width: 52px;
  padding: 8px 6px;
  text-align: center;
}

.offer-timer__cell b {
  color: #fff;
  direction: ltr;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.offer-timer__cell i {
  color: var(--home-steel);
  font-size: 10px;
  font-style: normal;
  margin-top: 2px;
}

.offer-section .section-more {
  margin-top: 30px;
  text-align: center;
}

.offer-section .section-more a {
  align-items: center;
  background: var(--home-red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  padding: 13px 30px;
  transition: background .2s, transform .2s;
}

.offer-section .section-more a:hover {
  background: var(--home-red-600);
  transform: translateY(-2px);
}

/* ===== CAMPAIGN BANNERS ===== */
.campaign-section {
  margin-top: clamp(48px, 6vw, 80px);
}

.campaign-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

/* ===== WIDE BANNER ===== */
.container-k.container-k--wide {
  max-width: 1600px;
}

/* ===== STATS ===== */
.stats-band {
  background: var(--home-ink);
  margin-top: clamp(48px, 6vw, 80px);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.09);
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 8px 20px;
  text-align: center;
}

.stat-item:last-child {
  border-left: 0;
}

.stat-item strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
}

.stat-item span {
  color: var(--home-steel);
  font-size: 12px;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.blog-card:hover {
  box-shadow: var(--home-shadow-sm);
  transform: translateY(-3px);
}

.blog-card__media {
  align-items: center;
  background: var(--home-steel-soft);
  color: var(--home-steel);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.blog-card__media img,
.blog-card__media > span {
  aspect-ratio: 16 / 10;
  display: flex;
  object-fit: cover;
  width: 100%;
}

.blog-card__media > span {
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__meta {
  color: var(--home-red);
  font-size: 10px;
  font-weight: 700;
}

.blog-card h3 {
  font-size: 15px;
  line-height: 1.8;
  margin: 8px 0;
}

.blog-card h3 a {
  color: var(--home-ink);
}

.blog-card h3 a:hover {
  color: var(--home-red);
}

.blog-card p {
  color: var(--home-muted);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.9;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card__more {
  color: var(--home-ink);
  font-size: 11px;
  font-weight: 700;
}

.blog-card__more b {
  color: var(--home-red);
}

/* ===== FAQ ===== */
.faq-list {
  margin-inline: auto;
  max-width: 860px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item[open] {
  border-color: rgba(219,33,43,.4);
}

.faq-item summary {
  color: var(--home-ink);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 16px 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--home-red);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 2;
  margin: 0;
  padding: 0 18px 16px;
}

/* ===== NEWSLETTER ===== */
.newsletter-band {
  background: linear-gradient(120deg, var(--home-red) 0%, #e03b37 55%, #bd2a27 100%);
  border-radius: 24px;
  margin-top: clamp(48px, 6vw, 80px);
  overflow: hidden;
  position: relative;
}

.newsletter-band::before {
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, transparent 60%);
  content: "";
  height: 340px;
  left: -80px;
  position: absolute;
  top: -120px;
  width: 340px;
}

.newsletter-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr minmax(360px, .85fr);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.newsletter-copy__tag {
  color: #ffe3e1;
  font-size: 11px;
  font-weight: 700;
}

.newsletter-copy h2 {
  color: #fff;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.5;
  margin: 8px 0 8px;
}

.newsletter-copy p {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  line-height: 1.9;
  margin: 0;
}

.newsletter-form {
  background: #fff;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 6px;
}

.newsletter-form input {
  background: transparent;
  border: 0;
  font-family: "Estedad", Tahoma, Arial, sans-serif;
  font-size: 13px;
  min-width: 0;
  outline: 0;
  padding: 0 14px;
}

.newsletter-form .btn-k {
  background: var(--home-ink);
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-family: "Estedad", Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  min-height: 50px;
  padding: 0 22px;
  transition: background .2s;
}

.newsletter-form .btn-k:hover {
  background: #2b2d35;
}

.newsletter-form__note {
  color: #fff;
  display: none;
  font-size: 11px;
  grid-column: 1 / -1;
  padding-bottom: 4px;
}

.newsletter-form__note[data-sent="true"] {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }

  .trust-item:nth-child(2) {
    border-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stat-item:nth-child(2) {
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .container-k,
  .home-hero {
    padding-inline: 16px;
  }

  .home-kit {
    padding-bottom: 48px;
  }

  .home-hero {
    padding-top: 14px;
  }

  .banner-placeholder--hero {
    aspect-ratio: 5 / 6;
    border-radius: 16px;
    min-height: 0;
  }

  .banner-placeholder--campaign {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .banner-placeholder--wide {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
    padding: 18px 0;
  }

  .trust-item {
    border-bottom: 1px solid var(--home-line);
    border-left: 0;
    padding: 10px 6px;
  }

  .trust-item svg {
    flex-basis: 36px;
    height: 36px;
    padding: 8px;
  }

  .trust-item strong {
    font-size: 11px;
  }

  .trust-item small {
    font-size: 10px;
  }

  .section-head {
    align-items: center;
    margin-bottom: 20px;
  }

  .section-head h2 {
    font-size: 20px;
  }

  .category-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-kit .product-grid {
    gap: 18px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-kit .product-card-info {
    padding: 12px 12px 0;
  }

  .home-kit .product-card-info h3 {
    font-size: 11px;
  }

  .home-kit .product-price {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
    gap: 2px;
  }

  .home-kit .product-badge {
    height: 30px;
    right: 8px;
    top: 8px;
  }

  .home-kit .wishlist-btn {
    height: 32px;
    left: 8px;
    top: 8px;
    width: 32px;
  }

  .offer-section {
    padding-top: 40px;
  }

  .offer-timer {
    justify-content: center;
    margin-top: 16px;
    width: 100%;
    flex-wrap: wrap;
  }

  .offer-timer__cell {
    min-width: 46px;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-left: 0;
    padding: 12px;
  }

  .newsletter-inner {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    background: #fff;
    border-radius: 10px;
    min-height: 48px;
  }

  .newsletter-form .btn-k {
    min-height: 48px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-head__link {
    border: 0;
    font-size: 10px;
    padding: 6px 0;
  }

  .banner-placeholder {
    padding: 20px;
  }

  .banner-placeholder strong {
    font-size: 19px;
  }

  .banner-placeholder small {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-kit *,
  .home-kit *::before,
  .home-kit *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Shared furniture used by the layout and banner system
   (kept from the previous homepage stylesheet)
   ============================================================ */

/* Banner media (rendered instead of placeholder when image exists) */
.banner-link {
  color: inherit;
  display: block;
  text-decoration: none;
}
.banner-link:hover {
  opacity: .95;
}
.banner-media {
  background: var(--home-bg-soft);
  display: block;
  overflow: hidden;
  width: 100%;
}
.banner-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.banner-media--hero {
  aspect-ratio: 36 / 14;
  border-radius: 22px;
}
.banner-media--campaign {
  aspect-ratio: 760 / 360;
  border-radius: 16px;
}
.banner-media--wide {
  aspect-ratio: 1600 / 420;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .banner-media--hero {
    aspect-ratio: 5 / 6;
    border-radius: 16px;
  }
  .banner-media--campaign { aspect-ratio: 3 / 2; }
  .banner-media--wide { aspect-ratio: 5 / 4; }
}

/* ---- Mobile navigation ---- */
.mobile-menu-overlay {
  background: rgba(18, 18, 18, .5);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .25s ease;
  z-index: 9996;
}

.mobile-menu-drawer {
  background: #fff;
  bottom: 0;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .12);
  max-width: min(88vw, 390px);
  overflow-y: auto;
  padding: 18px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform .28s ease;
  width: 100%;
  z-index: 9997;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-drawer__head {
  align-items: center;
  border-bottom: 1px solid var(--home-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
}

.mobile-menu-drawer__head strong {
  color: var(--home-ink);
  font-size: 17px;
}

.mobile-menu-drawer__head button {
  align-items: center;
  background: var(--home-bg-soft);
  border: 0;
  border-radius: 50%;
  color: var(--home-ink);
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.mobile-menu-search {
  background: var(--home-bg-soft);
  border: 1px solid var(--home-line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 18px;
  padding: 4px;
}

.mobile-menu-search input {
  background: transparent;
  border: 0;
  font-size: 12px;
  min-width: 0;
  outline: 0;
  padding: 0 10px;
}

.mobile-menu-search button {
  background: var(--home-red);
  border: 0;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  min-height: 40px;
  padding: 0 15px;
}

.mobile-menu-links {
  display: grid;
}

.mobile-menu-links > a,
.mobile-menu-links summary {
  border-bottom: 1px solid var(--home-line);
  color: var(--home-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  padding: 15px 4px;
}

.mobile-menu-links summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-links summary::after {
  content: "+";
  float: left;
  font-size: 18px;
  font-weight: 400;
}

.mobile-menu-links details[open] summary::after {
  content: "−";
}

.mobile-menu-links details div {
  background: var(--home-bg-soft);
  border-radius: 8px;
  display: grid;
  padding: 7px 13px;
}

.mobile-menu-links details div a {
  color: var(--home-muted);
  font-size: 12px;
  padding: 9px 0;
}

@media (min-width: 1025px) {
  .mobile-menu-overlay,
  .mobile-menu-drawer {
    display: none;
  }
}