/* ===========================================================
   USM Car Parts — Shop / listing page
   Scoped under .usm-shop. Fonts inherited (Outfit / Roboto).

   NOTE: the theme styles .theme-btn as white with four animated
   <span> fills, and .shop-block-one as a fixed-height card whose
   .cart-btn is parked outside the box. Both are undone below.
   =========================================================== */

.usm-shop {
  --usm-accent: var(--theme-color, #F05A28);
  --usm-ink: #111111;
  --usm-muted: #6A6A6A;
  --usm-line: #e8e8ea;
  --usm-soft: #f6f7f9;
  --usm-radius: 14px;
  --usm-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===========================================================
   1. Page head
   =========================================================== */
.usm-shop-head {
  position: relative;
  padding: 58px 0 62px;
  color: #fff;
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(240, 90, 40, .22) 0%, rgba(240, 90, 40, 0) 68%),
    linear-gradient(135deg, #121216 0%, #1c1a1e 55%, #2b1c14 100%);
  overflow: hidden;
}

.usm-shop-head:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, .03) 0px,
      rgba(255, 255, 255, .03) 1px,
      transparent 1px,
      transparent 10px);
  pointer-events: none;
}

.usm-shop-head .auto-container {
  position: relative;
  z-index: 1;
}

.usm-shop-head h1 {
  color: #fff;
  font-size: 38px;
  line-height: 48px;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}

.usm-shop-head .bread-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usm-shop-head .bread-crumb li {
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
}

.usm-shop-head .bread-crumb li + li:before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, .3);
}

.usm-shop-head .bread-crumb li a {
  color: rgba(255, 255, 255, .8);
  transition: color .3s var(--usm-ease);
}

.usm-shop-head .bread-crumb li a:hover {
  color: var(--usm-accent);
}

/* ===========================================================
   2. Layout
   =========================================================== */
.usm-shop .shop-page-section {
  padding: 60px 0 90px !important;
  background: linear-gradient(180deg, var(--usm-soft) 0%, #ffffff 40%);
}

/* ---- results bar ---- */
.usm-shop .usm-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--usm-line);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, .05);
}

.usm-shop .usm-shop-bar .usm-count {
  font-size: 14px;
  color: var(--usm-muted);
}

.usm-shop .usm-shop-bar .usm-count b {
  color: var(--usm-ink);
  font-weight: 600;
}

.usm-shop .usm-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--usm-line);
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--usm-ink);
  cursor: pointer;
}

/* ===========================================================
   3. Sidebar
   =========================================================== */
.usm-shop .shop-sidebar {
  position: sticky;
  top: 20px;
}

.usm-shop .sidebar-widget {
  padding: 24px 22px !important;
  margin-bottom: 22px !important;
  background: #fff;
  border: 1px solid var(--usm-line);
  border-radius: var(--usm-radius);
  box-shadow: 0 8px 24px rgba(17, 17, 17, .05);
}

.usm-shop .sidebar-widget .widget-title {
  margin-bottom: 18px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--usm-line);
}

.usm-shop .sidebar-widget .widget-title h3 {
  position: relative;
  padding-left: 14px;
  font-size: 18px;
  line-height: 26px;
  color: var(--usm-ink);
}

.usm-shop .sidebar-widget .widget-title h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 20px;
  border-radius: 3px;
  background: var(--usm-accent);
}

/* ---- category accordion ---- */
.usm-shop .accordion-box {
  margin: 0;
  padding: 0;
}

.usm-shop .accordion-box .block {
  margin-bottom: 6px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background .3s var(--usm-ease), border-color .3s var(--usm-ease);
}

.usm-shop .accordion-box .block.active-block {
  background: var(--usm-soft);
  border-color: var(--usm-line);
}

.usm-shop .accordion-box .acc-btn {
  position: relative;
  padding: 11px 38px 11px 14px !important;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 22px;
  color: var(--usm-ink);
  cursor: pointer;
  transition: color .3s var(--usm-ease);
}

