.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-clip: padding-box;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu .dropdown-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  clear: both;
  font-weight: 400;
  color: #222222;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-menu.dropdown-menu-end {
  inset: 0 0 auto auto !important;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #222222;
  pointer-events: auto;
  background-color: var(--color-white);
  background-clip: padding-box;
  filter: drop-shadow(1px 3px 15px #000);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: 8px;
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #1d2327;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  font-size: 22px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222222'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(53, 116, 240, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #222222;
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
  cursor: pointer;
}

.btn-close:hover, .btn-close._hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}

.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}

.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: var(--spacing-xs) var(--spacing-sm);
  gap: var(--spacing-xs);
  color: var(--color-white);
  border-radius: 8px;
  background-color: rgb(49, 58, 70);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  text-transform: uppercase;
  border: 0;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.btn .icon {
  fill: var(--color-white);
}
.btn.icon_size .icon {
  width: 24px;
  height: 24px;
}
.btn:hover, .btn ._hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn.btn-sm {
  font-weight: 500;
  height: 32px;
}
.btn.btn-lg {
  height: 50px;
  font-size: 18px;
  font-weight: 700;
}
.btn.btn-xl {
  height: 60px;
  font-size: 18px;
  font-weight: 700;
}
.btn.btn-primary {
  background: var(--color-primary);
}
.btn.btn-primary:hover, .btn.btn-primary ._hover {
  background: var(--color-primary-hover);
}
.btn.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.6px solid var(--color-primary);
}
.btn.btn-secondary:hover, .btn.btn-secondary ._hover {
  color: var(--color-white);
  background: var(--color-primary-hover);
}
.btn.btn-light {
  background: rgba(255, 255, 255, 0.5);
}
.btn.btn-light:hover, .btn.btn-light ._hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.btn-link {
  background: transparent;
}
.btn.btn-link:hover, .btn.btn-link ._hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.btn-danger {
  background: transparent;
  background: var(--color-white);
  color: red;
  border: 1.6px solid var(--border-color);
}
.btn.btn-danger:hover, .btn.btn-danger ._hover {
  background: rgba(0, 0, 0, 0.1);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.2) inset;
  -webkit-transition: background-color 0.3s ease-in-out 0s;
  transition: background-color 0.3s ease-in-out 0s;
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1.5px solid #d2d2d2;
  border-radius: 8px;
  height: 40px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select:focus {
  border-color: var(--color-primary-hover);
  outline: none;
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 1.5px solid #d2d2d2;
  border-radius: 8px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  height: 40px;
  padding: 0 var(--spacing-sm);
  width: 100%;
  position: relative;
}
.form-control:focus {
  border-color: var(--color-primary-hover);
  outline: none;
}

textarea.form-control {
  height: auto;
}

.input_icon {
  position: relative;
}
.input_icon .form-control {
  padding-left: 48px;
}
.input_icon::before {
  content: attr(icon);
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: var(--spacing-unit);
  transform: translate(var(--spacing-unit), -50%);
  z-index: 1;
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #555;
}
.input_icon:has(> .form-control:focus)::before {
  color: var(--color-primary-hover);
}

.input_alert {
  display: flex;
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  color: red;
}

.form_required::after {
  content: "*";
  color: red;
  margin-left: 4px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #888;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form-check-input.circle {
  border-radius: 50%;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid var(--border-color);
  border-radius: var(--bs-card-border-radius);
}

.card-body {
  flex: 1 1 auto;
  padding: var(--spacing-sm);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.text-size-9 {
  font-size: 9px;
}

.text-size-10 {
  font-size: 10px;
}

.text-size-11 {
  font-size: 11px;
}

.text-size-12 {
  font-size: 12px;
}

.text-size-13 {
  font-size: 13px;
}

.text-size-14 {
  font-size: 14px;
}

.text-size-15 {
  font-size: 15px;
}

.text-size-16 {
  font-size: 16px;
}

.text-size-17 {
  font-size: 17px;
}

.text-size-18 {
  font-size: 18px;
}

.text-size-19 {
  font-size: 19px;
}

.text-size-20 {
  font-size: 20px;
}

.text-size-21 {
  font-size: 21px;
}

.text-size-22 {
  font-size: 22px;
}

.text-size-23 {
  font-size: 23px;
}

.text-size-24 {
  font-size: 24px;
}

.text-size-25 {
  font-size: 25px;
}

.text-size-26 {
  font-size: 26px;
}

.text-size-27 {
  font-size: 27px;
}

.text-size-28 {
  font-size: 28px;
}

.text-size-29 {
  font-size: 29px;
}

.text-size-30 {
  font-size: 30px;
}

.text-size-31 {
  font-size: 31px;
}

.text-size-32 {
  font-size: 32px;
}

.text-size-33 {
  font-size: 33px;
}

.text-size-34 {
  font-size: 34px;
}

.text-size-35 {
  font-size: 35px;
}

.text-size-36 {
  font-size: 36px;
}

.text-size-37 {
  font-size: 37px;
}

.text-size-38 {
  font-size: 38px;
}

.text-size-39 {
  font-size: 39px;
}

.text-size-40 {
  font-size: 40px;
}

.text-size-50 {
  font-size: 50px;
}

.text-size-60 {
  font-size: 60px;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-secondary {
  color: var(--color-secondary);
}

.text-dark {
  color: var(--color-dark);
}

.text-white {
  color: #ffffff;
}

.text-light {
  color: #dddddd;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 900 !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.h-0 {
  height: 0 !important;
}

.h-10 {
  height: 10% !important;
}

.h-20 {
  height: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.h-30 {
  height: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.h-35 {
  height: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.h-40 {
  height: 40% !important;
}

.w-60 {
  width: 60% !important;
}

.h-60 {
  height: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.h-65 {
  height: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.h-70 {
  height: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.h-80 {
  height: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.h-90 {
  height: 90% !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.stats_orders {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stats_orders .item {
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 6px 16px;
  cursor: pointer;
}
.stats_orders .item:hover, .stats_orders .item.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .stats_orders {
    flex-wrap: unset;
    overflow-x: auto;
  }
}
.storefront-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 48px 40px;
  margin-bottom: 24px;
  background: #f7f8fa;
}
.storefront-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.storefront-hero__bg svg {
  width: 100%;
  height: 100%;
}
.storefront-hero__decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.storefront-hero__shape {
  position: absolute;
}
.storefront-hero__shape--1 {
  width: 120px;
  height: 120px;
  top: -20px;
  right: 8%;
  animation: heroShapeFloat 6s ease-in-out infinite;
}
.storefront-hero__shape--2 {
  width: 80px;
  height: 80px;
  bottom: 10px;
  right: 20%;
  animation: heroShapeFloat 8s ease-in-out infinite reverse;
}
.storefront-hero__shape--3 {
  width: 60px;
  height: 60px;
  top: 30%;
  left: 5%;
  animation: heroShapeFloat 7s ease-in-out infinite 1s;
}
.storefront-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.storefront-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.storefront-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.storefront-hero__subtitle {
  font-size: 15px;
  color: #6c757d;
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 480px;
}
.storefront-hero__search {
  margin-bottom: 28px;
}
.storefront-hero__search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 5px 5px 5px 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
  max-width: 520px;
}
.storefront-hero__search-box:focus-within {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--color-primary);
}
.storefront-hero__search-icon {
  color: #9ca3af;
  flex-shrink: 0;
}
.storefront-hero__search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 14px;
  color: #1a1a2e;
  min-width: 0;
}
.storefront-hero__search-input::-moz-placeholder {
  color: #9ca3af;
}
.storefront-hero__search-input::placeholder {
  color: #9ca3af;
}
.storefront-hero__search-btn {
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.storefront-hero__search-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.storefront-hero__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.storefront-hero__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
}
.storefront-hero__stat svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.storefront-hero__stat-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
}
@media (max-width: 767.98px) {
  .storefront-hero {
    padding: 32px 20px;
    border-radius: 12px;
  }
  .storefront-hero__title {
    font-size: 26px;
  }
  .storefront-hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .storefront-hero__search-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .storefront-hero__shape--1 {
    width: 80px;
    height: 80px;
  }
  .storefront-hero__shape--2 {
    width: 50px;
    height: 50px;
  }
  .storefront-hero__shape--3 {
    display: none;
  }
  .storefront-hero__stat-divider {
    display: none;
  }
  .storefront-hero__stats {
    gap: 12px;
  }
  .storefront-hero__stat {
    font-size: 12px;
  }
}

@keyframes heroShapeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
.list_categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 32px;
}
.list_categories .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #212529;
}
.list_categories .item .image {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #212529;
  transition: 0.2s ease-in 0s, font-size 0.2s ease-in 0s;
}
.list_categories .item .name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 4px 0;
}
.list_categories .item:hover .image {
  opacity: 0.8;
  color: var(--color-primary);
  font-size: 30px;
}
.list_categories .item:hover .name {
  color: var(--color-primary);
}
.list_categories.small_size {
  gap: 16px;
}
.list_categories.small_size .image {
  width: 80px;
  height: 80px;
}
.list_categories.small_size .name {
  font-size: 12px;
}

.list_products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px 16px;
}

.product_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 4px;
}
.product_item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 4px;
  opacity: 0;
  border: 1px solid var(--border-color);
  background-color: #eee;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.product_item .quick_action {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.8);
  border-radius: 0;
  bottom: 0;
  border-radius: 4px 4px 0 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  left: 50%;
  padding: 10px 20px;
  position: absolute;
  transform: translate(-50%, 150%);
  transition: transform 0.3s ease;
  width: auto;
  z-index: -1;
  color: #212529;
}
.product_item:hover::before {
  opacity: 1;
}
.product_item:hover .quick_action {
  transform: translate(-50%, 0);
  z-index: 5;
}
.product_item .image {
  aspect-ratio: 1/1;
  background-size: cover;
  background-color: #efefef;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product_item .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.03) 100%);
  pointer-events: none;
}
.product_item .discount {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.product_item .name {
  color: #212529;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 0;
}
.product_item .name:hover {
  color: var(--color-primary);
}
.product_item .price_01 {
  font-weight: 600;
  color: var(--color-dark);
}
.product_item .price_old_01 {
  text-decoration: line-through;
  color: #666;
  font-size: 12px;
}
.product_item .icon_add_to_cart {
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.product_item .icon_add_to_cart:hover {
  color: var(--color-primary);
}

.related-products-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}
.related-products-section__title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-products-section__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.related-products-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.related-products-section__view-all {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.related-products-section__view-all:hover {
  gap: 4px;
}
.related-products-section__view-all i {
  transition: transform 0.2s;
}
.related-products-section__view-all:hover i {
  transform: translateX(3px);
}
@media (max-width: 767.98px) {
  .related-products-section__title {
    font-size: 17px;
  }
  .related-products-section__icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

.product_detail .price {
  font-weight: 800;
  font-size: 32px;
  color: var(--color-dark);
  line-height: 1;
}
.product_detail .price_old {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 18px;
}
.product_detail .product_name {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.product_detail .categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.product_detail .categories .item {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.product_detail .categories .item:hover {
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.15);
}
.product_detail .product_meta_tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product_detail .product_meta_tag {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.product_detail .product_meta_tag i {
  color: #9ca3af;
}
.product_detail .product_price_area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product_detail .product_discount_pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #ef4444;
  padding: 3px 10px;
  border-radius: 6px;
}
.product_detail .price-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product_detail .price-card {
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  position: relative;
  cursor: pointer;
  min-width: 300px;
}
.product_detail .price-card.active::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  background: #22c55e;
  border-radius: 12px;
}
.product_detail .price-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.product_detail .price-card__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product_detail .price-card__content {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.product_detail .price-card__value {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}
.product_detail .price-card__old {
  text-decoration: line-through;
  font-size: 15px;
  opacity: 0.6;
}
.product_detail .price-card__discount {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
}
.product_detail .price-card--studio {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #fecaca;
}
.product_detail .price-card--studio .price-card__label {
  color: #b91c1c;
}
.product_detail .price-card--studio .price-card__value {
  color: #dc2626;
}
.product_detail .price-card--studio .price-card__old {
  color: #991b1b;
}
.product_detail .price-card--studio .price-card__discount {
  background: #dc2626;
}
.product_detail .price-card--shop {
  background: #f9fafb;
  border-color: #e5e7eb;
}
.product_detail .price-card--shop .price-card__label {
  color: #6b7280;
}
.product_detail .price-card--shop .price-card__value {
  color: var(--color-dark, #111827);
}
.product_detail .price-card--shop .price-card__old {
  color: #9ca3af;
}
.product_detail .price-card--shop .price-card__discount {
  background: #ef4444;
}
.product_detail .gallery {
  display: flex;
  gap: 6px;
  flex-direction: column;
  position: sticky;
  top: 16px;
}
.product_detail .gallery .gallery__main,
.product_detail .gallery .main {
  aspect-ratio: 1/1;
  background-color: #f3f4f6;
  background-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid #e5e7eb;
}
.product_detail .gallery .gallery__main .gallery__arrow,
.product_detail .gallery .gallery__main .gallery_arrow,
.product_detail .gallery .main .gallery__arrow,
.product_detail .gallery .main .gallery_arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
  opacity: 0;
}
.product_detail .gallery .gallery__main .gallery__arrow:hover,
.product_detail .gallery .gallery__main .gallery_arrow:hover,
.product_detail .gallery .main .gallery__arrow:hover,
.product_detail .gallery .main .gallery_arrow:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}
.product_detail .gallery .gallery__main:hover .gallery__arrow, .product_detail .gallery .gallery__main:hover .gallery_arrow,
.product_detail .gallery .main:hover .gallery__arrow,
.product_detail .gallery .main:hover .gallery_arrow {
  opacity: 1;
}
.product_detail .gallery .gallery__main .gallery__zoom-hint,
.product_detail .gallery .main .gallery__zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.product_detail .gallery .gallery__main:hover .gallery__zoom-hint,
.product_detail .gallery .main:hover .gallery__zoom-hint {
  opacity: 1;
}
.product_detail .gallery .gallery__thumbs,
.product_detail .gallery .image_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 6px;
}
.product_detail .gallery .gallery__thumbs .gallery__thumb,
.product_detail .gallery .gallery__thumbs .image_item,
.product_detail .gallery .image_list .gallery__thumb,
.product_detail .gallery .image_list .image_item {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  background-color: #f3f4f6;
  width: 100%;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.7;
}
.product_detail .gallery .gallery__thumbs .gallery__thumb.active,
.product_detail .gallery .gallery__thumbs .image_item.active,
.product_detail .gallery .image_list .gallery__thumb.active,
.product_detail .gallery .image_list .image_item.active {
  opacity: 1;
  border-color: var(--color-primary);
}
.product_detail .gallery .gallery__thumbs .gallery__thumb:hover:not(.active),
.product_detail .gallery .gallery__thumbs .image_item:hover:not(.active),
.product_detail .gallery .image_list .gallery__thumb:hover:not(.active),
.product_detail .gallery .image_list .image_item:hover:not(.active) {
  opacity: 1;
}
.product_detail .btn_add_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.product_detail .btn_add_to_cart:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.product_detail .btn_buy_now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  height: 48px;
  background: var(--color-secondary);
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.product_detail .btn_buy_now:hover {
  background: var(--color-black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.product_detail .store_info {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}
.product_detail .store_info__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product_detail .store_info__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.product_detail .store_info__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_detail .store_info__label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product_detail .store_info__name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}
.product_detail .store_info__name:hover {
  color: var(--color-primary);
}
.product_detail .store_info__features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product_detail .store_info__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
}
.product_detail .store_info__feature i {
  width: 16px;
  text-align: center;
  color: var(--color-primary);
  font-size: 13px;
}
.product_detail .store_info__visit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.06);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.product_detail .store_info__visit_btn:hover {
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.12);
}
.product_detail .zone_description {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.product_detail .zone_description .header {
  border-bottom: 2px solid #f3f4f6;
}
.product_detail .zone_description .header .title {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
  color: #111827;
}
.product_detail .zone_description .header .title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}
.product_detail .zone_description .content {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}
.product_detail .zone_description .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  .product_detail .product_name {
    font-size: 22px;
  }
  .product_detail .gallery {
    position: static;
  }
  .product_detail .gallery .gallery__main,
  .product_detail .gallery .main {
    aspect-ratio: 4/3;
  }
  .product_detail .gallery .gallery__arrow,
  .product_detail .gallery .gallery_arrow {
    opacity: 1;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox.active .gallery-lightbox__image-wrap {
  transform: scale(1);
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.gallery-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.gallery-lightbox__arrow--prev {
  left: 20px;
}
.gallery-lightbox__arrow--next {
  right: 20px;
}
.gallery-lightbox__image-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.gallery-lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: opacity 0.15s ease;
}
.gallery-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .gallery-lightbox__arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .gallery-lightbox__arrow--prev {
    left: 8px;
  }
  .gallery-lightbox__arrow--next {
    right: 8px;
  }
  .gallery-lightbox__close {
    top: 12px;
    right: 12px;
  }
}

