/* Scroll to top */
.btn-scroll-top {
  position: fixed;
  right: 20px;
  top: unset !important;
  bottom: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: url('https://cdn.hstatic.net/files/200001144887/file/dieu_huong.svg') center / contain no-repeat;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  @media (max-width: 991px){
    bottom: 90px;
  }
}

.temp-cart{
  .btn-scroll-top {
    @media (max-width: 991px){
      bottom: 150px;
    }
  }
}

.btn-scroll-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
} 

/* Mobile menu sidebar — Figma 2769:111108 / 2769:111365 */

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

.mobile-menu-sidebar {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
  font-family: var(--skin-header-font);
  display: none;
}

.mobile-menu-sidebar.is-open, .mobile-menu-sidebar.is-closing {
  visibility: visible;
  display: block;
}

.mobile-menu-sidebar.is-open {
  pointer-events: auto;
}

.mobile-menu-sidebar.is-closing {
  pointer-events: none;
}

.mobile-menu-sidebar.is-open .mobile-menu-sidebar__overlay {
  opacity: 1;
}

.mobile-menu-sidebar.is-closing .mobile-menu-sidebar__overlay {
  opacity: 1;
  transition: none;
}

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

.mobile-menu-sidebar.is-closing .mobile-menu-sidebar__wrap {
  transform: translateX(100%);
}

.mobile-menu-sidebar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu-sidebar__wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  width: 300px;
  max-width: 86vw;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.mobile-menu-sidebar__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #111;
  cursor: pointer;
  box-sizing: border-box;
}

.mobile-menu-sidebar__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  max-width: 86vw;
  height: 100%;
  padding: 40px 0;
  background: var(--global-color-surface, #fff);
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-sidebar__close svg {
  display: block;
}

.mobile-menu-sidebar__user {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

.mobile-menu-sidebar__logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.mobile-menu-sidebar__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-sidebar__guest-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #989897;
}

.mobile-menu-sidebar__auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 40px;
  border-radius: 8px;
  background: var(--skin-primary-color, #035eb7);
  color: var(--global-color-on-primary, #fff);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
}

.mobile-menu-sidebar__auth-btn:hover {
  color: var(--global-color-on-primary, #fff);
  text-decoration: none;
}

.mobile-menu-sidebar__account-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #989897;
}

.mobile-menu-sidebar__account-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--blue-600, #003d79);
}

.mobile-menu-sidebar__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mobile-menu-sidebar__tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 6px;
  background: linear-gradient(270deg, #d4c57a 0%, #99820d 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.mobile-menu-sidebar__points {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #eeeadb;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.mobile-menu-sidebar__points .js-mm-points {
  background-image: linear-gradient(270deg, #d4c57a 0%, #99820d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mobile-menu-sidebar__points svg {
  flex-shrink: 0;
  display: block;
}

.mobile-menu-sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 24px 16px 0;
  border-top: 0.5px solid var(--global-color-border-default, rgba(197, 198, 204, 0.6));
}

.mobile-menu-sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
}

.mobile-menu-sidebar__nav-link:hover {
  text-decoration: none;
  color: #111;
  background: #e6f5fb;
}

.mobile-menu-sidebar__nav-link.is-active {
  background: #e6f5fb;
}

.mobile-menu-sidebar__nav-link svg {
  flex-shrink: 0;
  display: block;
}

.mobile-menu-sidebar__support {
  display: flex;
  flex-direction: column;
  padding: 12px 16px 0;
  border-top: 0.5px solid var(--global-color-border-default, rgba(197, 198, 204, 0.6));
}

.mobile-menu-sidebar__support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
}

.mobile-menu-sidebar__support-link svg {
  flex-shrink: 0;
  display: block;
}

.mobile-menu-sidebar__support-link:hover {
  text-decoration: none;
  color: #111;
}

.collection-filter--mb{
  display: none;
}

@media (min-width: 992px) {
  .mobile-menu-sidebar {
    display: none;
  }
}

/* Mobile bottom nav — Figma 2769:110898 */

:root {
  --mobile-bottom-nav-height: 72px;
}

@media (max-width: 991px) {
  main.body-main {
    //padding-bottom: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    padding-bottom: 24px;;
  }

  .main-footer {
    padding-bottom: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  }
}

