/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.product-search-left {
  width: 263px;
  min-width: 263px;
}

.ltr .product-search-left {
  margin: -6px 30px 0 0;
}

.rtl .product-search-left {
  margin: -6px 0 0 30px;
}

.product-search-left .section-title {
  margin-bottom: 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-color-lite);
}

.product-search-left .vertical-products {
  margin-top: 29px;
}

.product-search-left .vertical-products .section-title {
  margin-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 1400px) {
  .product-search-left {
    width: 246px;
    min-width: 246px;
  }
}

@media screen and (max-width: 991px) {
  .product-search-left {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .product-search-left .vertical-products {
    margin-top: 44px;
  }
}

.product-search-right {
  width: calc(100% - 293px);
}

.product-search-right .categories-banner {
  display: block;
  margin-bottom: 40px;
}

.product-search-right .categories-banner:before, .product-search-right .categories-banner:after {
  content: none;
}

.product-search-right .categories-banner:hover > img {
  transform: scale(1);
}

.product-search-right .categories-banner > img {
  width: 100%;
  border-radius: var(--radius-default);
}

@media screen and (max-width: 1400px) {
  .product-search-right {
    width: calc(100% - 276px);
  }
}

@media screen and (max-width: 991px) {
  .product-search-right {
    width: 100%;
    margin-top: 10px;
  }
}

.browse-categories-wrap {
  margin-bottom: 30px;
}

.ltr .browse-categories {
  margin: -7px 0 0 -5px;
}

.rtl .browse-categories {
  margin: -7px -5px 0 0;
}

.browse-categories li {
  display: block;
  padding: 8px 0;
}

.browse-categories li.active > a {
  color: var(--color-primary);
}

.browse-categories li a {
  display: block;
  color: var(--color-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 150ms ease-in-out;
}

.ltr .browse-categories li a {
  margin-left: 25px;
}

.rtl .browse-categories li a {
  margin-right: 25px;
}

.browse-categories li a:hover {
  color: var(--color-primary);
}

.browse-categories li a.active {
  color: var(--color-primary);
}

.browse-categories li i {
  font-size: 14px;
  margin-top: 4px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 150ms ease-in-out;
}

.ltr .browse-categories li i {
  float: left;
}

.rtl .browse-categories li i {
  float: right;
}

.browse-categories li i.open {
  color: var(--color-primary);
}

.ltr .browse-categories li i.open {
  transform: rotate(90deg);
}

.rtl .browse-categories li i.open {
  transform: rotate(-90deg);
}

.browse-categories li ul {
  list-style: none;
  display: none;
  padding-top: 8px;
}

.ltr .browse-categories li ul {
  margin-left: 10px;
  padding-left: 0;
}

.rtl .browse-categories li ul {
  margin-right: 10px;
  padding-right: 0;
}

.browse-categories li ul li {
  padding-bottom: 0;
}

.browse-categories li ul li:first-child {
  padding-top: 0;
}

.filter-section-wrap {
  background: var(--color-white);
}

.filter-section-wrap .filter-section-header > svg {
  display: none;
}

.filter-section-wrap .filter-section-inner.custom-scrollbar {
  overflow-y: visible;
}

.filter-section {
  margin-bottom: 30px;
}

.filter-section .custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-section > h6 {
  font-size: 16px;
  margin-bottom: 15px;
}

.filter-section .btn-show-more {
  display: inline-flex;
  margin: 6px 0 9px;
  color: var(--color-gray);
  cursor: pointer;
  transition: var(--transition-150);
}

.filter-section .btn-show-more:hover {
  color: var(--color-primary);
}

.filter-price {
  padding-bottom: 15px;
}

.filter-price .price-input {
  display: flex;
}

.filter-price .price-input > .form-group:first-child {
  position: relative;
}

.ltr .filter-price .price-input > .form-group:first-child {
  margin-right: 15px;
}

.rtl .filter-price .price-input > .form-group:first-child {
  margin-left: 15px;
}

.filter-price .price-input > .form-group:first-child:after {
  content: "-";
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ltr .filter-price .price-input > .form-group:first-child:after {
  right: -20px;
}

.rtl .filter-price .price-input > .form-group:first-child:after {
  left: -20px;
}

.ltr .filter-price .price-input > .form-group:last-child {
  margin-left: 15px;
}

.rtl .filter-price .price-input > .form-group:last-child {
  margin-right: 15px;
}

.filter-price .price-input .form-control {
  height: 40px;
}

.filter-price .noUi-horizontal {
  height: 3px;
}

.filter-price .noUi-horizontal .noUi-handle {
  top: -6px;
  right: -7px /*rtl:ignore*/;
  height: 14px;
  width: 14px;
}

.filter-price .noUi-target {
  background: var(--border-color-lite);
  border: none;
  box-shadow: none;
}

.filter-price .noUi-connect {
  background: var(--color-primary);
}

.filter-price .noUi-connect,
.filter-price .noUi-origin {
  transform-origin: 0 100% /*rtl:ignore*/;
}

.filter-price .noUi-handle {
  border: none;
  background: var(--color-primary-alpha-30);
  border-radius: var(--radius-full);
  box-shadow: none;
  cursor: ew-resize;
}

.filter-price .noUi-handle:before {
  content: none;
}

.filter-price .noUi-handle:after {
  top: 3px;
  height: 8px;
  width: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.ltr .filter-price .noUi-handle:after {
  left: 3px;
}

.rtl .filter-price .noUi-handle:after {
  right: 3px;
}

.filter-checkbox {
  max-height: 175px;
}

.filter-checkbox .form-check:last-child label {
  margin-bottom: 0;
}

.filter-checkbox .form-check label {
  margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
  .filter-section-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    transition: var(--transition-200);
  }

  .ltr .filter-section-wrap {
    left: -300px;
    box-shadow: 2.5px 4.33px 40px 5px rgba(12, 31, 46, 0.1);
  }

  .rtl .filter-section-wrap {
    right: -300px;
    box-shadow: -2.5px 4.33px 40px 5px rgba(12, 31, 46, 0.1);
  }

  .filter-section-wrap.active {
    opacity: 1;
    visibility: visible;
  }

  .ltr .filter-section-wrap.active {
    left: 0;
  }

  .rtl .filter-section-wrap.active {
    right: 0;
  }

  .filter-section-wrap .filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: var(--color-white);
    border-bottom: 1px solid #e2e8f0;
  }

  .filter-section-wrap .filter-section-header > svg {
    display: block;
    width: 18px;
    height: 18px;
    transition: var(--transition-150);
    cursor: pointer;
  }

  .filter-section-wrap .filter-section-header > svg path {
    stroke: var(--color-black);
    transition: var(--transition-150);
  }

  .filter-section-wrap .filter-section-header > svg:hover path {
    stroke: var(--color-primary);
  }

  .filter-section-wrap .section-title {
    font-weight: var(--font-medium);
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--color-black);
    border-bottom: none;
  }

  .filter-section-wrap .section-title:after {
    content: none;
  }

  .filter-section-wrap .filter-section-inner {
    position: absolute;
    left: 0;
    top: 58px;
    right: 0;
    bottom: 0;
    padding: 23px 20px 15px;
  }

  .filter-section-wrap .filter-section-inner.custom-scrollbar {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.search-result-top {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
}

.search-result-top .content-left > h4 {
  font-weight: var(--font-normal);
  color: var(--color-gray);
}

.ltr .search-result-top .content-left > h4 {
  padding-right: 30px;
}

.rtl .search-result-top .content-left > h4 {
  padding-left: 30px;
}

.search-result-top .content-left > h4 > span {
  font-weight: var(--font-medium);
  color: var(--color-black);
}

.search-result-top .content-right .mobile-view-filter {
  font-size: 16px;
  display: none;
  cursor: pointer;
  transition: var(--transition-150);
}

.ltr .search-result-top .content-right .mobile-view-filter {
  margin-right: auto;
}

.rtl .search-result-top .content-right .mobile-view-filter {
  margin-left: auto;
}

.search-result-top .content-right .mobile-view-filter:hover {
  color: var(--color-primary);
}

.search-result-top .content-right .mobile-view-filter:hover > i {
  color: var(--color-primary);
}

.search-result-top .content-right .mobile-view-filter > i {
  color: var(--color-gray-dark);
  transition: var(--transition-150);
}

.ltr .search-result-top .content-right .mobile-view-filter > i {
  margin: 4px 5px 0 0;
}

.rtl .search-result-top .content-right .mobile-view-filter > i {
  margin: 4px 0 0 5px;
}

.search-result-top .sorting-bar {
  display: flex;
  align-items: center;
}

.search-result-top .sorting-bar .mobile-view-filter-dropdown {
  display: flex;
}

.ltr .search-result-top .sorting-bar .mobile-view-filter-dropdown .custom-dropdown:first-child {
  margin-right: 15px;
}

.rtl .search-result-top .sorting-bar .mobile-view-filter-dropdown .custom-dropdown:first-child {
  margin-left: 15px;
}

.search-result-top .sorting-bar .mobile-view-filter-dropdown .dropdown-toggle:active {
  border-color: var(--color-primary);
}

.search-result-top .sorting-bar .view-type {
  display: flex;
  align-items: center;
}

.ltr .search-result-top .sorting-bar .view-type {
  margin-right: 15px;
}

.rtl .search-result-top .sorting-bar .view-type {
  margin-left: 15px;
}

.ltr .search-result-top .sorting-bar .btn-grid-view {
  margin-right: 13px;
}

.rtl .search-result-top .sorting-bar .btn-grid-view {
  margin-left: 13px;
}

.search-result-top .sorting-bar .btn-grid-view,
.search-result-top .sorting-bar .btn-list-view {
  font-size: 24px;
  display: flex;
  padding: 0;
  color: var(--color-gray-dark);
  align-items: center;
}

.search-result-top .sorting-bar .btn-grid-view.active,
.search-result-top .sorting-bar .btn-list-view.active {
  color: var(--color-primary);
}

.search-result-top .sorting-bar .form-group {
  margin-bottom: 0;
}

.search-result-top .sorting-bar .form-group .current {
  position: relative;
}

.search-result-top .sorting-bar .form-group .list {
  top: 49px !important;
}

.ltr .search-result-top .sorting-bar .form-group .list::before {
  left: unset;
  right: 20px;
}

.rtl .search-result-top .sorting-bar .form-group .list::before {
  right: unset;
  left: 20px;
}

.search-result-middle {
  position: relative;
}

.search-result-middle.empty {
  display: flex;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.search-result-middle.loading:after {
  height: 40px;
  width: 40px;
}

.search-result-middle .empty-message {
  display: flex;
  padding: 40px 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.search-result-middle .empty-message svg {
  height: 70px;
  width: 100px;
  margin-bottom: 23px;
}

.search-result-middle .empty-message svg g {
  fill: var(--color-primary);
}

.search-result-bottom {
  display: flex;
  margin: -1px 0 -15px;
  justify-content: space-between;
  align-items: center;
}

.search-result-bottom .showing-results {
  line-height: 39px;
  color: var(--color-gray);
}

@media screen and (max-width: 991px) {
  .search-result-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-result-top .content-left {
    align-self: stretch;
  }

  .ltr .search-result-top .content-left > h4 {
    padding-right: 0;
  }

  .rtl .search-result-top .content-left > h4 {
    padding-left: 0;
  }

  .search-result-top .content-right {
    display: flex;
    align-self: stretch;
    margin-top: 13px;
    padding: 10px 15px;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white-lite);
    border-radius: var(--radius-default);
  }

  .search-result-top .content-right .mobile-view-filter {
    display: block;
  }

  .search-result-top .sorting-bar {
    width: 100%;
  }

  .ltr .search-result-top .sorting-bar .m-r-20 {
    margin-right: 15px;
  }

  .rtl .search-result-top .sorting-bar .m-r-20 {
    margin-left: 15px;
  }

  .search-result-middle.empty {
    min-height: 230px;
  }

  .search-result-bottom {
    flex-direction: column;
  }

  .search-result-bottom .showing-results + .pagination {
    margin-top: -3px;
  }
}

@media screen and (max-width: 550px) {
  .search-result-top .sorting-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-result-top .sorting-bar > .mobile-view-filter-dropdown {
    width: 100%;
    justify-content: center;
  }

  .search-result-top .sorting-bar > .mobile-view-filter-dropdown .custom-dropdown .dropdown-toggle span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-result-top .sorting-bar > .mobile-view-filter-dropdown .form-group {
    max-width: 185px;
  }

  .search-result-top .sorting-bar > .view-type {
    margin-bottom: 15px;
  }

  .ltr .search-result-top .sorting-bar > .view-type {
    margin-right: 0;
  }

  .rtl .search-result-top .sorting-bar > .view-type {
    margin-left: 0;
  }

  .search-result-top .content-right {
    flex-direction: column;
    padding: 15px;
  }

  .search-result-top .content-right .mobile-view-filter {
    margin-bottom: 15px;
  }

  .ltr .search-result-top .content-right .mobile-view-filter {
    margin-right: 20px;
  }

  .rtl .search-result-top .content-right .mobile-view-filter {
    margin-left: 20px;
  }
}

.grid-view-products {
  display: flex;
  flex-wrap: wrap;
  margin: -6px -6px 0;
}

.grid-view-products .grid-view-products-item {
  display: flex;
  padding: 6px;
}

.grid-view-products .product-card {
  width: 100%;
  margin: 0;
}

.grid-view-products .grid-view-products-item {
  width: 16.66%;
}

@media screen and (max-width: 1760px) {
  .grid-view-products .grid-view-products-item {
    width: 20%;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(10) ~ .grid-view-product-skeleton {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .grid-view-products .grid-view-products-item {
    width: 25%;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(8) ~ .grid-view-product-skeleton {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .grid-view-products .grid-view-products-item {
    width: 33.33%;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(6) ~ .grid-view-product-skeleton {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .grid-view-products .grid-view-products-item {
    width: 25%;
  }

  .grid-view-products .grid-view-product-skeleton {
    display: flex !important;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(8) ~ .grid-view-product-skeleton {
    display: none !important;
  }
}

@media screen and (max-width: 830px) {
  .grid-view-products .grid-view-products-item {
    width: 33.33%;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(6) ~ .grid-view-product-skeleton {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .grid-view-products .grid-view-products-item {
    width: 50%;
  }

  .grid-view-products .grid-view-product-skeleton:nth-child(4) ~ .grid-view-product-skeleton {
    display: none !important;
  }
}

.list-view-products {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -10px 0;
}

.list-view-products-item {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
}

.list-view-product-card {
  display: flex;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
  transition: var(--transition-150);
}

.list-view-product-card:hover {
  z-index: 1;
}

.list-view-product-card .product-card-left {
  align-self: flex-start;
}

.list-view-product-card .product-card-left .product-badge {
  top: 0;
}

.list-view-product-card .product-card-right {
  flex-grow: 1;
}

.ltr .list-view-product-card .product-card-right {
  padding: 6px 0px 11px 15px;
}

.rtl .list-view-product-card .product-card-right {
  padding: 6px 15px 11px 0px;
}

.list-view-product-card .product-card-right .product-card-actions-parent {
  display: flex;
  align-items: center;
}

.list-view-product-card .product-card-right .product-name-and-rating {
  margin-bottom: 15px;
}

.list-view-product-card .product-card-countdown {
  position: absolute;
  top: 50%;
  transition: var(--transition-200);
}

.ltr .list-view-product-card .product-card-countdown {
  left: 50%;
  transform: translate(-50%, -50%);
}

.rtl .list-view-product-card .product-card-countdown {
  right: 50%;
  transform: translate(50%, -50%);
}

.list-view-product-card .product-card-countdown.countdown .countdown-section {
  width: auto;
}

.ltr .list-view-product-card .product-card-countdown.countdown .countdown-section {
  margin-right: 10px;
}

.rtl .list-view-product-card .product-card-countdown.countdown .countdown-section {
  margin-left: 10px;
}

.list-view-product-card .product-card-countdown.countdown .countdown-amount {
  height: 38px;
  width: 38px;
  color: var(--color-white);
  margin: 0;
  background: var(--color-primary-alpha-80);
}

.list-view-product-card .product-card-countdown.countdown .countdown-period {
  display: none;
}

.list-view-product-card .product-name {
  display: flex;
  margin-bottom: 4px;
  align-items: center;
  z-index: 1;
}

.list-view-product-card .product-name span {
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 22px;
  max-height: 48px;
  display: block;
  display: -webkit-box;
  color: var(--color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: var(--transition-150);
  text-decoration-line: underline;
  text-decoration-color: transparent;
}

.list-view-product-card .product-name:hover span {
  text-decoration-color: var(--color-black);
}

.list-view-product-card .product-rating .reviews,
.list-view-product-card .product-rating .rating-count {
  font-size: 13px;
  line-height: 1;
  font-weight: var(--font-medium);
  color: var(--color-gray);
}

.ltr .list-view-product-card .product-rating .reviews,
.ltr .list-view-product-card .product-rating .rating-count {
  margin: 0 0 0 5px;
}

.rtl .list-view-product-card .product-rating .reviews,
.rtl .list-view-product-card .product-rating .rating-count {
  margin: 0 5px 0 0;
}

.list-view-product-card .product-rating .back-stars i {
  font-size: 14px;
}

.list-view-product-card .product-price {
  font-size: 18px;
  line-height: 26px;
  font-weight: var(--font-medium);
  margin-bottom: 11px;
  justify-content: flex-start;
}

.list-view-product-card .product-price .previous-price {
  font-size: 14px;
  font-weight: var(--font-normal);
}

.list-view-product-card .btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 8px 20px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  transition: var(--transition-150);
}

.ltr .list-view-product-card .btn-add-to-cart {
  margin-right: 5px;
}

.rtl .list-view-product-card .btn-add-to-cart {
  margin-left: 5px;
}

.list-view-product-card .btn-add-to-cart.btn-loading svg {
  visibility: hidden;
  opacity: 0;
}

.list-view-product-card .btn-add-to-cart > i {
  font-size: 15px;
  vertical-align: top;
  color: var(--color-white);
}

.ltr .list-view-product-card .btn-add-to-cart > i {
  margin-right: 8px;
}

.rtl .list-view-product-card .btn-add-to-cart > i {
  margin-left: 8px;
}

.list-view-product-card .btn-add-to-cart > svg {
  width: 15px;
  height: 15px;
}

.ltr .list-view-product-card .btn-add-to-cart > svg {
  margin-right: 8px;
}

.rtl .list-view-product-card .btn-add-to-cart > svg {
  margin-left: 8px;
}

.list-view-product-card .btn-add-to-cart > svg path {
  stroke: var(--color-white);
}

.list-view-product-card .btn-add-to-cart:hover {
  background: var(--color-primary-hover);
}

.list-view-product-card .btn-add-to-cart[disabled=disabled] {
  background: #EFEEF1;
  color: #CAC7D1;
  border-color: #EFEEF1;
}

.list-view-product-card .btn-add-to-cart[disabled=disabled] > svg path {
  stroke: #CAC7D1;
}

.list-view-product-card .product-card-actions {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  flex-direction: column;
  transition: var(--transition-150);
}

.ltr .list-view-product-card .product-card-actions {
  right: 0px;
}

.rtl .list-view-product-card .product-card-actions {
  left: 0px;
}

.list-view-product-card .product-card-actions .btn {
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--color-gray);
}

.list-view-product-card .product-card-actions .btn:hover {
  color: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn:hover > i {
  color: var(--color-gray);
}

.list-view-product-card .product-card-actions .btn > svg {
  width: 16px;
  height: 16px;
}

.ltr .list-view-product-card .product-card-actions .btn > svg {
  margin-right: 4px;
}

.rtl .list-view-product-card .product-card-actions .btn > svg {
  margin-left: 4px;
}

.list-view-product-card .product-card-actions .btn-compare,
.list-view-product-card .product-card-actions .btn-wishlist {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  padding: 0;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: var(--transition-150);
  transform: scale(0.5);
  visibility: hidden;
  opacity: 0;
}

.list-view-product-card .product-card-actions .btn-compare svg,
.list-view-product-card .product-card-actions .btn-wishlist svg {
  width: 14px;
  height: 14px;
}

.ltr .list-view-product-card .product-card-actions .btn-compare svg,
.ltr .list-view-product-card .product-card-actions .btn-wishlist svg {
  margin-right: 0;
}

.rtl .list-view-product-card .product-card-actions .btn-compare svg,
.rtl .list-view-product-card .product-card-actions .btn-wishlist svg {
  margin-left: 0;
}

.list-view-product-card .product-card-actions .btn-compare svg path,
.list-view-product-card .product-card-actions .btn-wishlist svg path {
  stroke: var(--color-white);
  transition: var(--transition-150);
}

.list-view-product-card .product-card-actions .btn-compare:hover,
.list-view-product-card .product-card-actions .btn-wishlist:hover {
  background: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn-compare.added,
.list-view-product-card .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
  transition: var(--transition-150);
}

.list-view-product-card .product-card-actions .btn-compare.added svg path,
.list-view-product-card .product-card-actions .btn-wishlist.added svg path {
  stroke: var(--color-white);
}

.list-view-product-card .product-card-actions .btn-wishlist.added {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  background: transparent;
}

.list-view-product-card .product-card-actions .btn-wishlist.added svg path {
  stroke: unset;
  fill: var(--color-primary);
}

.list-view-product-card .product-card-actions .btn-wishlist svg path {
  stroke-width: 2.2;
}

.list-view-product-card:hover .product-card-actions .btn-compare,
.list-view-product-card:hover .product-card-actions .btn-wishlist {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.list-view-product-card:hover .product-card-actions .btn-compare.added,
.list-view-product-card:hover .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
}

.list-view-product-card:hover .product-card-actions .btn-compare.added svg path,
.list-view-product-card:hover .product-card-actions .btn-wishlist.added svg path {
  stroke: var(--color-white) !important;
}

.list-view-product-card:hover .product-card-actions .btn-wishlist.added {
  background: var(--color-primary);
}

.list-view-product-card:hover .product-card-actions .btn-wishlist.added svg path {
  fill: var(--color-white) !important;
}

.list-view-product-card .product-image {
  position: relative;
  width: 170px;
  padding-bottom: 100%;
  transition: var(--transition-150);
}

.list-view-product-card .product-image .image-placeholder {
  height: 85px;
  width: 85px;
}

@media screen and (max-width: 1400px) {
  .list-view-products-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .list-view-product-card {
    flex-direction: column;
  }

  .list-view-product-card .product-card-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .list-view-product-card .product-card-left .product-image {
    width: 100%;
  }

  .ltr .list-view-product-card .product-card-right {
    margin-left: 0;
    padding-left: 0;
  }

  .rtl .list-view-product-card .product-card-right {
    margin-right: 0;
    padding-right: 0;
  }

  [dir] .list-view-product-card .product-card-right {
    padding: 0;
  }
}

.product-search-wrap {
  margin-top: 50px;
}

.product-search-wrap .product-search {
  display: flex;
}

@media screen and (max-width: 991px) {
  .product-search-wrap {
    margin-top: 24px;
  }

  .product-search {
    flex-direction: column-reverse;
  }
}

.brand-products-section .brand-header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-products-section .brand-header-card .brand-header-actions .chat-brand-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-products-section .brand-header-card .brand-header-actions .chat-brand-btn svg {
  width: 20px;
  height: 20px;
}

.brand-products-section .brand-header-card .brand-header-actions .chat-brand-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-products-section .products-toolbar {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f2f5;
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  transition: margin-top 0.2s ease;
}

.brand-products-section .products-toolbar .toolbar-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-products-section .products-toolbar .toolbar-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.brand-products-section .products-toolbar .toolbar-info .toolbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.brand-products-section .products-toolbar .toolbar-info .toolbar-stats small {
  color: #6c757d;
  font-weight: 500;
}

.brand-products-section .products-toolbar .toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ltr .brand-products-section .products-toolbar .toolbar-actions {
  margin-left: 0;
}

.rtl .brand-products-section .products-toolbar .toolbar-actions {
  margin-right: 0;
}

.brand-products-section .products-toolbar .toolbar-actions .mobile-sidebar-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #1f1f1f;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.brand-products-section .products-toolbar .toolbar-actions .mobile-sidebar-toggle .toggle-icon {
  font-size: 1rem;
}

.brand-products-section .products-toolbar .toolbar-actions .mobile-sidebar-toggle:hover {
  border-color: #c9ccd0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.brand-products-section .products-toolbar .toolbar-actions .mobile-sidebar-toggle:active {
  transform: translateY(0);
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper {
  position: relative;
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #f8f9fb;
  color: #1f1f1f;
  font-weight: 600;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ltr .brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper select {
  padding: 12px 44px 12px 16px;
}

.rtl .brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper select {
  padding: 12px 16px 12px 44px;
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  background: #fff;
}

.brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1f1f1f;
  transform: translateY(-50%);
  pointer-events: none;
}

.ltr .brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper::after {
  right: 16px;
}

.rtl .brand-products-section .products-toolbar .toolbar-actions .sort-select .select-wrapper::after {
  left: 16px;
}

.brand-products-section .products-toolbar .toolbar-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, border-radius 0.25s ease, padding 0.2s ease;
}

.brand-products-section .products-toolbar .toolbar-controls.is-sticky {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 14px 20px 16px;
  z-index: 170;
}

.brand-products-section .products-toolbar .toolbar-controls.is-sticky .toolbar-actions {
  width: 100%;
  justify-content: flex-start;
}

.brand-products-section .products-toolbar .toolbar-controls.is-sticky .mobile-tabs {
  margin-top: 8px;
}

.brand-products-section .products-toolbar-placeholder {
  height: 0;
  margin: 20px 0 0;
  transition: height 0.2s ease;
}

.brand-products-section .products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.brand-products-section .products-main {
  min-width: 0;
}

.brand-products-section .products-sidebar {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overflow-x: hidden;
}

.brand-products-section .products-sidebar .sidebar-header {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.brand-products-section .products-sidebar .sidebar-header .sidebar-label {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  display: inline-block;
}

.brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  display: inline-block;
}

.ltr .brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
  margin-left: 4px;
}

.rtl .brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
  margin-right: 4px;
}

.brand-products-section .products-sidebar .sidebar-header .sidebar-close {
  display: none;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block !important;
  flex-direction: column !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav li {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #374151 !important;
  font-weight: 400 !important;
  font-size: 0.9375rem !important;
  line-height: 1.5 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background-color 0.15s ease !important;
  gap: 8px !important;
  position: relative !important;
}

.ltr .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link {
  padding: 10px 56px 10px 12px !important;
  text-align: left !important;
}

.rtl .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link {
  padding: 10px 12px 10px 56px !important;
  text-align: right !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link.active {
  background: #e5e7eb !important;
  color: #000 !important;
  font-weight: 500 !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-name {
  flex: 1 !important;
  display: block !important;
  min-width: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 24px !important;
  max-width: 50px !important;
  height: 20px !important;
  padding: 0 6px !important;
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  border-radius: 10px !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.ltr .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
  right: 12px !important;
}

.rtl .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
  left: 12px !important;
}

.brand-products-section .products-sidebar .sidebar-body .category-nav .category-link.active .category-count {
  background: #dbeafe !important;
  color: #1d4ed8 !important;
}

.brand-products-section .products-sidebar .sidebar-body .sidebar-empty,
.brand-products-section .products-sidebar .sidebar-body .sidebar-loading {
  padding: 12px;
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
}

.brand-products-section .products-sidebar .sidebar-body .sidebar-empty p,
.brand-products-section .products-sidebar .sidebar-body .sidebar-loading p {
  margin: 0;
}

.brand-products-section .sidebar-overlay {
  display: none;
}

@media (min-width: 992px) {
  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    position: relative !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-name {
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
    position: static !important;
    top: auto !important;
    transform: none !important;
    justify-self: end !important;
  }

  .ltr .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
    right: auto !important;
  }

  .rtl .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
    left: auto !important;
  }
}

@media (max-width: 1199px) {
  .brand-products-section .products-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .brand-products-section .products-toolbar {
    padding: 20px;
  }

  .brand-products-section .products-toolbar.is-sticky {
    border-radius: 0;
  }

  .brand-products-section .products-toolbar .toolbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-products-section .products-toolbar .mobile-sidebar-toggle {
    display: none !important;
  }

  .brand-products-section .products-toolbar .sort-select {
    flex: 1 1 220px;
    min-width: 0;
  }

  .brand-products-section .products-toolbar .mobile-tabs {
    display: flex;
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fb;
    border: 1px solid #e0e0e0;
  }

  .brand-products-section .products-toolbar .mobile-tabs .tab-button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .ltr .brand-products-section .products-toolbar .mobile-tabs .tab-button:not(:last-child) {
    border-right: 1px solid #e0e0e0;
  }

  .rtl .brand-products-section .products-toolbar .mobile-tabs .tab-button:not(:last-child) {
    border-left: 1px solid #e0e0e0;
  }

  .brand-products-section .products-toolbar .mobile-tabs .tab-button.active {
    background: #fff;
    color: #1f1f1f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .brand-products-section .products-toolbar .mobile-tabs .tab-button:hover:not(.active) {
    background: #f0f2f5;
    color: #1f1f1f;
  }

  .brand-products-section .toolbar-controls.is-sticky .mobile-tabs {
    border-radius: 0;
  }

  .brand-products-section .toolbar-controls.is-sticky .toolbar-actions .sort-select {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-products-section .toolbar-controls.is-sticky .toolbar-actions .sort-select .select-wrapper select {
    width: 100%;
  }

  .brand-products-section .products-layout {
    display: block;
  }

  .brand-products-section .products-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .brand-products-section .products-sidebar.is-mobile-open {
    transform: translateY(0);
  }

  .brand-products-section .products-sidebar .sidebar-header {
    position: relative;
    margin: 0;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
  }

  .brand-products-section .products-sidebar .sidebar-header::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
  }

  .ltr .brand-products-section .products-sidebar .sidebar-header::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .rtl .brand-products-section .products-sidebar .sidebar-header::before {
    right: 50%;
    transform: translateX(50%);
  }

  .brand-products-section .products-sidebar .sidebar-header .sidebar-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    display: block;
  }

  .brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
  }

  .ltr .brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
    margin-left: 6px;
  }

  .rtl .brand-products-section .products-sidebar .sidebar-header .sidebar-subtitle {
    margin-right: 6px;
  }

  .brand-products-section .products-sidebar .sidebar-header .sidebar-close {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ltr .brand-products-section .products-sidebar .sidebar-header .sidebar-close {
    right: 16px;
  }

  .rtl .brand-products-section .products-sidebar .sidebar-header .sidebar-close {
    left: 16px;
  }

  .brand-products-section .products-sidebar .sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav li {
    border-bottom: 1px solid #f3f4f6;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav li:last-child {
    border-bottom: none;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link {
    padding: 14px 20px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link:active {
    background: #e5e7eb !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-name {
    flex: 1;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link .category-count {
    display: inline-flex !important;
    padding: 2px 8px !important;
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .category-nav .category-link.active .category-count {
    background: #dbeafe !important;
    color: #2563eb !important;
  }

  .brand-products-section .products-sidebar .sidebar-body .sidebar-empty,
  .brand-products-section .products-sidebar .sidebar-body .sidebar-loading {
    padding: 24px 20px;
    text-align: center;
  }

  .brand-products-section .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1050;
  }

  .brand-products-section .sidebar-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 575px) {
  .brand-products-section .products-toolbar {
    padding: 16px;
  }

  .brand-products-section .products-toolbar .toolbar-top {
    gap: 12px;
  }

  .brand-products-section .products-toolbar .toolbar-actions {
    gap: 12px;
  }

  .brand-products-section .products-toolbar .sort-select {
    flex: 1 1 100%;
    min-width: 0;
  }

  .brand-products-section .products-toolbar .sort-select .select-wrapper select {
    border-radius: 10px;
  }

  .ltr .brand-products-section .products-toolbar .sort-select .select-wrapper select {
    padding: 10px 40px 10px 14px;
  }

  .rtl .brand-products-section .products-toolbar .sort-select .select-wrapper select {
    padding: 10px 14px 10px 40px;
  }

  .brand-products-section .products-toolbar .mobile-sidebar-toggle {
    width: 100%;
    justify-content: center;
  }

  .brand-products-section .products-toolbar .mobile-tabs {
    margin-top: 12px;
  }

  .brand-products-section .products-toolbar .mobile-tabs .tab-button {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .brand-products-section .products-sidebar .sidebar-body .sidebar-empty,
  .brand-products-section .products-sidebar .sidebar-body .sidebar-loading {
    padding: 16px;
  }

  .ltr .brand-products-section .products-sidebar .sidebar-body .sidebar-empty,
  .ltr .brand-products-section .products-sidebar .sidebar-body .sidebar-loading {
    text-align: left;
  }

  .rtl .brand-products-section .products-sidebar .sidebar-body .sidebar-empty,
  .rtl .brand-products-section .products-sidebar .sidebar-body .sidebar-loading {
    text-align: right;
  }

  .brand-products-section .categories-list-view {
    padding: 16px 0;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 16px 0;
  }

  .brand-products-section .categories-list-view .categories-header {
    padding: 0 20px 16px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
  }

  .brand-products-section .categories-list-view .categories-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
  }

  .brand-products-section .categories-list-view .categories-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
  }

  .brand-products-section .categories-list-view .category-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 4px;
  }

  .brand-products-section .categories-list-view .category-list-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
  }

  .brand-products-section .categories-list-view .category-list-item:active {
    transform: translateY(0);
  }

  .brand-products-section .categories-list-view .category-list-item .category-info {
    flex: 1;
    min-width: 0;
  }

  .brand-products-section .categories-list-view .category-list-item .category-info .category-name {
    font-weight: 600;
    color: #1f1f1f;
    font-size: 1rem;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .brand-products-section .categories-list-view .category-list-item .category-info .category-meta {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
  }

  .brand-products-section .categories-list-view .category-list-item .category-arrow {
    color: #6c757d;
    transition: color 0.2s ease;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .ltr .brand-products-section .categories-list-view .category-list-item .category-arrow {
    margin-left: 12px;
  }

  .rtl .brand-products-section .categories-list-view .category-list-item .category-arrow {
    margin-right: 12px;
  }

  .brand-products-section .categories-list-view .category-list-item:hover .category-arrow {
    color: #667eea;
  }

  .brand-products-section .categories-list-view .no-categories,
  .brand-products-section .categories-list-view .loading-categories {
    padding: 40px 20px;
    color: #6c757d;
  }

  .brand-products-section .categories-list-view .no-categories p,
  .brand-products-section .categories-list-view .loading-categories p {
    margin: 0;
    font-size: 14px;
  }
}

/* 
 * Appended styles from extracted brand and index pages 
 */
/* From index_styles.scss */
.brand-header-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  gap: 20px;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .brand-header-card {
    flex-direction: row;
    align-items: center;
    padding: 32px;
  }
}

.brand-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  width: 100%;
}

.brand-logo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid var(--color-primary);
  padding: 5px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-logo-avatar {
    width: 100px;
    height: 100px;
  }
}

.brand-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.ltr .brand-header-text {
  text-align: left;
}

.rtl .brand-header-text {
  text-align: right;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.ltr .brand-title {
  text-align: left;
}

.rtl .brand-title {
  text-align: right;
}

@media (min-width: 768px) {
  .brand-title {
    font-size: 1.8rem;
  }
}

.brand-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
  text-align: justify;
  white-space: pre-wrap;
}

.brand-header-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .brand-header-actions {
    width: auto;
  }
}

.chat-brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  width: 100%;
}

@media (min-width: 768px) {
  .chat-brand-btn {
    width: auto;
  }
}

.chat-brand-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  color: #fff;
}

.chat-icon {
  width: 20px;
  height: 20px;
}

.brand-products-section .grid-view-products-item,
.brand-search-section .grid-view-products-item {
  animation: fadeInUp 0.5s ease-out forwards;
}

@media (min-width: 992px) {
  .brand-products-section .grid-view-products-item,
  .brand-search-section .grid-view-products-item {
    animation: none !important;
  }
}

.dots-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.dots-loader span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.4;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) {
  animation-delay: -0.32s;
}

.dots-loader span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

[x-cloak] {
  display: none !important;
}

.category-header-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}

.category-banner-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-banner-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.brand-products-section .categories-content {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px;
  margin: 10px 0;
  border: 1px solid #e2e8f0;
}

.brand-products-section .categories-content .categories-header h3 {
  margin-bottom: 4px;
}

.brand-products-section .categories-content .categories-header p {
  margin: 0;
}

.brand-products-section .categories-content .categories-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.brand-products-section .categories-content .category-list-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dbe4f3;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-products-section .categories-content .category-list-item:hover {
  border-color: #a8c1f0;
  box-shadow: 0 6px 16px rgba(88, 114, 215, 0.15);
}

.brand-products-section .categories-content .category-list-item.is-active {
  border-color: #4c6ef5;
  box-shadow: 0 8px 20px rgba(76, 110, 245, 0.2);
}

.brand-products-section .categories-content .category-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-products-section .categories-content .category-name {
  font-weight: 600;
  color: #1f2937;
}

.brand-products-section .categories-content .category-meta {
  font-size: 0.875rem;
  color: #64748b;
}

.brand-products-section .categories-content .category-arrow {
  font-size: 1.5rem;
  color: #94a3b8;
}

.brand-banner-card {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  aspect-ratio: 14/5;
  margin-bottom: 20px;
}

.brand-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.brand-products-section .loading-state,
.brand-products-section .no-products,
.brand-search-section .loading-state,
.brand-search-section .no-products {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}

.brand-products-section .loading-state p,
.brand-products-section .no-products p {
  margin: 0;
  font-size: 16px;
}

.brand-products-section .load-more-container,
.brand-search-section .load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
}

.brand-products-section .load-more-btn,
.brand-search-section .load-more-btn {
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  min-width: 220px;
  position: relative;
  overflow: hidden;
}

.ltr .brand-products-section .load-more-btn,
.ltr .brand-search-section .load-more-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rtl .brand-products-section .load-more-btn,
.rtl .brand-search-section .load-more-btn {
  background: linear-gradient(-135deg, #667eea 0%, #764ba2 100%);
}

.brand-products-section .load-more-btn:hover:not(:disabled),
.brand-search-section .load-more-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.brand-products-section .load-more-btn:active:not(:disabled),
.brand-search-section .load-more-btn:active:not(:disabled) {
  transform: translateY(0);
}

.brand-products-section .load-more-btn:disabled,
.brand-search-section .load-more-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.brand-products-section .load-more-btn.loading,
.brand-search-section .load-more-btn.loading {
  color: transparent;
}

.brand-products-section .load-more-btn.loading::after,
.brand-search-section .load-more-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.ltr .brand-products-section .load-more-btn.loading::after,
.ltr .brand-search-section .load-more-btn.loading::after {
  left: 50%;
  margin-left: -10px;
}

.rtl .brand-products-section .load-more-btn.loading::after,
.rtl .brand-search-section .load-more-btn.loading::after {
  right: 50%;
  margin-right: -10px;
}

.brand-products-section .load-more-info,
.brand-search-section .load-more-info {
  font-size: 14px;
  color: #6c757d;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .brand-header-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ltr .brand-header-card {
    text-align: left;
  }

  .rtl .brand-header-card {
    text-align: right;
  }

  .brand-header-actions {
    width: 100%;
  }

  .chat-brand-btn {
    width: 100%;
    justify-content: center;
  }

  .brand-logo-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    border: 2px solid var(--color-primary);
    padding: 4px;
    background: #fff;
  }

  .brand-title {
    font-size: 1.25rem;
  }
}
/* From brand_styles.scss */
.brand-search-section .search-toolbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-search-section .search-toolbar .toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-search-section .search-toolbar .toolbar-row.top {
  gap: 8px;
}