.usm-shop .accordion-box .acc-btn:hover,
.usm-shop .accordion-box .acc-btn.active {
  color: var(--usm-accent);
}

/* the theme's icon-box becomes a chevron */
.usm-shop .accordion-box .acc-btn .icon-box {
  position: absolute;
  right: 14px;
  top: 50%;
  left: auto;
  width: 9px;
  height: 9px;
  margin: -6px 0 0;
  background: none !important;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--usm-ease);
}

.usm-shop .accordion-box .acc-btn.active .icon-box {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.usm-shop .accordion-box .acc-content {
  padding: 0 14px 12px !important;
}

.usm-shop .category-list {
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow-y: auto;
}

.usm-shop .category-list li {
  margin-bottom: 2px;
}

.usm-shop .check-box {
  position: relative;
}

.usm-shop .check-box input.check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.usm-shop .check-box label {
  position: relative;
  display: block;
  padding: 7px 8px 7px 30px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 21px;
  color: var(--usm-muted);
  cursor: pointer;
  transition: background .25s var(--usm-ease), color .25s var(--usm-ease);
}

.usm-shop .check-box label:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 17px;
  height: 17px;
  border: 1.5px solid #c9c9d1;
  border-radius: 5px;
  background: #fff;
  transition: all .25s var(--usm-ease);
}

.usm-shop .check-box label:after {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transition: transform .25s var(--usm-ease);
}

.usm-shop .check-box label:hover {
  background: rgba(240, 90, 40, .06);
  color: var(--usm-ink);
}

.usm-shop .check-box input.check:checked + label {
  color: var(--usm-accent);
  font-weight: 500;
}

.usm-shop .check-box input.check:checked + label:before {
  background: var(--usm-accent);
  border-color: var(--usm-accent);
}

.usm-shop .check-box input.check:checked + label:after {
  transform: rotate(45deg) scale(1);
}

/* ---- price filter ---- */
.usm-shop .price-range-slider .range-bar.ui-slider {
  height: 5px;
  margin: 6px 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--usm-line);
}

.usm-shop .price-range-slider .ui-slider-range {
  background: var(--usm-accent);
  border-radius: 6px;
}

.usm-shop .price-range-slider .ui-slider-handle {
  top: -7px;
  width: 19px;
  height: 19px;
  border: 3px solid var(--usm-accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(17, 17, 17, .18);
  cursor: grab;
  outline: none;
}

.usm-shop .price-range-slider .ui-slider-handle:active {
  cursor: grabbing;
}

.usm-shop .price-range-slider .range-value {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.usm-shop .price-range-slider .range-value span {
  font-size: 13px;
  font-weight: 600;
  color: var(--usm-ink);
}

.usm-shop .price-range-slider .range-value input {
  flex: 1 1 auto;
  width: auto;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--usm-line);
  border-radius: 8px;
  background: var(--usm-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--usm-ink);
}

.usm-shop .price-range-slider .btn-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.usm-shop .price-range-slider .btn-box .clear-btn,
.usm-shop .price-range-slider .btn-box .theme-btn {
  width: 100%;
  min-width: 0;
  padding: 11px 10px !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--usm-ease);
}

.usm-shop .price-range-slider .btn-box .clear-btn {
  border: 1px solid var(--usm-line);
  background: #fff;
  color: var(--usm-ink);
}

.usm-shop .price-range-slider .btn-box .clear-btn:hover {
  border-color: var(--usm-ink);
  background: var(--usm-ink);
  color: #fff;
}

.usm-shop .price-range-slider .btn-box .theme-btn {
  background: var(--usm-accent) !important;
  border: 0;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.usm-shop .price-range-slider .btn-box .theme-btn span {
  display: none;
}

.usm-shop .price-range-slider .btn-box .theme-btn:hover {
  background: #d8410f !important;
}

/* ===========================================================
   4. Product grid
   =========================================================== */
.usm-shop .shop-grid-content .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -9px;
  margin-right: -9px;
}