body.is-mobile-cat-open {
  overflow: hidden;
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  display: none;
  align-items: stretch;
  justify-content: center;
  gap: 3.5px;
  background: var(--global-color-surface, #fff);
  box-shadow: 0 -4px 2px rgba(0, 0, 0, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-family: var(--skin-header-font);
}

.mobile-bottom-nav__item {
  flex: 1 1 0;
  max-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 12px 12px 16px;
  border: 0;
  border-top: 3px solid transparent;
  background: transparent;
  color: rgba(114, 114, 114, 0.6);
  text-decoration: none;
  cursor: pointer;
  &.special{
    background: #003D79;
    color: #fff;
  }
}

.mobile-bottom-nav__item svg {
  display: block;
  flex-shrink: 0;
}

.mobile-bottom-nav__item span {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.mobile-bottom-nav__item.is-active {
  border-top-color: var(--skin-primary-color, #035eb7);
  color: #003d79;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus {
  text-decoration: none;
  color: #003d79;
}

.mobile-cat-sheet {
  position: fixed;
  inset: 0;
  z-index: 10001;
  visibility: hidden;
  pointer-events: none;
}

.mobile-cat-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-cat-sheet.is-open .mobile-cat-sheet__overlay {
  opacity: 1;
}

.mobile-cat-sheet.is-open .mobile-cat-sheet__panel {
  transform: translateY(0);
}

.mobile-cat-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-cat-sheet__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--global-color-surface, #fff);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.mobile-cat-sheet__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  border-bottom: 0.5px solid var(--global-color-border-default, rgba(197, 198, 204, 0.6));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  flex-shrink: 0;
}

.mobile-cat-sheet__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
}

.mobile-cat-sheet__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.mobile-cat-sheet__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 12px calc(16px + env(safe-area-inset-bottom, 0px));
}

.mobile-cat-sheet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  justify-items: center;
}

.mobile-cat-sheet__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 80px;
  padding: 6px 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #003d79;
}

.mobile-cat-sheet__item:hover {
  text-decoration: none;
  color: #003d79;
}

.mobile-cat-sheet__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 66px;
  mix-blend-mode: darken;
  overflow: hidden;
  flex-shrink: 0;
}

.mobile-cat-sheet__img--empty {
  visibility: hidden;
}

.mobile-cat-sheet__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mobile-cat-sheet__name {
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  word-break: break-word;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-bottom-nav,
  .mobile-cat-sheet {
    display: none;
  }
}

/*-----------------------------------------------*/
/* STORE PAGE — Figma 1714:87577 */
/*-----------------------------------------------*/
.store-page {
  padding: 40px 0 48px;
  font-family: 'Inter', sans-serif;
  color: #272727;
}

.store-page__title {
  margin: 0 0 32px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
}

.store-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.store-page__current-address {
  flex: 1 1 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #272727;
}

.store-page__search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 280px;
  max-width: 442px;
  min-height: 45px;
  padding: 10px 16px;
  border: 0.5px solid rgba(197, 198, 204, 0.6);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: #929292;
  text-align: left;
  cursor: pointer;
}

.store-page__search span {
  flex: 1;
  min-width: 0;
}

.store-page__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 0 1 230px;
  min-width: 180px;
  min-height: 45px;
  padding: 10px 16px;
  border: 0.5px solid rgba(197, 198, 204, 0.6);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: #414141;
  text-align: left;
  cursor: pointer;
}

.store-page__filter:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.store-page__filter span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-page__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #035eb7;
  cursor: pointer;
}

.store-page__body {
  display: grid;
  grid-template-columns: minmax(0, 386px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.store-page__panel {
  border: 0.5px solid rgba(197, 198, 204, 0.6);
  border-radius: 8px;
  background: #fff;
  padding: 0 16px 16px;
}

.store-page__panel-head {
  padding: 16px 0 8px;
}

.store-page__panel-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
}

.store-page__panel-count {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #929292;
}

.store-page__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 688px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #035eb7 transparent;
}

.store-page__list::-webkit-scrollbar {
  width: 4px;
}

.store-page__list::-webkit-scrollbar-thumb {
  background: #035eb7;
  border-radius: 4px;
}

.store-page__list .checkout-store-item,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item {
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  gap: 12px;
  background: rgba(239, 240, 240, 0.5);
  transition: background 0.2s ease;
}

.store-page__list .checkout-store-item.is-checked,
.store-page__list .checkout-store-item:has(input:checked),
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item.is-checked,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item:has(input:checked) {
  background: #e6f3f9;
}