.brand-search-section .search-toolbar .toolbar-title {
  font-weight: 700;
}

.brand-search-section .search-toolbar .toolbar-stats {
  opacity: 0.8;
}

.brand-search-section .search-toolbar .search-group {
  position: relative;
  flex: 1 1 480px;
  min-width: 220px;
}

.brand-search-section .search-toolbar .search-group .form-control {
  height: 44px;
  border-radius: 12px;
}

.ltr .brand-search-section .search-toolbar .search-group .form-control {
  padding-left: 40px;
}

.rtl .brand-search-section .search-toolbar .search-group .form-control {
  padding-right: 40px;
}

.brand-search-section .search-toolbar .search-group .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  display: inline-flex;
}

.ltr .brand-search-section .search-toolbar .search-group .search-icon {
  left: 12px;
}

.rtl .brand-search-section .search-toolbar .search-group .search-icon {
  right: 12px;
}

.brand-search-section .search-toolbar .search-group .clear-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #6c757d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ltr .brand-search-section .search-toolbar .search-group .clear-btn {
  right: 6px;
}

.rtl .brand-search-section .search-toolbar .search-group .clear-btn {
  left: 6px;
}

.brand-search-section .search-toolbar .search-group .clear-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.brand-search-section .search-toolbar .sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 280px;
}

.brand-search-section .search-toolbar .sort-group .form-select {
  height: 44px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .brand-search-section .search-toolbar .toolbar-row {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-search-section .search-toolbar .toolbar-row.bottom {
    gap: 10px;
  }

  .brand-search-section .search-toolbar .search-group {
    width: 100%;
  }

  .brand-search-section .search-toolbar .sort-group {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.brand-search-section .no-products-icon {
  opacity: 0.3;
}