/* =============================================
   home.css — стилі головної сторінки (index.php)
   Не чіпає css/style.css (товарні лендинги) і
   не перевизначає .demo-header/.site-search
   глобально — тільки в межах .demo-header--v2,
   яка є лише на головній сторінці.
   ============================================= */

/* ===== Змінні теми (темний фон, як на референсі smartstoreua.com) ===== */
:root {
  --site-bg: #0A0A0B;
  --site-bg-soft: #121214;
  --site-card: #17181B;
  --site-card-2: #1D1E22;
  --site-border: rgba(255,255,255,0.08);
  --site-fg: #F2F2F3;
  --site-muted: #9A9DA2;
  --site-accent: #FFFFFF;
  --site-accent-dark: #D8D9DC;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--site-bg);
  color: var(--site-fg);
  min-height: 100vh;
}

/* Повноширинна обгортка (банер/категорії) — на відміну від .container
   (max-width 1240px, для каталогу), займає всю ширину сайту з невеликими
   боковими відступами. */
.container-full {
  width: 100%;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .container-full { padding: 0 48px; }
}
@media (max-width: 1023px) {
  .container-full { padding: 0 32px; }
}

/* ================================
   ШАПКА — новий вигляд (.demo-header--v2)
   ================================ */
.demo-header--v2 {
  display: flex !important;
  align-items: center !important;
  background: var(--site-bg) !important;
  border-bottom: 1px solid var(--site-border);
  padding: 14px 64px !important;
  gap: 14px !important;
  color: var(--site-fg);
}
.demo-header--v2 .demo-header-left { display: flex; align-items: center; gap: 16px; }

@media (max-width: 1279px) {
  .demo-header--v2 { padding: 14px 48px !important; }
}
@media (max-width: 1023px) {
  .demo-header--v2 { padding: 14px 32px !important; }
}
.demo-header--v2 .demo-header-burger { color: var(--site-fg); }
.demo-header--v2 .demo-logo-link { flex-shrink: 0; }
.demo-header--v2 .logo-img { height: 40px; }

/* Кнопка "Каталог" — акцентна пігулка, як на референсі */
.demo-header--v2 .catalog-btn-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--site-accent);
  color: #0A0A0B;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 999px;
  padding: 15px 15px 15px 15px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.demo-header--v2 .catalog-btn-desktop:hover { background: var(--site-accent-dark); transform: none; }
.demo-header--v2 .catalog-btn-desktop:focus { outline: none; }
.demo-header--v2 .catalog-btn-desktop svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.demo-header--v2 .catalog-btn-chevron { margin-left: 2px; }

/* Пошук — біла пігулка, трохи вужча і по центру доступного простору */
.demo-header--v2 .site-search {
  flex: 1 1 auto !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  order: 3;
}
.demo-header--v2 .site-search-input {
  height: 46px;
  border-radius: 999px;
  border: none;
  padding: 0 20px;
  background: #fff;
  color: #0A0A0B;
  font-size: 14px;
}
.demo-header--v2 .site-search-toggle-btn { color: var(--site-fg); order: 3; }

/* Блок телефону */
.demo-header--v2 .header-phone { order: 4; }
.header-phone { position: relative; flex-shrink: 0; }
.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 999px;
  padding: 8px 16px 8px 14px;
  color: var(--site-fg);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.header-phone-icon { display: flex; color: var(--site-fg); flex-shrink: 0; }
.header-phone-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.header-phone-number { font-size: 14px; font-weight: 700; }
.header-phone-sub { font-size: 11px; color: var(--site-muted); }
.header-phone-chevron { color: var(--site-muted); transition: transform 0.2s ease; flex-shrink: 0; }
.header-phone.open .header-phone-chevron { transform: rotate(180deg); }