/* Radio — inactive: 1714:87681 / active: 1714:87680 */
.store-page__list .checkout-store-item .checkout-store-item__radio,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item .checkout-store-item__radio {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1.25px solid rgba(197, 198, 204, 0.6);
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

.store-page__list .checkout-store-item .checkout-store-item__radio::before,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item .checkout-store-item__radio::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  border: 1.5px solid #137ce3;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.store-page__list .checkout-store-item .checkout-store-item__radio::after,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item .checkout-store-item__radio::after {
  inset: 5px;
  background: #137ce3;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-page__list .checkout-store-item.is-checked .checkout-store-item__radio,
.store-page__list .checkout-store-item:has(input:checked) .checkout-store-item__radio,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item.is-checked .checkout-store-item__radio,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item:has(input:checked) .checkout-store-item__radio {
  border-color: #137ce3;
  border-width: 1.5px;
  background: #fff;
}

.store-page__list .checkout-store-item.is-checked .checkout-store-item__radio::before,
.store-page__list .checkout-store-item:has(input:checked) .checkout-store-item__radio::before,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item.is-checked .checkout-store-item__radio::before,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item:has(input:checked) .checkout-store-item__radio::before {
  opacity: 1;
}

.store-page__list .checkout-store-item.is-checked .checkout-store-item__radio::after,
.store-page__list .checkout-store-item:has(input:checked) .checkout-store-item__radio::after,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item.is-checked .checkout-store-item__radio::after,
.store-page-pick .checkout-store-modal__stores-scroll .checkout-store-item:has(input:checked) .checkout-store-item__radio::after {
  opacity: 1;
  transform: scale(1);
}

.store-page__list .checkout-store-item__badge,
.store-page-pick .checkout-store-item__badge {
  color: #4aaa42;
}

.store-page__list .checkout-store-item__status,
.store-page-pick .checkout-store-item__status {
  background: #4aaa42;
}

.store-page .checkout-store-item__icon,
.store-page-pick .checkout-store-item__icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  display: block;
}

.store-page-pick .checkout-store-modal__stores-scroll,
.store-page-pick .checkout-store-modal__region-scroll {
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #035eb7 transparent;
}

.store-page-pick .checkout-store-modal__stores-scroll::-webkit-scrollbar,
.store-page-pick .checkout-store-modal__region-scroll::-webkit-scrollbar {
  width: 4px;
}

.store-page-pick .checkout-store-modal__stores-scroll::-webkit-scrollbar-thumb,
.store-page-pick .checkout-store-modal__region-scroll::-webkit-scrollbar-thumb {
  background: #035eb7;
  border-radius: 4px;
} 

.store-page-pick .checkout-store-modal__crumb-step.is-filled .checkout-store-modal__crumb-point::before {
  border-color: #035eb7;
  background: #035eb7;
}

.store-page-pick .checkout-store-modal__crumb-step.is-filled .checkout-store-modal__crumb-label {
  color: #414141;
}

.store-page-pick .checkout-store-modal__crumb-point::before {
  background: transparent;
}

.store-page-pick .checkout-store-modal__region-item.is-selected {
  color: #414141;
}

.store-page-pick .checkout-store-modal__submit:disabled,
.store-page-pick .checkout-store-modal__submit.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.store-page__map-wrap {
  position: relative;
  min-height: 585px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8edf2;
}

.store-page__map {
  position: absolute;
  inset: 0;
}

.store-page__map-canvas, .store-page__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.store-page__map-card--template { 
  display: none !important;
}

.store-page__map-info {
  width: 332px;
  max-width: calc(100vw - 32px);
  padding: 4px 2px 0;
  background: #fff;
  font-family: inherit;
}

.store-page__map-info.store-page__map-card {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  box-shadow: none;
  z-index: auto;
}

.gm-style-iw-chr {
  display: none;
}

.gm-style-iw-d {
  overflow: auto !important;
}

.store-page__map-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(332px, calc(100% - 32px));
  padding: 24px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%);
}

.gm-style .gm-style-iw-c {
  padding: 0;
  width: 322px;
  max-width: unset !important;
}

.store-page__map-card-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #272727;
}

.store-page__map-card-info p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #727272;
}

.store-page__map-card-actions {
  display: flex;
  gap: 32px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 0.5px solid rgba(204, 204, 204, 0.5);
}

