@charset "UTF-8";
html.nr-cart-open {
  overflow: hidden;
}

.position-cart {
  position: fixed;
  top: 150px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  width: 100%;
  padding: 0px 15px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 9;
}
@media (max-width: 700px) {
  .position-cart {
    width: 100%;
    top: 70px;
    inset-inline-end: 0px;
    margin-inline-end: 0px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .position-cart {
    width: 100%;
    top: 80px;
    inset-inline-end: 0px;
    margin-inline-end: 0px;
  }
}
@media (min-width: 1100px) and (max-width: 1700px) {
  .position-cart {
    width: 100%;
    top: 120px;
  }
}

.nr-cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  pointer-events: all;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 700px) {
  .nr-cart-button {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .nr-cart-button {
    height: 70px;
    width: 70px;
  }
}

.nr-cart-count {
  position: absolute;
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  line-height: 1.25rem;
  text-align: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  left: 10px;
  bottom: 10px;
  font-size: 10px;
}
@media (max-width: 700px) {
  .nr-cart-count {
    font-size: 0.65rem;
    width: 1rem;
    height: 1rem;
    left: 7px;
    bottom: 7px;
  }
}

.nr-cart-drawer {
  width: 100%;
  left: 0;
  right: 0;
  padding: 0px 15px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  position: absolute;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr auto;
  pointer-events: none; /* blocked by default */
}
@media (min-width: 1100px) and (max-width: 1700px) {
  .nr-cart-drawer {
    width: 100%;
    margin-top: 0px;
  }
}
@media (max-width: 700px) {
  .nr-cart-drawer {
    width: 100%;
    margin-top: 0px;
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .nr-cart-drawer {
    width: 100%;
    margin-top: 0px;
  }
}

.nr-cart-drawer[aria-hidden=true] {
  visibility: hidden;
}

.nr-cart-drawer[aria-hidden=false] {
  visibility: visible;
  pointer-events: auto;
}

.nr-cart-drawer__panel {
  width: min(92vw, 350px);
  background: radial-gradient(94.02% 96.07% at 70.05% 6.04%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
  transform: translateX(0);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px 0 rgba(16, 70, 131, 0.1);
  border-radius: 2px;
}

.nr-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.nr-cart-close {
  font-size: 1.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  padding: 10px;
  align-self: baseline;
}

.nr-cart-drawer__body {
  padding: 1rem;
  overflow: auto;
  flex: 1;
}

.nr-cart-empty {
  color: #777;
}

/* ===== Mini-cart reset (default Woo HTML) ===== */
#nr-cart-contents .widget_shopping_cart_content {
  direction: rtl;
} /* remove if your site is LTR */
#nr-cart-contents .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow: auto;
}

#nr-cart-contents .woocommerce-mini-cart li {
  display: flex;
  grid-template-columns: 80px 1fr 24px; /* thumb | info | remove */
  gap: 0px;
  align-items: center;
  padding: 12px 0;
  position: relative;
  gap: 20px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  padding-inline-end: 40px;
}

/* thumbnail */
#nr-cart-contents .woocommerce-mini-cart li .attachment-woocommerce_thumbnail,
#nr-cart-contents .woocommerce-mini-cart li img:not(.remove-product) {
  width: 80px;
  height: 110px; /* or auto; pick what fits your products */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  display: none;
}

/* title + qty/price */
#nr-cart-contents .woocommerce-mini-cart li .mini_cart_item > a:not(.remove) {
  grid-column: 2/3;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  color: #1a1a1a;
}

#nr-cart-contents .woocommerce-mini-cart li .quantity {
  grid-column: 2/3;
  font-size: 14px;
  color: #555;
  margin-top: 4px;
  display: inline-block;
}

/* remove “×” */
#nr-cart-contents .woocommerce-mini-cart li .remove {
  grid-column: 3/4;
  justify-self: end;
  font-size: 18px;
  line-height: 1;
  color: #999 !important;
  text-decoration: none;
  position: absolute;
  inset-inline-end: 10px;
}

#nr-cart-contents .woocommerce-mini-cart li .remove:hover {
  color: #e11d48 !important;
}

/* totals + buttons */
#nr-cart-contents .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 12px 0;
  margin: 8px 0 0;
  border-top: 2px solid #eee;
  color: #415C7F;
  font-size: 20px;
}

#nr-cart-contents .woocommerce-mini-cart__buttons {
  margin-bottom: 0px;
  display: flex;
  gap: 10px;
}
#nr-cart-contents .woocommerce-mini-cart__buttons .wc-forward {
  background-color: #415C7F;
  opacity: 0.95;
  color: white;
}
#nr-cart-contents .woocommerce-mini-cart__buttons .wc-forward:hover {
  opacity: 1;
}
#nr-cart-contents .woocommerce-mini-cart__buttons .checkout.wc-forward {
  background-color: #EE5A5A;
  border: 0px solid #EE5A5A;
}

#nr-cart-contents .woocommerce-mini-cart__buttons a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  width: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 5px;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

#nr-cart-contents .woocommerce-mini-cart__buttons .checkout {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cart-title-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0px 0px 0px;
}
.cart-title-icon h2 {
  margin: 0;
}
.cart-title-icon img {
  transform: translateY(-2px);
}

.nr-mini-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 75px;
  justify-content: center;
}

.nr-mini-qty__input {
  width: 48px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  border: 5px solid #EAF2F2;
  border-radius: 2px;
  font-size: 18px;
  color: #415C7F;
}

.nr-mini-qty__plus,
.nr-mini-qty__minus {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: none;
  background: #eef3f8;
  cursor: pointer;
}

.mini-cart__product-name {
  color: #415C7F;
  font-size: 20px;
  font-weight: 700;
  width: 75px;
  line-height: 1.1;
  width: 40%;
}

.woocommerce-Price-amount {
  color: #415C7F;
  font-size: 20px;
}

.nr-mini-cart__price {
  width: 50px;
}

.nr-cart-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.nr-cart-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: nr-spin 0.8s linear infinite;
}

@keyframes nr-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=nr-cart-drawer.css.map */