.item_meta {
  color: rgb(71, 85, 105);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.price_range_section .price_range_header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.price_range_section .price_range_header i {
  color: var(--color-primary);
  font-size: 12px;
}
.price_range_section .price_range_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.price_range_section .price_range_list::-webkit-scrollbar {
  display: none;
}
.price_range_section .price_range_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  min-width: -moz-max-content;
  min-width: max-content;
  transition: all 0.2s ease;
  cursor: default;
}
.price_range_section .price_range_item:hover {
  border-color: rgba(var(--color-primary-rgb, 13, 110, 253), 0.4);
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.04);
}
.price_range_section .price_range_item.active {
  border-color: rgba(var(--color-primary-rgb, 13, 110, 253), 0.5);
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.06);
}
.price_range_section .price_range_qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-right: 12px;
  border-right: 1px solid var(--border-color);
}
.price_range_section .price_range_qty_value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.price_range_section .price_range_qty_label {
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.price_range_section .price_range_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price_range_section .price_range_price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark, #111827);
  line-height: 1.2;
}
.price_range_section .price_range_shipping {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.price_range_section .price_range_shipping i {
  font-size: 10px;
  color: #9ca3af;
}

.zone_quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}
.zone_quantity .btn_01 {
  width: 30px;
  height: 30px;
  border-radius: 0;
  border: 0;
  background: #f8f9fa;
  color: #111;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone_quantity .btn_01:hover {
  background: #ccc;
}
.zone_quantity .btn_01:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.zone_quantity .input {
  width: 50px;
  height: 30px;
  border: 0;
  box-shadow: none;
  outline: none;
  text-align: center;
  font-weight: 700;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.zone_quantity .input:focus {
  box-shadow: none;
}

.cart_page .zone_cart {
  position: relative;
}
.cart_page .cart_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 50%, #f5f0ff 100%);
  border: 1px solid #e0e4f0;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.cart_page .cart_header::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.06);
  pointer-events: none;
}
.cart_page .cart_header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.04);
  pointer-events: none;
}
.cart_page .cart_header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cart_page .cart_header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cart_page .cart_header__title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.cart_page .cart_header__continue {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.cart_page .cart_header__continue:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 575.98px) {
  .cart_page .cart_header {
    padding: 16px;
  }
  .cart_page .cart_header__title {
    font-size: 18px;
  }
  .cart_page .cart_header__continue {
    font-size: 13px;
    padding: 6px 12px;
  }
}
.cart_page .carts_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cart_page .carts_list .cart_item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.cart_page .carts_list .cart_item .cart_item_studio {
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
}
.cart_page .carts_list .cart_item .cart_item_studio .cart_item_studio_name {
  font-size: 14px;
}
.cart_page .carts_list .cart_item .list_products_on_cart {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-radius: 8px;
  align-items: flex-start;
  transition: background 0.2s;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product:hover, .cart_page .carts_list .cart_item .list_products_on_cart .item_product._hover {
  background: #f9fafb;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_image {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: block;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_name__link {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_name__link:hover {
  color: var(--color-primary);
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_name__delete {
  cursor: pointer;
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s;
  flex-shrink: 0;
  padding: 2px;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_name__delete:hover {
  color: #ef4444;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_unit_price {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_total {
  text-align: right;
  flex-shrink: 0;
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_total__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_total__updating {
  font-size: 12px;
  color: #9ca3af;
}
@media (max-width: 575.98px) {
  .cart_page .carts_list .cart_item .list_products_on_cart .item_product {
    gap: 10px;
    padding: 10px 0;
  }
  .cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_image {
    width: 64px;
    height: 64px;
  }
  .cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cart_page .carts_list .cart_item .list_products_on_cart .item_product .product_info .product_total {
    text-align: left;
  }
}
.cart_page .empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 12px 0;
}
.cart_page .empty-cart-state .empty-cart-illustration {
  animation: emptyCartFloat 3s ease-in-out infinite;
  margin-bottom: 8px;
}
.cart_page .empty-cart-state .empty-cart-content {
  max-width: 480px;
}
.cart_page .empty-cart-state .empty-cart-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.cart_page .empty-cart-state .empty-cart-desc {
  font-size: 0.88rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cart_page .empty-cart-state .empty-cart-btn {
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb, 13, 110, 253), 0.25);
}
.cart_page .empty-cart-state .empty-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb, 13, 110, 253), 0.35);
}
.cart_page .cart-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  margin: 12px 0;
  opacity: 0.7;
}
.cart_page .cart-loading-state .cart-loading-illustration {
  animation: emptyCartFloat 3s ease-in-out infinite;
  margin-bottom: 12px;
}
.cart_page .cart-loading-state .cart-loading-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart_page .cart-loading-state .cart-loading-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid #f5b7b7;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: cartSpinnerRotate 0.7s linear infinite;
}
.cart_page .cart-loading-state .cart-loading-text {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 500;
}
.cart_page .cart_tools {
  position: sticky;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  z-index: 10;
  margin-bottom: 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 12px 12px 0 0;
}
.cart_page .cart_tools__top {
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart_page .cart_tools__select-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  margin: 0;
}
.cart_page .cart_tools__clear {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.cart_page .cart_tools__clear:hover {
  color: #ef4444;
}
.cart_page .cart_tools__bottom {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart_page .cart_tools__summary-label {
  font-size: 14px;
  color: #6b7280;
}
.cart_page .cart_tools__summary-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.cart_page .cart_tools__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cart_page .cart_tools__checkout:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb, 13, 110, 253), 0.3);
}
.cart_page .cart_tools__checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 575.98px) {
  .cart_page .cart_tools {
    border-radius: 0;
  }
  .cart_page .cart_tools__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cart_page .cart_tools__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart_page .cart_tools__summary-price {
    font-size: 20px;
  }
  .cart_page .cart_tools__checkout {
    width: 100%;
    padding: 14px;
  }
}

