/* Copy Animation */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  max-width: calc(100% - 30px);
  box-sizing: border-box;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: hsl(var(--white));
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-card__content a {
  color: hsl(var(--base));
  text-decoration: underline;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: calc(100% - 24px);
    max-width: none;
    left: 12px;
    bottom: 12px;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}



.payment-card-title {
  padding: 15px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 12px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: hsl(var(--section-bg));
  border-radius: 12px;
}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
  min-height: 255px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
  border-radius: 5px;
  background-color: hsl(var(--black) / 0.1);
  width: 100px;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: hsl(var(--section-bg));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

/* newly added */
label.required:after {
  content: '*';
  color: #dc3545 !important;
  margin-left: 2px;
}

.image--uploader {
  width: 150px;
  height: 150px;
}

.image-upload-wrapper {
  height: 100%;
  position: relative;
}

.image-upload-preview {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  border: 1px solid #ced4da;
  box-shadow: none;
}

.image-upload-input-wrapper {
  position: absolute;
  display: inline-flex;
  bottom: -14px;
  right: -7px;
}

.image-upload-input-wrapper input {
  width: 0;
  opacity: 0;
}

.image-upload-input-wrapper label {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.image-upload-input-wrapper label::after {
  content: "";
}

.image-upload-input-wrapper .bg--primary {
  background: hsl(var(--base)) !important;
  color: hsl(var(--white));
}

.dashboard-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.dashboard-filter__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--heading-color) / 0.85);
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--black) / 0.1);
  padding: 4px 12px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.dashboard-filter__link.active,
.dashboard-filter__link:hover {
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
}

del {
  color: hsl(var(--base)) !important;
}

/* cart sidebar start*/
.cart__sidebar {
  background-color: hsl(var(--white));
  max-width: 340px;
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99991;
  -webkit-transition: 0.3s linear all;
  transition: 0.3s linear all;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cart__sidebar.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.cart__sidebar .cart__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: hsl(var(--base));
}

.cart__sidebar .cart__header .title {
  color: hsl(var(--white));
  font-size: 0.875rem;
  font-family: var(--body-font);
}

.cart__sidebar .cart__header .sidebar-close-btn {
  color: hsl(var(--white));
}

.cart__sidebar .cart__body {
  padding: 22px 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: auto;
}

.cart__sidebar .cart__item {
  padding: 0px 16px 16px 16px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  position: relative;
  font-size: 1.125rem;
}

.cart__sidebar .cart__item__remove {
  position: absolute;
  right: 16px;
  color: hsl(var(--text-color));
  font-size: 1.25rem;
  display: flex;
}

.cart__sidebar .cart__item__remove:hover {
  color: hsl(var(--base));
}

.cart__sidebar .cart__item__img {
  width: 54px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cart__sidebar .cart__item__title {
  font-size: 0.875rem;
  margin-bottom: 0px;
  max-width: 150px;
  font-weight: 600;
  font-family: var(--body-font);
}

.cart__sidebar .cart__item__rating-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-direction: row-reverse;
}

.cart__sidebar .cart__item__rating-price .cart__item__price {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--base));
}

.cart__sidebar .cart__item__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.cart__sidebar .cart-bottom {
  background: hsl(var(--black) / 0.03);
  padding: 13px 16px;
}

.cart__sidebar .cart__total__area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart__sidebar .cart__discount__area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed hsl(var(--base) / 0.3);
}

.cart__sidebar :is(.discount-price, .discount-title) {
  font-weight: 400;
  color: hsl(var(--heading-color) / 0.75);
  font-size: 0.875rem;
}

.cart__sidebar .discount-price {
  font-weight: 500;
  color: hsl(var(--heading-color));
}

.cart__sidebar .cart-bottom .subtotal-title,
.cart__sidebar .cart-bottom .subtotal-price {
  font-weight: 700;
  color: hsl(var(--heading-color));
  font-size: 1rem;
}

.cart__sidebar .cart-bottom .subtotal-price {
  color: hsl(var(--base));
}

