/* Generated from nrp/public/home-shop/assets/css/home-shop.css. Do not edit home_shop_base.bundle.css directly. */
/* nrp/nrp/public/home-shop/assets/css/hero.css */
.hero-section {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-content {
  background: var(--hero-content-bg);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 16px;
  border: 1px solid var(--overlay-glass-border);
  color: var(--text-inverse);
}
.promo-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-inverse);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.promo-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-inverse);
  margin-top: 1rem;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
    border-radius: 12px;
  }
  .promo-title {
    font-size: 2rem;
  }
}

/* nrp/nrp/public/home-shop/assets/css/toolbar.css */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  width: 100% !important;
  max-width: 100% !important;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.section-title span {
  color: var(--text-accent);
}
.tools-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.search-box {
  position: relative;
  min-width: 250px;
  display: flex;
  align-items: center;
}
.search-input {
  width: 100%;
  padding: 0.50rem 1rem .50rem 2.75rem;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.2s;
  height: 48px;
  background: var(--card-bg);
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark);
}
input#product-search:focus-visible {
  outline: none;
}
.search-input::placeholder {
  color: var(--text-dark);
  opacity: 1;
}
#product-search::placeholder,
#product-search::-webkit-input-placeholder,
#product-search::-moz-placeholder,
#product-search:-ms-input-placeholder,
#product-search::-ms-input-placeholder {
  color: var(--text-dark) !important;
  opacity: 1;
}
#product-search:-webkit-autofill,
#product-search:-webkit-autofill:hover,
#product-search:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-dark);
}
.search-input:focus {
  border: 0;
  box-shadow: none;
}
.search-box .svg-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  pointer-events: none;
  z-index: 2;
}
.category-select {
  padding: 0.75rem 2.2rem 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background-color: var(--card-bg);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 14px 14px;
  color: var(--text-dark);
}
.category-select:focus {
  border-color: var(--theme-color);
}
@media (max-width: 768px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .tools-group {
    flex-direction: column;
  }
  .search-box,
  .category-select {
    width: 100%;
  }
}