@keyframes emptyCartFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes cartSpinnerRotate {
  to {
    transform: rotate(360deg);
  }
}
.checkout_page .zone_checkout .checkout_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #e0f2fe 100%);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.checkout_page .zone_checkout .checkout_header::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  pointer-events: none;
}
.checkout_page .zone_checkout .checkout_header__left {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.checkout_page .zone_checkout .checkout_header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.checkout_page .zone_checkout .checkout_header__title {
  font-size: 22px;
  font-weight: 700;
  color: #064e3b;
  margin: 0;
}
.checkout_page .zone_checkout .checkout_header__subtitle {
  font-size: 13px;
  color: #047857;
  margin-top: 2px;
}
.checkout_page .zone_checkout .checkout_header__back {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.checkout_page .zone_checkout .checkout_header__back:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 575.98px) {
  .checkout_page .zone_checkout .checkout_header {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout_page .zone_checkout .checkout_header__title {
    font-size: 18px;
  }
  .checkout_page .zone_checkout .checkout_header__back {
    align-self: flex-start;
  }
}
.checkout_page .co-info {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}
.checkout_page .co-info__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e5e7eb;
}
.checkout_page .co-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.checkout_page .co-info__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}
.checkout_page .co-info__icon--amber {
  background: #fef3c7;
  color: #d97706;
}
.checkout_page .co-info__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}
.checkout_page .co-info__label {
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}
.checkout_page .co-info__val {
  font-weight: 600;
  color: #111827;
}
@media (max-width: 575.98px) {
  .checkout_page .co-info {
    padding: 16px;
  }
  .checkout_page .co-info__grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .checkout_page .co-info__label {
    font-size: 12px;
    margin-top: 6px;
  }
}
.checkout_page #shippingAddressModal .modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.checkout_page #shippingAddressModal .modal-header {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-bottom: none;
  padding: 18px 24px;
}
.checkout_page #shippingAddressModal .modal-header .modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
}
.checkout_page #shippingAddressModal .modal-header .modal-title i {
  color: #d97706;
}
.checkout_page #shippingAddressModal .modal-header .btn-close {
  opacity: 0.6;
}
.checkout_page #shippingAddressModal .modal-header .btn-close:hover {
  opacity: 1;
}
.checkout_page #shippingAddressModal .modal-body {
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
}
.checkout_page #shippingAddressModal .addr-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.checkout_page #shippingAddressModal .addr-item + .addr-item {
  margin-top: 8px;
}
.checkout_page #shippingAddressModal .addr-item:hover {
  border-color: #d97706;
  background: #fffbeb;
}
.checkout_page #shippingAddressModal .addr-item--active {
  border-color: #d97706;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.15);
}
.checkout_page #shippingAddressModal .addr-item--active .addr-item__check {
  background: #d97706;
  border-color: #d97706;
  color: #fff;
}
.checkout_page #shippingAddressModal .addr-item__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
  transition: all 0.2s;
}
.checkout_page #shippingAddressModal .addr-item__body {
  flex: 1;
  min-width: 0;
}
.checkout_page #shippingAddressModal .addr-item__name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.checkout_page #shippingAddressModal .addr-item__address {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.checkout_page #shippingAddressModal .addr-item__badges {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.checkout_page #shippingAddressModal .addr-item__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 6px;
}
.checkout_page #shippingAddressModal .addr-item__badge--shipping {
  background: #dcfce7;
  color: #166534;
}
.checkout_page #shippingAddressModal .addr-item__badge--default {
  background: #dbeafe;
  color: #1e40af;
}
.checkout_page .co-summary {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 16px;
  color: #e2e8f0;
}
.checkout_page .co-summary__badge {
  padding: 14px 20px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
}
.checkout_page .co-summary__badge i {
  margin-right: 4px;
}
.checkout_page .co-summary__rows {
  padding: 12px 20px 16px;
}
.checkout_page .co-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.checkout_page .co-summary__row + .checkout_page .co-summary__row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout_page .co-summary__row span:last-child {
  font-weight: 600;
  color: #fff;
}
.checkout_page .co-summary__total {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout_page .co-summary__total-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}
.checkout_page .co-summary__total-price {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(var(--color-primary-rgb, 13, 110, 253), 0.4);
}
.checkout_page .co-items {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.checkout_page .co-items__head {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f3f4f6;
}
.checkout_page .co-items__list {
  padding: 4px 20px;
  max-height: 400px;
  overflow-y: auto;
}
.checkout_page .co-items__row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
}
.checkout_page .co-items__row + .checkout_page .co-items__row {
  border-top: 1px solid #f3f4f6;
}
.checkout_page .co-items__img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.checkout_page .co-items__detail {
  flex: 1;
  min-width: 0;
}
.checkout_page .co-items__name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout_page .co-items__studio {
  font-size: 13px;
}
.checkout_page .co-items__meta {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}
.checkout_page .co-items__price {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  flex-shrink: 0;
}
.checkout_page .checkout_submit {
  text-align: center;
  margin: 32px 0;
}
.checkout_page .checkout_submit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.checkout_page .checkout_submit__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb, 13, 110, 253), 0.3);
}
.checkout_page .checkout_submit__note {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-method-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.payment-method-item input[type=radio] {
  margin-top: 14px;
}
.payment-method-item.active, .payment-method-item:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb, 13, 110, 253), 0.03);
}
.payment-method-item:hover {
  border-color: #d1d5db;
}

.store_header {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}
.store_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--store-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(30px);
  z-index: -1;
}

/* end */
.storefront-store-card {
  box-shadow: 0 0 25px 0 #ddd;
  transition: all 0.25s ease;
  border-radius: var(--bs-border-radius-xl);
}
.storefront-store-card .text-muted {
  color: #666;
  font-size: 12px;
}
.storefront-store-card:hover {
  box-shadow: 0 0 25px 0 #ddd;
}

.storefront-store-logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: #fff;
}

.storefront-store-description {
  min-height: 3rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.storefront-partner-icon {
  width: 48px;
  height: 48px;
}

.storefront-product-card-compact,
.storefront-product-card {
  border: 1px solid #fff !important;
}

.storefront-product-card-compact:hover,
.storefront-product-card:hover {
  border: 1px solid #dee2e6 !important;
}

.storefront-product-card {
  padding: 10%;
}
.storefront-product-card .text-muted {
  color: #666;
  font-size: 12px;
}
.storefront-product-card .price {
  font-size: 14px;
}
.storefront-product-card .rating-stars {
  font-size: 12px;
}
.storefront-product-card .rating-stars span {
  font-size: 12px;
}
.storefront-product-card .fw-semibold {
  font-weight: 600 !important;
}
.storefront-product-card a {
  position: relative;
  font-size: 14px;
}
.storefront-product-card .card-body {
  padding: 0;
}
.storefront-product-card:hover .storefront-product-icons-bar {
  transform: translate(-50%, -50%);
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f0ff 100%);
}
.page-hero-banner__decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-banner__blob {
  position: absolute;
  opacity: 0.08;
}
.page-hero-banner__blob--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  color: var(--color-primary);
  animation: heroBlobFloat 8s ease-in-out infinite;
}
.page-hero-banner__blob--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -30px;
  color: var(--color-primary);
  animation: heroBlobFloat 10s ease-in-out infinite reverse;
}
.page-hero-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-hero-banner__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.page-hero-banner__title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.page-hero-banner__subtitle {
  font-size: 14px;
  color: #6c757d;
  margin: 4px 0 0;
  line-height: 1.4;
}
.page-hero-banner__stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.page-hero-banner__stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.page-hero-banner__stat-item i {
  color: var(--color-primary);
  font-size: 12px;
}
.page-hero-banner--popular {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 50%, #fff0ea 100%);
}
.page-hero-banner--popular .page-hero-banner__icon {
  background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
}
.page-hero-banner--popular .page-hero-banner__blob {
  color: #e63946;
}
.page-hero-banner--popular .page-hero-banner__stat-item i {
  color: #e63946;
}
.page-hero-banner--new {
  background: linear-gradient(135deg, #edfff8 0%, #e0fff2 50%, #f0fdf4 100%);
}
.page-hero-banner--new .page-hero-banner__icon {
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
}
.page-hero-banner--new .page-hero-banner__blob {
  color: #10b981;
}
.page-hero-banner--new .page-hero-banner__stat-item i {
  color: #10b981;
}
.page-hero-banner--all {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
}
.page-hero-banner--all .page-hero-banner__icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.page-hero-banner--all .page-hero-banner__blob {
  color: #3b82f6;
}
.page-hero-banner--all .page-hero-banner__stat-item i {
  color: #3b82f6;
}
.page-hero-banner--category {
  background: linear-gradient(135deg, #f0f0ff 0%, #e8e0ff 50%, #f5f0ff 100%);
}
.page-hero-banner--category .page-hero-banner__blob {
  color: #7c3aed;
}
.page-hero-banner--category .page-hero-banner__stat-item i {
  color: #7c3aed;
}
.page-hero-banner--store {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
}
.page-hero-banner--store .page-hero-banner__blob {
  color: #f59e0b;
}
.page-hero-banner--store .page-hero-banner__stat-item i {
  color: #f59e0b;
}
.page-hero-banner__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.page-hero-banner__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero-banner__avatar--lg {
  width: 80px;
  height: 80px;
  border-width: 4px;
}
@media (max-width: 767.98px) {
  .page-hero-banner {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .page-hero-banner__title {
    font-size: 20px;
  }
  .page-hero-banner__subtitle {
    font-size: 13px;
  }
  .page-hero-banner__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }
  .page-hero-banner__avatar {
    width: 50px;
    height: 50px;
  }
  .page-hero-banner__blob--1 {
    width: 180px;
    height: 180px;
  }
  .page-hero-banner__blob--2 {
    display: none;
  }
}

@keyframes heroBlobFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.category-card-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.category-card-item:hover .category-card-item__image img {
  transform: scale(1.08);
}
.category-card-item:hover .category-card-item__arrow {
  transform: translateX(0);
  opacity: 1;
}
.category-card-item__image {
  aspect-ratio: 4/3;
  position: relative;
  background: #e9ecef;
}
.category-card-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.category-card-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%);
}
.category-card-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.category-card-item__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.category-card-item__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transform: translateX(-6px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .category-card-item__arrow {
    transform: translateX(0);
    opacity: 1;
  }
}

