@charset "UTF-8";
/*============================================================================
#Variable
==============================================================================*/
/*============================================================================
14. POPUP CART — TRS (DESIGN.md)
==============================================================================*/
#popup-cart {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition, 0.22s ease);
}
#popup-cart.opencart {
  display: flex;
  z-index: 99999;
  pointer-events: auto;
  opacity: 1;
}

body.opacitycart::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.52);
  z-index: 9999;
}

#popup-cart-desktop,
.popup-cart__panel {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(920px, 100vw - 32px);
  max-height: calc(100dvh - 32px);
  height: auto;
  margin: 0 auto;
  position: relative;
  background: var(--color-surface-elevated, #fffcf9);
  box-shadow: var(--shadow-subtle, 0 8px 24px rgba(28, 25, 23, 0.08));
  border-radius: 0;
  color: var(--color-text, #1c1917);
  font-family: var(--font-body, Roboto, sans-serif);
  overflow: hidden;
}

.popup-cart__header,
#popup-cart-desktop .title-popup-cart {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3, 12px);
  margin: 0;
  padding: var(--space-5, 20px) var(--space-6, 24px);
  background: var(--color-green-500, #003e29);
  color: #fff;
  position: relative;
}

.popup-cart__success-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--color-green-400, #72cd5b);
  font-variation-settings: "FILL" 1;
}

.popup-cart__notice,
#popup-cart-desktop .your_product {
  flex: 1;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, Roboto, sans-serif);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
}

#popup-cart-desktop .cart-popup-name {
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-weight: 600;
}
#popup-cart-desktop .cart-popup-name a {
  color: var(--color-green-300, #9de77c);
  text-decoration: none;
}
#popup-cart-desktop .cart-popup-name a:hover {
  color: #fff;
  text-decoration: underline;
}

.popup-cart__close,
.quickview-close.close-pop {
  position: absolute;
  top: var(--space-4, 16px);
  right: var(--space-4, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  transition: background var(--transition, 0.22s ease), border-color var(--transition, 0.22s ease);
}
.popup-cart__close .material-symbols-rounded,
.quickview-close.close-pop .material-symbols-rounded {
  font-size: 20px;
}
.popup-cart__close .icon-close,
.quickview-close.close-pop .icon-close {
  display: none;
}
.popup-cart__close:hover,
.quickview-close.close-pop:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.popup-cart__body,
#popup-cart-desktop .wrap_popup {
  flex: 1 1 auto;
  min-height: 0;
  padding: var(--space-5, 20px) var(--space-6, 24px) var(--space-6, 24px);
  width: auto;
  float: none;
  overflow: auto;
}

.popup-cart__content,
#popup-cart-desktop .content-popup-cart {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.popup-cart__summary,
#popup-cart-desktop .title-quantity-popup {
  margin: 0 0 var(--space-4, 16px);
  padding: 0;
  background: transparent;
}

.popup-cart__cart-link,
#popup-cart-desktop .cart_status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body, Roboto, sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-secondary, #44403c);
  cursor: pointer;
  transition: color var(--transition, 0.22s ease);
}
.popup-cart__cart-link .cart-popup-count,
#popup-cart-desktop .cart_status .cart-popup-count {
  color: var(--color-green-500, #003e29);
  font-weight: 700;
}
.popup-cart__cart-link:hover,
#popup-cart-desktop .cart_status:hover {
  color: var(--color-green-500, #003e29);
}