.usm-shop .shop-block {
  display: flex;
  padding: 0 9px;
  margin-bottom: 18px;
}

.usm-shop .shop-block-one {
  display: flex;
  width: 100%;
}

/* theme: fixed 433px height, .cart-btn parked outside the box */
.usm-shop .shop-block-one .inner-box {
  position: relative;
  display: flex !important;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  left: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--usm-line) !important;
  border-radius: var(--usm-radius);
  background: #fff;
  overflow: hidden;
  transition: transform .4s var(--usm-ease), box-shadow .4s var(--usm-ease), border-color .4s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box:before {
  display: none !important;
}

.usm-shop .shop-block-one .inner-box:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 40, .35) !important;
  box-shadow: 0 20px 40px rgba(17, 17, 17, .13);
}

.usm-shop .shop-block-one .inner-box:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, var(--usm-accent), #ff9b6a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box:hover:after {
  transform: scaleX(1);
}

/* ---- image ---- */
.usm-shop .shop-block-one .inner-box .image-box {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at 50% 35%, #ffffff 0%, var(--usm-soft) 100%);
  overflow: hidden;
}

.usm-shop .shop-block-one .inner-box .image-box .image {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.usm-shop .shop-block-one .inner-box .image-box .image img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .55s var(--usm-ease);
}

/* theme fades the image to 0.5 on hover */
.usm-shop .shop-block-one .inner-box:hover .image-box .image img {
  opacity: 1;
  transform: scale(1.07);
}

