.hero {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 22px auto 18px;
  padding: 18px 26px 14px;
  width: min(1560px, calc(100% - 24px));
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid rgba(224, 210, 197, 0.9);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(95, 74, 56, 0.08);
}

.storefront-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
}

.storefront-header__logo {
  display: flex;
  align-items: center;
}

.storefront-brand-link {
  width: clamp(120px, 11vw, 156px);
  margin: 0;
}

.storefront-brand-link img {
  width: 100%;
  max-height: 104px;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.storefront-header__main {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.storefront-header__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  width: 100%;
}

.storefront-header__bottomline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  min-width: 0;
}

.storefront-search {
  flex: 1 1 auto;
  width: min(760px, 100%);
  max-width: 760px;
  margin: 0 auto;
}

.storefront-search input {
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  border-radius: var(--rf-radius-pill);
  padding-inline: 42px 18px;
  font-size: 14px;
  border: 1px solid #e4d8cd;
  background: linear-gradient(180deg, #fff 0%, #fffdfa 100%);
  box-shadow: 0 8px 22px rgba(121, 97, 74, 0.08);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.storefront-search input::placeholder {
  color: #a69b91;
  font-weight: 400;
}

.storefront-search input:hover,
.storefront-search input:focus {
  border-color: #dfcfc1;
  background: linear-gradient(180deg, #fff 0%, #fffefc 100%);
  box-shadow: 0 12px 28px rgba(121, 97, 74, 0.10);
}

.storefront-search input:focus {
  outline: none;
}

.storefront-search {
  position: relative;
}

.storefront-search .index2-search-submit {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  border-radius: 50%;
  background: transparent;
  color: #bdb3ab;
  border: none;
  box-shadow: none;
  font-size: 15px;
  padding: 0;
}

.storefront-search .index2-search-submit svg {
  width: 18px;
  height: 18px;
  display: block;
}

.storefront-search .index2-search-submit:hover,
.storefront-search .index2-search-submit:focus-visible {
  background: transparent;
  color: var(--accent);
}

.storefront-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  min-width: max-content;
  flex: 0 0 auto;
}

.storefront-linkbtn {
  width: auto;
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: #544c44;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  flex: 0 0 auto;
  white-space: nowrap;
}

.storefront-linkbtn:hover,
.storefront-linkbtn:focus-visible {
  background: transparent;
  color: var(--accent);
}

.storefront-linkbtn:disabled {
  cursor: default;
  opacity: 1;
}

.storefront-linkbtn__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: 0 0 16px;
}

.storefront-linkbtn__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.storefront-cart-toggle {
  position: relative;
  min-width: 156px;
  width: 156px;
  max-width: 156px;
  min-height: 42px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid #eac2df;
  background: var(--accent-soft);
  color: var(--accent-ink);
  box-shadow: 0 8px 14px rgba(123, 37, 106, 0.10);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.storefront-cart-toggle:hover,
.storefront-cart-toggle:focus-visible {
  background: #efc6e6;
  color: #441137;
  border-color: #dfafd3;
  outline: none;
}

.storefront-cart-toggle.has-items,
.storefront-cart-toggle.has-items:hover,
.storefront-cart-toggle.has-items:focus-visible {
  background: linear-gradient(180deg, #cf2bb2 0%, #a81490 100%);
  color: #fff;
  border-color: #b21c9a;
  box-shadow: 0 10px 18px rgba(117, 17, 98, 0.24);
}

.storefront-cart-toggle.has-items:hover,
.storefront-cart-toggle.has-items:focus-visible {
  background: linear-gradient(180deg, #b8229e 0%, #93107d 100%);
  color: #fff;
  border-color: #9f1889;
}

.storefront-cart-toggle__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  position: relative;
}

.storefront-cart-toggle__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.storefront-cart-toggle__amount {
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}

.storefront-cart-toggle__badge {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #7f285f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.storefront-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 0 1 auto;
}

.storefront-catalog-pill,
.storefront-nav__link {
  width: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #463d35;
  font-weight: 600;
  box-shadow: none;
  font-size: 13px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.storefront-catalog-pill {
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cf2bb2 0%, #a81490 100%);
  color: #fff;
  border: 1px solid #b21c9a;
  box-shadow: 0 10px 18px rgba(117, 17, 98, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.storefront-catalog-pill__desktop-icon {
  display: inline-flex;
  width: 16px;
  height: 13px;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 10px;
}

.storefront-catalog-pill__desktop-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.storefront-catalog-pill__icon {
  display: none;
  width: 18px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 10px;
}

.storefront-catalog-pill__icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.storefront-catalog-pill:hover,
.storefront-catalog-pill:focus-visible,
.storefront-catalog-pill.is-active {
  background: linear-gradient(180deg, #b8229e 0%, #93107d 100%);
  color: #fff;
  border-color: #9f1889;
}

.storefront-nav__link:hover,
.storefront-nav__link:focus-visible,
.storefront-nav__link.is-active {
  background: transparent;
  color: var(--accent);
  outline: none;
  box-shadow: none;
}

.telegram-auth-popover {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(18, 10, 24, 0.42);
}

.telegram-auth-popover__card {
  width: min(420px, calc(100vw - 36px));
  background: #fffdf8;
  border: 1px solid #ead8ca;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(55, 34, 26, 0.16);
  padding: 14px;
}

.telegram-auth-popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.telegram-auth-popover__head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.site-info-modal {
  position: fixed;
  inset: 0;
  z-index: 58;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(18, 10, 24, 0.42);
}

.site-info-modal__card {
  width: min(760px, calc(100vw - 36px));
  max-height: min(80vh, calc(100vh - 36px));
  overflow: auto;
  background: #fffdf8;
  border: 1px solid #ead8ca;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(55, 34, 26, 0.16);
  padding: 14px;
}

.site-info-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.site-info-modal__head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.site-info-modal__body {
  color: #4f3f34;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: anywhere;
}


.index2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(1560px, calc(100% - 24px));
  margin: 0 auto 18px;
  align-items: start;
}

.index2-content {
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(193, 169, 139, 0.55);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(120, 84, 31, 0.08);
}

.index2-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 44;
  display: grid;
  place-items: center;
  padding: 18px;
}

.index2-catalog-modal__card {
  width: min(920px, 100%);
  max-height: min(80vh, 900px);
  overflow: auto;
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(193, 169, 139, 0.55);
  box-shadow: 0 18px 42px rgba(36, 20, 6, 0.22);
  padding: 16px;
}

.index2-catalog-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.index2-content {
  padding: 18px;
}

.index2-toolbar {
  align-items: center;
  gap: 16px;
}

.index2-hero-controls {
  --index2-hero-control-height: 44px;
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: stretch;
}

.index2-menu-toggle {
  display: none;
}

.index2-search {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.index2-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: var(--index2-hero-control-height);
  min-height: var(--index2-hero-control-height);
  max-height: var(--index2-hero-control-height);
}

.index2-search-submit {
  width: var(--index2-hero-control-height);
  min-width: var(--index2-hero-control-height);
  max-width: var(--index2-hero-control-height);
  height: var(--index2-hero-control-height);
  min-height: var(--index2-hero-control-height);
  max-height: var(--index2-hero-control-height);
  aspect-ratio: 1 / 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid #eac2df;
  border-radius: 12px;
}

.index2-search-submit:hover,
.index2-search-submit:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.index2-meta {
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  padding-inline: 10px;
  min-height: var(--index2-hero-control-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.index2-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 22px 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(193, 169, 139, 0.35);
}

.index2-summary__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #352417;
}

.index2-results-meta {
  color: #745c45;
  margin-bottom: 18px;
}

.index2-category-text {
  margin-top: 26px;
}

.index2-category-text__inner {
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(193, 169, 139, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  color: #5c4a3b;
  font-size: 15px;
  line-height: 1.7;
}

.index2-category-text__inner p {
  margin: 0;
}

.index2-category-text__inner p + p {
  margin-top: 12px;
}

.index2-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.index2-card {
  overflow: hidden;
  padding: 14px;
  gap: 8px;
  height: 100%;
}

.index2-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: none;
}

.index2-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.index2-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.index2-card__badge--new {
  padding: 6px 10px;
  border-radius: var(--rf-radius-pill);
  background: var(--rf-accent);
  color: #fff;
  box-shadow: 0 8px 18px var(--rf-accent-shadow);
}

.index2-card__badge--orders {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #7f285f;
  color: #fff;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(90, 34, 68, 0.18);
}

.index2-card__badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.index2-card__badge-strip .index2-card__badge--new,
.index2-card__badge-strip .index2-card__badge--orders {
  position: static;
}

.index2-card__image-btn {
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
}

.index2-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.index2-card__image.is-placeholder {
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.index2-card__body {
  display: grid;
  grid-template-rows: auto minmax(16px, auto) minmax(42px, auto);
  gap: 6px;
  align-content: start;
  min-width: 0;
}

.index2-card__actions {
  margin-top: 4px;
  display: flex;
  align-items: flex-end;
  align-self: start;
  min-height: 42px;
}

.index2-card__buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 42px;
}

.index2-card .name {
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.22;
  min-height: calc(1.22em * 3);
  max-height: calc(1.22em * 3);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.index2-card .card-head {
  display: grid;
  gap: 4px;
  min-height: calc((0.94rem * 1.22 * 3) + 20px);
}

.index2-card .card-meta-box {
  display: grid;
  gap: 2px;
  align-content: start;
}

.index2-card .price {
  font-size: 22px;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #2a201a;
  white-space: nowrap;
}

.index2-card .price-rub {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.index2-card .card-origin,
.index2-card .card-category,
.index2-card .muted {
  color: #6d6154;
  font-size: 13px;
  line-height: 1.16;
}

.index2-card .card-category {
  margin-top: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.index2-card .card-origin {
  margin-top: 0;
  min-height: 16px;
}

.index2-card .qty-inline {
  margin-left: auto;
}

.index2-card .qty-inline--card {
  margin-left: auto;
  flex-shrink: 0;
}

.index2-card__cart-btn {
  width: 46px;
  min-width: 46px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff4fab 0%, #f12c8e 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(103, 46, 76, 0.18);
}

.index2-card__cart-btn:hover,
.index2-card__cart-btn:focus-visible {
  background: linear-gradient(180deg, #ff63b6 0%, #e01f80 100%);
  box-shadow: 0 8px 16px rgba(103, 46, 76, 0.22);
}

.index2-card__cart-btn svg {
  width: 21px;
  height: 21px;
  display: block;
}

.index2-empty {
  grid-column: 1 / -1;
  margin: 12px 0 0;
}

.index2-tree__list,
.index2-tree__children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index2-tree__children {
  margin-left: 18px;
  padding-left: 8px;
  border-left: 1px dashed rgba(193, 169, 139, 0.35);
}

.index2-tree__node + .index2-tree__node {
  margin-top: 8px;
}

.index2-tree__row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.index2-tree__toggle,
.index2-tree__toggle--stub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 1;
  border-radius: 10px;
  border: 1px solid rgba(193, 169, 139, 0.5);
  background: rgba(255, 245, 252, 0.86);
  color: #6a234a;
  font-weight: 800;
}

.index2-tree__toggle--stub {
  visibility: hidden;
}

.index2-tree__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(193, 169, 139, 0.45);
  background: rgba(255, 250, 244, 0.96);
  color: #3a2617;
  font: inherit;
}

.index2-tree__link strong {
  color: #7a6350;
  font-size: 0.92rem;
}

@media (max-width: 1480px) {
  .index2-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1220px) {
  .index2-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.index2-tree__link.active,
.secondary-btn--wide.is-active,
.index2-tree__link:hover {
  background: linear-gradient(180deg, rgba(251, 222, 247, 0.98), rgba(244, 202, 238, 0.96));
  color: #5d1f45;
}

.index2-hero-controls .cart-toggle,
.index2-hero-controls .index2-meta {
  width: 100%;
  min-height: var(--index2-hero-control-height);
  max-height: var(--index2-hero-control-height);
}

.index2-hero-controls .telegram-auth-area {
  width: 100%;
}

.index2-hero-controls .telegram-login-wrap,
.index2-hero-controls .telegram-user-wrap {
  width: 100%;
}

.index2-hero-controls .telegram-login-wrap {
  min-height: 0;
}

.index2-hero-controls .telegram-user-wrap {
  gap: 10px;
}

.index2-hero-controls .telegram-user-label {
  text-align: center;
}

.index2-hero-controls .telegram-user-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.index2-hero-controls .telegram-user-wrap.has-admin-button .telegram-user-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.index2-hero-controls .telegram-user-actions .secondary-btn {
  min-height: var(--index2-hero-control-height);
  white-space: normal;
  text-align: center;
}

.index2-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 28, 12, 0.34);
  z-index: 35;
}

.index2-menu-backdrop.open {
  display: block;
}

@media (max-width: 980px) {
  .hero {
    padding: 16px 16px 12px;
    width: min(100% - 16px, 100%);
  }

  .storefront-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .storefront-header__logo {
    justify-content: center;
  }

  .storefront-header__topline,
  .storefront-header__bottomline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .storefront-header__topline {
    display: flex;
    min-height: 0;
    justify-content: flex-start;
  }

  .storefront-search {
    max-width: none;
    margin: 0;
    width: 100%;
    flex: 1 1 auto;
  }

  .storefront-actions {
    justify-content: space-between;
    margin-left: 0;
    min-width: 0;
    width: 100%;
  }

  .storefront-nav {
    justify-content: center;
  }

  .index2-layout {
    grid-template-columns: 1fr;
    width: min(100% - 16px, 100%);
  }

  .storefront-brand-link img {
    max-height: 92px;
  }

  .index2-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 14px 14px 10px;
  }

  .storefront-header {
    position: relative;
    padding-top: 4px;
  }

  .storefront-header__logo {
    justify-content: center;
    min-height: 92px;
    padding: 0 148px 0 58px;
  }

  .storefront-header__main {
    display: block;
  }

  .storefront-header__topline {
    display: block;
    min-height: 0;
    margin-top: 10px;
  }

  .storefront-actions {
    position: static;
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
    gap: 14px 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .storefront-linkbtn {
    display: inline-flex;
    min-width: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .storefront-linkbtn__label {
    display: inline;
    font-size: 12px;
  }

  .storefront-cart-toggle {
    position: absolute;
    top: 8px;
    right: 0;
    min-width: 156px;
    width: 156px;
    max-width: 156px;
    margin-left: 0;
    z-index: 3;
  }

  .storefront-cart-toggle__amount {
    font-size: 18px;
  }

  .storefront-nav {
    display: flex;
    width: 100%;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .storefront-catalog-pill,
  .storefront-nav__link {
    font-size: 12px;
  }

  .storefront-header__bottomline {
    position: static;
    display: block;
    min-height: 0;
    gap: 0;
    margin-top: 12px;
  }

  .storefront-catalog-pill {
    position: absolute;
    top: 8px;
    left: 0;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
  }

  .storefront-catalog-pill__icon {
    display: inline-flex;
    margin-right: 0;
  }

  .storefront-catalog-pill__label {
    display: none;
  }

  .storefront-catalog-pill__desktop-icon {
    display: none;
  }

  .storefront-brand-link img {
    max-height: 82px;
  }

  .index2-hero-controls {
    --index2-hero-control-height: 40px;
  }

  .index2-layout {
    gap: 16px;
  }

  .index2-content,
  .index2-catalog-modal__card {
    padding: 14px;
    border-radius: 14px;
  }

  .index2-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .index2-search button {
    width: auto;
  }

  .index2-search-submit {
    width: var(--index2-hero-control-height);
    min-width: var(--index2-hero-control-height);
    max-width: var(--index2-hero-control-height);
    height: var(--index2-hero-control-height);
    min-height: var(--index2-hero-control-height);
    max-height: var(--index2-hero-control-height);
  }

  .index2-meta,
  .index2-toolbar .cart-toggle {
    width: 100%;
  }

  .index2-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .index2-grid {
    grid-template-columns: 1fr !important;
  }
}