.popup-cart__thead,
#popup-cart-desktop .thead-popup {
  display: grid;
  grid-template-columns: 72px minmax(140px, 36ch) 88px 104px 96px;
  gap: 0;
  border: 1px solid var(--color-border, #e7e5e4);
  border-bottom: none;
  background: var(--color-bg-muted, #f5f3ef);
}

.popup-cart__col {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted, #6e6863);
  text-align: center;
}
.popup-cart__col--product, .popup-cart__col--info {
  text-align: left;
  padding-left: 16px;
}
.popup-cart__col--thumb {
  padding-left: 12px;
}

.popup-cart__tbody,
#popup-cart-desktop .tbody-popup {
  width: 100%;
  height: auto;
  max-height: min(40vh, 280px);
  overflow: auto;
  border: 1px solid var(--color-border, #e7e5e4);
  border-top: none;
  background: var(--color-surface, #fff);
}
.popup-cart__tbody::-webkit-scrollbar,
#popup-cart-desktop .tbody-popup::-webkit-scrollbar {
  width: 6px;
}
.popup-cart__tbody::-webkit-scrollbar-thumb,
#popup-cart-desktop .tbody-popup::-webkit-scrollbar-thumb {
  background: var(--color-border, #e7e5e4);
  border-radius: 0;
}

#popup-cart-desktop .item-popup {
  display: grid;
  grid-template-columns: 72px minmax(140px, 36ch) 88px 104px 96px;
  align-items: center;
  border-bottom: 1px solid var(--color-border-subtle, #f0eeeb);
}
#popup-cart-desktop .item-popup:last-child {
  border-bottom: none;
}
#popup-cart-desktop .item-popup > div {
  float: none !important;
  width: auto !important;
  height: auto !important;
  min-height: 0;
  padding: 14px 12px;
  display: flex !important;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: none !important;
}
#popup-cart-desktop .item-popup .popup-cart__col--info,
#popup-cart-desktop .item-popup .fix_info {
  align-items: flex-start;
}
#popup-cart-desktop .item-popup .item-image {
  padding: 0;
  float: none;
  width: 72px;
}
#popup-cart-desktop .item-popup .item-image .product-image img {
  display: block;
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--color-border-subtle, #f0eeeb);
  border-radius: 0;
}
#popup-cart-desktop .item-popup .item-info {
  float: none;
  width: 100%;
  margin: 0;
}
#popup-cart-desktop .item-popup .item-info p {
  margin: 0 0 4px;
}
#popup-cart-desktop .item-popup .item-info .item-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-text, #1c1917);
  text-decoration: none;
  white-space: normal;
}
#popup-cart-desktop .item-popup .item-info .item-name a:hover {
  color: var(--color-green-500, #003e29);
}
#popup-cart-desktop .item-popup .item-info .variant-title-popup {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-secondary, #44403c);
}
#popup-cart-desktop .item-popup .item-info .remove-item-cart {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-muted, #6e6863);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#popup-cart-desktop .item-popup .item-info .remove-item-cart:hover {
  color: var(--color-red-500, #a41900);
  text-decoration: none;
}
#popup-cart-desktop .item-popup .item-info .add_sus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-green-500, #003e29) !important;
}
#popup-cart-desktop .item-popup .item-info .popup-cart__variant-id {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#popup-cart-desktop .item-popup .item-price .price,
#popup-cart-desktop .item-popup .cart-price .price {
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-green-500, #003e29);
}
#popup-cart-desktop .item-popup .compare-price {
  font-size: 12px;
  color: var(--color-muted, #6e6863);
  text-decoration: line-through;
}

.popup-cart__qty,
#popup-cart-desktop .qty_h {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border, #e7e5e4);
  border-radius: 0;
  overflow: hidden;
}

#popup-cart-desktop .items-count {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--color-bg-muted, #f5f3ef);
  color: var(--color-text, #1c1917);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition, 0.22s ease);
}
#popup-cart-desktop .items-count:hover:not(:disabled) {
  background: var(--color-bg-warm, #f0ebe2);
}
#popup-cart-desktop .items-count:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#popup-cart-desktop .number-sidebar {
  width: 40px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-left: 1px solid var(--color-border, #e7e5e4);
  border-right: 1px solid var(--color-border, #e7e5e4);
  border-radius: 0;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: var(--color-text, #1c1917);
  float: none;
}

.popup-cart__footer,
#popup-cart-desktop .tfoot-popup {
  width: auto;
  flex-shrink: 0;
  float: none;
  clear: both;
  padding-top: var(--space-5, 20px);
  border-top: 1px solid var(--color-border-subtle, #f0eeeb);
}

.popup-cart__totals,
#popup-cart-desktop .tfoot-popup-1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4, 16px);
  padding: 0 0 var(--space-4, 16px);
}

.popup-cart__total-line,
#popup-cart-desktop .popup-total {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-secondary, #44403c);
  text-align: right;
}
.popup-cart__total-line .total-price,
#popup-cart-desktop .popup-total .total-price {
  margin-left: 8px;
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-500, #003e29);
}