.store-page__map-action,
.store-page-detail__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #035eb7;
  text-decoration: none;
}

.store-page__action-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  display: block;
}

.store-page__map-action:hover,
.store-page-detail__action:hover {
  color: #035eb7;
}

.store-page-dropdown {
  position: fixed;
  inset: 0;
  z-index: 10070;
  display: none;
  pointer-events: none;
}

.store-page-dropdown.is-open {
  display: block;
  pointer-events: auto;
}

.store-page-dropdown__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.store-page-dropdown__panel {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 303px;
  max-width: calc(100vw - 24px);
  height: 316px;
  max-height: 316px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.08);
  border: 0.5px solid rgba(197, 198, 204, 0.6);
  overflow: hidden;
}

.store-page-dropdown__search {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding: 12px;
  margin-bottom: 0;
  border-radius: 8px;
  background: #eff0f0;
  cursor: text;
}

.store-page-dropdown__search svg {
  flex-shrink: 0;
}

.store-page-dropdown__search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  outline: none;
}

.store-page-dropdown__search-input::placeholder {
  color: #929292;
}

.store-page-dropdown__list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin: 0 -4px;
  padding: 0 4px;
  scrollbar-width: thin;
  scrollbar-color: #035eb7 transparent;
}

.store-page-dropdown__list::-webkit-scrollbar {
  width: 4px;
}

.store-page-dropdown__list::-webkit-scrollbar-thumb {
  background: #035eb7;
  border-radius: 4px;
}

.store-page-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  text-align: left;
  cursor: pointer;
}

.store-page-dropdown__tick-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.store-page-dropdown__tick {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.store-page-dropdown__item.is-selected .store-page-dropdown__tick { 
  opacity: 1;
}

.store-page-dropdown__item:hover .store-page-dropdown__tick {
  opacity: 1;
}

.store-page-dropdown__label {
  flex: 1;
  min-width: 0;
}

.store-page-dropdown__empty {
  margin: 0;
  padding: 16px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #929292;
}

.store-page-detail {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.store-page-detail.is-open {
  display: flex;
}

body.is-store-page-modal-open {
  overflow: hidden;
}

.store-page-detail__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
}

.store-page-detail__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 375px;
  overflow: visible;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.store-page-detail__close {
  position: absolute;
  top: -17px;
  right: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #555e67;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.store-page-detail__gallery {
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #e8edf2;
}

.store-page-detail__slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.store-page-detail__slides::-webkit-scrollbar {
  display: none;
}

.store-page-detail__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: 250px;
  background: linear-gradient(135deg, #d4e8f5 0%, #a8d4ef 100%);
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  img{
    max-width: auto !important;
    max-height: 70%;
  }
}

.store-page-detail__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.store-page-detail__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.store-page-detail__dot.is-active {
  background: #006ffd;
  opacity: 1;
}

.store-page-detail__body {
  padding: 24px 20px;
}

.store-page-detail__name {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #272727;
}

.store-page-detail__info {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.5);
}

.store-page-detail__info p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #727272;
}

.store-page-detail__actions {
  display: flex;
  gap: 32px;
}

