.shopcore-modal .modal-dialog {
  max-width: 580px;
  margin: 1.75rem auto;
  height: calc(100% - 3.5rem);
}
@media (max-width: 576px) {
  .shopcore-modal .modal-dialog {
    max-width: 95vw;
    margin: 0.75rem auto;
    height: calc(100% - 1.5rem);
  }
}
.shopcore-modal-content {
  background-color: #FFFFFF;
  border: 1px solid #EFE6E1;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(142, 75, 91, 0.08);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.shopcore-modal-header {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5F2 100%);
  border-bottom: 1px solid #EFE6E1;
  padding: 1.25rem 1.5rem;
}
.shopcore-header-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #8E4B5B;
  border-radius: 50%;
}
.shopcore-modal-title {
  font-family: 'Playfair Display', Georgia, serif, system-ui;
  font-weight: 600;
  color: #2B2121;
  font-size: 1.25rem;
  margin: 0;
}
.shopcore-modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem;
  background-color: #FAF7F5;
  flex: 1 1 auto;
}
.shopcore-modal-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #EFE6E1;
  padding: 1.25rem 1.5rem;
}
.shopcore-cart-item {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #EFE6E1 !important;
  margin-bottom: 0.75rem;
}
.shopcore-item-image-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #F5EFEB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shopcore-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shopcore-item-title {
  font-size: 0.95rem;
  font-weight: 500;
}
.shopcore-link {
  color: #2B2121;
  text-decoration: none;
  transition: color 0.2s ease;
}
.shopcore-link:hover {
  color: #8E4B5B;
}
.shopcore-item-unit-price {
  font-size: 0.85rem;
  color: #6E6260;
}
.shopcore-item-total {
  font-size: 0.95rem;
  color: #8E4B5B;
}
.shopcore-qty-controls {
  border: 1px solid #E4D7CF;
  border-radius: 4px;
  background-color: #FFFFFF;
  overflow: hidden;
}
.shopcore-qty-btn {
  border: none;
  background: transparent;
  color: #2B2121;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s;
}
.shopcore-qty-btn:hover {
  background-color: #F5EFEB;
  color: #8E4B5B;
}
.shopcore-qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: #2B2121;
}
.shopcore-btn-remove {
  cursor: pointer;
  transition: color 0.2s ease;
}
.shopcore-btn-remove:hover {
  color: #8E4B5B !important;
}
.btn-shopcore-primary {
  background: #8E4B5B;
  color: #FFFFFF;
  border: 1px solid #8E4B5B;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-shopcore-primary:hover,
.btn-shopcore-primary:focus {
  background: #733B49;
  border-color: #733B49;
  color: #FFFFFF;
}
.btn-shopcore-outline {
  background: transparent;
  color: #6E6260;
  border: 1px solid #E4D7CF;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-shopcore-outline:hover {
  background: #F5EFEB;
  border-color: #CDBAB0;
  color: #2B2121;
}
.shopcore-checkout-section {
  background: #FFFFFF;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid #EFE6E1;
}
.shopcore-checkout-heading {
  font-family: 'Playfair Display', Georgia, serif, system-ui;
  color: #2B2121;
  font-weight: 600;
}
.shopcore-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6E6260;
  margin-bottom: 0.25rem;
}
.shopcore-input {
  border: 1px solid #E4D7CF;
  background-color: #FAF7F5;
  font-size: 0.875rem;
  color: #2B2121;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
}
.shopcore-input:focus {
  border-color: #8E4B5B;
  box-shadow: 0 0 0 0.2rem rgba(142, 75, 91, 0.15);
  background-color: #FFFFFF;
  color: #2B2121;
}
.shopcore-radio-card {
  background-color: #FAF7F5;
  border-color: #EFE6E1 !important;
  cursor: pointer;
  font-size: 0.875rem;
}
.shopcore-radio-card input:checked ~ span {
  color: #8E4B5B;
  font-weight: 600;
}
.shopcore-empty-icon svg {
  stroke: #C88D88;
}
.shopcore-empty-text {
  color: #6E6260;
  font-size: 0.95rem;
}
.shopcore-total-amount {
  font-size: 1.25rem;
  color: #8E4B5B;
}
.shopcore-subtotal-label {
  font-size: 0.9rem;
}