.category-detail-header {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px 28px;
  min-height: 120px;
  display: flex;
  align-items: center;
}
.category-detail-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.category-detail-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(20px) brightness(0.7);
  transform: scale(1.1);
}
.category-detail-header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.category-detail-header__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.category-detail-header__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.category-detail-header__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-detail-header__info {
  color: #fff;
}
.category-detail-header__name {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.category-detail-header__meta {
  margin-top: 6px;
}
.category-detail-header__count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 4px 14px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .category-detail-header {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .category-detail-header__avatar {
    width: 60px;
    height: 60px;
  }
  .category-detail-header__name {
    font-size: 20px;
  }
}

.box_filter .mobile-search-row .mobile-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 42px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.box_filter .mobile-search-row .mobile-search-btn:hover {
  background: var(--color-primary-hover);
}
.box_filter .mobile-search-row .form-control {
  padding-right: 46px;
}
.box_filter .mobile-filter-toggle {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
  transition: all 0.25s ease;
}
.box_filter .mobile-filter-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box_filter.mobile-filters-open .mobile-filter-toggle {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 767.98px) {
  .box_filter .mobile-filter-content {
    display: none;
    padding-top: 8px;
  }
  .box_filter.mobile-filters-open .mobile-filter-content {
    display: flex;
  }
  .box_filter #storefront-filters {
    gap: 12px !important;
  }
}
.storefront-pd-swatch[data-value=aliceblue] {
  --swatch: aliceblue;
}

.storefront-pd-swatch[data-value=antiquewhite] {
  --swatch: antiquewhite;
}

.storefront-pd-swatch[data-value=aqua] {
  --swatch: aqua;
}

.storefront-pd-swatch[data-value=aquamarine] {
  --swatch: aquamarine;
}

.storefront-pd-swatch[data-value=azure] {
  --swatch: azure;
}

.storefront-pd-swatch[data-value=beige] {
  --swatch: beige;
}

.storefront-pd-swatch[data-value=bisque] {
  --swatch: bisque;
}

.storefront-pd-swatch[data-value=black] {
  --swatch: black;
}

.storefront-pd-swatch[data-value=blanchedalmond] {
  --swatch: blanchedalmond;
}

.storefront-pd-swatch[data-value=blue] {
  --swatch: blue;
}

.storefront-pd-swatch[data-value=blueviolet] {
  --swatch: blueviolet;
}

.storefront-pd-swatch[data-value=brown] {
  --swatch: brown;
}

.storefront-pd-swatch[data-value=burlywood] {
  --swatch: burlywood;
}

.storefront-pd-swatch[data-value=cadetblue] {
  --swatch: cadetblue;
}

.storefront-pd-swatch[data-value=chartreuse] {
  --swatch: chartreuse;
}

.storefront-pd-swatch[data-value=chocolate] {
  --swatch: chocolate;
}

.storefront-pd-swatch[data-value=coral] {
  --swatch: coral;
}

.storefront-pd-swatch[data-value=cornflowerblue] {
  --swatch: cornflowerblue;
}

.storefront-pd-swatch[data-value=cornsilk] {
  --swatch: cornsilk;
}

.storefront-pd-swatch[data-value=crimson] {
  --swatch: crimson;
}

.storefront-pd-swatch[data-value=cyan] {
  --swatch: cyan;
}

.storefront-pd-swatch[data-value=darkblue] {
  --swatch: darkblue;
}

.storefront-pd-swatch[data-value=darkcyan] {
  --swatch: darkcyan;
}

.storefront-pd-swatch[data-value=darkgoldenrod] {
  --swatch: darkgoldenrod;
}

.storefront-pd-swatch[data-value=darkgray] {
  --swatch: darkgray;
}

.storefront-pd-swatch[data-value=darkgreen] {
  --swatch: darkgreen;
}

.storefront-pd-swatch[data-value=darkgrey] {
  --swatch: darkgrey;
}

.storefront-pd-swatch[data-value=darkkhaki] {
  --swatch: darkkhaki;
}

.storefront-pd-swatch[data-value=darkmagenta] {
  --swatch: darkmagenta;
}

.storefront-pd-swatch[data-value=darkolivegreen] {
  --swatch: darkolivegreen;
}

.storefront-pd-swatch[data-value=darkorange] {
  --swatch: darkorange;
}

.storefront-pd-swatch[data-value=darkorchid] {
  --swatch: darkorchid;
}

.storefront-pd-swatch[data-value=darkred] {
  --swatch: darkred;
}

.storefront-pd-swatch[data-value=darksalmon] {
  --swatch: darksalmon;
}

.storefront-pd-swatch[data-value=darkseagreen] {
  --swatch: darkseagreen;
}

.storefront-pd-swatch[data-value=darkslateblue] {
  --swatch: darkslateblue;
}

.storefront-pd-swatch[data-value=darkslategray] {
  --swatch: darkslategray;
}

.storefront-pd-swatch[data-value=darkslategrey] {
  --swatch: darkslategrey;
}

.storefront-pd-swatch[data-value=darkturquoise] {
  --swatch: darkturquoise;
}

.storefront-pd-swatch[data-value=darkviolet] {
  --swatch: darkviolet;
}

.storefront-pd-swatch[data-value=deeppink] {
  --swatch: deeppink;
}

.storefront-pd-swatch[data-value=deepskyblue] {
  --swatch: deepskyblue;
}

.storefront-pd-swatch[data-value=dimgray] {
  --swatch: dimgray;
}

.storefront-pd-swatch[data-value=dimgrey] {
  --swatch: dimgrey;
}

.storefront-pd-swatch[data-value=dodgerblue] {
  --swatch: dodgerblue;
}

.storefront-pd-swatch[data-value=firebrick] {
  --swatch: firebrick;
}

.storefront-pd-swatch[data-value=floralwhite] {
  --swatch: floralwhite;
}

.storefront-pd-swatch[data-value=forestgreen] {
  --swatch: forestgreen;
}

.storefront-pd-swatch[data-value=fuchsia] {
  --swatch: fuchsia;
}

.storefront-pd-swatch[data-value=gainsboro] {
  --swatch: gainsboro;
}

.storefront-pd-swatch[data-value=ghostwhite] {
  --swatch: ghostwhite;
}

.storefront-pd-swatch[data-value=gold] {
  --swatch: gold;
}

.storefront-pd-swatch[data-value=goldenrod] {
  --swatch: goldenrod;
}

.storefront-pd-swatch[data-value=gray] {
  --swatch: gray;
}

.storefront-pd-swatch[data-value=green] {
  --swatch: green;
}

.storefront-pd-swatch[data-value=greenyellow] {
  --swatch: greenyellow;
}

.storefront-pd-swatch[data-value=grey] {
  --swatch: grey;
}

.storefront-pd-swatch[data-value=honeydew] {
  --swatch: honeydew;
}

.storefront-pd-swatch[data-value=hotpink] {
  --swatch: hotpink;
}

.storefront-pd-swatch[data-value=indianred] {
  --swatch: indianred;
}

.storefront-pd-swatch[data-value=indigo] {
  --swatch: indigo;
}

.storefront-pd-swatch[data-value=ivory] {
  --swatch: ivory;
}

.storefront-pd-swatch[data-value=khaki] {
  --swatch: khaki;
}

.storefront-pd-swatch[data-value=lavender] {
  --swatch: lavender;
}

.storefront-pd-swatch[data-value=lavenderblush] {
  --swatch: lavenderblush;
}

.storefront-pd-swatch[data-value=lawngreen] {
  --swatch: lawngreen;
}

.storefront-pd-swatch[data-value=lemonchiffon] {
  --swatch: lemonchiffon;
}

.storefront-pd-swatch[data-value=lightblue] {
  --swatch: lightblue;
}

.storefront-pd-swatch[data-value=lightcoral] {
  --swatch: lightcoral;
}

.storefront-pd-swatch[data-value=lightcyan] {
  --swatch: lightcyan;
}

.storefront-pd-swatch[data-value=lightgoldenrodyellow] {
  --swatch: lightgoldenrodyellow;
}

.storefront-pd-swatch[data-value=lightgray] {
  --swatch: lightgray;
}

.storefront-pd-swatch[data-value=lightgreen] {
  --swatch: lightgreen;
}

.storefront-pd-swatch[data-value=lightgrey] {
  --swatch: lightgrey;
}

.storefront-pd-swatch[data-value=lightpink] {
  --swatch: lightpink;
}

.storefront-pd-swatch[data-value=lightsalmon] {
  --swatch: lightsalmon;
}

.storefront-pd-swatch[data-value=lightseagreen] {
  --swatch: lightseagreen;
}

.storefront-pd-swatch[data-value=lightskyblue] {
  --swatch: lightskyblue;
}

.storefront-pd-swatch[data-value=lightslategray] {
  --swatch: lightslategray;
}

.storefront-pd-swatch[data-value=lightslategrey] {
  --swatch: lightslategrey;
}

.storefront-pd-swatch[data-value=lightsteelblue] {
  --swatch: lightsteelblue;
}

.storefront-pd-swatch[data-value=lightyellow] {
  --swatch: lightyellow;
}

.storefront-pd-swatch[data-value=lime] {
  --swatch: lime;
}

.storefront-pd-swatch[data-value=limegreen] {
  --swatch: limegreen;
}

.storefront-pd-swatch[data-value=linen] {
  --swatch: linen;
}

.storefront-pd-swatch[data-value=magenta] {
  --swatch: magenta;
}

.storefront-pd-swatch[data-value=maroon] {
  --swatch: maroon;
}

.storefront-pd-swatch[data-value=mediumaquamarine] {
  --swatch: mediumaquamarine;
}

.storefront-pd-swatch[data-value=mediumblue] {
  --swatch: mediumblue;
}

.storefront-pd-swatch[data-value=mediumorchid] {
  --swatch: mediumorchid;
}

.storefront-pd-swatch[data-value=mediumpurple] {
  --swatch: mediumpurple;
}

.storefront-pd-swatch[data-value=mediumseagreen] {
  --swatch: mediumseagreen;
}

.storefront-pd-swatch[data-value=mediumslateblue] {
  --swatch: mediumslateblue;
}

.storefront-pd-swatch[data-value=mediumspringgreen] {
  --swatch: mediumspringgreen;
}

.storefront-pd-swatch[data-value=mediumturquoise] {
  --swatch: mediumturquoise;
}

.storefront-pd-swatch[data-value=mediumvioletred] {
  --swatch: mediumvioletred;
}

