:root {
  --bb-app-accent: var(--primary-color);
  --bb-app-accent-rgb: var(--primary-color-rgb);
  --bb-app-border: rgba(15, 23, 42, 0.08);
  --bb-app-shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.06);
  --bb-app-surface: #ffffff;
  --bb-app-radius-lg: 24px;
  --bb-app-radius-md: 18px;
  --bb-app-radius-sm: 14px;
  --bb-app-page-gutter: 16px;
  --bb-app-bottom-nav-height: 84px;
}

.bb-app-surface-card {
  background: var(--bb-app-surface);
  border: 1px solid var(--bb-app-border);
  border-radius: var(--bb-app-radius-lg);
  box-shadow: var(--bb-app-shadow-soft);
}

.bb-app-header-shell {
  position: sticky;
  top: 0;
  z-index: 9998;
  padding-top: env(safe-area-inset-top, 0px);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.bb-app-header {
  padding: 10px var(--bb-app-page-gutter);
}
.bb-app-header__inner {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 122px;
  align-items: center;
  gap: 8px;
}
.bb-app-header__brand {
  display: flex;
  justify-content: center;
  justify-self: center;
  min-width: 0;
  overflow: hidden;
}
.bb-app-header__logo-image {
  display: block;
  max-width: min(108px, 30vw);
  width: auto;
  height: 26px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.bb-app-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.bb-app-header__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.bb-app-header__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.bb-app-header__badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  border: 2px solid #fff;
}

.bb-app-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.bb-app-bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  max-width: 640px;
  margin: 0 auto;
}
.bb-app-bottom-nav__item {
  border: 0;
  background: transparent;
  color: #6b7280;
  min-height: 56px;
  border-radius: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  padding: 6px 4px;
}
.bb-app-bottom-nav__item.is-active {
  color: var(--bb-app-accent);
  background: rgba(var(--bb-app-accent-rgb), 0.1);
}
.bb-app-bottom-nav__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bb-app-bottom-nav__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.bb-app-bottom-nav__label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}
.bb-app-bottom-nav__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.bb-app-offcanvas .offcanvas__wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f8 100%);
  padding: 24px 20px 18px;
}
.bb-app-offcanvas .offcanvas__close {
  margin-bottom: 16px;
}
.bb-app-offcanvas .offcanvas__close-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bb-app-offcanvas .offcanvas__top {
  margin-bottom: 18px;
}
.bb-app-offcanvas .offcanvas__logo img {
  height: 34px !important;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bb-app-offcanvas__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-app-offcanvas__account,
.bb-app-offcanvas__guest {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--bb-app-shadow-soft);
}

.bb-app-offcanvas__account {
  align-items: center;
  color: inherit;
}

.bb-app-offcanvas__avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 52px;
}
.bb-app-offcanvas__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bb-app-offcanvas__name {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.bb-app-offcanvas__meta,
.bb-app-offcanvas__guest p {
  margin-bottom: 0;
  font-size: 13px;
  color: #6b7280;
}

.bb-app-offcanvas__section-toggle,
.bb-app-offcanvas__utility-link {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #111827;
  font-weight: 600;
}

.bb-app-offcanvas__menu {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--bb-app-shadow-soft);
  padding: 8px 0;
}

.bb-app-offcanvas__utility {
  display: grid;
  gap: 12px;
}