.header-phone-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.header-phone.open .header-phone-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-phone-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #0A0A0B;
  font-size: 14px;
  font-weight: 600;
}
.header-phone-option:hover { background: #F5F5F7; }
.header-phone-option-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-phone-option-icon--call { background: #2F9BFF; }
.header-phone-option-icon--telegram { background: #29A9EA; }
.header-phone-option-icon--viber { background: #7360F2; }

/* Кошик */
.demo-header--v2 .cart-header-btn {
  order: 6 !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--site-accent);
  color: #0A0A0B;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-header--v2 .cart-header-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #0A0A0B;
  border: 2px solid var(--site-bg);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-sizing: border-box;
}

/* Другорядне навігаційне меню (Доставка/Обмін/Гарантія/Контакти) заховане —
   такі самі посилання вже є у футері; на референсі (фото 3) шапка без них. */
.demo-header--v2 .demo-nav { display: none !important; }

@media (max-width: 1024px) {
  .demo-header--v2 .header-phone { display: none !important; }
}
@media (max-width: 768px) {
  .demo-header--v2 { padding: 8px 20px !important; }
  .demo-header--v2 .header-account-btn { display: none; }
  .demo-header--v2 .header-phone-dropdown { right: -8px; }
  .container-full,
  .container { padding-left: 20px; padding-right: 20px; }

  /* Пошук на мобільному (випадає під шапкою після тапу на іконку лупи) */
  .demo-header--v2 .site-search.mobile-open {
    background: var(--site-bg) !important;
    padding: 10px 16px 16px !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--site-border);
  }
  .demo-header--v2 .site-search.mobile-open .site-search-input {
    height: 46px;
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0 20px;
    background: #fff;
    color: #0A0A0B;
    font-size: 14px;
    font-family: inherit;
  }
  .demo-header--v2 .site-search.mobile-open .site-search-input::placeholder { color: #9A9DA2; }
}

/* ================================
   ЗАТЕМНЕННЯ ФОНУ / МЕНЮ КАТЕГОРІЙ
   ================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

.category-menu {
  position: fixed;
  top: 0;
  left: -420px;
  width: 400px;
  height: 100vh;
  background: var(--site-card);
  color: var(--site-fg);
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.category-menu.active { left: 0; }

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--site-border);
}
.menu-header h2 { margin: 0; font-size: 22px; font-weight: 700; color: var(--site-fg); }

.menu-close {
  background: var(--site-card-2);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--site-fg);
}
.menu-close:hover { background: #2A2B30; }
.menu-close svg { width: 18px; height: 18px; }

.category-list { list-style: none; margin: 0; padding: 12px 0; overflow-y: auto; flex: 1; }
.category-list::-webkit-scrollbar { width: 6px; }
.category-list::-webkit-scrollbar-thumb { background: #3A3B40; border-radius: 3px; }

.category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--site-border);
  text-decoration: none;
  color: var(--site-fg);
}
.category-item:last-child { border-bottom: none; }
.category-item:hover { background: var(--site-card-2); }
.category-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--site-fg); }
.category-name { flex: 1; font-size: 16px; font-weight: 500; }
.category-arrow { width: 16px; height: 16px; color: var(--site-muted); transition: transform 0.2s ease; }
.category-item:hover .category-arrow { transform: translateX(4px); color: var(--site-accent); }

@media (max-width: 768px) {
  .catalog-btn-desktop,
  .demo-header--v2 .catalog-btn-desktop { display: none !important; }
  .catalog-btn-wrap { display: flex; }

  .category-menu {
    top: auto;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 85vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .category-menu.active { left: 0; bottom: 0; }

  .menu-handle { width: 40px; height: 4px; background: #3A3B40; border-radius: 2px; margin: 12px auto 4px; }
  .menu-header { padding: 8px 20px 16px; }
  .menu-header h2 { font-size: 20px; }
  .category-item { padding: 14px 20px; }
  .category-name { font-size: 15px; }
}
@media (min-width: 769px) {
  .catalog-btn-mobile,
  .catalog-btn-wrap { display: none; }
  .menu-handle { display: none; }
}

/* Кнопка "Каталог" — мобільна (лишається на випадок використання деінде) */
.catalog-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 90%;
  padding: 18px 28px;
  background: var(--site-accent);
  color: #0A0A0B;
  border: none;
  border-radius: 500px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.catalog-btn-mobile:hover { background: var(--site-accent-dark); }
.catalog-btn-mobile svg { width: 20px; height: 20px; }
.catalog-btn-wrap { display: none; justify-content: center; padding: 0; }

/* ================================
   БАНЕР (products-section) — на всю ширину, картки ближче
   ================================ */
.products-section {
  padding: 20px 0 28px;
  background: var(--site-bg);
  overflow: hidden;
}

.product-slider { position: relative; padding: 4px 0; }

.product-card {
  background: #25272b;
  border: 1px solid var(--site-border);
  border-radius: 20px;
  padding: 14px;
  transition: 0.3s;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 34px !important;
  height: 34px !important;
  margin-top: 0 !important;
  background: rgba(255,255,255,0.95) !important;
  border-radius: 50% !important;
  color: #000 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  top: 50% !important;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.swiper-button-next:after,
.swiper-button-prev:after { font-size: 14px !important; font-weight: 800; line-height: 1; }
.swiper-button-prev { left: 8px !important; }
.swiper-button-next { right: 8px !important; }
.swiper-button-next:focus,
.swiper-button-prev:focus { outline: none; }

/* ================================
   КАТЕГОРІЇ — прямокутні плитки на всю ширину, 7 у ряд
   ================================ */
.category-tiles-grid--rect {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.category-tiles-grid--rect .category-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  text-align: left;
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--site-fg);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.category-tiles-grid--rect .category-tile:hover {
  background: var(--site-card-2);
  transform: translateY(-2px);
}
.category-tiles-grid--rect .category-tile img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transform: none;
}
.category-tiles-grid--rect .category-tile:hover img { transform: none; }
.category-tiles-grid--rect .category-tile span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .category-tiles-grid--rect { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .category-tiles-grid--rect {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-tiles-grid--rect::-webkit-scrollbar { display: none; }
  .category-tiles-grid--rect .category-tile {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* ================================
   КАТАЛОГ (Хіт продажу / Новинки) — 5 у ряд, темні картки
   ================================ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 600px) {
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 1200px) {
  .catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
}

.catalog-card {
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, border-color 0.2s;
  min-width: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.catalog-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.35); }

.catalog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--site-card-2);
  margin-bottom: 10px;
}

.catalog-category {
  font-size: 10px;
  color: var(--site-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.catalog-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--site-fg);
  line-height: 1.2;
}
.catalog-sku {
  font-size: 10px;
  color: var(--site-muted);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.catalog-price { font-weight: 800; font-size: 15px; color: var(--site-fg); white-space: nowrap; }
.catalog-card-btn {
  background: var(--site-accent);
  color: #0A0A0B;
  border-radius: 30px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
.catalog-card-btn:hover { background: var(--site-accent-dark); }

@media (max-width: 360px) {
  .catalog-price { font-size: 13px; }
  .catalog-card-btn { padding: 6px 8px; font-size: 10px; }
  .catalog-grid { gap: 8px; }
}

/* ===== Утилітарні класи для секцій "Категорії/Хіт продажу/Новинки" ===== */
.section-band { padding: 36px 0 0; background: var(--site-bg); }
.section-band.no-top-pad { padding: 36px 0; }
.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .container { padding: 0 48px; }
}
@media (max-width: 1023px) {
  .container { padding: 0 32px; }
}
.section-title {
  text-align: center;
  color: var(--site-fg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.catalog-grid.no-margin-bottom { margin-bottom: 0; }
.catalog-card-link { cursor: pointer; }

/* ================================
   ОПИС (description-section) — темна карта
   ================================ */
.description-section { padding: 36px 0 48px; background: var(--site-bg); font-family: 'Montserrat', sans-serif; }
.seo-block {
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.seo-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 100px;
  background: linear-gradient(to bottom, rgba(23,24,27,0), var(--site-card));
  pointer-events: none;
  transition: opacity 0.3s;
}
.seo-title { font-size: 13px; font-weight: 600; margin-bottom: 20px; color: var(--site-fg); }
.seo-content p, .seo-content li { font-size: 12px; line-height: 1.6; color: var(--site-muted); margin-bottom: 10px; }
.seo-content ul { padding-left: 20px; margin-bottom: 0; }
.seo-block.expanded { max-height: 2000px; }
.description-lead { font-weight: 700; color: var(--site-fg); margin-top: 20px; }

.btn-wrapper { display: flex; justify-content: flex-end; margin-top: 20px; }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background-color: var(--site-accent);
  color: #0A0A0B;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.read-more-btn:hover { background-color: var(--site-accent-dark); }
.btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(6,40,47,0.15);
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.btn-icon::before { content: '↓'; font-size: 14px; color: #0A0A0B; }
.expanded-btn .btn-icon { transform: rotate(180deg); }

/* ================================
   ВІДГУКИ (reviews-section) — темні картки
   ================================ */
.reviews-section { padding: 56px 0; background: var(--site-bg); font-family: 'Montserrat', sans-serif; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--site-card);
  border: 1px solid var(--site-border);
  border-radius: 25px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.hidden-review { display: none !important; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.user-avatar { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.user-name { font-weight: 700; font-size: 15px; color: var(--site-fg); }
.rating { font-size: 12px; margin-top: 3px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--site-muted); flex-grow: 1; }
.review-date { font-size: 12px; color: #6C6F73; margin-top: 15px; }

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--site-accent);
  color: #0A0A0B;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.show-more-btn:hover { background-color: var(--site-accent-dark); }
.refresh-icon { font-size: 18px; font-weight: bold; transition: transform 0.6s ease; }
.show-more-btn:hover .refresh-icon { transform: rotate(180deg); }

/* ===== Лого / Футер ===== */
.logo-img { height: 40px; width: auto; display: block; }
@media (max-width: 768px) { .logo-img { height: 32px; } }

.footer-payments { display: flex; align-items: center; gap: 8px; }
.footer-payments img { height: 28px; width: auto; display: block; border-radius: 4px; }
.logo-footer-img { height: 32px; width: auto; display: block; }
.menu-link-icon { opacity: 0.4; flex-shrink: 0; }

/* ================================
   МОБІЛЬНЕ МЕНЮ (бургер) — вигляд як у панелі "Категорії" на ПК
   (.site-mobile-menu--v2, лише на головній)
   ================================ */
.site-mobile-menu--v2 .site-mobile-menu-head {
  border-bottom: 1px solid var(--site-border);
  padding-bottom: 20px;
  margin-bottom: 12px;
}
.site-mobile-menu--v2 .site-mobile-menu-title {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--site-fg);
  margin: 0;
}
.site-mobile-menu--v2 .site-mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--site-card-2);
  border: none;
  outline: none;
  box-shadow: none;
}
.site-mobile-menu--v2 .site-mobile-menu-links { gap: 0; }
.site-mobile-menu--v2 .site-mobile-menu-link {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: normal;
  padding: 16px 0;
  border-bottom: none;
}
.site-mobile-menu--v2 .site-mobile-menu-link .menu-link-icon { display: none; }
.site-mobile-menu--v2 .site-mobile-menu-links-secondary {
  border-top: 1px solid var(--site-border);
  padding-top: 8px;
  margin-top: 16px;
}
.site-mobile-menu--v2 .site-mobile-menu-links-secondary .site-mobile-menu-link {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0;
}