@media (max-width:420px)
{
	.product-grid-4 .col-12{
    width:50% !important;
  }
}

.home-products-first {
  padding: 24px 0 50px;
}

.product-cart-wrap .product-img-action-wrap {
  max-height: none;
  overflow: visible;
}

.product-cart-wrap .product-img-action-wrap .product-img {
  overflow: visible;
  border-radius: 0;
}

.product-cart-wrap .product-img-action-wrap .product-img a {
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
}

.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
  right: 0;
  margin: 0 auto;
}

.product-cart-wrap:hover .product-img-zoom a img {
  transform: none;
}

.detail-gallery .slick-slider {
  background: transparent;
}

.detail-gallery .product-image-slider figure,
.detail-gallery .slider-nav-thumbnails div {
  text-align: center;
}

.detail-gallery .product-image-slider img,
.detail-gallery .slider-nav-thumbnails img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  object-fit: contain;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #088178, #f15412, #088178);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  z-index: 99999;
}

body.is-livewire-loading::before {
  transform: scaleX(1);
}

.trust-strip,
.product-trust-list,
.checkout-confidence,
.admin-insight-grid {
  display: grid;
  gap: 16px;
}

.trust-strip {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 28px 0;
}

.trust-strip__item,
.product-trust-list__item,
.checkout-confidence__item,
.admin-insight-card {
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.trust-strip__item strong,
.product-trust-list__item strong,
.checkout-confidence__item strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #e8f6ea;
  color: #137333;
  font-size: 13px;
  font-weight: 700;
}

.stock-pill.is-low {
  background: #fff3cd;
  color: #8a5a00;
}

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5a623;
  font-weight: 700;
  margin: 8px 0 12px;
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.variant-pills span {
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #333;
  font-size: 13px;
}

.empty-state-box {
  border: 1px dashed #d9d9d9;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  background: #fafafa;
}

.order-processing {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 22px 0 10px;
  padding: 14px 16px;
  border: 1px solid #b7e4c7;
  border-radius: 8px;
  background: #ecfdf3;
  color: #087443;
  font-size: 18px;
  font-weight: 700;
}

.order-processing__spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #b7e4c7;
  border-top-color: #087443;
  border-radius: 50%;
  animation: order-spin .8s linear infinite;
}

.order-processing__dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.order-processing__dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #087443;
  animation: order-dot 1s ease-in-out infinite;
}

.order-processing__dots i:nth-child(2) {
  animation-delay: .15s;
}

.order-processing__dots i:nth-child(3) {
  animation-delay: .3s;
}

.currency-switcher-wrap {
  min-width: 78px;
}

.currency-switcher {
  width: 76px;
  height: 34px;
  border: 1px solid #ececec;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  padding: 0 8px;
  outline: none;
}

.currency-switcher:focus {
  border-color: #088178;
  box-shadow: 0 0 0 2px rgba(8, 129, 120, .12);
}

.product-cart-wrap.is-selected-product {
  border-color: #088178;
  box-shadow: 0 14px 34px rgba(8, 129, 120, .2);
  position: relative;
  transform: translateY(-2px);
}

.product-cart-wrap.is-selected-product::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(8, 129, 120, .55);
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}

.product-cart-wrap.is-selected-product::after {
  content: "\2713";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #088178;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  z-index: 5;
  box-shadow: 0 8px 18px rgba(8, 129, 120, .3);
  animation: selected-pop .28s ease;
}

.selected-product-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 8px;
  background: linear-gradient(135deg, #088178, #0f9f8f);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  z-index: 4;
  box-shadow: 0 10px 24px rgba(8, 129, 120, .32);
  animation: selected-pop .25s ease;
}

.selected-product-badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: #088178;
  font-size: 11px;
}

.selected-product-badge span,
.selected-product-badge small {
  line-height: 1;
  white-space: nowrap;
}

.selected-product-badge strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 7px;
  border-radius: 6px;
  background: #fff;
  color: #087443;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(8, 129, 120, .1);
}

.selected-product-badge small {
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  text-transform: uppercase;
}

.cart-selected-action {
  background: #088178 !important;
  color: #fff !important;
  border-color: #088178 !important;
  box-shadow: 0 8px 18px rgba(8, 129, 120, .25);
  animation: selected-add-pulse 1.2s ease-in-out infinite;
  position: relative;
}

.cart-selected-action::after {
  content: "+";
  position: absolute;
  top: -10px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ffb703;
  color: #1f2933;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(31, 41, 51, .14);
  animation: selected-float-plus 1.2s ease-in-out infinite;
}

.detail-selected-notice {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  margin: 12px 0 8px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #087443;
  border: 1px solid #b7e4c7;
  font-weight: 800;
}

.detail-selected-notice strong {
  padding: 2px 8px;
  border-radius: 999px;
  background: #087443;
  color: #fff;
}

.detail-selected-notice small {
  color: #0f766e;
  font-weight: 700;
}

.button.button-add-to-cart.is-selected-product-button {
  background: #087443;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(8, 116, 67, .18);
  animation: selected-add-pulse 1.2s ease-in-out infinite;
}

.button.button-add-to-cart i {
  font-size: 16px;
}

.customer-order-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
  white-space: nowrap;
}

.customer-order-status.ordered {
  background: #fff3cd;
  color: #8a5a00;
}

.customer-order-status.confirmed {
  background: #e7f1ff;
  color: #084298;
}

.customer-order-status.collected {
  background: #efe7ff;
  color: #4f248f;
}

.customer-order-status.delivered {
  background: #ecfdf3;
  color: #087443;
}

.customer-order-status.canceled {
  background: #fdecec;
  color: #b42318;
}

.admin-order-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
  white-space: nowrap;
}

.admin-order-status.ordered {
  background: #fff3cd;
  color: #8a5a00;
}

.admin-order-status.confirmed {
  background: #e7f1ff;
  color: #084298;
}

.admin-order-status.collected {
  background: #efe7ff;
  color: #4f248f;
}

.admin-order-status.delivered {
  background: #ecfdf3;
  color: #087443;
}

.admin-order-status.canceled {
  background: #fdecec;
  color: #b42318;
}

@keyframes selected-pop {
  0% {
    transform: scale(.92);
  }
  55% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes selected-add-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(8, 129, 120, .22);
  }
  50% {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 12px 24px rgba(8, 129, 120, .34);
  }
}

@keyframes selected-float-plus {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

@media (max-width: 575px) {
  .selected-product-badge {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 5px;
    justify-content: center;
    padding: 7px 8px;
    font-size: 11px;
  }

  .selected-product-badge small {
    display: none;
  }
}

button[disabled] {
  cursor: wait;
  opacity: .75;
}

@keyframes order-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes order-dot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
