.content-block {
  padding-bottom: 120px !important;
  margin-top: 0 !important;
}
/* Receipt Form */
.receipt-form-section {
  padding: 24px 24px 0;
}
.receipt-form-title {
  color: #22bdb7;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.form-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--Black-100, #000);
}
.form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.form-control:focus {
  border-color: #ed2866;
  box-shadow: 0 0 0 0.15rem rgba(237, 40, 102, 0.25);
}
.form-check-input:checked {
  background-color: #ed2866;
  border-color: #ed2866;
}
/* Channel Selector */
.channel-selector {
  display: flex;
  gap: 32px;
  align-items: center;
}
.channel-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.channel-radio {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #ed2866;
  flex-shrink: 0;
}
.channel-option label {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  margin-bottom: 0;
}
/* Upload Area */
.upload-area {
  border: none;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 16px;
  background: transparent;
}
.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.btn-upload-receipt,
.btn-upload-receipt:hover {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ed2866;
  border-radius: 8px;
  border: 1px solid #ed2866;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-upload-receipt:hover {
  background: rgba(237, 40, 102, 0.06);
}
.upload-btn-icon {
  display: flex;
  align-items: center;
}
.upload-note {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
/* Upload Preview */
.enlarge-link,
.enlarge-link:hover {
  color: #6c6c6c;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.enlarge-link svg {
  margin-right: 4px;
  vertical-align: middle;
}
.upload-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  background: #f0f0f0;
}
.preview-image {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}
.preview-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #28a745;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-select-more,
.btn-select-more:hover {
  color: #22bdb7;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.btn-select-more svg {
  margin-right: 4px;
  vertical-align: middle;
}
/* Terms Text */
.terms-text {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 16px;
}
/* Submit Button */
.btn-submit-receipt {
  height: 48px;
  font-size: 16px;
  font-weight: 700;
}
.btn-submit-receipt:disabled {
  background: #e0e0e0;
  color: #999;
}
.btn-process {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  height: 48px;
  color: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  border-radius: 8px;
  cursor: auto;
}
/* Upload Instructions */
.upload-instructions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 16px;
}
.instructions-link,
.instructions-link:hover {
  color: #22bdb7;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}
.instructions-link svg {
  margin-left: 4px;
  vertical-align: middle;
}
/* Bottom Navigation */
.index-menu-section {
  max-width: 500px;
  padding: 8px 24px 0px;
}
.index-menu {
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 8px;
  height: 80px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.index-menu-items > a {
  width: 100%;
  color: var(--Black-40, #999);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}
.index-menu-items:first-child > a {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.index-menu-items:last-child > a {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.index-menu-items > a.active {
  color: var(--CTA, #ff6200);
}
/* Upload Fail Section */
.upload-fail-section {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}
.upload-fail-thumbnail {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}
.fail-title {
  color: #ed2866;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}
.fail-description {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}
.support-section {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
/* Skeleton */
.skeleton-regis-section {
  padding: 32px 24px 16px 24px;
}
.skeleton-link-wrapper {
  display: flex;
  justify-content: center;
  padding: 8px 24px;
}
.skeleton-link {
  width: 220px;
  height: 20px;
  border-radius: 4px;
  background-color: #e0e0e0;
}
/* Coupon Selection */
.coupon-selection-section {
  width: 100%;
}
.coupon-selection-content {
  padding: 32px 24px 24px;
  text-align: center;
}
.coupon-selection-title {
  color: #22bdb7;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.coupon-selection-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}
.coupon-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.coupon-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-radius: 8px;
  border: 1px solid #038658;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  gap: 12px;
}
.coupon-option:hover {
  border-color: #038658;
  opacity: 1;
}
.coupon-option.selected {
  border-color: #038658;
  background: rgba(34, 189, 183, 0.23);
}
.coupon-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coupon-option-label {
  font-size: 16x;
  font-weight: 700;
  color: #038658;
}
.btn-coupon-confirm {
  width: 100%;
}
.btn-coupon-confirm:disabled {
  background: #e0e0e0;
  color: #999;
}
/* Redemption Pages */
.redemption-section {
  width: 100%;
  background: #fff;
}
.redemption-content {
  padding: 32px 24px;
  text-align: center;
}
.redemption-title {
  color: #22bdb7;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.redemption-description {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
}
.redemption-code-box {
  border-radius: 16px;
  border: 1px solid #22bdb7;
  padding: 24px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.redemption-code-box svg {
  max-width: 100%;
}
#qrcode-display {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
#qrcode-display img {
  display: block;
}
#barcode-display {
  margin-bottom: 12px;
}
.redemption-code-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.btn-copy-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid #ed2866;
  color: #ed2866;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
}
.btn-copy-code:hover {
  background: rgba(237, 40, 102, 0.06);
  color: #ed2866;
}
.btn-copy-code svg {
  margin-right: 4px;
  vertical-align: middle;
}
.redemption-warning {
  color: #ed2866;
  font-size: 20px;
  font-weight: 400;
}