/* nrp/nrp/public/home-shop/assets/css/cards.css */
.nrp-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}
.nrp-view-toggle {
  display: inline-flex;
  gap: 0.5rem;
}
.nrp-view-btn {
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}
.nrp-view-btn.is-active {
  border-color: var(--surface-accent-border);
  background: var(--surface-accent-bg);
  color: var(--surface-accent-fg);
  box-shadow: 0 6px 16px rgba(207, 171, 113, 0.25);
}
.nrp-products-grid {
  display: grid;
  grid-template-columns: repeat(var(--nrp-grid-columns, 3), minmax(0, 1fr));
  gap: 1.5rem;
}
.nrp-products-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nrp-card {
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--card-bg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.nrp-card:hover {
  border-color: var(--theme-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.nrp-card-list {
  flex-direction: row;
  align-items: stretch;
}
.nrp-card-media {
  position: relative;
  background: var(--bg-light);
  border-radius: 0;
  overflow: hidden;
  height: 280px;
  min-height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nrp-card-list .nrp-card-media {
  min-width: 220px;
  max-width: 240px;
}
.nrp-card-category-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
}
.nrp-products-grid .nrp-card .nrp-card-body > .nrp-card-category-container {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  max-width: calc(100% - 90px);
}
.nrp-products-list .nrp-card-category-container {
  position: static;
}
.nrp-card-image {
  display: block;
  height: 100%;
  width: 100%;
}
.nrp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nrp-image-skeleton {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background:
    linear-gradient(
      90deg,
      rgba(120, 120, 120, 0.08),
      rgba(120, 120, 120, 0.16),
      rgba(120, 120, 120, 0.08));
  background-size: 200% 100%;
  animation: nrp-skeleton 1.2s ease-in-out infinite;
}
.nrp-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: var(--bg-subtle, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nrp-image-placeholder-logo {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  opacity: 0.6;
}
.nrp-image-placeholder-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted, #999);
  text-align: center;
  padding: 0.5rem;
  letter-spacing: 0.03em;
}
.nrp-image-placeholder--detail {
  border-radius: 12px;
  min-height: 320px;
}
.nrp-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.nrp-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-inverse);
}
.nrp-badge-sale {
  background: var(--action-primary-bg);
  color: var(--action-primary-fg);
}
.nrp-badge-warn {
  background: var(--accent-warn);
}
.nrp-badge-muted {
  background: var(--action-primary-bg);
  color: var(--action-primary-fg);
  padding: 0.18rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.nrp-badge-cart {
  background: var(--accent-success);
}
.nrp-badge-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nrp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex: 1;
}
.nrp-products-grid .nrp-card .nrp-card-body {
  position: relative;
  padding-bottom: 6rem;
}
.nrp-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nrp-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  text-align: center;
  margin-top: 0.5rem;
  min-height: 2.6rem;
  line-height: 1.3;
  display: block;
}
.nrp-card-subtitle {
  color: var(--text-dim);
  font-size: 0.9rem;
  min-height: 2.2rem;
  line-height: 1.3;
}
.nrp-card-meta {
  display: flex;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.nrp-card-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.15rem;
  background: var(--theme-color-soft);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.4rem 0.75rem;
}
.nrp-products-grid .nrp-card-media .nrp-card-price {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--ink-overlay);
  color: var(--text-inverse);
  border: 2px solid var(--theme-color, #cfab71);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.nrp-card-contact-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-overlay);
  color: var(--text-inverse);
  border: 2px solid var(--theme-color, #cfab71);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nrp-card-contact-btn:hover {
  background: var(--ink-overlay-strong);
  transform: scale(1.05);
}
.nrp-card-contact-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.nrp-card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  background: var(--surface-accent-bg);
  border: 1px solid var(--surface-accent-border);
  border-radius: 999px;
  color: var(--surface-accent-fg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 0.4rem;
  white-space: normal;
  line-height: 1.2;
}
.nrp-price-old {
  text-decoration: line-through;
  color: var(--state-quiet-text);
  font-weight: 600;
}
.nrp-price-badge {
  background: var(--state-sale-bg);
  color: var(--state-sale-text);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
}
.nrp-card-qty-row {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.nrp-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}
.nrp-products-grid .nrp-card .nrp-card-actions {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
}
.nrp-products-grid .nrp-card .nrp-card-qty-row {
  position: absolute;
  bottom: 3.5rem;
  left: 1.25rem;
  right: 1.25rem;
  justify-content: center;
}
@media (max-width: 900px) {
  .nrp-products-grid .nrp-card .nrp-card-qty-row {
    bottom: 4.5rem;
  }
  .nrp-products-grid .nrp-card .nrp-card-body {
    padding-bottom: 7.5rem;
  }
}
.nrp-card-actions .nrp-card-category-container {
  position: static;
  flex: 1;
  min-width: 0;
}
.nrp-card-actions .nrp-add-to-cart-btn,
.nrp-card-actions .nrp-qty-control {
  flex-shrink: 0;
  margin-left: auto;
}
.nrp-qty-simple {
  display: inline-flex;
  align-items: center;
}
.nrp-qty-simple .nrp-qty-input {
  width: 3.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  padding: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--card-bg);
  -moz-appearance: textfield;
}
.nrp-qty-simple .nrp-qty-input::-webkit-outer-spin-button,
.nrp-qty-simple .nrp-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.nrp-qty-simple .nrp-qty-input:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(207, 171, 113, 0.2);
}
.nrp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.nrp-qty button {
  background: var(--card-bg);
  border: none;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-dark);
}
.nrp-qty-input {
  width: 3rem;
  border: none;
  text-align: center;
  padding: 0.45rem 0.2rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  -moz-appearance: textfield;
}
.nrp-qty-input::-webkit-outer-spin-button,
.nrp-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.nrp-add-to-cart-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--text-inverse);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
}
.nrp-add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(207, 171, 113, 0.3);
}
.nrp-add-to-cart-btn:disabled {
  background: var(--state-quick-add-disabled-bg);
  color: var(--state-disabled-text);
  cursor: not-allowed;
  box-shadow: none;
}
button.nrp-quick-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme-color, #cfab71);
  color: var(--text-deep);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(207, 171, 113, 0.25);
  padding: 0;
  flex-shrink: 0;
}
button.nrp-quick-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(207, 171, 113, 0.35);
}
button.nrp-quick-add:disabled {
  background: var(--state-quick-add-disabled-bg);
  color: var(--state-disabled-text);
  cursor: not-allowed;
  box-shadow: none;
}
.nrp-empty-state {
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--text-dark);
}
.nrp-empty-graphic {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .nrp-products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nrp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nrp-card-list {
    flex-direction: column;
  }
  .nrp-card-list .nrp-card-media {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .nrp-products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.nrp-card-qty-row .nrp-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 4px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--theme-color);
  box-shadow: none;
}
.nrp-card-qty-row .nrp-qty-control .nrp-qty-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}
.nrp-card-qty-row .nrp-qty-control .nrp-qty-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nrp-card-qty-row .nrp-qty-control .nrp-qty-input {
  width: 32px;
  height: 28px;
  min-width: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text-deep);
  line-height: 28px;
}
.nrp-card-actions .nrp-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border-radius: 999px;
  padding: 5px;
  background: var(--theme-color);
  box-shadow: 0 4px 12px rgba(207, 171, 113, 0.25);
}
.nrp-card-actions .nrp-qty-control .nrp-qty-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}
.nrp-card-actions .nrp-qty-control .nrp-qty-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}
.nrp-card-actions .nrp-qty-control .nrp-qty-input {
  width: 36px;
  height: 32px;
  min-width: 36px;
  text-align: center;
  border: none;
  border-radius: 16px;
  padding: 0;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--card-bg);
  color: var(--text-deep);
  line-height: 32px;
}