.cart__sidebar .cart-bottom .btn {
  padding: 12px 16px;
  font-size: 0.875rem;
}

.cart__header .cart__page__link {
  color: #f7f7f7;
  text-decoration: underline;
  font-size: 14px;
}

.cart__header {
  align-items: center;
}

/* Keep every category image inside its circular frame. */
.category-block-three .inner-box .image-box {
  overflow: visible;
  isolation: isolate;
}

.category-block-three .inner-box .image-box img {
  position: relative;
  z-index: 1 !important;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.category-block-three .inner-box .image-box::before {
  display: none;
}
.category-block-three .inner-box .image-box::after {
  content: "";
  position: absolute;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  top: 50%;
  left: 50%;
  border: 4px dashed currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: categoryRingRotate 6s linear infinite;
  z-index: 2 !important;
  pointer-events: none;
}
.category-block-three .inner-box .image-box.border-1::after { color: #025A5A; }
.category-block-three .inner-box .image-box.border-2::after { color: #E97D3F; }
.category-block-three .inner-box .image-box.border-3::after { color: #063ECC; }
.category-block-three .inner-box .image-box.border-4::after { color: #FF9D09; }
.category-block-three .inner-box .image-box.border-5::after { color: #366319; }
.category-block-three .inner-box .image-box.border-6::after { color: #EA6BEA; }
.category-carousel-2 .owl-stage-outer {
  padding-block: 10px;
}
 .blog-details__article h2 { margin: 34px 0 14px; color: hsl(var(--black)); font-size: 1.55rem; font-weight: 700; }
 .blog-details__article h3 { margin: 26px 0 12px; color: hsl(var(--black)); font-size: 1.25rem; font-weight: 700; }
 .blog-details__article p { margin-bottom: 18px; line-height: 1.8; }
 .blog-details__article a { color: hsl(var(--base)); font-weight: 700; text-decoration: underline; }
@keyframes categoryRingRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Product detail variant choices */
.product-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-size-option {
  min-width: 78px;
  min-height: 38px;
  padding: 8px 12px;
  color: hsl(var(--heading-color));
  background: hsl(var(--white));
  border: 1px solid hsl(var(--border-color));
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.product-size-option:hover,
.product-size-option.selected {
  color: hsl(var(--base));
  border-color: hsl(var(--base));
  background: hsl(var(--base) / 0.08);
}

.product-details-content .product-details__color-box.attribute-selector {
  border: 2px solid hsl(var(--border-color));
}

.product-details-content .product-details__color-box.attribute-selector.selected {
  border-color: hsl(var(--base));
  box-shadow: 0 0 0 2px hsl(var(--base) / 0.2);
}

/* Product-detail upsell panel — matches the source theme. */
.up-sells__inner {
  position: relative;
  padding: 60px;
  border-radius: 10px;
}

.up-sells__inner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.19;
  border-radius: inherit;
  background-color: hsl(var(--base));
}

.up-sells .shop-block-one {
  position: relative;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: hsl(var(--white));
  transition: 0.3s ease;
}

.up-sells .shop-block-one .inner-box .image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px dashed hsl(var(--black));
  border-radius: 8px;
  background-color: #fff6f8;
}

.up-sells .shop-block-one .inner-box .image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.up-sells .shop-block-one .inner-box .image-box .image-box__link {
  display: block;
  width: 100%;
  height: 100%;
}

.related-products-slider {
  display: flex;
  gap: 20px;
  padding: 10px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  cursor: grab;
  overscroll-behavior-inline: contain;
}

.related-products-slider__item {
  flex: 0 0 calc((100% - 100px) / 6);
  min-width: 190px;
  scroll-snap-align: start;
}

.related-products-slider.is-dragging {
  cursor: grabbing;
  user-select: none;
}

@media screen and (min-width: 992px) {
  .related-products-slider {
    overflow-x: hidden;
    scroll-snap-type: none;
    scrollbar-width: none;
    cursor: default;
    -ms-overflow-style: none;
  }

  .related-products-slider::-webkit-scrollbar {
    display: none;
  }

  .related-products-slider__item {
    min-width: 0;
    flex: 0 0 calc((100% - 100px) / 6);
  }
}

@media screen and (max-width: 991px) {
  .up-sells__inner { padding: 40px; }
  .related-products-slider__item { flex-basis: calc((100% - 40px) / 3); }
}

@media screen and (max-width: 575px) {
  .up-sells__inner { padding: 30px; }
  .related-products-slider { gap: 14px; }
  .related-products-slider__item { flex-basis: 78%; min-width: 0; }
}

/* Categories page */
.category-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.category-section .section-header__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
}

.category-card {
  text-align: center;
}

.category-card__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff6f8;
}

.category-card__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: hsl(var(--black) / 0.28);
  transition: opacity 0.3s ease;
}

.category-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card__explore {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  padding: 9px 20px;
  color: hsl(var(--white));
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  border-radius: 999px;
  background: hsl(var(--base));
  transform: translate(-50%, -35%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card__name {
  display: inline-block;
  margin-top: 14px;
  color: hsl(var(--heading-color));
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.category-card:hover .category-card__thumb::after {
  opacity: 1;
}

.category-card:hover .category-card__thumb img {
  transform: scale(1.08);
}

.category-card:hover .category-card__explore {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.category-card:hover .category-card__name {
  color: hsl(var(--base));
}

/* Wishlist page */
.wishlist .wishlist-btn.onlyRemove {
  --size: 28px;
  position: absolute;
  z-index: 9;
  top: 20px;
  right: 20px;
  width: var(--size);
  height: var(--size);
  padding: 0;
  color: hsl(var(--danger));
  font-size: calc(var(--size) * 0.4);
  line-height: 100%;
  border: 1px solid hsl(var(--danger));
  border-radius: 50%;
  background-color: hsl(var(--danger) / 0.2);
  transition: 0.3s ease;
}

.wishlist .wishlist-btn.onlyRemove:hover,
.wishlist .wishlist-btn.onlyRemove:focus {
  color: hsl(var(--white));
  outline: none;
  box-shadow: none;
  background-color: hsl(var(--danger));
}

.wishlist-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wishlist-empty__title {
  margin-bottom: 6px;
  color: hsl(var(--black) / 0.7);
}

.wishlist-empty__desc {
  color: hsl(var(--black) / 0.5);
  font-size: 0.875rem;
}

.wishlist-empty__desc i { color: #ff6b81; }
.wishlist-empty svg { animation: wishlist-pulse 1.8s infinite ease-in-out; }

@keyframes wishlist-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@media screen and (max-width: 575px) {
  .wishlist .wishlist-btn.onlyRemove {
    --size: 24px;
    top: 16px;
    right: 16px;
  }
  .wishlist-empty svg { width: 64px; height: 64px; }
}

/* Account screens use the original split-screen account composition. */
.account {
  overflow: hidden;
}

.account-thumb {
  flex: 0 0 55%;
  width: auto;
  overflow: hidden;
}

.account-content {
  flex: 0 0 45%;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

.auth-thumb {
  background-color: #f7f8fa;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1399px) {
  .account-thumb,
  .account-content {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 991px) {
  .account-content {
    flex-basis: 100%;
  }
}

.policy-wrapper ul li {
  margin-left: 20px;
  list-style: disc;
}

/* Store notifications */
.store-toast-container {
  position: fixed;
  z-index: 10000;
  top: 24px;
  right: 24px;
  width: min(360px, calc(100vw - 32px));
}

.store-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 14px 12px;
  color: hsl(var(--black));
  background: hsl(var(--white));
  border-radius: 5px;
  box-shadow: 0 8px 24px hsl(var(--black) / 0.18);
  border-left: 4px solid hsl(var(--base));
  opacity: 0;
  transform: translateX(110%);
  transition: opacity .25s ease, transform .25s ease;
}

.store-toast.show { opacity: 1; transform: translateX(0); }
.store-toast--error { border-left-color: hsl(var(--danger)); }
.store-toast > i { color: hsl(var(--base)); font-size: 22px; }
.store-toast--error > i { color: hsl(var(--danger)); }
.store-toast span { flex: 1; font-size: .9375rem; font-weight: 500; }
.store-toast button { padding: 0; border: 0; color: hsl(var(--black) / .5); background: transparent; }

@media screen and (max-width: 575px) {
  .store-toast-container { top: 16px; right: 16px; }
}

/* Checkout page */
.checkout-wrapper { display: flex; gap: 48px; }
.checkout .cart-wrapper__left { flex-grow: 1; padding: 24px; border-radius: 12px; background-color: hsl(var(--white)); }
.checkout .cart-wrapper__right { flex-shrink: 0; width: 555px; border: 0; }
.checkout .checkout-information { width: 100%; padding: 24px; border-radius: 12px; background-color: hsl(var(--white)); }
.shipping-method-wrapper { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
.shipping-method-wrapper .form--radio { position: relative; display: flex; flex: 1; padding: 0 !important; }
.shipping-method-wrapper .form-check-label { width: 100%; padding: 24px; border: 1px solid hsl(var(--border-color)); border-radius: 8px; color: hsl(var(--heading-color)) !important; }
.shipping-method-wrapper .form-check-input { position: absolute; top: 20px; left: 24px; width: 20px; height: 20px; }
.shipping-content { display: flex; justify-content: space-between; padding-left: 35px; }
.shipping-method-wrapper .form-check-input:checked + .form-check-label { border-color: hsl(var(--base)); background: hsl(var(--base) / .06); }
.checkout-product__wrapper { margin-bottom: 24px; }
.checkout-product__item { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.checkout-product__item:not(:last-child) { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid hsl(var(--border-color)); }
.checkout-product__item__left, .checkout-product__item__right { display: flex; align-items: center; gap: 8px; }
.checkout-product__item__right { flex: 1; justify-content: flex-end; }
.checkout-product__item__thumb { width: 80px; height: 80px; padding: 5px; overflow: hidden; border: 1px solid hsl(var(--border-color) / .5); border-radius: 5px; }
.checkout-product__item__thumb img { width: 100%; height: 100%; object-fit: contain; }

@media screen and (max-width: 1399px) { .checkout .cart-wrapper__right { width: 400px; } }
@media screen and (max-width: 1199px) { .checkout-wrapper { flex-direction: column; } .checkout .cart-wrapper__right { width: 100%; } }
@media screen and (max-width: 575px) { .checkout .cart-wrapper__left, .checkout .checkout-information { padding: 16px; } .shipping-method-wrapper { flex-direction: column; } .checkout-product__item__right { align-items: flex-end; } }

/* Payment and order confirmation */
.payment-logo { display: grid; width: 100px; height: 40px; place-items: center; border-radius: 5px; color: #fff; font-size: 18px; font-weight: 800; }
.payment-logo--paytr { background: #1e8bc3; }
.payment-bank-icon { color: hsl(var(--base)); font-size: 34px; }
.payment-item.selected { border-color: hsl(var(--base)); background: hsl(var(--base) / .06); }
.payment-item.selected .payment-item__check::before { opacity: 1; }
.bank-transfer-note { margin: 16px 0; padding: 14px; border-radius: 6px; background: hsl(var(--base) / .07); }
.bank-transfer-note h6 { margin-bottom: 6px; }
.bank-transfer-note p { margin-bottom: 0; font-size: .875rem; }
.order-confirmation { width: 100%; max-width: 480px; }
.order-confirmation-icon { display: block; text-align: center; }
.order-confirmed-check { display: inline-grid; width: 76px; height: 76px; place-items: center; border-radius: 50%; color: hsl(var(--white)); background: hsl(var(--success)); font-size: 44px; }
.order-confirmation-title { margin-bottom: 12px; text-align: center; }
.order-confirmation-desc { margin-bottom: 32px; text-align: center; }
.order-confirmation-list-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .875rem; }
.order-confirmation-list-item:not(:last-child) { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed hsl(var(--black) / .1); }
.order-confirmation-list-item .label { font-weight: 500; }
.order-confirmation-list-item .value { color: hsl(var(--heading-color)); font-weight: 600; }
.order-confirmation-list-item.total { padding-top: 20px; border-top: 1px solid hsl(var(--border-color)); }
.order-confirmation-list-item.total strong { font-size: 1rem; font-weight: 700; }
.track--card .card-headings { text-align: center; }
.track--card .card-desc { max-width: 530px; margin-inline: auto; color: hsl(var(--black) / .75); font-size: .875rem; }
.track--card .card-body { padding: 64px 32px; }
.order-track-form { display: flex; align-items: center; gap: 16px; max-width: 600px; margin-inline: auto; padding: 9px; border-radius: 12px; }
.order-track-form .form--control { flex-grow: 1; }
.order-track-form .btn { padding: 15px 40px; white-space: nowrap; }
.order-track-step { display: flex; align-items: center; height: 100%; gap: 16px; padding: 20px 16px; border: 1px solid hsl(var(--black) / .07); border-radius: 12px; }
.order-track-step__icon { display: grid; flex-shrink: 0; width: 48px; height: 48px; place-items: center; border-radius: 4px; color: hsl(var(--base)); background: hsl(var(--base) / .1); font-size: 28px; }
.order-track-step__content { flex-grow: 1; text-align: left; }
.order-track-step__title { margin-bottom: 7px; font-size: 1.25rem; font-weight: 600; }
.order-track-step__desc { margin: 0; font-size: .875rem; }
.order-track-step.active { border-color: hsl(var(--base)); background: hsl(var(--base) / .05); }
.order-track-step.active .order-track-step__icon { color: hsl(var(--white)); background: hsl(var(--base)); }
.account-stat { padding: 24px; }.account-stat span { color: hsl(var(--body-color)); }.account-stat h3 { margin: 8px 0 0; }
.profile-info-item { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 5px; padding: 8px 0; border-bottom: 1px solid hsl(var(--border-color)); }.profile-info-item:last-child { border: 0; }.profile-info-item p { margin: 0; }.profile-info-item .title { font-weight: 600; }
.dashboard .dashboard-package-icon { color: hsl(var(--base)); font-size: 30px; line-height: 1; }
/* Admin login and sidebar */
.main-header .logo-box:has(.logo-keyed) {
  width: 135px;
  height: auto;
  overflow: visible;
}
.main-header .logo-box img.logo-keyed {
  width: 135px;
  height: auto;
  max-width: none;
  transform: translateY(-8px);
  object-fit: initial;
}
.main-menu .navigation > li.dropdown > .megamenu .advice-box {
  overflow: hidden;
  min-height: 200px;
  padding: 22px 20px;
}
.main-menu .navigation > li.dropdown > .megamenu {
  min-height: 200px;
}
.main-menu .navigation > li.dropdown > .megamenu .advice-box__footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.main-menu .navigation > li.dropdown > .megamenu .advice-box .image-box {
  width: 155px;
  height: 105px;
  overflow: hidden;
}
.main-menu .navigation > li.dropdown > .megamenu .advice-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
@media screen and (max-width: 575px) {
  .main-header .logo-box:has(.logo-keyed) { width: 110px; height: auto; }
  .main-header .logo-box img.logo-keyed { width: 110px; transform: translateY(-4px); }
}
.banner-style-two .slide-item .bg-color-1 { background: #b7e8f8; }
.admin-login-body { min-height: 100vh; background: #17212b; font-family: Arial, sans-serif; }.login-main { display: flex; min-height: 100vh; align-items: center; background: linear-gradient(120deg, rgb(18 31 45 / .86), rgb(18 31 45 / .65)); }.login-wrapper { overflow: hidden; border-radius: 8px; box-shadow: 0 12px 40px rgb(0 0 0 / .25); }.login-wrapper__top { padding: 28px 32px; background: #273d52; }.login-wrapper__top .title { font-size: 23px; }.login-wrapper__body { padding: 32px; background: #fff; }.login-wrapper label { display: block; margin-bottom: 8px; color: #34495e; font-weight: 600; }.login-wrapper .form-group { margin-bottom: 20px; }.login-wrapper .form-control { min-height: 46px; }.forget-text { color: #536dfe; font-size: 13px; }.cmn-btn { padding: 12px; color: #fff; background: #536dfe; border: 0; border-radius: 4px; font-weight: 700; }
.admin-body { margin: 0; background: #f5f7fb; font-family: Arial, sans-serif; }.admin-wrapper { display: flex; min-height: 100vh; }.sidebar { position: fixed; z-index: 20; width: 270px; height: 100vh; overflow-y: auto; color: #cbd3db; background: #1d2935; transition: transform .25s ease; }.sidebar__logo { padding: 25px 22px; border-bottom: 1px solid rgb(255 255 255 / .08); }.sidebar__main-logo { color: #fff; font-size: 20px; font-weight: 800; text-decoration: none; }.sidebar__main-logo span { color: #5d77ff; }.res-sidebar-close-btn { position: absolute; top: 10px; right: 10px; z-index: 1; display: none; width: 32px; height: 32px; color: #fff; border: 0; border-radius: 50%; background: rgb(255 255 255 / .12); }.sidebar__menu { padding: 15px 0 55px; margin: 0; list-style: none; }.sidebar__menu-header { padding: 18px 24px 8px; color: #718096; font-size: 10px; font-weight: 700; }.sidebar-menu-item>a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: #cbd3db; text-decoration: none; font-size: 14px; }.sidebar-menu-item.active>a,.sidebar-menu-item>a:hover { color: #fff; background: #536dfe; }.menu-icon { width: 19px; font-size: 18px; }.side-menu__sub-icon { margin-left: auto; transition: transform .2s; }.sidebar-dropdown.open .side-menu__sub-icon { transform: rotate(90deg); }.sidebar-submenu { display: none; background: rgb(0 0 0 / .12); }.sidebar-dropdown.open .sidebar-submenu { display: block; }.sidebar-submenu ul { padding: 5px 0; margin: 0; list-style: none; }.sidebar-submenu a { display: flex; padding: 9px 25px 9px 53px; color: #aeb9c5; text-decoration: none; font-size: 13px; }.menu-badge { padding: 2px 6px; border-radius: 12px; color: #fff; font-size: 10px; }.bg--warning { background: #f6ad55; }.version-info { position: absolute; bottom: 15px; width: 100%; font-size: 10px; }.text--primary { color: #5d77ff; }.text--success { color: #48bb78; }.admin-content { width: calc(100% - 270px); margin-left: 270px; transition: margin .25s, width .25s; }.admin-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 30px; background: #1d2935; color: #fff; box-shadow: 0 1px 5px rgb(0 0 0 / .12); }.navbar__left,.navbar__right { display: flex; align-items: center; gap: 16px; }.navbar__right a,.top-icon,.admin-user { color: #dce3eb; border: 0; background: transparent; }.admin-search { display: flex; align-items: center; gap: 8px; min-width: 220px; padding: 9px 12px; color: #9aa8b6; border-radius: 4px; background: rgb(255 255 255 / .08); }.admin-search input { width: 100%; color: #fff; border: 0; outline: 0; background: transparent; }.admin-search input::placeholder { color: #9aa8b6; }.sidebar-toggle { color: #fff; border: 0; background: transparent; font-size: 24px; }.admin-user { display: flex; align-items: center; gap: 7px; }.admin-content__body { padding: 30px; }.admin-stat { display: flex; align-items: center; gap: 15px; padding: 22px; background: #fff; border-radius: 7px; box-shadow: 0 2px 8px rgb(0 0 0 / .04); }.admin-stat>i { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #536dfe; background: #eef0ff; font-size: 24px; }.admin-stat span { color: #718096; font-size: 13px; }.admin-stat h4 { margin: 5px 0 0; }.sidebar-overlay { position: fixed; z-index: 19; inset: 0; visibility: hidden; opacity: 0; background: rgb(0 0 0 / .45); transition: opacity .25s, visibility .25s; }
@media(min-width:992px){.admin-body:not(.sidebar-is-open) .sidebar{transform:translateX(-100%)}.admin-body:not(.sidebar-is-open) .admin-content{width:100%;margin-left:0}.admin-body.sidebar-is-open .res-sidebar-close-btn{display:block}}
.admin-page-heading { display:flex; align-items:end; justify-content:space-between; margin-bottom:24px; }.admin-page-heading h3 { margin:0; color:#273444; font-size:25px; }.admin-page-heading span { color:#8492a6; font-size:13px; }.admin-card { height:100%; padding:22px; border:0; border-radius:7px; background:#fff; box-shadow:0 2px 8px rgb(0 0 0 / .04); }.admin-card h5 { margin:0 0 18px; color:#273444; font-size:16px; font-weight:600; }.widget-card-wrapper { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }.widget-card { display:flex; align-items:center; justify-content:space-between; min-height:83px; padding:14px; color:#fff; text-decoration:none; border-radius:5px; }.widget-card:hover { color:#fff; transform:translateY(-1px); }.widget-card-left { display:flex; align-items:center; gap:11px; }.widget-card-left>i { font-size:27px; }.widget-card strong,.widget-card small { display:block; }.widget-card strong { font-size:18px; }.widget-card small { margin-top:3px; font-size:11px; }.bg--success { background:#2fb38d; }.bg--danger { background:#e85a6f; }.bg--primary { background:#536dfe; }.widget-card.bg--warning { background:#e9a73e; }.admin-table { margin:0; font-size:13px; }.admin-table th { color:#718096; font-weight:600; background:#f8fafc; }.admin-table td,.admin-table th { padding:13px 10px; vertical-align:middle; }.admin-link { color:#536dfe; font-size:13px; text-decoration:none; }.empty-admin-product { display:grid; min-height:190px; place-content:center; text-align:center; color:#97a4b2; }.empty-admin-product i { margin-bottom:7px; font-size:42px; }.empty-admin-product p { margin:0; font-size:13px; }.date-report { padding:7px 10px; color:#637381; border:1px solid #e4e9ef; border-radius:4px; background:#fff; font-size:12px; }.admin-chart { position:relative; display:grid; min-height:230px; place-content:center; overflow:hidden; color:#97a4b2; text-align:center; }.admin-chart>span { position:absolute; top:30px; left:4px; color:#97a4b2; font-size:11px; }.admin-chart p { z-index:1; margin:0; font-size:13px; }.chart-grid { position:absolute; inset:26px 0 30px; background:repeating-linear-gradient(to bottom,transparent 0,transparent 44px,#edf1f5 45px); border-bottom:1px solid #edf1f5; }.admin-pie>div { display:grid; min-height:170px; place-content:center; color:#9aa8b6; text-align:center; }.admin-pie i { display:grid; width:80px; height:80px; place-items:center; margin:auto; border:10px solid #e7edff; border-radius:50%; color:#536dfe; font-size:28px; }.admin-pie p { margin-top:10px; font-size:13px; }.admin-pie small { color:#97a4b2; font-size:11px; font-weight:400; }
@media(max-width:991px){.sidebar{transform:translateX(-100%)}.sidebar.open{transform:translateX(0)}.sidebar-is-open .sidebar-overlay{visibility:visible;opacity:1}.res-sidebar-close-btn{display:block}.admin-content{width:100%;margin-left:0}.version-info{position:static;padding-bottom:16px}.admin-topbar{padding:0 16px}.admin-search{display:none}}
@media screen and (max-width: 575px) { .track--card .card-body { padding: 24px; } .order-track-form { gap: 8px; padding: 6px; } .order-track-form .btn { padding: 11px 20px; } .order-track-step { padding: 16px; } }

/* cart sidebar end*/

/* quantity input end */

.product-details-info__header .wishlist-btn.active {
  color: hsl(var(--black));
}

/* Separate the second row of header categories from the first row. */
@media screen and (min-width: 1200px) {
  .main-menu .navigation > li.dropdown > .megamenu .row > .column:nth-child(n + 5) {
    margin-top: 22px;
  }
}

.shop-details .details-info {
  max-width: none;
}

.shop-details .details-info__item {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.shop-details .details-info__item .label,
.shop-details .details-info__item .value {
  white-space: nowrap;
}

.shop-details .details-info__item .label {
  width: auto;
  gap: 6px;
}

.cart__item__content .cart-item-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart__item__content .cart-item-bottom__content {
  min-width: 0;
}

.cart__item__content .cart-option-info {
  margin: 2px 0 0;
  white-space: nowrap;
}

.category-seo-intro__text {
  margin: 0;
  color: #5c6470;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .category-seo-intro {
    display: none;
  }
}

.category-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-related__item {
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 999px;
  color: #333;
  font-size: 14px;
  transition: 0.2s ease;
}

.category-related__item:hover {
  color: #fff;
  background: hsl(var(--base));
  border-color: hsl(var(--base));
}

.custom-dropdown__selected .thumb,
.custom-dropdown__list-item .thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.custom-dropdown__selected .thumb img,
.custom-dropdown__list-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.shipping-method-option .shipping-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shipping-method-option .shipping-method-note {
  display: block;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.shipping-info-note,
.shipping-summary-note small {
  color: #666;
  line-height: 1.5;
}

.shipping-summary-note {
  padding: 12px 14px;
  border: 1px dashed hsl(var(--base) / 0.35);
  border-radius: 10px;
  background: #fff8fb;
}

/* Floating contact buttons */
.contact-float {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 997;
  transform: translateY(-50%);
}

.contact-float__strip {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid hsl(var(--border-color));
  border-right: none;
  border-radius: 14px 0 0 14px;
  background: hsl(var(--white));
  box-shadow: -6px 10px 28px rgb(0 0 0 / 0.12);
}

.contact-float__btn {
  --float-size: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--float-size);
  height: var(--float-size);
  color: #fff;
  text-decoration: none;
  transition: filter 0.2s ease, padding-right 0.2s ease;
}

.contact-float__btn + .contact-float__btn {
  border-top: 1px solid hsl(var(--border-color) / 0.65);
}

.contact-float__btn i {
  font-size: 22px;
  line-height: 1;
}

.contact-float__btn--whatsapp {
  background: linear-gradient(160deg, #25d366 0%, #1ebe5d 100%);
}

.contact-float__btn--phone {
  background: linear-gradient(160deg, hsl(var(--base)) 0%, hsl(var(--base-d-200)) 100%);
}

.contact-float__btn:hover,
.contact-float__btn:focus-visible {
  color: #fff;
  filter: brightness(1.06);
}

.contact-float__btn--whatsapp::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgb(255 255 255 / 0.35);
}

.contact-float__btn--phone::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgb(255 255 255 / 0.35);
}

.contact-float__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 12px;
  border-radius: 8px;
  background: hsl(var(--heading-color));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.14);
}

.contact-float__label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  background: hsl(var(--heading-color));
  transform: translateY(-50%) rotate(45deg);
}

.contact-float__btn:hover .contact-float__label,
.contact-float__btn:focus-visible .contact-float__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media screen and (max-width: 991px) {
  .contact-float {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 575px) {
  .contact-float {
    top: 50%;
    transform: translateY(-50%);
  }

  .contact-float__btn {
    --float-size: 44px;
  }

  .contact-float__btn i {
    font-size: 20px;
  }

  .contact-float__label {
    display: none;
  }
}

.error-page__card .card-body {
  padding: clamp(32px, 5vw, 64px) 24px;
}

.error-page__code {
  font-size: clamp(72px, 14vw, 120px);
  line-height: 1;
  font-weight: 800;
  color: hsl(var(--base));
  margin-bottom: 12px;
}

.error-page__title {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 12px;
}

.error-page__text {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #666;
  line-height: 1.7;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}