@media (max-width: 991px) {
  .store-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .store-page__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .store-page__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .store-page__search,
  .store-page__filter {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }

  .store-page__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-page__list {
    max-height: none;
  }

  .store-page__map-wrap {
    min-height: 320px;
    order: -1;
  }

  .store-page__map-card {
    left: 16px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .store-page-detail {
    align-items: flex-end;
    padding: 0;
  }

  .store-page-detail__panel {
    max-width: none;
    border-radius: 16px 16px 0 0;
  }

  .store-page-detail__close {
    top: 12px;
    right: 12px;
  }

  .store-page-pick.checkout-store-modal {
    align-items: flex-end;
    padding: 0;
  }

  .store-page-pick .checkout-store-modal__panel {
    flex-direction: column;
    max-width: none;
    width: 90%;
    height: auto;
    max-height: 92vh;
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
  }

  .store-page-pick .checkout-store-modal__region {
    flex: none;
    max-height: 40vh;
  }
}

/* Mobile sort popup — Figma 4149:96792 */
@media (max-width: 991px) {
  .action-wrapper .sidebar-box-sort {
    display: none !important;
  }
}

.sort-mb {
  --filter-blue: #035eb7;
  --filter-blue-ring: #c3edff;
  --filter-stroke: rgba(197, 198, 204, 0.6);
  --filter-text: #111;
  position: fixed;
  inset: 0;
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.open-sort-mb .sort-mb {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sort-mb__layer {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.open-sort-mb .sort-mb__layer {
  opacity: 1;
}

.sort-mb__popup {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px 12px 40px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s ease;
}

body.open-sort-mb .sort-mb__popup {
  transform: translate3d(0, 0, 0);
}

.sort-mb__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #414141;
}

.sort-mb__box {
  padding: 0;
}

.sort-mb .radio-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sort-mb .radio-list li {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 0;
}

.sort-mb .radio-list li input[type='radio'] {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.sort-mb .radio-list li input[type='radio']:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1.25px solid var(--filter-stroke);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sort-mb .radio-list li input[type='radio']:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--filter-blue);
  transform: scale(0);
  transition: transform 0.2s;
}

.sort-mb .radio-list li input[type='radio']:checked:after {
  border: 1.5px solid var(--filter-blue);
  box-shadow: 0 0 0 3px var(--filter-blue-ring);
}

.sort-mb .radio-list li input[type='radio']:checked:before {
  transform: scale(1);
}

.sort-mb .radio-list li label {
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--filter-text);
}

@media (min-width: 992px) {
  .sort-mb {
    display: none;
  }
}

/* Mobile filter popup — Figma 2769:113597 */
@media (max-width: 991px) {
  body.open-filter-mb .refinement-fixed-shell {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.open-filter-mb .refinement-wrapper {
    transform: translate3d(0, 100%, 0) !important;
  }
}

.filter-mb {
  --filter-blue: #035eb7;
  --filter-blue-light: #d6f3ff;
  --filter-chip-bg: #f3f3f4;
  --filter-stroke: rgba(197, 198, 204, 0.6);
  --filter-text: #111;
  position: fixed;
  inset: 0;
  z-index: 9991;
  pointer-events: none;
  visibility: hidden;
}

body.open-filter-mb .filter-mb {
  pointer-events: auto;
  visibility: visible;
}

.filter-mb__popup {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s ease;
}

body.open-filter-mb .filter-mb__popup {
  transform: translate3d(0, 0, 0);
}

.filter-mb__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-mb__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #252a2b;
}

.filter-mb__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-mb__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.filter-mb__group + .filter-mb__group {
  margin-top: 20px;
}

.filter-mb__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #2f3036;
}

.filter-mb .checkbox-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-mb .checkbox-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-mb .checkbox-list li.group-title {
  width: 100%;
  flex: 0 0 100%;
  font-size: 14px;
  font-weight: 400;
  color: #b5b5b5;
  padding: 4px 0 0;
}

.filter-mb .checkbox-list li input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.filter-mb .checkbox-list li label {
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--filter-chip-bg);
  color: #606060;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-mb .checkbox-list li input[type='checkbox']:checked + label {
  background: var(--filter-blue-light);
  border-color: var(--filter-blue);
  color: var(--filter-blue);
}

.filter-mb .checkbox-list--grid li {
  flex: 0 0 calc(50% - 4px);
  max-width: calc(50% - 4px);
}

.filter-mb .checkbox-list--grid li label {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.filter-mb__price-inputs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.filter-mb__price-field {
  position: relative;
  flex: 1 1 0;
}

.filter-mb__price-field input {
  width: 100%;
  height: 45px;
  padding: 12px 28px 12px 12px;
  border: 1px solid var(--filter-stroke);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--filter-text);
  background: #fff;
}

.filter-mb__price-field input::placeholder {
  color: #b5b5b5;
}

.filter-mb__price-unit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 600;
  color: var(--filter-blue);
  pointer-events: none;
}

.filter-mb__group--price .filter-price--error {
  margin: 0 0 8px;
  font-size: 13px;
  color: #e11d48;
}

.filter-mb__foot {
  display: flex;
  gap: 12px;
  padding: 20px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.filter-mb__apply,
.filter-mb__reset {
  flex: 1 1 0;
  height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
}

.filter-mb__apply {
  border: 0;
  background: var(--filter-blue);
  color: #fff;
}

.filter-mb__reset {
  border: 1px solid #003d79;
  background: #fff;
  color: #003d79;
  opacity: 0.5;
}

@media (min-width: 992px) {
  .filter-mb {
    display: none;
  }
}