.storefront-pd-swatch[data-value=midnightblue] {
  --swatch: midnightblue;
}

.storefront-pd-swatch[data-value=mintcream] {
  --swatch: mintcream;
}

.storefront-pd-swatch[data-value=mistyrose] {
  --swatch: mistyrose;
}

.storefront-pd-swatch[data-value=moccasin] {
  --swatch: moccasin;
}

.storefront-pd-swatch[data-value=navajowhite] {
  --swatch: navajowhite;
}

.storefront-pd-swatch[data-value=navy] {
  --swatch: navy;
}

.storefront-pd-swatch[data-value=oldlace] {
  --swatch: oldlace;
}

.storefront-pd-swatch[data-value=olive] {
  --swatch: olive;
}

.storefront-pd-swatch[data-value=olivedrab] {
  --swatch: olivedrab;
}

.storefront-pd-swatch[data-value=orange] {
  --swatch: orange;
}

.storefront-pd-swatch[data-value=orangered] {
  --swatch: orangered;
}

.storefront-pd-swatch[data-value=orchid] {
  --swatch: orchid;
}

.storefront-pd-swatch[data-value=palegoldenrod] {
  --swatch: palegoldenrod;
}

.storefront-pd-swatch[data-value=palegreen] {
  --swatch: palegreen;
}

.storefront-pd-swatch[data-value=paleturquoise] {
  --swatch: paleturquoise;
}

.storefront-pd-swatch[data-value=palevioletred] {
  --swatch: palevioletred;
}

.storefront-pd-swatch[data-value=papayawhip] {
  --swatch: papayawhip;
}

.storefront-pd-swatch[data-value=peachpuff] {
  --swatch: peachpuff;
}

.storefront-pd-swatch[data-value=peru] {
  --swatch: peru;
}

.storefront-pd-swatch[data-value=pink] {
  --swatch: pink;
}

.storefront-pd-swatch[data-value=plum] {
  --swatch: plum;
}

.storefront-pd-swatch[data-value=powderblue] {
  --swatch: powderblue;
}

.storefront-pd-swatch[data-value=purple] {
  --swatch: purple;
}

.storefront-pd-swatch[data-value=rebeccapurple] {
  --swatch: rebeccapurple;
}

.storefront-pd-swatch[data-value=red] {
  --swatch: red;
}

.storefront-pd-swatch[data-value=rosybrown] {
  --swatch: rosybrown;
}

.storefront-pd-swatch[data-value=royalblue] {
  --swatch: royalblue;
}

.storefront-pd-swatch[data-value=saddlebrown] {
  --swatch: saddlebrown;
}

.storefront-pd-swatch[data-value=salmon] {
  --swatch: salmon;
}

.storefront-pd-swatch[data-value=sandybrown] {
  --swatch: sandybrown;
}

.storefront-pd-swatch[data-value=seagreen] {
  --swatch: seagreen;
}

.storefront-pd-swatch[data-value=seashell] {
  --swatch: seashell;
}

.storefront-pd-swatch[data-value=sienna] {
  --swatch: sienna;
}

.storefront-pd-swatch[data-value=silver] {
  --swatch: silver;
}

.storefront-pd-swatch[data-value=skyblue] {
  --swatch: skyblue;
}

.storefront-pd-swatch[data-value=slateblue] {
  --swatch: slateblue;
}

.storefront-pd-swatch[data-value=slategray] {
  --swatch: slategray;
}

.storefront-pd-swatch[data-value=slategrey] {
  --swatch: slategrey;
}

.storefront-pd-swatch[data-value=snow] {
  --swatch: snow;
}

.storefront-pd-swatch[data-value=springgreen] {
  --swatch: springgreen;
}

.storefront-pd-swatch[data-value=steelblue] {
  --swatch: steelblue;
}

.storefront-pd-swatch[data-value=tan] {
  --swatch: tan;
}

.storefront-pd-swatch[data-value=teal] {
  --swatch: teal;
}

.storefront-pd-swatch[data-value=thistle] {
  --swatch: thistle;
}

.storefront-pd-swatch[data-value=tomato] {
  --swatch: tomato;
}

.storefront-pd-swatch[data-value=turquoise] {
  --swatch: turquoise;
}

.storefront-pd-swatch[data-value=violet] {
  --swatch: violet;
}

.storefront-pd-swatch[data-value=wheat] {
  --swatch: wheat;
}

.storefront-pd-swatch[data-value=white] {
  --swatch: white;
}

.storefront-pd-swatch[data-value=whitesmoke] {
  --swatch: whitesmoke;
}

.storefront-pd-swatch[data-value=yellow] {
  --swatch: yellow;
}

.storefront-pd-swatch[data-value=yellowgreen] {
  --swatch: yellowgreen;
}

:root {
  --color-black: #111111;
  --color-white: #ffffff;
  --color-gray: #6c757d;
  --color-silver: #c0c0c0;
  --color-red: #dc3545;
  --color-pink: #e83e8c;
  --color-purple: #6f42c1;
  --color-indigo: #6610f2;
  --color-blue: #0d6efd;
  --color-cyan: #0dcaf0;
  --color-teal: #20c997;
  --color-green: #198754;
  --color-lime: #84cc16;
  --color-yellow: #ffc107;
  --color-orange: #fd7e14;
  --color-brown: #8b5a4e;
  --color-beige: #f5f5dc;
  --color-navy: #0b1f3a;
  --color-olive: #556b2f;
  --color-gold: #d4af37;
}

.storefront-pd-swatch[data-value=black] {
  --swatch: var(--color-black);
}

.storefront-pd-swatch[data-value=white] {
  --swatch: var(--color-white);
}

.storefront-pd-swatch[data-value=gray] {
  --swatch: var(--color-gray);
}

.storefront-pd-swatch[data-value=silver] {
  --swatch: var(--color-silver);
}

.storefront-pd-swatch[data-value=red] {
  --swatch: var(--color-red);
}

.storefront-pd-swatch[data-value=pink] {
  --swatch: var(--color-pink);
}

.storefront-pd-swatch[data-value=purple] {
  --swatch: var(--color-purple);
}

.storefront-pd-swatch[data-value=indigo] {
  --swatch: var(--color-indigo);
}

.storefront-pd-swatch[data-value=blue] {
  --swatch: var(--color-blue);
}

.storefront-pd-swatch[data-value=cyan] {
  --swatch: var(--color-cyan);
}

.storefront-pd-swatch[data-value=teal] {
  --swatch: var(--color-teal);
}

.storefront-pd-swatch[data-value=green] {
  --swatch: var(--color-green);
}

.storefront-pd-swatch[data-value=lime] {
  --swatch: var(--color-lime);
}

.storefront-pd-swatch[data-value=yellow] {
  --swatch: var(--color-yellow);
}

.storefront-pd-swatch[data-value=orange] {
  --swatch: var(--color-orange);
}

.storefront-pd-swatch[data-value=brown] {
  --swatch: var(--color-brown);
}

.storefront-pd-swatch[data-value=beige] {
  --swatch: var(--color-beige);
}

.storefront-pd-swatch[data-value=navy] {
  --swatch: var(--color-navy);
}

.storefront-pd-swatch[data-value=olive] {
  --swatch: var(--color-olive);
}

.storefront-pd-swatch[data-value=gold] {
  --swatch: var(--color-gold);
}

.section_zone {
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.section-header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.section-header__icon--blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.section-header__title {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}
.section-header__subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}
.section-header__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.section-header__link:hover {
  gap: 6px;
  color: var(--color-primary);
  text-decoration: underline;
}
.section-header__link--popular {
  color: #ea580c;
}
.section-header__link--popular:hover {
  color: #c2410c;
}
.section-header__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
  animation: badge-pulse 2s ease-in-out infinite;
}
.section-header--popular {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.section-header--popular::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.section-header--popular .section-header__title {
  color: #9a3412;
}
.section-header--popular .section-header__subtitle {
  color: #c2410c;
  opacity: 0.7;
}
@media (max-width: 575.98px) {
  .section-header__title {
    font-size: 20px;
  }
  .section-header__icon, .section-header__badge {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .section-header--popular {
    padding: 16px;
  }
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.stores-page .promo-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stores-page .promo-banner__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 12px;
  border: 1px solid;
  transition: all 0.25s ease;
}
.stores-page .promo-banner__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.stores-page .promo-banner__card--shipping {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #a7f3d0;
}
.stores-page .promo-banner__card--shipping .promo-banner__icon {
  background: #10b981;
  color: #fff;
}
.stores-page .promo-banner__card--secure {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
}
.stores-page .promo-banner__card--secure .promo-banner__icon {
  background: #3b82f6;
  color: #fff;
}
.stores-page .promo-banner__card--support {
  background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
  border-color: #c4b5fd;
}
.stores-page .promo-banner__card--support .promo-banner__icon {
  background: #8b5cf6;
  color: #fff;
}
.stores-page .promo-banner__card--returns {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border-color: #fdba74;
}
.stores-page .promo-banner__card--returns .promo-banner__icon {
  background: #f97316;
  color: #fff;
}
.stores-page .promo-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.stores-page .promo-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stores-page .promo-banner__text strong {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.stores-page .promo-banner__text span {
  font-size: 12px;
  color: #64748b;
}
@media (max-width: 991.98px) {
  .stores-page .promo-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .stores-page .promo-banner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stores-page .promo-banner__card {
    padding: 14px 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.storefront-pd-sidebar__title {
  font-weight: 600;
  color: #666;
}

.store-cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.store-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.store-cta__bg svg {
  width: 100%;
  height: 100%;
}
.store-cta__content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.store-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb, 13, 110, 253), 0.4);
}
.store-cta__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.store-cta__desc {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}
.store-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
}
.store-cta__btn:hover {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
}
@media (max-width: 767.98px) {
  .store-cta {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
  .store-cta__content {
    flex-direction: column;
  }
  .store-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

.storefront-pd-sidebar__vendor {
  font-size: 18px;
}

.storefront-pd-sidebar {
  border: 1px solid #ededed;
}

.storefront-pd-btn {
  min-width: 140px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.storefront-pd-tabs-box {
  border-color: #ededed !important;
}

.storefront-pd-tabbar {
  gap: 36px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e9e9e9;
}

.storefront-pd-tabbar .nav-link {
  border: 0;
  background: transparent;
  padding: 12px 0;
  color: #999;
  font-weight: 600;
  position: relative;
}

.storefront-pd-tabbar .nav-link.active {
  color: #111;
}

.storefront-pd-tabbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #323232;
}

.storefront-pd-tabcontent {
  padding: 0;
}

.storefront-product-detail .tab-content > .tab-pane {
  display: none;
}
.storefront-product-detail .tab-content > .active {
  display: block;
}
.storefront-product-detail .tab-content > .fade:not(.show) {
  display: none;
}

.bg-gray-light {
  background-color: #ececec;
}

.storefront-breadcrumb-bar {
  background-color: #ececec;
}
.storefront-breadcrumb-bar a {
  color: #222;
}
.storefront-breadcrumb-bar .breadcrumb-item::before {
  position: relative;
  top: 2px;
}

.storefront-breadcrumb {
  background-color: transparent;
}

.storefront-store-card .card-body {
  border-top: 1px dashed #ccc;
  border-right: 1px dashed #ccc;
  border-left: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

.storefront-filters-card .card-body {
  background: #f5f5f5;
}

.storefront-search-input {
  border: 2px solid #dee2e6;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.storefront-filter-control {
  border: 2px solid #dee2e6;
}

.storefront-price-min {
  border: 2px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

.storefront-price-max {
  border: 2px solid #dee2e6;
  border-left: 1px solid #dee2e6;
}

.price-range {
  position: relative;
}
.price-range .__slider {
  position: relative;
  height: 28px;
}
.price-range .__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 0;
  background-color: #dee2e6;
  border-radius: 999px;
  transform: translateY(-50%);
}
.price-range .__fill {
  position: absolute;
  top: 50%;
  height: 4px;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #0d6efd;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: left 0.1s ease, right 0.1s ease;
}
.price-range .__range {
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}
.price-range .__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0d6efd;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.price-range .__range::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0d6efd;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.price-range .__range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.price-range .__range::-moz-range-track {
  height: 4px;
  background: transparent;
}
.price-range .__range.__range-max {
  z-index: 2;
}

.storefront-price-range {
  position: relative;
}
.storefront-price-range__slider {
  position: relative;
  height: 28px;
}
.storefront-price-range__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 0;
  background-color: #dee2e6;
  border-radius: 999px;
  transform: translateY(-50%);
}
.storefront-price-range__fill {
  position: absolute;
  top: 50%;
  height: 4px;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #0d6efd;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: left 0.1s ease, right 0.1s ease;
}
.storefront-price-range input[type=range] {
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}
.storefront-price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0d6efd;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.storefront-price-range input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0d6efd;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.storefront-price-range input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.storefront-price-range input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
}

.storefront-price-range__values {
  margin-top: 8px;
  font-size: 13px;
  color: #111;
}

.storefront-cart-page .storefront-thumb-sm img,
.storefront-cart-page .storefront-thumb-xs img,
.storefront-checkout-page .storefront-thumb-sm img,
.storefront-checkout-page .storefront-thumb-xs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.storefront-cart-page .storefront-payment-method-item,
.storefront-checkout-page .storefront-payment-method-item {
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  background-color: #fff;
}
.storefront-cart-page .storefront-payment-method-item:hover,
.storefront-checkout-page .storefront-payment-method-item:hover {
  border-color: #adb5bd;
}
.storefront-cart-page .storefront-payment-method-item input[type=radio],
.storefront-checkout-page .storefront-payment-method-item input[type=radio] {
  margin-top: 0;
  cursor: pointer;
}
.storefront-cart-page .storefront-payment-method-item label,
.storefront-checkout-page .storefront-payment-method-item label {
  cursor: pointer;
}
.storefront-cart-page .storefront-payment-method-item:has(input[type=radio]:checked),
.storefront-checkout-page .storefront-payment-method-item:has(input[type=radio]:checked) {
  border-color: #0d6efd;
  background-color: #f8f9fa;
}

.storefront-cart-product-title a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  display: inline-block;
}

.storefront-cart-seller {
  margin-top: 2px;
  color: #8a8f99;
}

.storefront-cart-seller__link {
  text-decoration: none;
  font-weight: 600;
}

.storefront-cart-seller__link:hover {
  text-decoration: underline;
}

.storefront-cart-item-row {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
}

.storefront-cart-item-row:last-child {
  border-bottom: 0;
}

.storefront-cart-items-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #eeeeee;
  letter-spacing: 0.04em;
}