.popup-cart__actions,
#popup-cart-desktop .tfoot-popup-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-3, 12px);
}
.popup-cart__actions a.button,
#popup-cart-desktop .tfoot-popup-2 a.button {
  float: none;
  margin: 0;
  width: auto;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
}

.footer-popup {
  margin-top: var(--space-3, 12px);
}

@media (max-width: 900px) {
  #popup-cart-desktop,
  .popup-cart__panel {
    width: min(100%, 100vw - 32px);
    max-width: none;
  }
  .popup-cart__content,
  #popup-cart-desktop .content-popup-cart {
    width: 100%;
  }
  .popup-cart__thead,
  #popup-cart-desktop .thead-popup {
    grid-template-columns: 64px minmax(120px, 1fr) 88px;
  }
  .popup-cart__col--price,
  .popup-cart__col--qty,
  #popup-cart-desktop .thead-popup .popup-cart__col--price,
  #popup-cart-desktop .thead-popup .popup-cart__col--qty {
    display: none;
  }
  #popup-cart-desktop .item-popup {
    grid-template-columns: 64px minmax(120px, 1fr) 88px;
    grid-template-areas: "thumb info total" "thumb qty total";
  }
  #popup-cart-desktop .item-popup .popup-cart__col--thumb {
    grid-area: thumb;
  }
  #popup-cart-desktop .item-popup .popup-cart__col--info {
    grid-area: info;
  }
  #popup-cart-desktop .item-popup .popup-cart__col--price {
    display: none;
  }
  #popup-cart-desktop .item-popup .popup-cart__col--qty {
    grid-area: qty;
    align-items: flex-start;
  }
  #popup-cart-desktop .item-popup .popup-cart__col--total {
    grid-area: total;
    align-items: flex-end;
  }
  .popup-cart__actions a.button {
    flex: 1 1 100%;
    min-width: 0;
  }
}
/* Mobile add-to-cart confirmation */
#popupCartModal {
  padding-right: 0 !important;
  z-index: 10000;
}
@media (max-width: 767px) {
  #popupCartModal {
    top: 50px !important;
  }
}
#popupCartModal .modal-dialog {
  transform: none;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(480px, 100vw - 24px);
  margin: 16px auto;
  border-radius: 0;
}
#popupCartModal .modal-content {
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 1px solid var(--color-border-subtle, #f0eeeb);
  border-radius: 0;
  box-shadow: var(--shadow-subtle, 0 8px 24px rgba(28, 25, 23, 0.08));
  overflow: hidden;
  background: var(--color-surface-elevated, #fffcf9);
}
#popupCartModal .modal-title,
#popupCartModal h3 {
  margin: 0;
  padding: var(--space-4, 16px) var(--space-5, 20px);
  border-bottom: 1px solid var(--color-border-subtle, #f0eeeb);
  background: var(--color-green-500, #003e29);
  color: #fff;
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
#popupCartModal .modal-title .fa,
#popupCartModal h3 .fa {
  color: var(--color-green-400, #72cd5b);
  margin-right: 8px;
}
#popupCartModal button.close {
  position: absolute !important;
  top: 10px;
  right: 10px;
  opacity: 1;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
}
#popupCartModal button.close span {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
#popupCartModal .modal-body {
  padding: var(--space-5, 20px);
  border-bottom: 1px solid var(--color-border-subtle, #f0eeeb);
}
#popupCartModal .media {
  display: flex;
  gap: var(--space-4, 16px);
  align-items: flex-start;
}
#popupCartModal .thumb-1x1,
#popupCartModal .thumb_img {
  flex-shrink: 0;
  width: 88px;
  border: 1px solid var(--color-border-subtle, #f0eeeb);
  border-radius: 0;
}
#popupCartModal .thumb-1x1 img,
#popupCartModal .thumb_img img {
  display: block;
  width: 100%;
  height: auto;
}
#popupCartModal .body_content {
  flex: 1;
  min-width: 0;
  float: none;
  width: auto;
  padding: 0;
}
#popupCartModal .product-title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-text, #1c1917);
}
#popupCartModal .product-new-price,
#popupCartModal .variant_title {
  font-size: 14px;
  color: var(--color-text-secondary, #44403c);
}
#popupCartModal .product-new-price span {
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-weight: 700;
  color: var(--color-green-500, #003e29);
}
#popupCartModal .modal-right {
  padding: var(--space-4, 16px) var(--space-5, 20px) var(--space-5, 20px);
  text-align: left;
}
#popupCartModal .right_title,
#popupCartModal h4.title {
  margin: 0 0 var(--space-4, 16px);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary, #44403c);
}
#popupCartModal .right_title a,
#popupCartModal h4.title a {
  color: var(--color-green-500, #003e29);
  text-decoration: none;
}
#popupCartModal .right_title a:hover,
#popupCartModal h4.title a:hover {
  text-decoration: underline;
}
#popupCartModal .checkout_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: var(--btn-padding-y, 12px) var(--btn-padding-x, 22px);
  border: 1px solid transparent;
  border-radius: var(--radius-btn, 0);
  background: var(--color-green-400, #72cd5b);
  color: var(--color-green-500, #003e29);
  font-family: var(--font-title, "TheRightSpot", sans-serif);
  font-size: var(--btn-font-size, 14px);
  font-weight: var(--btn-font-weight, 700);
  text-transform: var(--btn-text-transform, uppercase);
  letter-spacing: var(--btn-letter-spacing, 0.03em);
  text-decoration: none;
  float: none;
}
#popupCartModal .checkout_button:hover {
  background: var(--color-green-500, #003e29);
  color: #fff;
}

/*============================================================================
7. POPUP
==============================================================================*/
.ajax-load {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  opacity: 0;
  visibility: hidden;
}
.ajax-load.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.awe-popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 0;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms ease-in-out;
}
.awe-popup .overlay {
  background-color: rgba(33, 33, 33, 0.8);
  color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
}
.awe-popup .content {
  position: relative;
  max-width: 1140px;
  min-width: 1140px;
  padding: 25px 28px;
  max-height: 0;
  text-align: left;
  opacity: 0;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  position: relative;
  padding: 25px 28px;
  max-height: 0;
  text-align: left;
  opacity: 0;
  margin: 0 auto;
  background: #fff;
}
.awe-popup.active {
  visibility: visible;
  opacity: 1;
  top: 0 !important;
  height: auto;
  width: auto;
}
.awe-popup.active .content {
  max-height: calc(100% - 60px);
  opacity: 1;
  background: transparent;
  padding: 0;
}
.awe-popup.active .content .info {
  background: #fff;
  min-width: 500px;
}
.awe-popup.active .overlay {
  width: 100%;
  height: 100%;
}

