/*!*****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js!./views/src/scss/main.scss ***!
  \*****************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
}

@font-face {
  font-family: "KIPSTA-23-26-INLINE";
  src: url(../13c22707e941643b5c31.woff2) format("woff2"), url(../a397b2eb253cedd625da.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.rw-cart-icon-wrapper {
  position: relative;
  display: inline-block;
}
.rw-cart-icon-wrapper .rw-cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.rw-cart-icon-wrapper .rw-cart-trigger:hover {
  opacity: 0.7;
}
.rw-cart-icon-wrapper .rw-cart-trigger svg {
  width: 24px;
  height: 24px;
}
.rw-cart-icon-wrapper .rw-cart-trigger .rw-cart-qty {
  position: absolute;
  top: 0;
  right: 0;
  background: #28a745;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
}

.rw-sliding-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.rw-sliding-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.rw-sliding-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.rw-sliding-cart.active {
  transform: translateX(0);
}
.rw-sliding-cart .rw-cart-header {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.rw-sliding-cart .rw-cart-header .rw-cart-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  padding-right: 90px;
}
.rw-sliding-cart .rw-cart-header .rw-cart-actions-header {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rw-sliding-cart .rw-cart-header .rw-cart-empty,
.rw-sliding-cart .rw-cart-header .rw-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 4px;
}
.rw-sliding-cart .rw-cart-header .rw-cart-empty svg,
.rw-sliding-cart .rw-cart-header .rw-cart-close svg {
  width: 20px;
  height: 20px;
}
.rw-sliding-cart .rw-cart-header .rw-cart-empty {
  color: #dc3545;
}
.rw-sliding-cart .rw-cart-header .rw-cart-empty:hover {
  background: rgba(220, 53, 69, 0.1);
}
.rw-sliding-cart .rw-cart-header .rw-cart-close {
  background: var(--link-color);
}
.rw-sliding-cart .rw-cart-header .rw-cart-close:hover {
  background: var(--link-color-hover);
}
.rw-sliding-cart .rw-cart-header .rw-cart-close svg {
  width: 20px;
  height: 20px;
}
.rw-sliding-cart .rw-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.rw-sliding-cart .rw-cart-body .rw-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
  transition: background 0.2s;
}
.rw-sliding-cart .rw-cart-body .rw-section-header:hover {
  opacity: 0.85;
}
.rw-sliding-cart .rw-cart-body .rw-section-header .rw-section-header-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.rw-sliding-cart .rw-cart-body .rw-section-header .rw-section-header-text svg {
  flex-shrink: 0;
}
.rw-sliding-cart .rw-cart-body .rw-section-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.rw-sliding-cart .rw-cart-body .rw-section-body {
  overflow: hidden;
  max-height: 500px;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
  opacity: 1;
}
.rw-sliding-cart .rw-cart-body .rw-section--collapsed .rw-section-chevron {
  transform: rotate(-90deg);
}
.rw-sliding-cart .rw-cart-body .rw-section--collapsed .rw-section-body {
  max-height: 0;
  opacity: 0;
  margin-top: 0 !important;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar {
  margin-bottom: 10px;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-header {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-header strong {
  color: #15803d;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-header--done {
  background: #f0fdf4;
  color: #166534;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-bar {
  position: relative;
  height: 55px;
  padding: 0 16px;
  margin-top: 10px;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-bar-track {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid;
  background: white;
  transition: all 0.3s ease;
}
.rw-fs-dot--locked .rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-circle {
  border-color: #d1d5db;
}
.rw-fs-dot--reached .rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-circle {
  border-color: #28a745;
  background: #28a745;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-amount {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: #374151;
}
.rw-sliding-cart .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-label {
  font-size: 8px;
  color: #6b7280;
  white-space: nowrap;
  text-align: center;
  max-width: 110px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-loading {
  text-align: center;
  padding: 40px 20px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-loading .spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product:last-child {
  border-bottom: none;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-remove {
  position: absolute;
  top: 15px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: white;
  background: #272727;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-remove:hover {
  color: #dc3545;
  background: #414141;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media all and (max-width: 480px) {
  .rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-image {
    width: 60px;
    height: 60px;
  }
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 24px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-attributes {
  margin: 0 0 8px;
  font-size: 12px;
  color: #666;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  color: #333;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-btn:hover {
  background: #f5f5f5;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-input {
  width: 50px;
  padding: 6px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
  pointer-events: none;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-input::-webkit-outer-spin-button, .rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.rw-sliding-cart .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-price {
  font-weight: 600;
  font-size: 16px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  margin-bottom: 10px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount:last-child {
  margin-bottom: 0;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  color: #1e40af;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-info svg {
  flex-shrink: 0;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-info .rw-discount-name {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-info .rw-discount-value {
  font-size: 14px;
  font-weight: 600;
  color: #28a745;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s;
  border-radius: 4px;
  margin-left: 8px;
}
.rw-sliding-cart .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-remove:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #dc3545;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-loader .rw-crosssell-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products {
  transition: opacity 0.3s ease;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product h5 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product .rw-crosssell-price {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product .rw-crosssell-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product .rw-crosssell-add:hover {
  transform: scale(1.1);
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper {
  margin: 0;
  padding: 0 30px;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-slide {
  height: auto;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-slide .rw-crosssell-product {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-slide .rw-crosssell-product a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-slide .rw-crosssell-product img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f8f9fa;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev,
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev.swiper-button-disabled,
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev::after,
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next::after {
  font-size: 12px;
  font-weight: bold;
  color: #000;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev {
  left: 0;
}
.rw-sliding-cart .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next {
  right: 0;
}
.rw-sliding-cart .rw-cart-footer {
  padding: 20px;
  border-top: 1px solid #ddd;
  background: #f8f9fa;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo .rw-promo-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo .rw-promo-input::-moz-placeholder {
  color: #999;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo .rw-promo-input::placeholder {
  color: #999;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo .rw-promo-button {
  padding: 10px 16px;
  background: var(--link-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-promo .rw-promo-button:hover {
  opacity: 0.8;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer {
  margin-bottom: 15px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  margin-bottom: 8px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount:last-child {
  margin-bottom: 0;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  color: #1e40af;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-info svg {
  flex-shrink: 0;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-info .rw-discount-name {
  font-size: 13px;
  font-weight: 500;
  flex: 1;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-info .rw-discount-value {
  font-size: 13px;
  font-weight: 600;
  color: #28a745;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s;
  border-radius: 4px;
  margin-left: 8px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-remove:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #dc3545;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}
@media all and (max-width: 768px) {
  .rw-sliding-cart .rw-cart-footer .rw-cart-shipping,
  .rw-sliding-cart .rw-cart-footer .rw-cart-subtotal {
    font-size: 13px;
    padding: 5px 0;
  }
}
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping .rw-shipping-label,
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping .rw-subtotal-label,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal .rw-shipping-label,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal .rw-subtotal-label {
  color: #666;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping .rw-shipping-value,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal .rw-shipping-value {
  font-weight: 500;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping .rw-shipping-value.free,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal .rw-shipping-value.free {
  color: #28a745;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-shipping .rw-subtotal-value,
.rw-sliding-cart .rw-cart-footer .rw-cart-subtotal .rw-subtotal-value {
  font-weight: 600;
  font-size: 16px;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-actions {
  margin-top: 15px;
}
@media all and (max-width: 768px) {
  .rw-sliding-cart .rw-cart-footer .rw-cart-actions {
    margin-top: 5px;
  }
}
.rw-sliding-cart .rw-cart-footer .rw-cart-actions .rw-checkout-button {
  width: 100%;
  padding: 16px;
  background: var(--bs-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.3s;
  justify-content: center;
  text-transform: uppercase;
}
.rw-sliding-cart .rw-cart-footer .rw-cart-actions .rw-checkout-button:hover {
  opacity: 0.9;
}
@media all and (max-width: 768px) {
  .rw-sliding-cart .rw-cart-footer .rw-cart-actions .rw-checkout-button {
    font-size: 14px;
    padding: 10px;
  }
}
.rw-sliding-cart .rw-cart-footer .rw-cart-actions .rw-free-shipping-info {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.rw-confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rw-confirm-modal .rw-confirm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.rw-confirm-modal .rw-confirm-dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}
.rw-confirm-modal .rw-confirm-header {
  padding: 32px 32px 24px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.rw-confirm-modal .rw-confirm-header svg {
  width: 64px;
  height: 64px;
  color: #dc3545;
  opacity: 0.9;
}
.rw-confirm-modal .rw-confirm-body {
  padding: 32px;
  text-align: center;
}
.rw-confirm-modal .rw-confirm-body .rw-confirm-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
}
.rw-confirm-modal .rw-confirm-body .rw-confirm-message {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.rw-confirm-modal .rw-confirm-actions {
  display: flex;
  gap: 12px;
  padding: 0 32px 32px;
}
.rw-confirm-modal .rw-confirm-actions button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rw-confirm-modal .rw-confirm-actions button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-cancel {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  justify-content: center;
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-cancel:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-cancel:active {
  transform: translateY(0);
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-confirm {
  background: #dc3545;
  color: #fff;
  justify-content: center;
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-confirm:hover {
  background: rgb(210.9493670886, 36.5506329114, 53.2594936709);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.rw-confirm-modal .rw-confirm-actions .rw-confirm-confirm:active {
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .rw-sliding-cart {
    max-width: 100%;
  }
  .rw-confirm-modal .rw-confirm-dialog {
    max-width: 90%;
  }
  .rw-confirm-modal .rw-confirm-header {
    padding: 24px 24px 16px;
  }
  .rw-confirm-modal .rw-confirm-header svg {
    width: 56px;
    height: 56px;
  }
  .rw-confirm-modal .rw-confirm-body {
    padding: 0 24px 24px;
  }
  .rw-confirm-modal .rw-confirm-body .rw-confirm-title {
    font-size: 20px;
  }
  .rw-confirm-modal .rw-confirm-body .rw-confirm-message {
    font-size: 14px;
  }
  .rw-confirm-modal .rw-confirm-actions {
    padding: 0 24px 24px;
    flex-direction: column;
  }
  .rw-confirm-modal .rw-confirm-actions button {
    width: 100%;
  }
}
.rw-gift-tiers-section {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.rw-gift-header--next {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}
.rw-gift-header--next strong {
  color: #c2410c;
}
.rw-gift-header--done {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.rw-gift-bar {
  position: relative;
  padding: 0 14px;
  margin-bottom: 14px;
  margin-top: 10px;
  height: 36px;
}

.rw-gift-bar-track {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.rw-gift-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #22c55e 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.rw-gift-bar-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: 3px solid #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.rw-gift-dot {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.rw-gift-dot-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  transition: all 0.3s ease;
}
.rw-gift-dot--locked .rw-gift-dot-circle {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #9ca3af;
}
.rw-gift-dot--reached .rw-gift-dot-circle {
  background: #16a34a;
  border-color: #16a34a;
  color: white;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  animation: rw-dot-pop 0.4s ease;
}

@keyframes rw-dot-pop {
  0% {
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.rw-gift-dot-label {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}
.rw-gift-dot--locked .rw-gift-dot-label {
  color: #9ca3af;
}
.rw-gift-dot--reached .rw-gift-dot-label {
  color: #16a34a;
}

.rw-gift-rewards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rw-gift-reward {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid;
  transition: all 0.3s ease;
}

.rw-gift-reward--locked {
  background: #f9fafb;
  border-color: #e5e7eb;
  opacity: 0.65;
}

.rw-gift-reward--unlocked {
  background: #fffbeb;
  border-color: #fde68a;
}

.rw-gift-reward--active {
  background: #f0fdf4;
  border-color: #86efac;
}

.rw-gift-reward-visual {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.rw-gift-reward-img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.rw-gift-reward-placeholder {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #9ca3af;
}

.rw-gift-reward-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  color: white;
}

.rw-gift-reward-info {
  flex: 1;
  min-width: 0;
}

.rw-gift-reward-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rw-gift-reward-threshold {
  display: block;
  font-size: 10px;
  margin-top: 1px;
}
.rw-gift-reward--locked .rw-gift-reward-threshold {
  color: #9ca3af;
}
.rw-gift-reward--unlocked .rw-gift-reward-threshold {
  color: #d97706;
  font-weight: 600;
}
.rw-gift-reward--active .rw-gift-reward-threshold {
  color: #16a34a;
  font-weight: 600;
}

.rw-gift-reward-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.rw-gift-reward-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.3);
}
.rw-gift-reward-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.rw-gift-reward-added {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #dcfce7;
  color: #16a34a;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  animation: rw-gift-fade-in 0.3s ease;
}

.rw-sliding-cart.rw-dark {
  background: #1a1a1a;
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-header {
  border-bottom-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-header .rw-cart-title {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-header .rw-cart-empty {
  color: #dc3545;
}
.rw-sliding-cart.rw-dark .rw-cart-header .rw-cart-empty:hover {
  background: rgba(220, 53, 69, 0.15);
}
.rw-sliding-cart.rw-dark .rw-cart-header .rw-cart-close svg {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-section-chevron {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-header {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.25);
  color: #86efac;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-header strong {
  color: #4ade80;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-bar-track {
  background: #2e2e2e;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-circle {
  background: #1a1a1a;
}
.rw-fs-dot--locked .rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-circle {
  border-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-amount {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-free-shipping-bar .rw-fs-dot-label {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section {
  border-bottom-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-header--next {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.25);
  color: #fdba74;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-header--next strong {
  color: #fb923c;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-header--done {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.25);
  color: #86efac;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-bar-track {
  background: #2e2e2e;
}
.rw-gift-dot--locked .rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-dot-circle {
  background: #242424;
  border-color: #3a3a3a;
  color: #a0a0a0;
}
.rw-gift-dot--locked .rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-dot-label {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward--locked {
  background: #242424;
  border-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward--unlocked {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward--active {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.2);
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward-name {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward-placeholder {
  background: #1a1a1a;
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward-img {
  border-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-gift-tiers-section .rw-gift-reward-added {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-empty {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-loading {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-loading .spinner {
  border-color: #2e2e2e;
  border-top-color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product {
  border-bottom-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-name {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-attributes {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity {
  border-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-btn {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-btn:hover {
  background: #2e2e2e;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-quantity .rw-qty-input {
  color: #e8e8e8;
  background: transparent;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-products .rw-cart-product .rw-product-details .rw-product-footer .rw-product-price {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-discounts {
  border-top-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-discounts .rw-cart-discount {
  background: rgba(30, 64, 175, 0.15);
  border-color: rgba(30, 64, 175, 0.3);
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-info {
  color: #93b4f5;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-remove {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-cart-discounts .rw-cart-discount .rw-discount-remove:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #dc3545;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section {
  border-top-color: #3a3a3a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-title {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-spinner {
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product {
  border-color: #3a3a3a;
  background: #242424;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product a {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product img {
  background: #2e2e2e;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product .rw-crosssell-price {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-products .rw-crosssell-product .rw-crosssell-add {
  background: #e8e8e8;
  color: #1a1a1a;
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev,
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next {
  background: #242424;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-prev::after,
.rw-sliding-cart.rw-dark .rw-cart-body .rw-crosssell-section .rw-crosssell-swiper .swiper-button-next::after {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-footer {
  border-top-color: #3a3a3a;
  background: #242424;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-promo .rw-promo-input {
  background: #1a1a1a;
  border-color: #3a3a3a;
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-promo .rw-promo-input::-moz-placeholder {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-promo .rw-promo-input::placeholder {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount {
  background: rgba(30, 64, 175, 0.15);
  border-color: rgba(30, 64, 175, 0.3);
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-info {
  color: #93b4f5;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-remove {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-discounts-footer .rw-cart-discount .rw-discount-remove:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #dc3545;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-shipping .rw-shipping-label,
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-shipping .rw-subtotal-label,
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-subtotal .rw-shipping-label,
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-subtotal .rw-subtotal-label {
  color: #a0a0a0;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-shipping .rw-subtotal-value,
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-subtotal .rw-subtotal-value {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-shipping .rw-shipping-value,
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-subtotal .rw-shipping-value {
  color: #e8e8e8;
}
.rw-sliding-cart.rw-dark .rw-cart-footer .rw-cart-actions .rw-free-shipping-info {
  color: #a0a0a0;
}

.rw-confirm-modal.rw-dark .rw-confirm-dialog {
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.rw-confirm-modal.rw-dark .rw-confirm-header {
  background: linear-gradient(135deg, #242424 0%, #2e2e2e 100%);
}
.rw-confirm-modal.rw-dark .rw-confirm-body .rw-confirm-title {
  color: #e8e8e8;
}
.rw-confirm-modal.rw-dark .rw-confirm-body .rw-confirm-message {
  color: #a0a0a0;
}
.rw-confirm-modal.rw-dark .rw-confirm-actions .rw-confirm-cancel {
  background: #2e2e2e;
  color: #a0a0a0;
  border-color: #3a3a3a;
}
.rw-confirm-modal.rw-dark .rw-confirm-actions .rw-confirm-cancel:hover {
  background: #242424;
}
/*!********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/swiper/swiper.css ***!
  \********************************************************************************************************************************************************/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/swiper/modules/navigation.css ***!
  \********************************************************************************************************************************************************************/
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