.storefront-cart-summary-header {
  justify-content: flex-start;
}

.storefront-cart-col-price {
  width: 150px;
}

.storefront-cart-col-qty {
  width: 150px;
}

.storefront-cart-col-total {
  width: 120px;
}

.storefront-cart-col-remove {
  width: 40px;
}

.storefront-cart-price-current {
  font-size: 14px;
  font-weight: 600;
}

.storefront-cart-price-old {
  font-size: 12px;
}

.storefront-cart-qty {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  min-width: 100px;
  overflow: hidden;
  background-color: #fff;
}

.storefront-cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background-color: #f8f9fa;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  cursor: pointer;
}

.storefront-cart-qty-btn:hover {
  background-color: #e9ecef;
}

.storefront-cart-qty-input {
  width: 46px;
  height: 28px;
  border: 0;
  box-shadow: none;
  outline: none;
  text-align: center;
  font-size: 14px;
}

.storefront-pd-qty__btn:hover {
  background-color: #e9ecef;
}

.storefront-cart-col-name {
  gap: 16px;
}

.storefront-cart-category {
  margin-top: 2px;
  font-size: 13px;
}

.storefront-cart-remove-btn {
  background: transparent;
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #111;
  cursor: pointer;
}

.storefront-cart-remove-btn:hover {
  color: #dc3545;
}

.storefront-cart-coupon-input {
  border-radius: 0;
  flex: 1 1 auto;
}

.storefront-cart-coupon-btn {
  font-weight: 600;
  white-space: nowrap;
  padding-inline: 20px;
  border-radius: 0 !important;
}

.storefront-cart-coupon-row {
  display: flex;
  gap: 0;
}

.storefront-store-card {
  transition: all 0.25s ease;
}

.storefront-product-card:hover .storefront-product-icons-bar {
  transform: translate(-50%, 0);
}

.storefront-product-image-wrap {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}
.storefront-product-image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.storefront-product-image-wrap .storefront-product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.storefront-product-icons-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 101%;
  transform: translate(-50%, 150%);
  width: auto;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 28px;
  padding: 10px 20px;
  transition: transform 0.3s ease;
  z-index: 5;
  border-radius: 0;
}

.storefront-icon-outline {
  color: #212529;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.storefront-icon-outline:hover {
  color: #0d6efd;
}
.storefront-icon-outline i {
  display: block;
}

.storefront-product-category {
  letter-spacing: 0.5px;
  color: #212529;
  border-bottom: 1px solid #ebebeb;
}

.storefront-product-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  font-weight: normal;
  color: #212529;
  font-size: 14px;
}

.storefront-product-actions {
  justify-content: center;
  background: #313a46;
}
.storefront-product-actions .storefront-btn-cart {
  flex: 0 0 20%;
  max-width: 20%;
}
.storefront-product-actions .btn {
  height: 33px;
  padding: 0 1rem !important;
}
.storefront-product-actions .storefront-btn-view {
  flex: 0 0 80%;
  max-width: 80%;
  font-size: 14px !important;
  text-transform: capitalize;
}
.storefront-product-actions .storefront-btn-view:hover {
  background-color: #2a313b;
}

.storefront-discount-badge-wrap {
  z-index: 10;
  pointer-events: none;
}

.storefront-discount-badge {
  font-size: 0.65rem;
  line-height: 1.1;
  border: 0;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 0, 0, 0.18);
  background-color: #ef0101 !important;
  color: #fff !important;
}

.storefront-image-cover {
  aspect-ratio: 1;
  background: #111;
}
.storefront-image-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.storefront-thumb-sm {
  width: 84px;
  height: 84px;
  background: #111;
}

.storefront-thumb-xs {
  width: 52px;
  height: 52px;
  background: #111;
}

.storefront-qty-input {
  max-width: 90px;
  text-align: center;
}

.storefront-store-header {
  background-color: #222;
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15);
  color: #fff;
}
.storefront-store-header a {
  color: #fff;
}
.storefront-store-header .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.storefront-pd-tabbar li {
  display: inline-flex;
  padding: 0 9px;
}

@media (max-width: 768px) {
  .list_products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method-item {
  position: relative;
  cursor: pointer;
  display: block;
}
.payment-method-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method-content {
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-method-item:hover .payment-method-content {
  background: #f7fafc;
}

.payment-method-item input[type=radio]:checked ~ .payment-method-content {
  background: #f0f9ff;
}

.payment-method-item.active .payment-method-content {
  border-color: var(--color-primary);
}

.order-success-wrapper {
  max-width: 600px;
  margin: 40px auto 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.confetti-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color);
  top: -10px;
  left: calc(50% + var(--x) * 1%);
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall 2.5s ease-out var(--delay) forwards;
}
.confetti-piece:nth-child(odd) {
  width: 6px;
  height: 10px;
  border-radius: 50%;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(400px) rotate(720deg) scale(0.3);
  }
}
.success-icon-container {
  margin-bottom: 16px;
}

.success-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #087508;
  stroke-miterlimit: 10;
  animation: checkFill 0.4s ease-in-out 0.4s forwards, checkScale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #087508;
  fill: none;
  animation: checkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  animation: checkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkStroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkFill {
  100% {
    box-shadow: inset 0 0 0 40px rgba(8, 117, 8, 0.08);
  }
}
@keyframes checkScale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
.package-illustration {
  margin: 8px auto 24px;
  animation: packageFloat 3s ease-in-out infinite;
}

@keyframes packageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.sparkle {
  animation: sparklePulse 2s ease-in-out infinite;
}

.sparkle-1 {
  animation-delay: 0s;
}

.sparkle-2 {
  animation-delay: 0.6s;
}

.sparkle-3 {
  animation-delay: 1.2s;
}

@keyframes sparklePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}
.success-title {
  font-size: 28px;
  font-weight: 800;
  color: #087508;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.success-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.success-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.success-btn-primary {
  min-width: 280px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px !important;
  background: #087508 !important;
  border-color: #087508 !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(8, 117, 8, 0.3);
}
.success-btn-primary:hover {
  background: #065c06 !important;
  border-color: #065c06 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8, 117, 8, 0.4);
}

.success-btn-secondary {
  min-width: 280px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px !important;
  transition: all 0.3s ease;
}
.success-btn-secondary:hover {
  transform: translateY(-1px);
}

.success-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fffe 100%);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: left;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #087508;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-text strong {
  font-size: 14px;
  color: #087508;
}
.info-text span {
  font-size: 13px;
  color: #6b7280;
}

.order-info-section {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 32px;
}

.order-info-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.order-code {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}
.order-code a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}
.order-code a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.order-store {
  font-size: 12px;
  color: #6b7280;
}
.order-store a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.order-store a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.order-price {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
}

