/**
 * Unations Merchandise Shop
 * Redesigned: quantity badges, two-step checkout, pickup at NEFC
 */
.shop-page {
  min-height: 60vh;
  padding: 2rem 0;
}

.shop-hero {
  position: relative;
  background: linear-gradient(135deg, #4a0a0a 0%, #800000 40%, #a63d3d 100%);
  color: #fff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 0 12px 12px;
}

.shop-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-hero-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.shop-hero-subtitle {
  margin: 0.25rem 0 0;
  opacity: 0.92;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.shop-hero-note {
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Track Order bar */
.shop-track-order-bar {
  background: linear-gradient(135deg, #3a0808 0%, #600000 50%, #7a2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
}

.shop-track-order-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.shop-track-order-head {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-track-order-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.shop-track-order-form .form-control {
  max-width: 180px;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.shop-track-order-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.shop-track-order-form .form-control:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.shop-track-order-result {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-track-order-success {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.shop-track-order-success .badge {
  font-size: 0.75rem;
}

.shop-track-order-items {
  font-size: 0.85rem;
  opacity: 0.95;
}

.shop-track-order-items > div {
  padding: 0.15rem 0;
}

/* Floating cart button */
.shop-cart-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  min-height: 48px;
  min-width: 100px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  background: rgba(128, 0, 0, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.shop-cart-toggle:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(128, 0, 0, 0.3);
}

/* Wrapper: button floats in viewport */
.shop-cart-toggle-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;
}

.shop-cart-toggle-float {
  pointer-events: auto;
  position: relative;
}

.shop-cart-toggle-float:hover {
  background: #800000;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.shop-cart-toggle-float.has-items {
  animation: shop-pulsate 2s infinite;
}

@keyframes shop-pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(128, 0, 0, 0.35);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 4px 16px 0 6px rgba(128, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(128, 0, 0, 0.35);
  }
}

.shop-cart-toggle i {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.shop-cart-toggle-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.2;
  gap: 0;
}

.shop-cart-count {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.shop-cart-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.95;
  font-weight: 500;
}

.shop-cart-item-count {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Product cards */
.shop-product-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.shop-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.shop-product-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.shop-product-carousel .carousel-inner,
.shop-product-carousel .carousel-item {
  height: 100%;
}
.shop-product-carousel .shop-product-img {
  object-fit: cover;
}
.shop-carousel-control {
  width: 2rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.shop-carousel-control:hover {
  opacity: 1;
}
.shop-product-image-wrap:hover .shop-carousel-control {
  opacity: 0.8;
}

.shop-product-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}

.shop-product-qty-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 12px;
  background: #800000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}

.shop-product-qty-badge.show {
  opacity: 1;
  transform: scale(1);
}

.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 3rem;
}

.shop-product-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.shop-product-desc {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop-product-price {
  font-weight: 700;
  color: #800000;
  font-size: 1.15rem;
}

/* Cart sidebar */
.shop-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.shop-cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.shop-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.shop-cart-sidebar.show {
  transform: translateX(0);
}

.shop-cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-cart-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.shop-cart-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.7;
}

.shop-cart-close:hover {
  opacity: 1;
}

.shop-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.shop-cart-item-title {
  grid-column: 1;
  font-weight: 500;
}

.shop-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.shop-cart-item-qty span {
  min-width: 1.5rem;
  text-align: center;
}

.shop-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.shop-qty-btn:hover {
  background: #f5f5f5;
}

.shop-cart-item-price {
  font-weight: 600;
}

.shop-cart-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.25rem;
}

.shop-cart-remove:hover {
  color: #800000;
}

.shop-cart-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
}

.shop-cart-subtotal,
.shop-cart-tax,
.shop-cart-fee,
.shop-cart-total {
  display: flex;
  justify-content: space-between;
}

.shop-cart-subtotal,
.shop-cart-tax,
.shop-cart-fee {
  font-size: 0.9rem;
}

.shop-cart-total {
  font-size: 1.1rem;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.shop-checkout-btn {
  border-radius: 8px;
  padding: 0.75rem;
}

/* Checkout modal */
.shop-checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.shop-checkout-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.shop-checkout-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.shop-checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #666;
}

.shop-checkout-close:hover {
  color: #333;
}

/* Checkout steps indicator */
.shop-checkout-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.shop-checkout-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: #f0f0f0;
  color: #888;
  font-size: 0.9rem;
}

.shop-checkout-step.active {
  background: rgba(128, 0, 0, 0.15);
  color: #800000;
  font-weight: 600;
}

.shop-checkout-step.done {
  background: rgba(25, 135, 84, 0.15);
  color: #198754;
}

.shop-checkout-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.shop-checkout-step.active .shop-checkout-step-num,
.shop-checkout-step.done .shop-checkout-step-num {
  opacity: 1;
}

/* Delivery options */
.shop-delivery-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shop-delivery-option {
  cursor: pointer;
  margin: 0;
}

.shop-delivery-option input {
  display: none;
}

.shop-delivery-option-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.shop-delivery-option-box i {
  font-size: 1.5rem;
  color: #800000;
}

.shop-delivery-option input:checked + .shop-delivery-option-box {
  border-color: #800000;
  background: rgba(128, 0, 0, 0.05);
}

.shop-delivery-option-box strong {
  display: block;
  width: 100%;
}

.shop-delivery-option-box small {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
}

/* Checkout summary */
.shop-checkout-summary {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9rem;
}

.shop-checkout-summary-list {
  max-height: 120px;
  overflow-y: auto;
}

.shop-checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-checkout-summary-row:last-child {
  border-bottom: none;
}

.shop-checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  font-size: 1rem;
}

.shop-checkout-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
}

.shop-checkout-next {
  margin-top: 0.5rem;
}

.shop-stripe-element {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
}

.shop-checkout-amount {
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════
   Store is always dark mode — .shop-page has data-bs-theme="dark"
   ═══════════════════════════════════════════════════ */
.shop-page[data-bs-theme="dark"] {
  background: #0f0f12;
}

.shop-page[data-bs-theme="dark"] .shop-hero {
  background: linear-gradient(135deg, #2a0808 0%, #4a1010 40%, #5c1a1a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-page[data-bs-theme="dark"] .shop-hero-title,
.shop-page[data-bs-theme="dark"] .shop-hero-subtitle {
  color: #fff;
}

.shop-page[data-bs-theme="dark"] .shop-cart-toggle-float {
  background: rgba(128, 0, 0, 0.95);
  color: #fff;
}

.shop-page[data-bs-theme="dark"] .shop-cart-toggle-float:hover {
  background: #800000;
}

.shop-page[data-bs-theme="dark"] .shop-cart-overlay.show {
  background: rgba(0, 0, 0, 0.65);
}

.shop-page[data-bs-theme="dark"] .shop-products {
  color: #e8e8ea;
}

.shop-page[data-bs-theme="dark"] .shop-product-card {
  background: #1a1a1e !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.shop-page[data-bs-theme="dark"] .shop-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.shop-page[data-bs-theme="dark"] .shop-product-image-wrap {
  background: #25252a;
}

.shop-page[data-bs-theme="dark"] .shop-product-title {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-product-desc,
.shop-page[data-bs-theme="dark"] .shop-product-card .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.shop-page[data-bs-theme="dark"] .shop-product-price {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-product-placeholder {
  color: #555;
}

.shop-page[data-bs-theme="dark"] .shop-add-cart.btn-outline-danger {
  border-color: rgba(200, 108, 108, 0.5);
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-add-cart.btn-outline-danger:hover {
  background: rgba(128, 0, 0, 0.2) !important;
  border-color: #800000 !important;
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-products .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Cart sidebar */
.shop-page[data-bs-theme="dark"] .shop-cart-sidebar {
  background: #1a1a1e !important;
  color: #e8e8ea !important;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
}

.shop-page[data-bs-theme="dark"] .shop-cart-body {
  background: #1a1a1e !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-header,
.shop-page[data-bs-theme="dark"] .shop-cart-footer {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: #1a1a1e !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-header h3,
.shop-page[data-bs-theme="dark"] .shop-cart-header .shop-cart-item-count {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-close {
  color: rgba(255, 255, 255, 0.8) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-close:hover {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-item {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-item-title {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-item-price {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-subtotal span,
.shop-page[data-bs-theme="dark"] .shop-cart-tax span,
.shop-page[data-bs-theme="dark"] .shop-cart-fee span,
.shop-page[data-bs-theme="dark"] .shop-cart-total span,
.shop-page[data-bs-theme="dark"] .shop-cart-total strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-fee {
  color: rgba(255, 255, 255, 0.7) !important;
}

.shop-page[data-bs-theme="dark"] .shop-qty-btn {
  background: #25252a !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-qty-btn:hover {
  background: #2d2d33 !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-item-qty span {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-remove {
  color: rgba(255, 255, 255, 0.6) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-remove:hover {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-total {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.shop-page[data-bs-theme="dark"] .shop-cart-empty,
.shop-page[data-bs-theme="dark"] .shop-cart-empty p,
.shop-page[data-bs-theme="dark"] .shop-cart-empty .small {
  color: rgba(255, 255, 255, 0.6) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-btn {
  color: #fff !important;
  background: #800000 !important;
  border-color: #800000 !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-btn:hover {
  background: #6b1010 !important;
  border-color: #5c0000 !important;
  color: #fff !important;
}

/* Checkout overlay & modal */
.shop-page[data-bs-theme="dark"] .shop-checkout-overlay {
  background: rgba(0, 0, 0, 0.75) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal {
  background: #1a1a1e !important;
  color: #e8e8ea !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-page[data-bs-theme="dark"] .shop-checkout-close {
  color: rgba(255, 255, 255, 0.8) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-close:hover {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-title,
.shop-page[data-bs-theme="dark"] .shop-checkout-pane h3 {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-step {
  background: #25252a !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-step.active {
  background: rgba(128, 0, 0, 0.25) !important;
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-step.done {
  background: rgba(25, 135, 84, 0.25) !important;
  color: #4ade80 !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-step-num {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .form-label,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal label {
  color: rgba(255, 255, 255, 0.95) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .text-danger {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .form-control,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal input,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal textarea {
  background: #25252a !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .form-control::placeholder,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal input::placeholder,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .form-control:focus,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal input:focus,
.shop-page[data-bs-theme="dark"] .shop-checkout-modal textarea:focus {
  border-color: #800000 !important;
  background: #2d2d33 !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.3) !important;
}

.shop-page[data-bs-theme="dark"] .shop-delivery-option-box {
  background: #25252a !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.shop-page[data-bs-theme="dark"] .shop-delivery-option-box strong {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-delivery-option-box small {
  color: rgba(255, 255, 255, 0.65) !important;
}

.shop-page[data-bs-theme="dark"] .shop-delivery-option input:checked + .shop-delivery-option-box {
  border-color: #800000 !important;
  background: rgba(128, 0, 0, 0.2) !important;
}

.shop-page[data-bs-theme="dark"] .shop-delivery-option-box i {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-pickup-info .alert-info {
  background: rgba(13, 202, 240, 0.2) !important;
  border-color: rgba(13, 202, 240, 0.4) !important;
  color: #7dd3fc !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-summary {
  background: #25252a !important;
  color: #e8e8ea !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-summary-row {
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #e8e8ea !important;
}

.shop-page[data-bs-theme="dark"] .shop-stripe-element {
  background: #25252a !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-amount {
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] #checkoutStep1Error,
.shop-page[data-bs-theme="dark"] #checkoutError {
  color: #c86c6c !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .btn-danger,
.shop-page[data-bs-theme="dark"] .shop-checkout-next {
  background: #800000 !important;
  border-color: #800000 !important;
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal .btn-danger:hover,
.shop-page[data-bs-theme="dark"] .shop-checkout-next:hover {
  background: #6b1010 !important;
  border-color: #5c0000 !important;
  color: #fff !important;
}

.shop-page[data-bs-theme="dark"] .shop-checkout-modal iframe {
  color-scheme: dark;
}