.bb-mobile-footer {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px 0 calc(22px + var(--bb-app-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
}
.bb-mobile-footer__inner {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbf7f8 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--bb-app-shadow-soft);
}
.bb-mobile-footer__title {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.bb-mobile-footer__text {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}
.bb-mobile-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bb-mobile-footer__actions a {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(var(--bb-app-accent-rgb), 0.1);
  color: var(--bb-app-accent);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-app-cart-page {
  background: #f8fafc;
}
.bb-app-cart-page .tp-cart-bottom,
.bb-app-cart-page .bb-app-cart-summary,
.bb-app-cart-page .tp-cart-list {
  padding: 20px;
}

.bb-app-cart-cards {
  display: grid;
  gap: 14px;
}

.bb-app-cart-card {
  padding: 16px;
}
.bb-app-cart-card__top {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: start;
}
.bb-app-cart-card__image {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.bb-app-cart-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bb-app-cart-card__content {
  min-width: 0;
}
.bb-app-cart-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #111827;
}
.bb-app-cart-card__price {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bb-app-accent);
}
.bb-app-cart-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.bb-app-cart-card__qty {
  flex: 1 1 auto;
}
.bb-app-cart-card__total {
  text-align: right;
}
.bb-app-cart-card__total span {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  color: #6b7280;
}
.bb-app-cart-card__total strong {
  font-size: 15px;
  color: #111827;
}

.bb-app-cart-summary {
  position: sticky;
}

.bb-app-empty-state {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 24px;
}

.tp-shop-area {
  --bb-listing-image-ratio: 1 / 1;
}
.tp-shop-area .tp-product-thumb,
.tp-shop-area .tp-product-thumb-2,
.tp-shop-area .tp-product-thumb-3,
.tp-shop-area .tp-product-thumb-4,
.tp-shop-area .tp-product-thumb-5,
.tp-shop-area .tp-product-list-thumb {
  aspect-ratio: var(--bb-listing-image-ratio);
  overflow: hidden;
  background: #fff;
}
.tp-shop-area .tp-product-thumb > a,
.tp-shop-area .tp-product-thumb-2 > a,
.tp-shop-area .tp-product-thumb-3 > a,
.tp-shop-area .tp-product-thumb-4 > a,
.tp-shop-area .tp-product-thumb-5 > a,
.tp-shop-area .tp-product-list-thumb > a {
  display: block;
  width: 100%;
  height: 100%;
}
.tp-shop-area .tp-product-thumb img,
.tp-shop-area .tp-product-thumb-2 img,
.tp-shop-area .tp-product-thumb-3 img,
.tp-shop-area .tp-product-thumb-4 img,
.tp-shop-area .tp-product-thumb-5 img,
.tp-shop-area .tp-product-list-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1199.98px) {
  input,
  select,
  textarea,
  .form-control,
  .form-select {
    font-size: 16px !important;
  }
  .nice-select,
  .nice-select .current,
  .tp-shop-top-select .nice-select,
  .tp-shop-top-select .nice-select .current,
  .tp-header-search-input input,
  .tp-header-search-input .form-control,
  .tp-cart-coupon-input input,
  .tp-cart-checkout-wrapper input,
  .tp-cart-checkout-wrapper select,
  .tp-cart-checkout-wrapper textarea,
  .checkout__coupon-section input,
  .checkout__coupon-section select,
  .checkout__coupon-section textarea,
  .tp-subscribe-area .tp-subscribe-input .form-control {
    font-size: 16px !important;
  }
  .auth-card__horizontal {
    display: block !important;
  }
  .auth-card__left {
    display: none !important;
  }
  .auth-card__right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  body {
    padding-bottom: calc(var(--bb-app-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  }
  .tp-main-menu-content > ul > li > a,
  .tp-main-menu-content > ul > li > a:hover {
    color: #111827 !important;
  }
  .bb-app-offcanvas.offcanvas__area {
    display: block !important;
  }
  .breadcrumb__area {
    display: none !important;
  }
  .sale-popup-container-wrap {
    bottom: calc(var(--bb-app-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 18px) !important;
    z-index: 9996;
  }
  .profile__area {
    padding-top: 0 !important;
    padding-bottom: 32px !important;
  }
  .profile__area .container.container-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .profile__area .position-mobile,
  .profile__area .profile__tab {
    display: none !important;
  }
  .profile__area #custom-content-js {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
  }
  .profile__area .profile__tab-content,
  .profile__area .bg-custom-moblie {
    padding: 0 !important;
  }
  .profile__area .bg-custom-moblie {
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .profile__area .rounded {
    border-radius: 0 !important;
    background-color: #fff;
  }
  .profile__area .form-control,
  .profile__area input,
  .profile__area select,
  .profile__area textarea {
    font-size: 16px !important;
  }
  .profile__area #header-sticky,
  .profile__area .tp-subscribe-area,
  .profile__area footer {
    display: none !important;
  }
  body.bb-has-mobile-subheader,
  body:has(.header.d-flex.d-xl-none .back-btn),
  body:has(.bb-mobile-back-header .back-btn),
  body:has(.marketing-referral__header),
  body:has(.marketing-kyc__header),
  body:has(.profile-edit__header) {
    padding-top: calc(74px + env(safe-area-inset-top, 0px));
  }
  body.bb-has-mobile-subheader .bb-app-header-shell,
  body:has(.header.d-flex.d-xl-none .back-btn) .bb-app-header-shell,
  body:has(.bb-mobile-back-header .back-btn) .bb-app-header-shell,
  body:has(.marketing-referral__header) .bb-app-header-shell,
  body:has(.marketing-kyc__header) .bb-app-header-shell,
  body:has(.profile-edit__header) .bb-app-header-shell {
    display: none !important;
  }
  body:has(.header.d-flex.d-xl-none .back-btn) .bb-mobile-back-header,
  body:has(.marketing-referral__header) .bb-mobile-back-header,
  body:has(.marketing-kyc__header) .bb-mobile-back-header,
  body:has(.profile-edit__header) .bb-mobile-back-header {
    display: none !important;
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none,
  .marketing-kyc__header,
  .bb-mobile-back-header {
    position: fixed !important;
    top: env(safe-area-inset-top, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1050 !important;
    min-height: 64px;
    margin-bottom: 0 !important;
    padding: 12px 16px !important;
    gap: 10px;
    background: rgba(255, 255, 255, 0.88) !important;
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none .back-btn,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none .back-btn,
  .marketing-kyc__back,
  .bb-mobile-back-header .back-btn {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: #111827 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none .back-btn i,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none .back-btn i,
  .marketing-kyc__back i,
  .bb-mobile-back-header .back-btn i {
    font-size: 18px;
    line-height: 1;
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none .header-title,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none .header-title,
  .marketing-referral__title,
  .marketing-kyc__title,
  .bb-mobile-back-header .header-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    color: #111827 !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bb-app-cart-page {
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .bb-app-cart-page .container {
    padding-left: var(--bb-app-page-gutter);
    padding-right: var(--bb-app-page-gutter);
  }
  .bb-app-cart-page .tp-cart-bottom,
  .bb-app-cart-page .bb-app-cart-summary {
    border-radius: 20px;
  }
  .bb-app-cart-page .tp-cart-bottom {
    margin-top: 20px;
  }
  .bb-app-cart-page .tp-cart-coupon-input-box label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .bb-app-cart-page .tp-cart-coupon-input {
    gap: 10px;
    flex-direction: column;
    align-items: stretch !important;
  }
  .bb-app-cart-page .tp-cart-coupon-input input,
  .bb-app-cart-page .tp-cart-coupon-input button {
    width: 100%;
    min-height: 48px;
  }
  .bb-desktop-footer {
    display: none !important;
  }
  .tp-cart-checkout-wrapper {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .tp-product-item-2 .tp-product-action-2,
  .tp-product-item-5 .tp-product-action-2 {
    opacity: 1;
    visibility: visible;
    left: 12px;
  }
  .sale-popup-container-wrap {
    bottom: calc(var(--bb-app-bottom-nav-height) + env(safe-area-inset-bottom, 0px) + 22px) !important;
  }
  body.bb-has-mobile-subheader,
  body:has(.header.d-flex.d-xl-none .back-btn),
  body:has(.bb-mobile-back-header .back-btn),
  body:has(.marketing-referral__header),
  body:has(.marketing-kyc__header),
  body:has(.profile-edit__header) {
    padding-top: calc(78px + env(safe-area-inset-top, 0px));
  }
  .profile__area .container.container-mobile {
    max-width: 720px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .profile__area {
    padding-bottom: 40px !important;
  }
  .bb-app-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bb-app-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 136px;
    gap: 12px;
  }
  .bb-app-header__logo-image {
    max-width: 132px;
    height: 30px !important;
  }
  .bb-app-header__icon {
    width: 42px;
    height: 42px;
  }
  .bb-app-header__icon svg {
    width: 22px;
    height: 22px;
  }
  .bb-app-header__actions {
    gap: 8px;
  }
  .bb-app-bottom-nav {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .bb-app-bottom-nav__inner {
    max-width: 720px;
    gap: 8px;
  }
  .bb-app-bottom-nav__item {
    min-height: 64px;
    gap: 6px;
  }
  .bb-app-bottom-nav__label {
    font-size: 11px;
  }
  .bb-app-offcanvas .offcanvas__logo img {
    height: 38px !important;
  }
  .bb-app-offcanvas__panel {
    gap: 20px;
  }
  .bb-app-offcanvas__account,
  .bb-app-offcanvas__guest,
  .bb-app-offcanvas__menu {
    border-radius: 24px;
  }
  .bb-mobile-footer {
    padding-top: 26px;
  }
  .bb-mobile-footer .container {
    max-width: 720px;
  }
  .bb-mobile-footer__inner {
    padding: 22px;
    border-radius: 24px;
  }
  .bb-mobile-footer__title {
    font-size: 17px;
  }
  .bb-mobile-footer__text {
    font-size: 14px;
  }
  .bb-mobile-footer__actions {
    gap: 12px;
  }
  .bb-mobile-footer__actions a {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none,
  .marketing-kyc__header,
  .bb-mobile-back-header {
    min-height: 68px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body.bb-has-mobile-subheader .header.d-flex.d-xl-none .header-title,
  body:has(.header.d-flex.d-xl-none .back-btn) .header.d-flex.d-xl-none .header-title,
  .marketing-referral__title,
  .marketing-kyc__title,
  .bb-mobile-back-header .header-title {
    font-size: 17px;
  }
  .bb-app-cart-page .container {
    max-width: 720px;
  }
  .bb-app-cart-page .tp-cart-bottom,
  .bb-app-cart-page .bb-app-cart-summary {
    padding: 24px;
  }
  .bb-app-cart-page .tp-cart-coupon-input {
    flex-direction: row;
    align-items: center !important;
  }
  .bb-app-cart-page .tp-cart-coupon-input input {
    flex: 1 1 auto;
  }
  .bb-app-cart-page .tp-cart-coupon-input button {
    width: auto;
    min-width: 148px;
  }
  .bb-app-cart-card {
    padding: 20px;
  }
  .bb-app-cart-card__top {
    grid-template-columns: 112px minmax(0, 1fr) 40px;
    gap: 16px;
  }
  .bb-app-cart-card__image {
    width: 112px;
    height: 112px;
  }
  .bb-app-cart-card__title {
    font-size: 16px;
  }
  .bb-app-cart-card__price {
    font-size: 18px;
  }
  .bb-app-cart-card__total strong {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  body.show-admin-bar {
    margin-top: 0 !important;
  }
  .bb-mobile-notifications-page {
    padding-top: 16px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .bb-mobile-notifications-page__card {
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }
  .bb-mobile-notifications-page__pagination {
    margin-top: 16px;
  }
  .bb-notification-list {
    display: grid;
    gap: 12px;
  }
  .bb-notification-item {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  }
  .bb-notification-item.is-unread {
    border-color: rgba(var(--bb-app-accent-rgb), 0.28);
    background: rgba(var(--bb-app-accent-rgb), 0.05);
  }
  .bb-notification-item__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
  }
  .bb-notification-item__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
  }
  .bb-notification-item__time {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
    color: #64748b;
  }
  .bb-notification-item__description {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
  }
  .bb-notification-empty {
    margin: 0;
    text-align: center;
    color: #64748b;
  }
}
.notifi_canvas .bb-notification-list--offcanvas {
  gap: 0;
}
.notifi_canvas .bb-notification-item {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.notifi_canvas .bb-notification-item:last-child {
  border-bottom: 0;
}
.notifi_canvas .bb-notification-item__title {
  font-size: 15px;
}
.notifi_canvas .bb-notification-item__description {
  font-size: 13px;
}

@media (max-width: 1199.98px) {
  body#page-home .affiliate-header {
    padding: 0 var(--bb-app-page-gutter);
    margin-bottom: 18px !important;
  }
  body#page-home .affiliate-header .row {
    row-gap: 12px;
  }
  body#page-home .affiliate-header .aff-title {
    margin-bottom: 6px !important;
    font-size: clamp(24px, 4.2vw, 32px) !important;
    line-height: 1.08;
    background: linear-gradient(90deg, #0f172a, var(--bb-app-accent)) !important;
    letter-spacing: -0.03em;
  }
  body#page-home .affiliate-header .text-muted.small {
    font-size: 13px !important;
    color: #64748b !important;
  }
  body#page-home .affiliate-header .aff-stats-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 42px;
    padding: 0 14px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }
  body#page-home .affiliate-header .stats-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(var(--bb-app-accent-rgb), 0.1);
    color: var(--bb-app-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    font-size: 12px;
  }
  body#page-home .affiliate-header .stats-text {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    line-height: 1.3;
  }
  body#page-home .affiliate-header .stats-text .label,
  body#page-home .affiliate-header .stats-text .unit {
    color: #64748b;
  }
  body#page-home .affiliate-header .stats-text .value {
    color: #111827;
    font-weight: 800;
  }
  body#page-home .rankSwiper {
    overflow: visible !important;
    padding: 4px var(--bb-app-page-gutter) 0;
  }
  body#page-home .rankSwiper .swiper-slide,
  body#page-home .rankSwiper .swiper-slide.is-center {
    width: 156px !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  body#page-home .rankSwiper .swiper-slide.is-center .rank-premium-card {
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06) !important;
  }
  body#page-home .rank-premium-card {
    min-height: 0 !important;
    padding: 12px 10px !important;
    border-radius: 18px !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06) !important;
    transform: none !important;
  }
  body#page-home .rank-premium-card::before {
    display: none !important;
  }
  body#page-home .rank-premium-card:hover,
  body#page-home .rank-premium-card:active,
  body#page-home .rank-premium-card:hover .rank-icon-container,
  body#page-home .rank-premium-card:active .rank-icon-container {
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
  }
  body#page-home .rank-icon-container {
    width: 60px !important;
    height: 60px !important;
    padding: 3px !important;
    animation: none !important;
    box-shadow: 0 8px 18px rgba(var(--bb-app-accent-rgb), 0.18), 0 2px 6px rgba(15, 23, 42, 0.08) !important;
  }
  body#page-home .rank-icon-container::before {
    inset: 3px !important;
  }
  body#page-home .rank-main-img {
    width: 68% !important;
    height: 68% !important;
  }
  body#page-home .rank-name-v2 {
    margin-bottom: 2px !important;
    font-size: 13px !important;
    line-height: 1.35;
    white-space: normal !important;
  }
  body#page-home .rank-count-v2 .num {
    font-size: 13px !important;
    color: var(--bb-app-accent) !important;
    text-shadow: none !important;
  }
  body#page-home .rank-count-v2 .unit {
    display: inline-block;
    margin-top: 2px;
    font-size: 10px !important;
    letter-spacing: 0.04em;
  }
  body#page-home .ecommerce-modern-categories,
  body#page-home .tp-subscribe-area {
    position: relative;
    overflow: hidden;
  }
  body#page-home .ecommerce-modern-categories {
    padding: 22px 0 6px;
  }
  body#page-home .ecommerce-modern-categories .container {
    padding-left: var(--bb-app-page-gutter);
    padding-right: var(--bb-app-page-gutter);
  }
  body#page-home .ecommerce-modern-categories .tp-section-title-wrapper {
    margin-bottom: 16px !important;
    text-align: left !important;
  }
  body#page-home .ecommerce-modern-categories .tp-section-title-pre {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(var(--bb-app-accent-rgb), 0.1);
    color: var(--bb-app-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  body#page-home .ecommerce-modern-categories .tp-section-title {
    margin: 10px 0 0;
    font-size: clamp(24px, 4.2vw, 34px);
    line-height: 1.12;
    color: #111827;
  }
  body#page-home .ecommerce-modern-categories__wrapper {
    padding: 0 !important;
  }
  body#page-home .ecommerce-modern-categories__slider {
    overflow: visible;
  }
  body#page-home .ecommerce-modern-categories__slider .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 6px 0 10px !important;
    transform: none !important;
  }
  body#page-home .ecommerce-modern-categories__slider .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
    flex: none !important;
  }
  body#page-home .ecommerce-modern-categories__nav,
  body#page-home .ecommerce-modern-categories__pagination {
    display: none !important;
  }
  body#page-home .ecommerce-modern-categories__item {
    border-radius: 24px !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
  }
  body#page-home .ecommerce-modern-categories__item:hover {
    transform: none !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
  }
  body#page-home .ecommerce-modern-categories__item:hover .ecommerce-modern-categories__thumb img {
    transform: none !important;
  }
  body#page-home .ecommerce-modern-categories__link {
    height: 236px !important;
  }
  body#page-home .ecommerce-modern-categories__overlay {
    opacity: 1 !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.68) 100%) !important;
  }
  body#page-home .ecommerce-modern-categories__content {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 16px !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.82) 100%) !important;
  }
  body#page-home .ecommerce-modern-categories__title {
    margin-bottom: 6px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }
  body#page-home .ecommerce-modern-categories__count {
    margin-bottom: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
  }
  body#page-home .ecommerce-modern-categories__btn {
    opacity: 1 !important;
    transform: none !important;
    display: inline-flex;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  body#page-home .ecommerce-modern-categories__pagination {
    gap: 6px;
    justify-content: flex-start;
    padding-left: 4px;
  }
  body#page-home .ecommerce-modern-categories__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(15, 23, 42, 0.18);
  }
  body#page-home .ecommerce-modern-categories__pagination .swiper-pagination-bullet-active {
    width: 22px;
    background: var(--bb-app-accent);
  }
  body#page-home .tp-subscribe-area {
    margin: 18px var(--bb-app-page-gutter) calc(16px + var(--bb-app-bottom-nav-height));
    padding: 22px 0 !important;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 34%), linear-gradient(135deg, rgba(var(--bb-app-accent-rgb), 0.96) 0%, rgba(var(--bb-app-accent-rgb), 0.78) 100%) !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
  }
  body#page-home .tp-subscribe-area .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  body#page-home .tp-subscribe-area .row {
    row-gap: 18px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-shape,
  body#page-home .tp-subscribe-area .tp-subscribe-plane {
    opacity: 0.22;
    pointer-events: none;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-content > span {
    display: inline-flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-title {
    margin: 0;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.08;
    color: #fff;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-form {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input {
    display: flex;
    align-items: stretch;
    gap: 10px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input .form-control {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    color: #111827;
    font-size: 16px;
    box-shadow: none;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input .form-control::-moz-placeholder {
    color: #6b7280;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input .form-control::placeholder {
    color: #6b7280;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input button[type=submit] {
    flex: 0 0 auto;
    min-width: 124px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    border: 0;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  }
  body#page-home .tp-subscribe-area .newsletter-message {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
  }
}
@media (max-width: 767.98px) {
  body#page-home .affiliate-header {
    padding-left: 12px;
    padding-right: 12px;
  }
  body#page-home .affiliate-header .aff-stats-pill {
    min-height: 38px;
    padding: 0 12px;
  }
  body#page-home .rankSwiper {
    padding-left: 12px;
    padding-right: 12px;
  }
  body#page-home .rankSwiper .swiper-slide,
  body#page-home .rankSwiper .swiper-slide.is-center {
    width: 132px !important;
  }
  body#page-home .rank-premium-card {
    padding: 10px 8px !important;
    border-radius: 16px !important;
  }
  body#page-home .rank-icon-container {
    width: 52px !important;
    height: 52px !important;
  }
  body#page-home .rank-name-v2 {
    font-size: 12px !important;
  }
  body#page-home .rank-count-v2 .num {
    font-size: 12px !important;
  }
  body#page-home .ecommerce-modern-categories {
    padding-top: 18px;
  }
  body#page-home .ecommerce-modern-categories .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  body#page-home .ecommerce-modern-categories__slider .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  body#page-home .ecommerce-modern-categories__link {
    height: 196px !important;
  }
  body#page-home .ecommerce-modern-categories__content {
    padding: 14px !important;
  }
  body#page-home .ecommerce-modern-categories__title {
    font-size: 13px !important;
  }
  body#page-home .tp-subscribe-area {
    margin-left: 12px;
    margin-right: 12px;
    padding: 18px 0 !important;
    border-radius: 24px;
  }
  body#page-home .tp-subscribe-area .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-form {
    padding: 14px;
    border-radius: 20px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-title {
    font-size: 28px;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input {
    flex-direction: column;
  }
  body#page-home .tp-subscribe-area .tp-subscribe-input button[type=submit] {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 1199.98px) {
  body#page-home {
    background: linear-gradient(180deg, #fafafc 0%, #f4f6fb 100%);
  }
  body#page-home main {
    padding-top: 8px;
  }
  body#page-home .bb-home-hero-shortcode,
  body#page-home .bb-home-stats-shortcode,
  body#page-home .bb-home-categories-shortcode {
    padding-left: var(--bb-app-page-gutter);
    padding-right: var(--bb-app-page-gutter);
  }
  body#page-home .bb-home-hero-shortcode {
    margin-bottom: 14px;
  }
  body#page-home .bb-home-hero-card {
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }
  body#page-home .bb-home-hero-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
  }
  body#page-home .bb-home-hero-card__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  body#page-home .bb-home-stats-shortcode {
    margin-bottom: 16px;
  }
  body#page-home .bb-home-stats-card {
    padding: 18px 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border: 1px solid rgba(175, 190, 230, 0.35);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  }
  body#page-home .bb-home-stats-card__header {
    margin-bottom: 14px;
  }
  body#page-home .bb-home-stats-card__header h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(22px, 4.2vw, 30px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  body#page-home .bb-home-stats-card__header p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
  }
  body#page-home .bb-home-stats-card__list {
    display: grid;
    gap: 10px;
  }
  body#page-home .bb-home-stats-card__viewport {
    overflow: hidden;
    height: 188px;
  }
  body#page-home .bb-home-stats-card__viewport .swiper-wrapper {
    transition-timing-function: ease;
  }
  body#page-home .bb-home-stats-card__viewport .swiper-slide {
    height: auto !important;
  }
  body#page-home .bb-home-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(175, 190, 230, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  body#page-home .bb-home-stats-row__main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
  }
  body#page-home .bb-home-stats-row__badge {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    border: 1px solid rgba(175, 190, 230, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  body#page-home .bb-home-stats-row__badge img {
    width: 78%;
    height: 78%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  body#page-home .bb-home-stats-row__badge span {
    color: var(--bb-app-accent);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }
  body#page-home .bb-home-stats-row__name {
    min-width: 0;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
  }
  body#page-home .bb-home-stats-row__value {
    flex: 0 0 auto;
    color: #334155;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
  }
  body#page-home .bb-home-categories-shortcode {
    margin-bottom: 18px;
  }
  body#page-home .bb-home-categories-card {
    padding: 14px 14px 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border: 1px solid rgba(175, 190, 230, 0.28);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  }
  body#page-home .bb-home-categories-card__header {
    margin-bottom: 14px;
  }
  body#page-home .bb-home-categories-card__header h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  body#page-home .bb-home-categories-card__header p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
  }
  body#page-home .bb-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 10px;
  }
  body#page-home .bb-home-categories-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-align: center;
  }
  body#page-home .bb-home-categories-item__thumb {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  body#page-home .bb-home-categories-item:nth-child(2n) .bb-home-categories-item__thumb {
    background: #f9ecdf;
  }
  body#page-home .bb-home-categories-item:nth-child(3n) .bb-home-categories-item__thumb {
    background: #e2f5eb;
  }
  body#page-home .bb-home-categories-item:nth-child(4n) .bb-home-categories-item__thumb {
    background: #efe6fb;
  }
  body#page-home .bb-home-categories-item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  body#page-home .bb-home-categories-item__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: inherit;
  }
  body#page-home .bb-home-categories-item__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  body#page-home .bb-home-hero-shortcode,
  body#page-home .bb-home-stats-shortcode,
  body#page-home .bb-home-categories-shortcode {
    padding-left: 20px;
    padding-right: 20px;
  }
  body#page-home .bb-home-hero-card {
    padding: 18px;
    border-radius: 34px;
  }
  body#page-home .bb-home-hero-card__media {
    min-height: 320px;
    border-radius: 28px;
  }
  body#page-home .bb-home-stats-card,
  body#page-home .bb-home-categories-card {
    padding: 20px;
    border-radius: 30px;
  }
  body#page-home .bb-home-stats-card__viewport {
    height: 202px;
  }
  body#page-home .bb-home-stats-row {
    min-height: 60px;
    padding: 0 18px;
  }
  body#page-home .bb-home-stats-row__badge {
    width: 38px;
    height: 38px;
  }
  body#page-home .bb-home-categories-grid {
    gap: 16px 18px;
  }
  body#page-home .bb-home-categories-item__thumb {
    width: 78px;
    height: 78px;
  }
  body#page-home .bb-home-categories-item__name {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  body#page-home .bb-home-hero-shortcode,
  body#page-home .bb-home-stats-shortcode,
  body#page-home .bb-home-categories-shortcode {
    padding-left: 12px;
    padding-right: 12px;
  }
  body#page-home .bb-home-hero-card {
    padding: 12px;
    border-radius: 24px;
  }
  body#page-home .bb-home-hero-card__media {
    min-height: 170px;
    border-radius: 20px;
  }
  body#page-home .bb-home-stats-card {
    padding: 16px 14px;
    border-radius: 24px;
  }
  body#page-home .bb-home-stats-card__viewport {
    height: 170px;
  }
  body#page-home .bb-home-stats-card__header h3 {
    font-size: 18px;
  }
  body#page-home .bb-home-stats-row {
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
  }
  body#page-home .bb-home-stats-row__main {
    gap: 8px;
  }
  body#page-home .bb-home-stats-row__badge {
    width: 30px;
    height: 30px;
  }
  body#page-home .bb-home-stats-row__name {
    font-size: 15px;
  }
  body#page-home .bb-home-stats-row__value {
    font-size: 14px;
  }
  body#page-home .bb-home-categories-card {
    padding: 14px 12px;
    border-radius: 24px;
  }
  body#page-home .bb-home-categories-grid {
    gap: 10px 8px;
  }
  body#page-home .bb-home-categories-item__thumb {
    width: 58px;
    height: 58px;
  }
  body#page-home .bb-home-categories-item__name {
    font-size: 13px;
  }
}
@media (max-width: 1399.98px) {
  .bb-app-shop-layout .bb-app-shop-sidebar {
    display: none !important;
  }
  .bb-app-shop-layout .bb-app-shop-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tp-shop-top-filter {
    display: block !important;
  }
  .bb-filter-offcanvas-area {
    position: fixed;
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    transform: translateX(calc(-100% - 80px));
    background: #fff none repeat scroll 0 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: block !important;
  }
  .bb-filter-offcanvas-area::-webkit-scrollbar {
    display: none;
  }
  .bb-filter-offcanvas-area.offcanvas-opened {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .bb-filter-offcanvas-area.offcanvas-opened .bb-shop-sidebar {
    display: block;
  }
  .bb-filter-offcanvas-wrapper {
    position: relative;
    padding: 120px 30px 35px;
    z-index: 1;
    min-height: 100%;
  }
  .bb-filter-offcanvas-close {
    display: block !important;
  }
  .bb-filter-offcanvas-close-btn {
    background: #151515;
    padding: 25px 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  .bb-filter-offcanvas-close-btn:hover {
    color: #fff;
  }
  .bb-filter-offcanvas-close-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
  }
}
@media (min-width: 1400px) {
  .bb-app-shop-layout .bb-app-shop-sidebar {
    display: block !important;
  }
  .bb-app-shop-layout .bb-app-shop-content {
    flex: 0 0 auto;
    max-width: none;
  }
  .tp-shop-top-filter,
  .bb-filter-offcanvas-area {
    display: none !important;
  }
}
.bb-vendor-app-header-shell {
  position: sticky;
  top: 0;
  z-index: 9998;
  padding-top: env(safe-area-inset-top, 0px);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.bb-vendor-app-header {
  padding: 10px var(--bb-app-page-gutter);
}
.bb-vendor-app-header__inner {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}
.bb-vendor-app-header__brand {
  display: flex;
  justify-content: center;
  justify-self: center;
  min-width: 0;
  overflow: hidden;
}
.bb-vendor-app-header__logo {
  display: block;
  max-width: min(122px, 36vw);
  width: auto;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bb-vendor-app-header__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.bb-vendor-app-header__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

@media (max-width: 1199.98px) {
  body.bb-vendor-dashboard-page {
    padding-bottom: 0 !important;
  }
  .bb-vendor-dashboard-page {
    background: #f3f5f9;
  }
  .bb-vendor-dashboard-page .bb-mobile-footer,
  .bb-vendor-dashboard-page .bb-app-bottom-nav {
    display: none !important;
  }
  .bb-vendor-main,
  .ps-main {
    display: block;
    min-height: 100vh;
    padding-top: 0 !important;
  }
  .bb-vendor-main .ps-main__sidebar,
  .ps-main .ps-main__sidebar {
    display: none !important;
  }
  .bb-vendor-main__wrapper {
    padding: 18px 16px 28px !important;
    background: transparent;
  }
  .bb-vendor-page-header {
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
  }
  .bb-vendor-page-header h3 {
    font-size: 18px;
    line-height: 1.3;
    padding: 0 !important;
  }
  .bb-vendor-app-drawer {
    width: min(380px, 100vw);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f8 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  }
  .bb-vendor-app-drawer .ps-drawer__header,
  .bb-vendor-app-drawer .ps-drawer__content {
    padding: 0;
  }
  .bb-vendor-app-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 24px 18px 14px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  .bb-vendor-app-drawer__identity {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .bb-vendor-app-drawer__avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 52px;
    background: rgba(var(--bb-app-accent-rgb), 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bb-app-accent);
    font-weight: 700;
  }
  .bb-vendor-app-drawer__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bb-vendor-app-drawer__meta {
    min-width: 0;
  }
  .bb-vendor-app-drawer__name {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
  }
  .bb-vendor-app-drawer__sub,
  .bb-vendor-app-drawer__footer p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
  }
  .bb-vendor-app-drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }
  .bb-vendor-app-drawer__content {
    padding: 14px 18px 16px !important;
  }
  .bb-vendor-app-drawer__content .menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }
  .bb-vendor-app-drawer__content .menu > li > a:after {
    display: none !important;
  }
  .bb-vendor-app-drawer__content .menu > li > a.active, .bb-vendor-app-drawer__content .menu > li > a:hover {
    color: var(--bb-app-accent);
    background: rgba(var(--bb-app-accent-rgb), 0.12);
    border-color: rgba(var(--bb-app-accent-rgb), 0.18);
  }
  .bb-vendor-app-drawer__footer {
    padding: 0 18px 22px;
  }
  .bb-vendor-dashboard-page .ps-site-overlay {
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    background: rgba(15, 23, 42, 0.42);
  }
  .bb-app-shop-shell .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .bb-app-shop-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .bb-app-shop-sidebar {
    display: none !important;
  }
  .bb-app-shop-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tp-shop-top-filter,
  .bb-filter-offcanvas-area {
    display: block !important;
  }
  .bb-app-shop-header,
  .bb-app-shop-description,
  .store-pill {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }
  .bb-app-shop-header {
    margin-bottom: 0;
    padding: 0;
  }
  .bb-app-shop-header .h1 {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.15;
    color: #111827;
  }
  .bb-app-shop-description {
    padding: 18px 20px;
    margin-bottom: 0;
    color: #475569;
    line-height: 1.7;
  }
  .tp-shop-top {
    margin-bottom: 0 !important;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
  }
  .tp-shop-top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .tp-shop-top-left,
  .tp-shop-top-right {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .tp-shop-top-left {
    display: none !important;
  }
  .tp-shop-top-right {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    width: 100%;
    margin-top: 0 !important;
    overflow: visible;
  }
  .tp-shop-top-result {
    display: none !important;
  }
  .tp-shop-top-result p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
  }
  .tp-shop-top-tab {
    padding: 4px;
    border-radius: 14px;
    background: #f8fafc;
    width: 100%;
  }
  .tp-shop-top-tab .nav-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border: 0;
    width: 100%;
  }
  .tp-shop-top-tab .nav-item {
    width: 100%;
  }
  .tp-shop-top-tab .nav-link {
    width: 100%;
    height: 38px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }
  .tp-shop-top-tab .nav-link.active {
    color: var(--bb-app-accent);
    background: rgba(var(--bb-app-accent-rgb), 0.12);
  }
  .tp-shop-top-select {
    min-width: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .tp-shop-top-select .nice-select,
  .tp-shop-top-select select {
    width: auto;
    min-height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: #111827;
    padding-left: 12px;
    padding-right: 28px;
    font-size: 12px;
  }
  .tp-filter-btn {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
    font-size: 12px;
    white-space: nowrap;
  }
  .tp-shop-top-filter {
    flex: initial;
  }
  .tp-filter-btn {
    width: 100%;
  }
  .modal-dialog {
    margin-top: calc(72px + env(safe-area-inset-top, 0px) + 12px);
  }
}
@media (max-width: 1199.98px) and (max-width: 767.98px) {
  .tp-product-item-5 .product-info {
    padding: 0 10px;
  }
  .tp-product-item-5 .product-meta,
  .tp-product-item-5 .tp-product-content-5 .product-meta {
    display: block !important;
  }
  .tp-shop-top {
    padding: 10px 12px;
  }
  .tp-shop-top-inner,
  .tp-shop-top-left,
  .tp-shop-top-right {
    gap: 8px;
  }
  .tp-shop-top-tab {
    padding: 3px;
  }
  .tp-shop-top-tab .nav-link {
    width: 100%;
    height: 34px;
    border-radius: 10px;
  }
  .tp-shop-top-select .nice-select,
  .tp-shop-top-select select {
    min-height: 36px;
    padding-left: 10px;
    padding-right: 24px;
    font-size: 11px;
  }
  .tp-filter-btn {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    font-size: 0;
    gap: 0;
  }
  .tp-filter-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1199.98px) {
  .bb-filter-offcanvas-wrapper {
    width: min(380px, 100vw);
    padding: 20px 18px 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f8 100%);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  }
  .bb-filter-offcanvas-close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  .bb-filter-offcanvas-close-btn {
    position: static;
    inset-inline-start: auto;
    top: auto;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    color: #111827;
  }
  .bb-filter-offcanvas-close-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
  }
  .bb-shop-sidebar .tp-shop-widget {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    margin-bottom: 14px;
  }
  .store-pill {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 10px !important;
    align-items: center;
  }
  .store-pill .badge {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
  }
  .store-pill button[data-store-modal-open] {
    min-height: 42px;
    border-radius: 14px;
    padding: 0 14px;
  }
  .store-select-card {
    border-radius: 24px !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22) !important;
  }
  .store-select-card h5 {
    padding: 18px 18px 0;
    margin-bottom: 0 !important;
    font-size: 18px;
    color: #111827;
  }
  .store-filter-bar {
    padding: 16px 18px 14px;
    margin-bottom: 0 !important;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }
  .store-select-card [data-store-list] {
    padding: 14px 18px;
  }
  .store-select-card [data-store-item] {
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding: 14px 16px !important;
    margin-bottom: 10px;
  }
  .store-select-card [data-store-empty] {
    padding: 0 18px 16px;
  }
  .store-select-card [data-store-modal-close] {
    margin: 0 18px 18px;
    width: calc(100% - 36px) !important;
    min-height: 46px;
    border-radius: 16px;
  }
  .bb-app-product-top .container,
  .bb-app-product-tabs .container,
  .bb-app-product-sticky-actions .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .bb-app-product-page .bb-product-detail {
    padding-top: 18px;
  }
  .bb-app-product-page .bb-product-gallery-wrapper .bb-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bb-app-product-page .bb-product-gallery-wrapper .bb-product-gallery-images,
  .bb-app-product-page .bb-product-gallery-wrapper .bb-product-gallery-thumbnails {
    width: 100%;
  }
  .bb-app-product-page .bb-product-gallery-wrapper .bb-product-gallery-images {
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
  }
  .bb-app-product-page .bb-product-gallery-wrapper .bb-product-gallery-thumbnails {
    max-width: 100%;
    overflow: hidden;
  }
  .bb-app-product-page .bb-product-gallery,
  .bb-app-product-page .bb-app-product-summary,
  .bb-app-product-page .tp-product-details-tab-nav {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }
  .bb-app-product-page .bb-app-product-top__row {
    row-gap: 18px;
  }
  .bb-app-product-page .tp-product-details-title {
    margin-bottom: 12px;
    font-size: clamp(26px, 4.6vw, 34px);
    line-height: 1.18;
    color: #111827;
  }
  .bb-app-product-page .tp-product-details-inventory {
    gap: 10px 14px;
    flex-wrap: wrap;
    margin-bottom: 12px !important;
  }
  .bb-app-product-page .tp-product-details-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px !important;
  }
  .bb-app-product-page .tp-product-details-price-wrapper {
    margin-bottom: 16px !important;
  }
  .bb-app-product-page .tp-product-details-price.new-price {
    font-size: 30px;
  }
  .bb-app-product-page .tp-product-details-price.old-price {
    font-size: 16px;
  }
  .bb-app-product-page .tp-product-details-countdown {
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
  }
  .bb-app-product-page .tp-product-details-action-wrapper {
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
  }
  .bb-app-product-page .tp-product-details-action-title {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
  }
  .bb-app-product-page .tp-product-details-action-item-wrapper {
    flex-wrap: wrap;
    gap: 12px;
  }
  .bb-app-product-page .tp-product-details-quantity {
    width: 100%;
  }
  .bb-app-product-page .tp-product-quantity {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-radius: 18px;
    padding: 0 8px;
    background: #fff;
  }
  .bb-app-product-page .tp-cart-input {
    font-size: 16px;
  }
  .bb-app-product-page .tp-product-details-add-to-cart {
    margin-bottom: 0 !important;
  }
  .bb-app-product-page .tp-product-details-add-to-cart-btn,
  .bb-app-product-page .tp-product-details-buy-now-btn,
  .bb-app-product-page .bb-app-product-sticky-actions .tp-product-details-add-to-cart-btn,
  .bb-app-product-page .bb-app-product-sticky-actions .tp-product-details-buy-now-btn {
    min-height: 52px;
    border-radius: 18px;
  }
  .bb-app-product-page .tp-product-details-buy-now-btn {
    margin-top: 12px;
  }
  .bb-app-product-page .tp-product-details-action-sm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }
  .bb-app-product-page .tp-product-details-action-sm-btn {
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .bb-app-product-page .tp-product-details-query {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  .bb-app-product-page .tp-product-details-query-item {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
  }
  .bb-app-product-page .tp-product-details-tab-nav {
    margin-top: 18px;
  }
  .bb-app-product-page .tp-product-tab {
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .bb-app-product-page .tp-product-details-tab-nav nav {
    overflow-x: auto;
    margin-bottom: 12px;
    padding-bottom: 4px;
  }
  .bb-app-product-page .tp-product-tab .nav-link {
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: #64748b;
  }
  .bb-app-product-page .tp-product-tab .nav-link.active {
    color: var(--bb-app-accent);
    background: rgba(var(--bb-app-accent-rgb), 0.12);
  }
  .bb-app-product-page .tp-product-details-tab-line {
    display: none;
  }
  .bb-app-product-page .bb-app-product-tabs .pt-60 {
    padding-top: 20px !important;
  }
  .bb-app-product-page .bb-app-product-sticky-actions {
    bottom: calc(var(--bb-app-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -12px 24px rgba(15, 23, 42, 0.08);
  }
  .bb-app-product-page .bb-app-product-sticky-actions .sticky-actions-button {
    width: 100%;
  }
  .bb-app-product-page .bb-app-product-sticky-actions .sticky-actions-button > * {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .bb-vendor-app-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bb-vendor-app-header__inner {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
  }
  .bb-vendor-app-header__icon {
    width: 42px;
    height: 42px;
  }
  .bb-vendor-app-header__logo {
    max-width: 144px;
    height: 30px;
  }
  .bb-vendor-main__wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 22px 20px 32px !important;
  }
  .bb-vendor-page-header h3 {
    font-size: 22px;
  }
  .bb-vendor-app-drawer {
    width: min(420px, 100vw);
  }
  .bb-app-shop-shell .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tp-shop-top {
    padding: 16px 18px;
    border-radius: 20px;
  }
  .tp-shop-top-inner {
    flex-wrap: nowrap;
  }
  .tp-shop-top-right {
    justify-content: stretch;
  }
  .tp-shop-top-select {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .tp-shop-top-result p {
    font-size: 13px;
  }
  .tp-shop-top-tab .nav-link {
    width: 40px;
    height: 40px;
  }
  .tp-filter-btn,
  .tp-shop-top-select .nice-select,
  .tp-shop-top-select select {
    min-height: 40px;
  }
  .tp-shop-top-filter {
    flex: 0 0 auto;
  }
  .bb-app-product-top .container,
  .bb-app-product-tabs .container,
  .bb-app-product-sticky-actions .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bb-app-product-page .bb-product-gallery,
  .bb-app-product-page .bb-app-product-summary,
  .bb-app-product-page .tp-product-details-tab-nav {
    padding: 24px;
    border-radius: 28px;
  }
  .bb-app-product-page .tp-product-details-action-item-wrapper {
    flex-wrap: nowrap;
  }
  .bb-app-product-page .tp-product-details-quantity {
    width: auto;
    min-width: 220px;
  }
  .bb-app-product-page .tp-product-details-buy-now-btn {
    margin-top: 14px;
  }
  .bb-app-product-page .tp-product-details-title {
    font-size: 34px;
  }
}
