/* Improved digital shop UI */
:root {
  --shop-card-radius: 16px;
  --shop-border: #edf0f5;
  --shop-soft-bg: #f8fafc;
  --shop-shadow: 0 16px 40px rgba(15, 23, 42, .08);
  --shop-shadow-hover: 0 22px 55px rgba(15, 23, 42, .14);
}
.container-one {
  max-width: 1320px;
}
.global-card,
.product-card,
.campaign-card,
.category-card {
  background: #fff;
  border: 1px solid var(--shop-border);
  border-radius: var(--shop-card-radius) !important;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.global-card.no-shadow {
  box-shadow: 0 8px 26px rgba(15, 23, 42, .045) !important;
}
.global-card:hover,
.product-card:hover,
.campaign-card:hover,
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shop-shadow-hover);
  border-color: rgba(var(--main-color-one-rgb, 255, 106, 0), .24);
}
.global-card-thumb {
  background: var(--shop-soft-bg);
  aspect-ratio: 1 / .88;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.global-card:hover .global-card-thumb img {
  transform: scale(1.06);
}
.global-card-contents {
  padding: 18px 18px 20px !important;
}
.global-card-contents-flex {
  gap: 10px;
}
.global-card-contents-title {
  min-height: 44px;
  font-size: 17px !important;
  line-height: 1.35 !important;
  margin-bottom: 4px;
}
.global-card-contents-title a {
  color: var(--heading-color, #111827);
  transition: color .2s ease;
}
.global-card-contents-title a:hover {
  color: var(--main-color-one, #ff6a00);
}
.global-card-thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  z-index: 5;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.global-card-thumb-badge.right-side {
  right: 12px;
  left: auto;
  justify-content: flex-end;
}
[dir="rtl"] .global-card-thumb-badge {
  left: auto;
  right: 12px;
}
[dir="rtl"] .global-card-thumb-badge.right-side {
  left: 12px;
  right: auto;
}
.global-card-thumb-badge-box {
  border-radius: 999px !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}
.global-card-thumb-icons,
.global-thumb-icons {
  z-index: 7;
}
.global-card-thumb-icons .lists,
.global-thumb-icons .lists {
  gap: 8px;
}
.global-card-thumb-icons .icon,
.global-thumb-icons .icon,
.btn-wishlist,
.product-quick-view-ajax {
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  background: #fff;
  color: var(--heading-color, #111827);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .16);
  transition: all .2s ease;
}
.global-card-thumb-icons .icon:hover,
.global-thumb-icons .icon:hover,
.btn-wishlist:hover,
.product-quick-view-ajax:hover {
  background: var(--main-color-one, #ff6a00);
  color: #fff;
  transform: translateY(-2px);
}
.price-update-through {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
}
.flash-prices,
.current-price,
.sale-price {
  color: var(--main-color-one, #ff6a00) !important;
  font-weight: 800;
  font-size: 18px;
}
.flash-old-prices,
.old-price,
.regular-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 14px;
}
.ratings,
.rating-wrap {
  color: #f59e0b;
}
.shop-contents-wrapper {
  gap: 28px;
}
.shop-sidebar-content {
  background: #fff;
  border: 1px solid var(--shop-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
  padding: 20px;
}
.single-shop-left {
  padding-right: 0 !important;
}
.single-shop-left + .single-shop-left {
  border-top: 1px solid var(--shop-border);
  padding-top: 22px;
}
.shop-left-title .title,
.title-borders {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.title-borders::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 8px;
  border-radius: 20px;
  background: var(--main-color-one, #ff6a00);
}
.category-lists .list,
.shop-left-list .list {
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.category-lists .list .item,
.shop-left-list .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #475569;
}
.category-lists .list:hover .item,
.category-lists .list.active .item,
.shop-left-list .list:hover .item,
.shop-left-list .list.active .item {
  background: rgba(var(--main-color-one-rgb, 255, 106, 0), .09);
  color: var(--main-color-one, #ff6a00);
}
.single-shop-left-search-input form {
  position: relative;
  width: 100%;
}
.single-shop-left-search-input .form--control {
  width: 100%;
  height: 48px !important;
  border: 1px solid var(--shop-border) !important;
  border-radius: 12px !important;
  padding-inline-end: 46px !important;
  background: #fff !important;
}
.single-shop-left-search-input button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--main-color-one, #ff6a00);
  color: #fff;
}
[dir="rtl"] .single-shop-left-search-input button {
  right: auto;
  left: 8px;
}
.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination-list .page-number,
.pagination .page-link,
.blog-pagination a,
.blog-pagination span {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--shop-border);
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  background: #fff;
  transition: all .2s ease;
}
.pagination-list .page-number.current,
.pagination-list .page-number:hover,
.pagination .active .page-link,
.blog-pagination .active span,
.blog-pagination a:hover {
  background: var(--main-color-one, #ff6a00) !important;
  border-color: var(--main-color-one, #ff6a00) !important;
  color: #fff !important;
}
.product-quick-view-bg-color .modal-dialog,
.quick-view-modal .modal-dialog {
  max-width: 980px;
}
.product-quick-view-bg-color .modal-content,
.quick-view-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
}
@media (max-width: 991px) {
  .shop-sidebar-content {
    border-radius: 0 18px 18px 0;
    padding: 22px 18px;
  }
  .global-card-thumb {
    aspect-ratio: 1 / .82;
  }
}
@media (max-width: 575px) {
  .global-card-contents {
    padding: 14px !important;
  }
  .global-card-contents-title {
    font-size: 15px !important;
    min-height: auto;
  }
  .flash-prices {
    font-size: 16px;
  }
}
