.custheader {
  padding: 60px;
  text-align: center;
  background: #5D5C5C;
  color: white;
  font-size: 30px;
}

<style>
    /* Cart list styles */
.cart-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cart-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 12px !important;
  border-bottom: 1px solid #bbb !important;
}

.cart-item:last-child {
  border-bottom: none !important;
}

.cart-state {
  font-size: 14px !important;
  color: #fff !important;
  word-break: break-word !important;
}

/* Remove button styling */
.cart-remove {
  margin: 0 !important;
}

.btn-remove {
  background-color: #79030e !important;
  color: #fff !important;
  font-size: 11px !important;
  padding: 4px 10px !important;
  border: 2px solid !important;
  border-radius: 4px !important;
  border-color: #79030e !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  transition: background-color 0.2s ease-in-out !important;
}

.btn-remove:hover {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #79030e !important;
}

/* Spacing for the link above list */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* Mobile responsive stacking */
@media (max-width: 480px) {
  .cart-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 10px 0 !important;
  }

  .cart-remove {
    margin-top: 6px !important;
  }

  .btn-remove {
    width: 100% !important;
  }
}
/* Layout */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Shared button styles */
.form-actions .btn {
  flex: 1;
  min-width: 180px;
  padding: 12px 18px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

/* BLUE BUTTON */
.btn-blue {
  border: 2px solid !important;
  border-color: #1d4ed8 !important;
  background-color: #1d4ed8 !important;
}
.btn-blue:hover {
  color :#fff  !important;
  background-color: transparent !important;
}

/* GREEN BUTTON */
.btn-green {
  border: 2px solid !important;
  border-color: #15803d !important;
  background-color: #15803d !important;

}
.btn-green:hover {
  color :#fff  !important;
  background-color: transparent !important;
}

/* Mobile layout */
@media (max-width: 600px) {
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn {
    width: 100%;
  }
}


/* Group layout */
.btn-group-custom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Base style */
.btn-group-custom .btn {
  flex: 1;
  min-width: 150px;
  padding: 12px 18px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in-out;
  color: #fff;
  text-decoration: none;
}

/* Purple */
.btn-purple {
  border: 2px solid !important;
  border-color: #6d28d9 !important;
  background-color: #6d28d9 !important; /* nice modern violet */

}

.btn-purple:hover {
  color :#fff  !important;
  border-color: #6d28d9 !important;
  background-color: transparent !important;
}

/* Responsive stacking */
@media (max-width: 600px) {
  .btn-group-custom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group-custom .btn {
    width: 100%;
  }
}
