#app {
  display: none !important;
}

.sitefront-checkout-shell {
  min-height: 100vh;
  background: #f5f5f2;
  color: #1f1f1f;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sitefront-checkout-header {
  background: #121212;
  color: #fff;
  padding: 20px clamp(18px, 4vw, 56px);
}

.sitefront-checkout-header a {
  color: inherit;
  text-decoration: none;
}

.sitefront-checkout-header strong {
  display: block;
  font-size: 22px;
  letter-spacing: .02em;
}

.sitefront-checkout-header span {
  display: block;
  margin-top: 4px;
  color: #d8d8d8;
  font-size: 14px;
}

.sitefront-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px clamp(18px, 4vw, 56px) 56px;
}

.sitefront-panel {
  background: #fff;
  border: 1px solid #dfded8;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
  padding: clamp(20px, 3vw, 32px);
}

.sitefront-panel + .sitefront-panel,
.sitefront-section + .sitefront-section {
  margin-top: 18px;
}

.sitefront-section h2,
.sitefront-panel h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.sitefront-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sitefront-field {
  display: grid;
  gap: 6px;
}

.sitefront-field--full {
  grid-column: 1 / -1;
}

.sitefront-field label {
  font-size: 13px;
  font-weight: 700;
}

.sitefront-field input,
.sitefront-field select {
  width: 100%;
  border: 1px solid #cfcfc8;
  border-radius: 10px;
  box-sizing: border-box;
  font: inherit;
  padding: 12px 13px;
}

.sitefront-bundles,
.sitefront-choices {
  display: grid;
  gap: 12px;
}

.sitefront-bundle,
.sitefront-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d8d4c9;
  border-radius: 14px;
  cursor: pointer;
  padding: 14px;
}

.sitefront-bundle:has(input:checked),
.sitefront-choice:has(input:checked) {
  border-color: #936232;
  box-shadow: 0 0 0 2px rgba(147, 98, 50, .16);
}

.sitefront-bundle__content,
.sitefront-choice span {
  display: grid;
  flex: 1;
  gap: 3px;
}

.sitefront-bundle__content span,
.sitefront-choice small,
.sitefront-bundle__gifts {
  color: #666;
  font-size: 13px;
}

.sitefront-bundle__price {
  font-size: 18px;
  font-weight: 800;
}

.sitefront-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.sitefront-summary-row:last-child {
  border-bottom: 0;
}

.sitefront-summary-total {
  font-size: 20px;
  font-weight: 800;
}

.sitefront-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  margin-top: 20px;
  padding: 15px 22px;
}

.sitefront-submit:disabled {
  cursor: wait;
  opacity: .6;
}

.sitefront-status {
  border-radius: 12px;
  margin-top: 16px;
  padding: 14px;
}

.sitefront-status--loading {
  background: #fff7db;
  color: #6a4a00;
}

.sitefront-status--error {
  background: #ffe8e8;
  color: #8a1f1f;
}

.sitefront-status--success {
  background: #e8f8ef;
  color: #126234;
}

.sitefront-form--submitted input,
.sitefront-form--submitted select,
.sitefront-form--submitted button[type="submit"] {
  pointer-events: none;
}

@media (max-width: 900px) {
  .sitefront-checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sitefront-grid {
    grid-template-columns: 1fr;
  }
}