/* nrp/nrp/public/home-shop/assets/css/pagination.css */
.custom-pagination {
  width: 100%;
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.custom-pagination .pagination-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 2rem;
}
.custom-pagination #prev-btn {
  margin-right: auto;
}
.custom-pagination #next-btn {
  margin-left: auto;
}
.custom-pagination .page-btn {
  background: var(--action-primary-bg);
  border: 1px solid var(--action-primary-bg);
  color: var(--action-primary-fg);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  min-height: 48px;
  font-family: inherit;
  font-size: 0.9rem;
  white-space: nowrap;
  flex: 0 0 auto;
}
.custom-pagination .page-btn:hover:not(:disabled) {
  background: var(--action-primary-bg-hover);
  border-color: var(--action-primary-bg-hover);
  transform: translateY(-2px);
}
.custom-pagination .page-btn:disabled {
  display: none;
}
@media (max-width: 768px) {
  .custom-pagination {
    padding: 0;
  }
  .custom-pagination .pagination-container {
    gap: 1rem;
  }
  .custom-pagination .page-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* nrp/nrp/public/home-shop/assets/css/home-shop.css */
.nrp-ssr-hero-placeholder {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  background:
    linear-gradient(
      135deg,
      var(--hero-grad-start),
      var(--hero-grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
}
.nrp-ssr-hero-shape {
  width: min(90%, 1200px);
  height: 70%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.nrp-ssr-hero-title,
.nrp-ssr-hero-subtitle {
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--theme-color-muted),
      rgba(207, 171, 113, 0.6));
}
.nrp-ssr-hero-title {
  width: 60%;
  max-width: 420px;
  height: 24px;
}
.nrp-ssr-hero-subtitle {
  width: 40%;
  max-width: 320px;
  height: 12px;
}
.nrp-ssr-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.nrp-ssr-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--spinner-ring);
  border-top-color: var(--spinner-highlight);
  border-radius: 50%;
  animation: nrp-spin 0.9s linear infinite;
}
.nrp-loader-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(3px);
  z-index: 2;
  pointer-events: none;
  min-height: 300px;
}
.nrp-loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--spinner-ring);
  border-top-color: var(--spinner-highlight);
  border-radius: 50%;
  animation: nrp-spin 0.9s linear infinite;
}
@keyframes nrp-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
footer.web-footer {
  display: none;
}
.nrp-cart-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3000;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--hero-content-bg);
  color: var(--accent-muted);
  border: 1px solid var(--theme-color-border);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nrp-cart-toast.is-added {
  color: var(--accent-muted);
}
.nrp-cart-toast.is-removed {
  color: var(--accent-error);
}
.nrp-cart-toast-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 14px;
  -webkit-mask-image: url(/assets/nrp/icons/cart.svg);
  mask-image: url(/assets/nrp/icons/cart.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.nrp-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33, 22, 11, 0.45);
  opacity: 1;
  z-index: 1400 !important;
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  z-index: 1410 !important;
}
.modal.fade.show {
  display: flex !important;
}
.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  pointer-events: none;
}
.modal-content {
  pointer-events: auto;
  background: #fff;
  border: 1px solid rgba(111, 79, 44, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(36, 24, 12, 0.22);
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--theme-color-dark, #2f2114);
}
.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
}
.modal-header {
  justify-content: space-between;
  border-bottom: 1px solid rgba(111, 79, 44, 0.12);
}
.modal-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color-dark, #2f2114);
}
.modal-body {
  padding: 1.15rem 1.25rem 1.25rem;
  max-height: min(70vh, 560px);
  overflow-y: auto;
}
.modal-footer {
  justify-content: flex-end;
  gap: 0.75rem;
  border-top: 1px solid rgba(111, 79, 44, 0.12);
}
.modal .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(47, 33, 20, 0.72);
  cursor: pointer;
}
.modal .close:hover {
  background: rgba(207, 171, 113, 0.12);
  color: var(--theme-color-dark, #2f2114);
}
.modal .close .icon {
  width: 1rem;
  height: 1rem;
}
.modal .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  cursor: pointer;
}
.modal .btn-secondary {
  background: #fff;
  border-color: rgba(111, 79, 44, 0.2);
  color: var(--theme-color-dark, #2f2114);
}
.modal .btn-primary {
  background:
    linear-gradient(
      135deg,
      #cfab71 0%,
      #b8944d 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(207, 171, 113, 0.28);
}
.msgprint-dialog .msgprint {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--theme-color-dark, #2f2114);
  word-break: break-word;
}
.msgprint-dialog .msgprint hr {
  margin: 0.85rem 0;
  border: 0;
  border-top: 1px solid rgba(111, 79, 44, 0.12);
}
.modal-footer.hidden,
.modal .hidden {
  display: none !important;
}