.usm-shop .shop-block-one .inner-box .image-box .discount-product {
  left: 12px !important;
  top: 12px !important;
  z-index: 3;
  background: var(--usm-accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 30px;
}

.usm-shop .shop-block-one .inner-box .image-box .option-list {
  left: auto !important;
  right: 12px !important;
  top: 12px !important;
  transform: none !important;
  z-index: 3;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity .35s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box:hover .image-box .option-list {
  opacity: 1;
}

.usm-shop .shop-block-one .inner-box .image-box .option-list li {
  margin: 0 !important;
}

.usm-shop .shop-block-one .inner-box .image-box .option-list form {
  margin: 0;
}

.usm-shop .shop-block-one .inner-box .image-box .option-list button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  padding: 0;
  border: 1px solid var(--usm-line);
  border-radius: 50%;
  background: #fff;
  color: var(--usm-ink);
  -webkit-text-fill-color: currentColor;
  box-shadow: 0 4px 12px rgba(17, 17, 17, .1);
  cursor: pointer;
  transition: all .3s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box .image-box .option-list button:hover {
  background: var(--usm-accent);
  border-color: var(--usm-accent);
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 6px 16px rgba(240, 90, 40, .4);
}

/* ---- body ---- */
.usm-shop .shop-block-one .inner-box .lower-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px;
  border-top: 1px solid var(--usm-line);
}

.usm-shop .shop-block-one .inner-box .lower-content h4 {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.usm-shop .shop-block-one .inner-box .lower-content h4 a {
  color: var(--usm-ink);
  transition: color .3s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box:hover .lower-content h4 a {
  color: var(--usm-accent);
}

.usm-shop .shop-block-one .inner-box .lower-content h5 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  color: var(--usm-ink);
  margin-bottom: 10px;
}

.usm-shop .shop-block-one .inner-box .lower-content h5 del {
  order: 2;
  font-size: 13px;
  font-weight: 400;
  color: #a0a0a8;
}

.usm-shop .shop-block-one .inner-box .lower-content .product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #157f45;
  background: rgba(21, 127, 69, .08);
  padding: 5px 10px;
  border-radius: 30px;
  align-self: flex-start;
  margin-bottom: 14px;
}

/* ---- buttons: back into flow ---- */
.usm-shop .shop-block-one .inner-box .lower-content .cart-btn {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn form {
  margin: 0;
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn .theme-btn {
  width: 100%;
  margin: 0 !important;
  padding: 11px 8px !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  text-align: center;
  border: 1px solid var(--usm-accent);
  border-radius: 8px;
  background: var(--usm-accent) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  transition: all .3s var(--usm-ease);
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn .theme-btn span {
  display: none;
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn .theme-btn:hover {
  background: #d8410f !important;
  border-color: #d8410f;
}

/* Buy Now = secondary outline */
.usm-shop .shop-block-one .inner-box .lower-content .cart-btn form:last-child .theme-btn {
  background: transparent !important;
  border-color: var(--usm-ink);
  color: var(--usm-ink) !important;
  -webkit-text-fill-color: var(--usm-ink);
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn form:last-child .theme-btn:hover {
  background: var(--usm-ink) !important;
  border-color: var(--usm-ink);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ---- empty state ---- */
.usm-shop .usm-empty {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--usm-line);
  border-radius: var(--usm-radius);
}

.usm-shop .usm-empty h4 {
  font-size: 19px;
  color: var(--usm-ink);
  margin-bottom: 6px;
}

.usm-shop .usm-empty p {
  font-size: 14.5px;
  color: var(--usm-muted);
}

/* ===========================================================
   5. Responsive
   =========================================================== */
@media (max-width: 1199px) {
  .usm-shop .shop-block-one .inner-box .lower-content .cart-btn {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .usm-shop-head {
    padding: 42px 0 46px;
  }

  .usm-shop-head h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .usm-shop .shop-page-section {
    padding: 40px 0 60px !important;
  }

  .usm-shop .shop-sidebar {
    position: static;
  }

  /* sidebar collapses behind a toggle */
  .usm-shop .usm-filter-toggle {
    display: inline-flex;
  }

  .usm-shop .sidebar-side {
    order: 2;
  }

  .usm-shop .shop-sidebar {
    display: none;
    margin-top: 20px;
  }

  .usm-shop .shop-sidebar.is-open {
    display: block;
  }

  .usm-shop .shop-block-one .inner-box .lower-content .cart-btn {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .usm-shop .shop-block-one .inner-box .lower-content h4 {
    font-size: 14px;
    min-height: 40px;
  }
}

/* ===========================================================
   6. Theme overrides that need the theme's own selector depth
   =========================================================== */

/* The page section carries .shop-style-two, whose card design pulls the
   box down on hover: `.shop-style-two .shop-block-one .inner-box:hover
   { margin-bottom: -183px }` (it reveals an overlay panel we don't use).
   That is what made cards grow/shift on hover. */
.usm-shop .shop-style-two .shop-block-one .inner-box,
.usm-shop .shop-page-section .shop-block-one .inner-box {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.usm-shop .shop-style-two .shop-block-one .inner-box:hover,
.usm-shop .shop-page-section .shop-block-one .inner-box:hover {
  margin-bottom: 0 !important;
  border-color: rgba(240, 90, 40, .35) !important;
}

.usm-shop .shop-style-two .shop-block-one .inner-box:before {
  display: none !important;
}

.usm-shop .shop-style-two .shop-block-one .inner-box .lower-content {
  padding: 16px !important;
}

.usm-shop .shop-style-two .shop-block-one .inner-box:hover .lower-content {
  padding-bottom: 16px !important;
}

/* ---- sidebar accordion ----
   Theme draws a checkbox square via .acc-btn:before/:after and a +/- box
   via .icon-box, with padding-left:28px / padding-right:30px. We use a
   chevron instead, so those must go — at the theme's selector depth. */
.usm-shop .shop-sidebar .category-widget .accordion .acc-btn {
  padding: 11px 38px 11px 14px !important;
  font-size: 14.5px !important;
  line-height: 22px !important;
  font-weight: 600;
  color: var(--usm-ink);
}

.usm-shop .shop-sidebar .category-widget .accordion .acc-btn:before,
.usm-shop .shop-sidebar .category-widget .accordion .acc-btn:after {
  display: none !important;
  content: none !important;
}

.usm-shop .shop-sidebar .category-widget .accordion .acc-btn.active {
  color: var(--usm-accent);
}

.usm-shop .shop-sidebar .category-widget .accordion .acc-btn .icon-box {
  position: absolute !important;
  right: 14px !important;
  left: auto !important;
  top: 50% !important;
  width: 9px !important;
  height: 9px !important;
  margin: -6px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  border-radius: 0 !important;
  background: none !important;
  color: inherit !important;
  transform: rotate(45deg);
  transition: transform .3s var(--usm-ease);
}

.usm-shop .shop-sidebar .category-widget .accordion .acc-btn .icon-box:before,
.usm-shop .shop-sidebar .category-widget .accordion .acc-btn .icon-box:after {
  display: none !important;
  content: none !important;
}

.usm-shop .shop-sidebar .category-widget .accordion .acc-btn.active .icon-box {
  transform: rotate(-135deg);
  margin-top: -2px !important;
}

/* one flat list: each category prints its own <ul class="accordion-box"> */
.usm-shop .shop-sidebar .category-widget .accordion-box {
  margin: 0 !important;
  padding: 0 !important;
}

.usm-shop .shop-sidebar .category-widget .accordion-box + .accordion-box {
  margin-top: 4px !important;
}

.usm-shop .shop-sidebar .category-widget .accordion {
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 0 !important;
  padding: 0 !important;
}

.usm-shop .shop-sidebar .category-widget .accordion.active-block {
  background: var(--usm-soft);
  border-color: var(--usm-line);
}

.usm-shop .shop-sidebar .category-widget .acc-content {
  padding: 0 12px 10px !important;
}

.usm-shop .shop-sidebar .category-widget .category-list li {
  padding: 0 !important;
  margin: 0 0 2px !important;
}

.usm-shop .shop-sidebar .category-widget .category-list li:before {
  display: none !important;
}

/* ===========================================================
   7. Load more (8 products per page)
   =========================================================== */
.usm-shop .shop-block.is-hidden {
  display: none !important;
}

.usm-shop .usm-loadmore-box {
  display: none;
  margin-top: 14px;
  text-align: center;
}

.usm-shop .usm-loadmore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  border: 1px solid var(--usm-line);
  border-radius: 30px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--usm-ink);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(17, 17, 17, .06);
  transition: all .3s var(--usm-ease);
}

.usm-shop .usm-loadmore:after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--usm-ease);
}

.usm-shop .usm-loadmore:hover {
  background: var(--usm-accent);
  border-color: var(--usm-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 90, 40, .32);
}

.usm-shop .usm-loadmore:hover:after {
  transform: rotate(45deg) translateY(1px);
}

.usm-shop .usm-remaining {
  font-weight: 400;
  opacity: .7;
}

.usm-shop .usm-count i {
  font-style: normal;
  font-weight: 600;
  color: var(--usm-ink);
}

/* filter-products.php returns bare .shop-block items with no .row
   wrapper, so give the container the grid behaviour in that case */
.usm-shop #productResult:has(> .shop-block) {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -9px;
  margin-right: -9px;
}

/* ---- out of stock ---- */
.usm-shop .shop-block-one .inner-box .lower-content .product-stock.is-out {
  background: rgba(216, 65, 15, .08);
  color: #d8410f;
}

.usm-shop .shop-block-one .inner-box .lower-content .cart-btn .theme-btn:disabled,
.usm-shop .shop-block-one .inner-box .lower-content .cart-btn .theme-btn[disabled] {
  background: #d9d9de !important;
  border-color: #d9d9de !important;
  color: #8a8a93 !important;
  -webkit-text-fill-color: #8a8a93;
  cursor: not-allowed;
}