.order-status {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

@media (max-width: 575.98px) {
  .order-success-wrapper {
    padding: 24px 16px;
    margin: 20px auto 40px;
  }
  .success-title {
    font-size: 22px;
  }
  .success-subtitle {
    font-size: 16px;
  }
  .success-btn-primary,
  .success-btn-secondary {
    min-width: 100%;
  }
  .order-info-section {
    margin-bottom: 24px;
  }
  .order-info-card {
    padding: 12px;
  }
  .success-info-card {
    padding: 12px 16px;
    flex-direction: column;
    text-align: center;
  }
}
.stores-purchase-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.stores-purchase-notice::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb, 220, 38, 38), 0.06);
  pointer-events: none;
}
.stores-purchase-notice__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.stores-purchase-notice__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.stores-purchase-notice__text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #1e293b;
  display: flex;
  align-items: center;
}
.stores-purchase-notice__btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
  white-space: nowrap;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.stores-purchase-notice--warning {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 55%, #fff1f2 100%);
  border-color: #fed7aa;
}
.stores-purchase-notice--info {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #fff1f2 100%);
  border-color: #e2e8f0;
}
@media (max-width: 575.98px) {
  .stores-purchase-notice {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .stores-purchase-notice__btn {
    width: 100%;
    text-align: center;
  }
}

.stores-swal {
  border-radius: 16px !important;
  padding: 28px 24px 24px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18) !important;
}
.stores-swal .stores-swal__icon {
  margin: 0 auto 12px !important;
  border-width: 0 !important;
  width: 64px !important;
  height: 64px !important;
}
.stores-swal .stores-swal__icon.stores-swal__icon--info {
  color: var(--color-primary) !important;
  border-color: transparent !important;
  background: rgba(var(--color-primary-rgb, 220, 38, 38), 0.1) !important;
}
.stores-swal .stores-swal__icon.stores-swal__icon--warning {
  color: #c2410c !important;
  border-color: transparent !important;
  background: #ffedd5 !important;
}
.stores-swal .stores-swal__icon .swal2-icon-content {
  font-size: 1.75rem !important;
}
.stores-swal .stores-swal__title {
  margin: 0 0 8px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
}
.stores-swal .stores-swal__text {
  margin: 0 0 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #64748b !important;
}
.stores-swal .stores-swal__actions {
  margin: 20px 0 0 !important;
  gap: 10px;
  width: 100%;
}
.stores-swal .stores-swal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  margin: 0 !important;
}
.stores-swal .stores-swal__btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.stores-swal .stores-swal__btn--primary:hover {
  background: var(--color-primary-hover, var(--color-primary));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.stores-swal .stores-swal__btn--secondary {
  background: var(--color-secondary, #334155);
  color: #fff;
}
.stores-swal .stores-swal__btn--secondary:hover {
  background: var(--color-black, #0f172a);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.forum-container .row-large {
  margin-left: -20px;
  margin-right: -20px;
}
.forum-container .row-large > * {
  padding-left: 20px;
  padding-right: 20px;
}

#Main .forum-body .box-title-forum .btn {
  font-size: 14px !important;
  padding: 0 16px !important;
}
#Main .forum-actions .btn-action {
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}
#Main .forum-actions .action-group {
  border: 1px solid #dee2e6;
}
#Main .forum-actions .action-group .btn {
  background: transparent !important;
}
#Main .forum-actions .action-group .btn:focus {
  box-shadow: none;
}
#Main .forum-actions .action-group .vr {
  width: 1px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.06);
  opacity: 1;
}
#Main .forum-actions .action-group.active-like .btn-like {
  color: var(--color-primary);
}
#Main .forum-actions .action-group.active-like .btn-like i {
  color: var(--color-primary);
  font-weight: 900;
}
#Main .forum-actions .action-group.active-like .btn-dislike .dislike-count {
  display: none;
}
#Main .forum-actions .action-group.active-dislike .btn-dislike {
  color: #006eff;
}
#Main .forum-actions .action-group.active-dislike .btn-dislike i {
  color: #006eff;
  font-weight: 900;
}
#Main .forum-actions .action-group.active-dislike .btn-dislike .dislike-count {
  display: none;
}
#Main .forum-actions .action-group .btn-like {
  padding-right: 0 !important;
}
#Main .forum-actions .action-group .btn-like:hover i {
  color: var(--color-primary);
}
#Main .forum-actions .action-group .btn-dislike {
  padding-left: 0 !important;
}
#Main .forum-actions .action-group .btn-dislike:hover i {
  color: #006eff;
}
#Main .forum-actions .action-group .btn-dislike .dislike-count {
  display: none;
}
#Main .forum-actions .btn {
  font-weight: 400;
  font-size: 16px !important;
  color: rgb(54, 59, 71);
  padding: 0 15px !important;
}
#Main .forum-actions .btn i {
  color: rgb(78, 85, 102);
}
#Main .btn-trigger-load-replies {
  padding: 0 !important;
  font-size: 14px !important;
  height: auto;
  color: rgb(110, 116, 133);
}

.forum-empty {
  text-align: center;
  min-height: 250px;
}
.forum-empty .icon-wrapper i {
  color: #adb5bd;
}
.forum-empty h5 {
  font-size: 18px;
  color: rgb(54, 59, 71);
  margin: 0 0 5pxpx;
}
.forum-empty p {
  margin: 0 auto;
  font-size: 16px;
  color: rgb(110, 116, 133);
}

.forum-user-name {
  color: rgb(110, 116, 133);
}
.forum-user-name a:not(:hover) {
  color: rgb(110, 116, 133);
}

.forum-time {
  color: rgb(110, 116, 133);
  font-size: 14px;
}

.thread-meta {
  align-items: center;
}
.thread-meta .thread-breadcrumbs-cat {
  color: rgb(110, 116, 133);
  font-size: 14px;
  font-weight: 500;
}

.thread-post-content {
  color: rgb(54, 59, 71);
}

.forum-cm-avatar-1 {
  min-width: 40px;
}

.forum-cm-avatar-2 {
  min-width: 30px;
}

.thread-detail .thread-title {
  font-size: 1.6rem;
}
.thread-detail .comments-section .title-comment {
  font-weight: 600;
  color: rgb(22, 22, 22);
}
.thread-detail .comments-section .forum-actions .action-group, .thread-detail .comments-section .forum-actions .btn {
  height: 30px;
}
.thread-detail .comments-section .comment-item:last-child {
  border-bottom: 0 !important;
}
.thread-detail .comments-section .comment-item .badge-author {
  color: rgb(0, 110, 255);
  position: relative;
  padding-left: 10px;
}
.thread-detail .comments-section .comment-item .badge-author:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.32);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.thread-detail .comments-section .comment-item .reply-item .badge-author {
  padding-left: 15px;
}
.thread-detail .comments-section .comment-item .reply-item .badge-author:before {
  left: 2px;
}
.thread-detail .comments-section .dynamic-comment-form .textarea-wrapper {
  position: relative;
}
.thread-detail .comments-section .dynamic-comment-form .textarea-wrapper .comment-input {
  min-height: 124px;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px 15px 30px;
}
.thread-detail .comments-section .dynamic-comment-form .textarea-wrapper .char-count {
  font-size: 12px;
  line-height: 16px;
  color: rgb(110, 116, 133);
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.replies-container .reply-item:last-child {
  margin-bottom: 0;
}

.forum-media-wrapper:not(.has-media-data) .forum-results-container {
  display: none;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 150px;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #ee4d2d;
  background: #fff5f3;
  color: #ee4d2d;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn i {
  font-size: 18px;
  margin-right: 8px;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn .txt-label {
  font-size: 14px;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn.has-data {
  width: 82px;
  height: 82px;
  min-width: 82px;
  flex-direction: column;
  border: 1px dashed #ccc;
  background: #f9f9f9;
  color: #999;
  border-radius: 8px;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn.has-data i {
  margin-right: 0;
  margin-bottom: 5px;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn.has-data .txt-label {
  display: none;
}
.forum-media-wrapper .forum-media-group .item_upload.trigger-btn.has-data .count-tag {
  display: block !important;
  font-size: 12px;
}
.forum-media-wrapper .form-check-input {
  width: 16px;
  height: 16px;
}

.forum-results-container .image_item, .forum-results-container .video_item {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #ddd;
}
.forum-results-container .image_item video, .forum-results-container .video_item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.forum-results-container .image_item .remove, .forum-results-container .video_item .remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #666;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  z-index: 10;
}
.forum-results-container .image_item .remove:hover, .forum-results-container .video_item .remove:hover {
  background: #F23F36;
}
.forum-results-container .image_item .processing, .forum-results-container .video_item .processing {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.forum-results-container .image_item .processing.show, .forum-results-container .video_item .processing.show {
  display: flex;
}
.forum-results-container .video_item .video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  pointer-events: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.forum-results-container .video_item .video-info-overlay i {
  font-size: 10px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
.forum-results-container .video_item .video-info-overlay .video-duration {
  font-size: 10px;
  font-weight: 500;
}

.forum-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.forum-loading-overlay .loading-box {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
}
.forum-loading-overlay .loading-box .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: spin 1s linear infinite;
}
.forum-loading-overlay .loading-box p {
  margin: 0;
  font-size: 14px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert-success-custom {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alert-error-custom {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(238, 68, 63);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: shake 0.4s ease-in-out;
}
.alert-error-custom i {
  font-size: 18px;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(-50%);
  }
  25% {
    transform: translateX(-55%);
  }
  75% {
    transform: translateX(-45%);
  }
}
#checkLoginForumModal .modal-content,
#confirmForumModal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#checkLoginForumModal .modal-header,
#confirmForumModal .modal-header {
  border-bottom: none;
  padding: 1rem 1rem 0;
}
#checkLoginForumModal .modal-header .btn-close,
#confirmForumModal .modal-header .btn-close {
  padding: 0.8rem;
  box-shadow: none;
}
#checkLoginForumModal .modal-body,
#confirmForumModal .modal-body {
  padding: 0 2rem 2rem;
  text-align: center;
}
#checkLoginForumModal .modal-body h5,
#confirmForumModal .modal-body h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
#checkLoginForumModal .modal-body p,
#confirmForumModal .modal-body p {
  color: #666;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
#checkLoginForumModal .modal-body .d-flex,
#confirmForumModal .modal-body .d-flex {
  gap: 12px;
}

#Main .box-total-filter {
  position: sticky;
  top: 0;
  z-index: 1;
}
#Main .box-total-filter .sub-topic-filter .btn {
  text-transform: initial;
  font-size: 14px !important;
  padding: 0 15px !important;
}

.box-forum-menu {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 24px;
}
.box-forum-menu .title-forum-menu {
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  margin: -1rem -1rem 0;
}
.box-forum-menu .main-forum-menu {
  margin: 15px -10px 0;
  padding: 0;
  list-style: none;
}
.box-forum-menu .main-forum-menu .nav-item a {
  color: #000;
  display: block;
  transition: all 3ms;
  padding: 7px 10px;
  border-radius: 3px;
}
.box-forum-menu .main-forum-menu .nav-item a.active {
  color: var(--color-primary);
  background: #fef3f3;
}
.box-forum-menu .main-forum-menu .nav-item a:hover {
  color: var(--color-primary);
  background: #efefef;
}