.close-window {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 8040;
  color: #fff;
  text-align: center;
  line-height: 25px;
  border-radius: 0;
}
.close-window .icon-close {
  background-image: url(//bizweb.dktcdn.net/100/074/637/themes/983092/assets/i-close-white.svg?1739762456674);
  background-repeat: no-repeat;
  width: 20px;
  height: 14px;
  display: block;
  background-size: contain;
  position: absolute;
  top: -15px;
  right: -30px;
}

.awe-popup.loading {
  z-index: 9998;
}
.awe-popup.loading .loader {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translateX(-50%);
  transition: all 300ms ease-in-out;
}
.awe-popup.loaded-content .loader {
  display: none;
}
.awe-popup.addcart-popup .content {
  min-width: auto;
}

.product-popup .product-image {
  float: left;
  margin: 0 20px 0 0;
}
.product-popup .product-info {
  overflow: hidden;
  position: relative;
}
.product-popup .product-info p {
  margin-bottom: 0px;
  line-height: 24px;
}

.product-popup .popup-title {
  padding-left: 15px;
  border-radius: 0;
}
.product-popup .popup-title i {
  margin-right: 5px;
}
.product-popup .product-name {
  color: var(--color-green-500);
}
.product-popup .product-info p.total-money {
  margin-bottom: 15px;
}
.product-popup h3 {
  color: #52b249;
  margin-bottom: 25px;
}
.product-popup h3 .fa {
  margin-right: 4px;
}
.product-popup .pop-right h3 {
  color: #333;
}
.pop-right {
  background: #f9f9f9;
}/*# sourceMappingURL=popup.css.map */