.post-attachments,
.comment-attachments {
  display: flex;
  gap: 10px;
}
.post-attachments .attachments-item,
.comment-attachments .attachments-item {
  width: 120px;
  height: 120px;
}
.post-attachments .attachments-item video,
.post-attachments .attachments-item img,
.comment-attachments .attachments-item video,
.comment-attachments .attachments-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.post-attachments .attachments-item .video-thumbnail,
.comment-attachments .attachments-item .video-thumbnail {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: #ededed;
}
.post-attachments .attachments-item .video-thumbnail .video-info-overlay,
.comment-attachments .attachments-item .video-thumbnail .video-info-overlay {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
}
.post-attachments .attachments-item .video-thumbnail .video-info-overlay:hover,
.comment-attachments .attachments-item .video-thumbnail .video-info-overlay:hover {
  background-color: var(--color-primary);
}

.comment-attachments .attachments-item {
  width: 90px;
  height: 90px;
}

.forum-body .me-tabs a {
  color: #000;
  position: relative;
}
.forum-body .me-tabs a:hover, .forum-body .me-tabs a.active-me {
  color: var(--color-primary);
}
.forum-body .me-tabs a:hover:after, .forum-body .me-tabs a.active-me:after {
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
  background: var(--color-primary);
}
.forum-body .list-comments .comment-card a {
  color: rgb(0, 110, 255);
}
.forum-body .list-comments .comment-card .title-thread {
  color: rgb(0, 0, 0);
  font-size: 16px;
}
.forum-body .list-comments .comment-card .meta-auth-thread {
  color: rgb(54, 59, 71);
  font-size: 14px;
}
.forum-body .list-comments .comment-card .comment-content {
  color: rgb(54, 59, 71);
}
.forum-body .list-comments .comment-card .meta-auth-comment {
  color: rgb(110, 116, 133);
  font-size: 14px;
}
.forum-body .list-comments .comment-card .text-end a {
  font-size: 14px;
  text-decoration: underline;
}

.box-gallery-forum .media-item {
  border-radius: 8px;
}
.box-gallery-forum .media-item-video .video-info-overlay {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
}
.box-gallery-forum .media-item-video .video-info-overlay:hover {
  background-color: var(--color-primary);
}

@media (min-width: 768px) {
  .box-gallery-forum .col-md-3 {
    width: 20%;
  }
}
#loading_page {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  text-align: center;
}
#loading_page .icon_loading {
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: #fff url(../../images/loading.gif) no-repeat center;
  background-size: 400px;
  z-index: 9999;
}

.hover_o:hover {
  opacity: 0.8;
}

.has_scroll:before {
  content: "";
  left: 0;
  top: 48px;
  width: calc(100% - 1px);
  height: 40px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  will-change: transform;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="lgrad" x1="50%" y1="0%" x2="50%" y2="100%" ><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1"/><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0"/></linearGradient></defs><rect x="0" y="0" width="100%" height="100%" fill="url(%23lgrad)"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.icon_bar {
  width: 30px;
  aspect-ratio: 1/1;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.icon_bar:before {
  content: "MENU";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 10.5px;
  left: 0;
  right: 0;
}
.icon_bar._hover {
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.btn-google {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-google:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-facebook {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-facebook:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.color-telegram {
  color: #000000;
}
.color-telegram:hover {
  color: var(--color-primary);
}

.color-facebook {
  color: #0069d9;
}
.color-facebook:hover {
  color: var(--color-primary);
}

.btn-go-top {
  display: none;
  border-radius: 5px;
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #333;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0;
}
.btn-go-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-go-top:hover {
  color: var(--color-primary);
  font-size: 20px;
}

.badge_pro {
  --bs-badge-padding-x: 10px;
  --bs-badge-padding-y: 4px;
  --bs-badge-font-size: 12px;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  border-radius: 50em;
  font-weight: var(--bs-badge-font-weight);
  font-size: var(--bs-badge-font-size);
  color: var(--bs-badge-color);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge_search {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 50em;
  font-size: 12px;
  color: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge_search:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

.section_search {
  --bs-badge-padding-x: 15px;
  --bs-badge-padding-y: 6px;
  --bs-badge-font-size: 14px;
  --bs-badge-font-weight: 500;
  --bs-badge-color: #000000;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  border-radius: 50em;
  font-weight: var(--bs-badge-font-weight);
  font-size: var(--bs-badge-font-size);
  color: #000000;
  background: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_search.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.grid-wrapper .wide {
  grid-column: span 2;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.rating-stars {
  display: inline-block;
  position: relative;
  font-size: 24px;
}

.stars-outer {
  display: inline-block;
  position: relative;
  font-family: FontAwesome;
}

.stars-outer::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: FontAwesome;
  color: #ccc;
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.stars-inner::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: FontAwesome;
  color: #f5a623;
}

.cursor:hover {
  cursor: pointer;
}

.click:hover {
  cursor: pointer;
}
.click_text {
  cursor: pointer;
}
.click_text:hover {
  color: var(--color-primary-hover) !important;
}

.click_border {
  cursor: pointer;
}
.click_border:hover {
  border-color: var(--color-primary-hover) !important;
}

.click_bg {
  position: relative;
}
.click_bg:hover {
  background-color: #f2f2f2 !important;
}

.click_bg_opacity {
  position: relative;
}
.click_bg_opacity:hover {
  --bs-bg-opacity: 0.1;
}

.line1_2 {
  line-height: 1.2;
}

.line1_1 {
  line-height: 1.1;
}

.text-active {
  color: var(--color-active);
}

.widgets_blocks.active .wiget_title {
  background: #E7E7E7;
}
.widgets_blocks.active .widget_body {
  background: #F2F2F2;
}
.widgets_blocks:hover .wiget_title {
  background: #E7E7E7;
}

.alert {
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.alert.alert-success {
  background: #28a745;
}
.alert.alert-danger {
  background: #dc3545;
}
.alert.alert-warning {
  background: #ffc107;
}
.alert.alert-info {
  background: #17a2b8;
}
.alert .close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
}

.form-input-tiktok,
.form-input-youtube,
.form-input-facebook,
.form-input-instagram {
  background: transparent;
  border: none;
  padding-left: 3px;
}

.account-layout .body-content {
  display: block;
  padding: 0px;
  position: relative;
  height: calc(100vh - 48px);
  overflow-y: auto;
}
.account-layout .navbar-icon {
  border: 1px solid var(--color-border);
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
.account-layout .account-menu {
  width: 250px;
  background: rgb(49, 58, 70);
}
.account-layout .account-menu .menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px;
}
.account-layout .account-menu .menu-list .menu-item {
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.account-layout .account-menu .menu-list .menu-item icon {
  font-size: 16px;
  margin-right: 8px;
}
.account-layout .account-menu .menu-list .menu-item._hover {
  background: rgba(255, 255, 255, 0.3);
}
.account-layout .account-menu .menu-list .menu-item.active {
  background: var(--color-primary);
}

.bg-white {
  background-color: #ffffff !important;
}

.auth_layout {
  background: linear-gradient(to right bottom, oklab(0.510913 -0.0854992 -0.00955808/0.6) 0%, oklch(0.973 0.071 103.193) 100%);
}
.auth_layout .password-field {
  display: block;
  flex-wrap: nowrap;
}
.auth_layout .password-field .form-control {
  width: 100%;
}
.auth_layout .password-field .toggle-password {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  z-index: 5;
  color: rgb(161, 165, 179);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
}

.account_orders_list .col_code {
  width: 30%;
  max-width: 150px;
  flex-shrink: 0;
}
.account_orders_list .col_status {
  width: 30%;
  min-width: 150px;
}

.header_cart {
  position: relative;
  min-width: 42px !important;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  height: 42px;
  width: auto;
  transition: all 0.3s ease;
}
.header_cart i {
  font-size: 16px;
  color: var(--color-white);
}
.header_cart:hover {
  background: rgba(255, 255, 255, 0.4);
}
.header_cart .count_cart {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50em;
  padding: 0 5px;
}
.header_cart .count_cart:empty {
  display: none;
}

.border-2 {
  border: 2px solid var(--border-color);
}

.product-reviews-section {
  padding-top: 2rem;
}
.product-reviews-section .title-section-review {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-reviews-section .review-item {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784) !important;
}
.product-reviews-section .review-item:last-child {
  border-bottom: none !important;
}
.product-reviews-section .review-item .review-avatar {
  min-width: 42px;
}
.product-reviews-section .review-item .review-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.0625rem solid rgba(0, 0, 0, 0.09);
}
.product-reviews-section .review-item .review-content {
  flex-grow: 1;
}
.product-reviews-section .review-item .review-content .fw-medium {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.87);
}
.product-reviews-section .review-item .review-content .fa-star {
  font-size: 14px;
}
.product-reviews-section .review-item .review-content .review-meta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 0.5rem;
}
.product-reviews-section .review-item .review-content .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.87);
}
.product-reviews-section .review-item .review-media-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-reviews-section .review-item .review-media-group .image-item, .product-reviews-section .review-item .review-media-group .video-thumbnail {
  width: 4.5rem;
  height: 4.5rem;
  position: relative;
  cursor: zoom-in;
}
.product-reviews-section .review-item .review-media-group .image-item img, .product-reviews-section .review-item .review-media-group .image-item video, .product-reviews-section .review-item .review-media-group .video-thumbnail img, .product-reviews-section .review-item .review-media-group .video-thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-reviews-section .review-item .review-media-group .video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2px 4px;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  pointer-events: none;
}
.product-reviews-section .review-item .review-media-group .video-info-overlay i {
  font-size: 10px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}
.product-reviews-section .review-item .review-media-group .video-info-overlay .video-duration {
  font-size: 10px;
  font-weight: 500;
}
.product-reviews-section .pagination-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.text-rating {
  color: rgb(255, 170, 0);
}

.reviews-stats-header {
  background-color: rgb(247, 247, 247);
  border: 1px solid #efefef;
  border-radius: 2px;
  padding: 1.5rem;
}
.reviews-stats-header .text-rating {
  color: rgb(255, 170, 0) !important;
}
.reviews-stats-header .text-rating .display-5 {
  font-size: 1.875rem;
  font-weight: 700;
}
.reviews-stats-header .stars-gold .fa-star {
  font-size: 1.25rem;
}
.reviews-stats-header .stars-gold .fa-star.text-rating {
  color: rgb(255, 170, 0) !important;
}
.reviews-stats-header .stars-gold .fa-star.far {
  color: rgb(255, 170, 0);
}
.reviews-stats-header .review-filter-group .btn-filter-rating {
  background: #fff !important;
  color: rgb(54, 59, 71);
  font-size: 14px !important;
  padding: 5px 15px !important;
  border: 1px solid rgba(0, 0, 0, 0.0901960784);
  border-radius: 2px !important;
  text-transform: initial;
  font-weight: 500;
  height: 32px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  white-space: nowrap;
  gap: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.reviews-stats-header .review-filter-group .btn-filter-rating span {
  opacity: 0.6;
}
.reviews-stats-header .review-filter-group .btn-filter-rating.active {
  color: rgb(255, 170, 0);
  border-color: rgb(255, 170, 0);
}

.reviews-list .page-link {
  font-size: 14px;
  width: 32px;
}
